less copy protection, more size visualization
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

67749 lines
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. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. }
  2459. //species
  2460. function getSpeciesInfo(speciesList) {
  2461. let result = new Set();
  2462. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2463. result.add(entry)
  2464. });
  2465. return Array.from(result);
  2466. };
  2467. function getSpeciesInfoHelper(species) {
  2468. if (!speciesData[species]) {
  2469. console.warn(species + " doesn't exist");
  2470. return [];
  2471. }
  2472. if (speciesData[species].parents) {
  2473. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2474. } else {
  2475. return [species];
  2476. }
  2477. }
  2478. characterMakers.push(() => makeCharacter(
  2479. {
  2480. name: "Fen",
  2481. species: ["crux"],
  2482. description: {
  2483. title: "Bio",
  2484. text: "Very furry. Sheds on everything."
  2485. },
  2486. tags: [
  2487. "anthro",
  2488. "goo"
  2489. ]
  2490. },
  2491. {
  2492. front: {
  2493. height: math.unit(12, "feet"),
  2494. weight: math.unit(2400, "lb"),
  2495. preyCapacity: math.unit(1, "people"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/fen/front.svg",
  2499. extra: 1804/1562,
  2500. bottom: 205/2009
  2501. },
  2502. extraAttributes: {
  2503. pawSize: {
  2504. name: "Paw Size",
  2505. power: 2,
  2506. type: "area",
  2507. base: math.unit(0.35, "m^2")
  2508. }
  2509. }
  2510. },
  2511. diving: {
  2512. height: math.unit(4.9, "meters"),
  2513. weight: math.unit(2400, "lb"),
  2514. name: "Diving",
  2515. image: {
  2516. source: "./media/characters/fen/diving.svg"
  2517. }
  2518. },
  2519. sleeby: {
  2520. height: math.unit(3.45, "meters"),
  2521. weight: math.unit(2400, "lb"),
  2522. name: "Sleeby",
  2523. image: {
  2524. source: "./media/characters/fen/sleeby.svg"
  2525. }
  2526. },
  2527. goo: {
  2528. height: math.unit(12, "feet"),
  2529. weight: math.unit(3600, "lb"),
  2530. volume: math.unit(1000, "liters"),
  2531. preyCapacity: math.unit(6, "people"),
  2532. name: "Goo",
  2533. image: {
  2534. source: "./media/characters/fen/goo.svg",
  2535. extra: 1307/1071,
  2536. bottom: 134/1441
  2537. }
  2538. },
  2539. horror: {
  2540. height: math.unit(13.6, "feet"),
  2541. weight: math.unit(2400, "lb"),
  2542. preyCapacity: math.unit(1, "people"),
  2543. name: "Horror",
  2544. image: {
  2545. source: "./media/characters/fen/horror.svg",
  2546. extra: 893/797,
  2547. bottom: 0/893
  2548. }
  2549. },
  2550. gooNsfw: {
  2551. height: math.unit(12, "feet"),
  2552. weight: math.unit(3750, "lb"),
  2553. volume: math.unit(1000, "liters"),
  2554. preyCapacity: math.unit(6, "people"),
  2555. name: "Goo (NSFW)",
  2556. image: {
  2557. source: "./media/characters/fen/goo-nsfw.svg",
  2558. extra: 1875/1734,
  2559. bottom: 122/1997
  2560. }
  2561. },
  2562. maw: {
  2563. height: math.unit(5.03, "feet"),
  2564. name: "Maw",
  2565. image: {
  2566. source: "./media/characters/fen/maw.svg"
  2567. }
  2568. },
  2569. gooCeiling: {
  2570. height: math.unit(6.6, "feet"),
  2571. weight: math.unit(3000, "lb"),
  2572. volume: math.unit(1000, "liters"),
  2573. preyCapacity: math.unit(6, "people"),
  2574. name: "Maw (Goo)",
  2575. image: {
  2576. source: "./media/characters/fen/goo-maw.svg"
  2577. }
  2578. },
  2579. paw: {
  2580. height: math.unit(3.77, "feet"),
  2581. name: "Paw",
  2582. image: {
  2583. source: "./media/characters/fen/paw.svg"
  2584. },
  2585. extraAttributes: {
  2586. "toeSize": {
  2587. name: "Toe Size",
  2588. power: 2,
  2589. type: "area",
  2590. base: math.unit(0.02875, "m^2")
  2591. },
  2592. "pawSize": {
  2593. name: "Paw Size",
  2594. power: 2,
  2595. type: "area",
  2596. base: math.unit(0.378, "m^2")
  2597. },
  2598. }
  2599. },
  2600. tail: {
  2601. height: math.unit(12.1, "feet"),
  2602. name: "Tail",
  2603. image: {
  2604. source: "./media/characters/fen/tail.svg"
  2605. }
  2606. },
  2607. tailFull: {
  2608. height: math.unit(12.1, "feet"),
  2609. name: "Full Tail",
  2610. image: {
  2611. source: "./media/characters/fen/tail-full.svg"
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(12, "feet"),
  2616. weight: math.unit(2400, "lb"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/fen/back.svg",
  2620. },
  2621. info: {
  2622. description: {
  2623. mode: "append",
  2624. text: "\n\nHe is not currently looking at you."
  2625. }
  2626. }
  2627. },
  2628. full: {
  2629. height: math.unit(1.85, "meter"),
  2630. weight: math.unit(3200, "lb"),
  2631. preyCapacity: math.unit(3, "people"),
  2632. name: "Full",
  2633. image: {
  2634. source: "./media/characters/fen/full.svg",
  2635. extra: 1133/859,
  2636. bottom: 145/1278
  2637. },
  2638. info: {
  2639. description: {
  2640. mode: "append",
  2641. text: "\n\nMunch."
  2642. }
  2643. }
  2644. },
  2645. gooLounging: {
  2646. height: math.unit(4.53, "feet"),
  2647. weight: math.unit(3000, "lb"),
  2648. preyCapacity: math.unit(6, "people"),
  2649. name: "Goo (Lounging)",
  2650. image: {
  2651. source: "./media/characters/fen/goo-lounging.svg",
  2652. bottom: 116 / 613
  2653. }
  2654. },
  2655. lounging: {
  2656. height: math.unit(10.52, "feet"),
  2657. weight: math.unit(2400, "lb"),
  2658. name: "Lounging",
  2659. image: {
  2660. source: "./media/characters/fen/lounging.svg"
  2661. }
  2662. },
  2663. },
  2664. [
  2665. {
  2666. name: "Small",
  2667. height: math.unit(2.2428, "meter")
  2668. },
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(12, "feet"),
  2672. default: true,
  2673. },
  2674. {
  2675. name: "Big",
  2676. height: math.unit(20, "feet")
  2677. },
  2678. {
  2679. name: "Minimacro",
  2680. height: math.unit(40, "feet"),
  2681. info: {
  2682. description: {
  2683. mode: "append",
  2684. text: "\n\nTOO DAMN BIG"
  2685. }
  2686. }
  2687. },
  2688. {
  2689. name: "Macro",
  2690. height: math.unit(100, "feet"),
  2691. info: {
  2692. description: {
  2693. mode: "append",
  2694. text: "\n\nTOO DAMN BIG"
  2695. }
  2696. }
  2697. },
  2698. {
  2699. name: "Megamacro",
  2700. height: math.unit(2, "miles")
  2701. },
  2702. {
  2703. name: "Gigamacro",
  2704. height: math.unit(10, "earths")
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2710. {
  2711. front: {
  2712. height: math.unit(183, "cm"),
  2713. weight: math.unit(80, "kg"),
  2714. name: "Front",
  2715. image: {
  2716. source: "./media/characters/sofia-fluttertail/front.svg",
  2717. bottom: 0.01,
  2718. extra: 2154 / 2081
  2719. }
  2720. },
  2721. frontAlt: {
  2722. height: math.unit(183, "cm"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Front (alt)",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2727. }
  2728. },
  2729. back: {
  2730. height: math.unit(183, "cm"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Back",
  2733. image: {
  2734. source: "./media/characters/sofia-fluttertail/back.svg"
  2735. }
  2736. },
  2737. kneeling: {
  2738. height: math.unit(125, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Kneeling",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2743. extra: 1033 / 977,
  2744. bottom: 23.7 / 1057
  2745. }
  2746. },
  2747. maw: {
  2748. height: math.unit(183 / 5, "cm"),
  2749. name: "Maw",
  2750. image: {
  2751. source: "./media/characters/sofia-fluttertail/maw.svg"
  2752. }
  2753. },
  2754. mawcloseup: {
  2755. height: math.unit(183 / 5 * 0.41, "cm"),
  2756. name: "Maw (Closeup)",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2759. }
  2760. },
  2761. paws: {
  2762. height: math.unit(1.17, "feet"),
  2763. name: "Paws",
  2764. image: {
  2765. source: "./media/characters/sofia-fluttertail/paws.svg",
  2766. extra: 851 / 851,
  2767. bottom: 17 / 868
  2768. }
  2769. },
  2770. },
  2771. [
  2772. {
  2773. name: "Normal",
  2774. height: math.unit(1.83, "meter")
  2775. },
  2776. {
  2777. name: "Size Thief",
  2778. height: math.unit(18, "feet")
  2779. },
  2780. {
  2781. name: "50 Foot Collie",
  2782. height: math.unit(50, "feet")
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(96, "feet"),
  2787. default: true
  2788. },
  2789. {
  2790. name: "Megamerger",
  2791. height: math.unit(650, "feet")
  2792. },
  2793. ]
  2794. ))
  2795. characterMakers.push(() => makeCharacter(
  2796. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2797. {
  2798. front: {
  2799. height: math.unit(7, "feet"),
  2800. weight: math.unit(100, "kg"),
  2801. name: "Front",
  2802. image: {
  2803. source: "./media/characters/march/front.svg",
  2804. extra: 1992/1851,
  2805. bottom: 39/2031
  2806. }
  2807. },
  2808. foot: {
  2809. height: math.unit(0.9, "feet"),
  2810. name: "Foot",
  2811. image: {
  2812. source: "./media/characters/march/foot.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(7.9, "feet")
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(220, "meters")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(2.98, "km"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Gigamacro",
  2832. height: math.unit(15963, "km")
  2833. },
  2834. {
  2835. name: "Teramacro",
  2836. height: math.unit(2980000000, "km")
  2837. },
  2838. {
  2839. name: "Examacro",
  2840. height: math.unit(250, "parsecs")
  2841. },
  2842. ]
  2843. ))
  2844. characterMakers.push(() => makeCharacter(
  2845. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2846. {
  2847. front: {
  2848. height: math.unit(6, "feet"),
  2849. weight: math.unit(60, "kg"),
  2850. name: "Front",
  2851. image: {
  2852. source: "./media/characters/noir/front.svg",
  2853. extra: 1,
  2854. bottom: 0.032
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Normal",
  2861. height: math.unit(6.6, "feet")
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(500, "feet")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(2.5, "km"),
  2870. default: true
  2871. },
  2872. {
  2873. name: "Gigamacro",
  2874. height: math.unit(22500, "km")
  2875. },
  2876. {
  2877. name: "Teramacro",
  2878. height: math.unit(2500000000, "km")
  2879. },
  2880. {
  2881. name: "Examacro",
  2882. height: math.unit(200, "parsecs")
  2883. },
  2884. ]
  2885. ))
  2886. characterMakers.push(() => makeCharacter(
  2887. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2888. {
  2889. front: {
  2890. height: math.unit(7, "feet"),
  2891. weight: math.unit(100, "kg"),
  2892. name: "Front",
  2893. image: {
  2894. source: "./media/characters/okuri/front.svg",
  2895. extra: 739/665,
  2896. bottom: 39/778
  2897. }
  2898. },
  2899. back: {
  2900. height: math.unit(7, "feet"),
  2901. weight: math.unit(100, "kg"),
  2902. name: "Back",
  2903. image: {
  2904. source: "./media/characters/okuri/back.svg",
  2905. extra: 734/653,
  2906. bottom: 13/747
  2907. }
  2908. },
  2909. sitting: {
  2910. height: math.unit(2.95, "feet"),
  2911. weight: math.unit(100, "kg"),
  2912. name: "Sitting",
  2913. image: {
  2914. source: "./media/characters/okuri/sitting.svg",
  2915. extra: 370/318,
  2916. bottom: 99/469
  2917. }
  2918. },
  2919. },
  2920. [
  2921. {
  2922. name: "Smallest",
  2923. height: math.unit(5 + 2/12, "feet")
  2924. },
  2925. {
  2926. name: "Smaller",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Small",
  2931. height: math.unit(1000, "feet")
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(1, "mile")
  2936. },
  2937. {
  2938. name: "Mega Macro (Small)",
  2939. height: math.unit(20, "km")
  2940. },
  2941. {
  2942. name: "Mega Macro (Large)",
  2943. height: math.unit(600, "km")
  2944. },
  2945. {
  2946. name: "Giga Macro",
  2947. height: math.unit(10000, "km")
  2948. },
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(577560, "km"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Large",
  2956. height: math.unit(4, "galaxies")
  2957. },
  2958. {
  2959. name: "Largest",
  2960. height: math.unit(15, "multiverses")
  2961. },
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(100, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/manny/front.svg",
  2973. extra: 1,
  2974. bottom: 0.06
  2975. }
  2976. },
  2977. back: {
  2978. height: math.unit(7, "feet"),
  2979. weight: math.unit(100, "kg"),
  2980. name: "Back",
  2981. image: {
  2982. source: "./media/characters/manny/back.svg",
  2983. extra: 1,
  2984. bottom: 0.014
  2985. }
  2986. },
  2987. },
  2988. [
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(7, "feet"),
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(78, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(300, "meters")
  3001. },
  3002. {
  3003. name: "Macro++",
  3004. height: math.unit(2400, "meters")
  3005. },
  3006. {
  3007. name: "Megamacro",
  3008. height: math.unit(5167, "meters")
  3009. },
  3010. {
  3011. name: "Gigamacro",
  3012. height: math.unit(41769, "miles")
  3013. },
  3014. ]
  3015. ))
  3016. characterMakers.push(() => makeCharacter(
  3017. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3018. {
  3019. front: {
  3020. height: math.unit(7, "feet"),
  3021. weight: math.unit(100, "kg"),
  3022. name: "Front",
  3023. image: {
  3024. source: "./media/characters/adake/front-1.svg"
  3025. }
  3026. },
  3027. frontAlt: {
  3028. height: math.unit(7, "feet"),
  3029. weight: math.unit(100, "kg"),
  3030. name: "Front (Alt)",
  3031. image: {
  3032. source: "./media/characters/adake/front-2.svg",
  3033. extra: 1,
  3034. bottom: 0.01
  3035. }
  3036. },
  3037. back: {
  3038. height: math.unit(7, "feet"),
  3039. weight: math.unit(100, "kg"),
  3040. name: "Back",
  3041. image: {
  3042. source: "./media/characters/adake/back.svg",
  3043. }
  3044. },
  3045. kneel: {
  3046. height: math.unit(5.385, "feet"),
  3047. weight: math.unit(100, "kg"),
  3048. name: "Kneeling",
  3049. image: {
  3050. source: "./media/characters/adake/kneel.svg",
  3051. bottom: 0.052
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Normal",
  3058. height: math.unit(7, "feet"),
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(78, "feet"),
  3063. default: true
  3064. },
  3065. {
  3066. name: "Macro+",
  3067. height: math.unit(300, "meters")
  3068. },
  3069. {
  3070. name: "Macro++",
  3071. height: math.unit(2400, "meters")
  3072. },
  3073. {
  3074. name: "Megamacro",
  3075. height: math.unit(5167, "meters")
  3076. },
  3077. {
  3078. name: "Gigamacro",
  3079. height: math.unit(41769, "miles")
  3080. },
  3081. ]
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3085. {
  3086. front: {
  3087. height: math.unit(1.65, "meters"),
  3088. weight: math.unit(50, "kg"),
  3089. name: "Front",
  3090. image: {
  3091. source: "./media/characters/elijah/front.svg",
  3092. extra: 858 / 830,
  3093. bottom: 95.5 / 953.8559
  3094. }
  3095. },
  3096. back: {
  3097. height: math.unit(1.65, "meters"),
  3098. weight: math.unit(50, "kg"),
  3099. name: "Back",
  3100. image: {
  3101. source: "./media/characters/elijah/back.svg",
  3102. extra: 895 / 850,
  3103. bottom: 5.3 / 897.956
  3104. }
  3105. },
  3106. frontNsfw: {
  3107. height: math.unit(1.65, "meters"),
  3108. weight: math.unit(50, "kg"),
  3109. name: "Front (NSFW)",
  3110. image: {
  3111. source: "./media/characters/elijah/front-nsfw.svg",
  3112. extra: 858 / 830,
  3113. bottom: 95.5 / 953.8559
  3114. }
  3115. },
  3116. backNsfw: {
  3117. height: math.unit(1.65, "meters"),
  3118. weight: math.unit(50, "kg"),
  3119. name: "Back (NSFW)",
  3120. image: {
  3121. source: "./media/characters/elijah/back-nsfw.svg",
  3122. extra: 895 / 850,
  3123. bottom: 5.3 / 897.956
  3124. }
  3125. },
  3126. dick: {
  3127. height: math.unit(1, "feet"),
  3128. name: "Dick",
  3129. image: {
  3130. source: "./media/characters/elijah/dick.svg"
  3131. }
  3132. },
  3133. beakOpen: {
  3134. height: math.unit(1.25, "feet"),
  3135. name: "Beak (Open)",
  3136. image: {
  3137. source: "./media/characters/elijah/beak-open.svg"
  3138. }
  3139. },
  3140. beakShut: {
  3141. height: math.unit(1.25, "feet"),
  3142. name: "Beak (Shut)",
  3143. image: {
  3144. source: "./media/characters/elijah/beak-shut.svg"
  3145. }
  3146. },
  3147. footFlexing: {
  3148. height: math.unit(1.61, "feet"),
  3149. name: "Foot (Flexing)",
  3150. image: {
  3151. source: "./media/characters/elijah/foot-flexing.svg"
  3152. }
  3153. },
  3154. footStepping: {
  3155. height: math.unit(1.44, "feet"),
  3156. name: "Foot (Stepping)",
  3157. image: {
  3158. source: "./media/characters/elijah/foot-stepping.svg"
  3159. }
  3160. },
  3161. plantigradeLeg: {
  3162. height: math.unit(2.34, "feet"),
  3163. name: "Plantigrade Leg",
  3164. image: {
  3165. source: "./media/characters/elijah/plantigrade-leg.svg"
  3166. }
  3167. },
  3168. plantigradeFootLeft: {
  3169. height: math.unit(0.9, "feet"),
  3170. name: "Plantigrade Foot (Left)",
  3171. image: {
  3172. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3173. }
  3174. },
  3175. plantigradeFootRight: {
  3176. height: math.unit(0.9, "feet"),
  3177. name: "Plantigrade Foot (Right)",
  3178. image: {
  3179. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3180. }
  3181. },
  3182. },
  3183. [
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(1.65, "meters")
  3187. },
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(55, "meters"),
  3191. default: true
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(105, "meters")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3201. {
  3202. front: {
  3203. height: math.unit(7 + 2/12, "feet"),
  3204. weight: math.unit(320, "kg"),
  3205. preyCapacity: math.unit(0.276549935, "people"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/rai/front.svg",
  3209. extra: 1802/1696,
  3210. bottom: 68/1870
  3211. },
  3212. form: "anthro",
  3213. default: true
  3214. },
  3215. frontDressed: {
  3216. height: math.unit(7 + 2/12, "feet"),
  3217. weight: math.unit(320, "kg"),
  3218. preyCapacity: math.unit(0.276549935, "people"),
  3219. name: "Front (Dressed)",
  3220. image: {
  3221. source: "./media/characters/rai/front-dressed.svg",
  3222. extra: 1802/1696,
  3223. bottom: 68/1870
  3224. },
  3225. form: "anthro"
  3226. },
  3227. side: {
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. weight: math.unit(320, "kg"),
  3230. preyCapacity: math.unit(0.276549935, "people"),
  3231. name: "Side",
  3232. image: {
  3233. source: "./media/characters/rai/side.svg",
  3234. extra: 1789/1710,
  3235. bottom: 115/1904
  3236. },
  3237. form: "anthro"
  3238. },
  3239. back: {
  3240. height: math.unit(7 + 2/12, "feet"),
  3241. weight: math.unit(320, "kg"),
  3242. preyCapacity: math.unit(0.276549935, "people"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/rai/back.svg",
  3246. extra: 1770/1707,
  3247. bottom: 28/1798
  3248. },
  3249. form: "anthro"
  3250. },
  3251. feral: {
  3252. height: math.unit(9.5, "feet"),
  3253. weight: math.unit(640, "kg"),
  3254. preyCapacity: math.unit(4, "people"),
  3255. name: "Feral",
  3256. image: {
  3257. source: "./media/characters/rai/feral.svg",
  3258. extra: 945/553,
  3259. bottom: 176/1121
  3260. },
  3261. form: "feral",
  3262. default: true
  3263. },
  3264. dragon: {
  3265. height: math.unit(23, "feet"),
  3266. weight: math.unit(50000, "lb"),
  3267. name: "Dragon",
  3268. image: {
  3269. source: "./media/characters/rai/dragon.svg",
  3270. extra: 2498 / 2030,
  3271. bottom: 85.2 / 2584
  3272. },
  3273. form: "dragon",
  3274. default: true
  3275. },
  3276. maw: {
  3277. height: math.unit(1.69, "feet"),
  3278. name: "Maw",
  3279. image: {
  3280. source: "./media/characters/rai/maw.svg"
  3281. },
  3282. form: "anthro"
  3283. },
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(7 + 2/12, "feet"),
  3289. form: "anthro"
  3290. },
  3291. {
  3292. name: "Big",
  3293. height: math.unit(11, "feet"),
  3294. form: "anthro"
  3295. },
  3296. {
  3297. name: "Minimacro",
  3298. height: math.unit(77, "feet"),
  3299. form: "anthro"
  3300. },
  3301. {
  3302. name: "Macro",
  3303. height: math.unit(302, "feet"),
  3304. default: true,
  3305. form: "anthro"
  3306. },
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(9.5, "feet"),
  3310. form: "feral",
  3311. default: true
  3312. },
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(23, "feet"),
  3316. form: "dragon",
  3317. default: true
  3318. }
  3319. ],
  3320. {
  3321. "anthro": {
  3322. name: "Anthro",
  3323. default: true
  3324. },
  3325. "feral": {
  3326. name: "Feral",
  3327. },
  3328. "dragon": {
  3329. name: "Dragon",
  3330. },
  3331. }
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3335. {
  3336. frontDressed: {
  3337. height: math.unit(216, "feet"),
  3338. weight: math.unit(7000000, "lb"),
  3339. preyCapacity: math.unit(1321, "people"),
  3340. name: "Front (Dressed)",
  3341. image: {
  3342. source: "./media/characters/jazzy/front-dressed.svg",
  3343. extra: 2738 / 2651,
  3344. bottom: 41.8 / 2786
  3345. }
  3346. },
  3347. backDressed: {
  3348. height: math.unit(216, "feet"),
  3349. weight: math.unit(7000000, "lb"),
  3350. preyCapacity: math.unit(1321, "people"),
  3351. name: "Back (Dressed)",
  3352. image: {
  3353. source: "./media/characters/jazzy/back-dressed.svg",
  3354. extra: 2775 / 2673,
  3355. bottom: 36.8 / 2817
  3356. }
  3357. },
  3358. front: {
  3359. height: math.unit(216, "feet"),
  3360. weight: math.unit(7000000, "lb"),
  3361. preyCapacity: math.unit(1321, "people"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/jazzy/front.svg",
  3365. extra: 2738 / 2651,
  3366. bottom: 41.8 / 2786
  3367. }
  3368. },
  3369. back: {
  3370. height: math.unit(216, "feet"),
  3371. weight: math.unit(7000000, "lb"),
  3372. preyCapacity: math.unit(1321, "people"),
  3373. name: "Back",
  3374. image: {
  3375. source: "./media/characters/jazzy/back.svg",
  3376. extra: 2775 / 2673,
  3377. bottom: 36.8 / 2817
  3378. }
  3379. },
  3380. maw: {
  3381. height: math.unit(20, "feet"),
  3382. name: "Maw",
  3383. image: {
  3384. source: "./media/characters/jazzy/maw.svg"
  3385. }
  3386. },
  3387. paws: {
  3388. height: math.unit(27.5, "feet"),
  3389. name: "Paws",
  3390. image: {
  3391. source: "./media/characters/jazzy/paws.svg"
  3392. }
  3393. },
  3394. eye: {
  3395. height: math.unit(4.4, "feet"),
  3396. name: "Eye",
  3397. image: {
  3398. source: "./media/characters/jazzy/eye.svg"
  3399. }
  3400. },
  3401. droneOffense: {
  3402. height: math.unit(9.5, "inches"),
  3403. name: "Drone (Offense)",
  3404. image: {
  3405. source: "./media/characters/jazzy/drone-offense.svg"
  3406. }
  3407. },
  3408. droneRecon: {
  3409. height: math.unit(9.5, "inches"),
  3410. name: "Drone (Recon)",
  3411. image: {
  3412. source: "./media/characters/jazzy/drone-recon.svg"
  3413. }
  3414. },
  3415. droneDefense: {
  3416. height: math.unit(9.5, "inches"),
  3417. name: "Drone (Defense)",
  3418. image: {
  3419. source: "./media/characters/jazzy/drone-defense.svg"
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(216, "feet"),
  3427. default: true
  3428. },
  3429. ]
  3430. ))
  3431. characterMakers.push(() => makeCharacter(
  3432. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3433. {
  3434. front: {
  3435. height: math.unit(9 + 6/12, "feet"),
  3436. weight: math.unit(700, "lb"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/flamm/front.svg",
  3440. extra: 1736/1596,
  3441. bottom: 93/1829
  3442. }
  3443. },
  3444. buff: {
  3445. height: math.unit(9 + 6/12, "feet"),
  3446. weight: math.unit(950, "lb"),
  3447. name: "Buff",
  3448. image: {
  3449. source: "./media/characters/flamm/buff.svg",
  3450. extra: 3018/2874,
  3451. bottom: 221/3239
  3452. }
  3453. },
  3454. },
  3455. [
  3456. {
  3457. name: "Normal",
  3458. height: math.unit(9.5, "feet")
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(200, "feet"),
  3463. default: true
  3464. },
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(5 + 3/12, "feet"),
  3472. weight: math.unit(60, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/zephiro/front.svg",
  3476. extra: 1873/1761,
  3477. bottom: 147/2020
  3478. }
  3479. },
  3480. side: {
  3481. height: math.unit(5 + 3/12, "feet"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Side",
  3484. image: {
  3485. source: "./media/characters/zephiro/side.svg",
  3486. extra: 1929/1827,
  3487. bottom: 65/1994
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(5 + 3/12, "feet"),
  3492. weight: math.unit(60, "kg"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/zephiro/back.svg",
  3496. extra: 1926/1816,
  3497. bottom: 41/1967
  3498. }
  3499. },
  3500. hand: {
  3501. height: math.unit(0.68, "feet"),
  3502. name: "Hand",
  3503. image: {
  3504. source: "./media/characters/zephiro/hand.svg"
  3505. }
  3506. },
  3507. paw: {
  3508. height: math.unit(1, "feet"),
  3509. name: "Paw",
  3510. image: {
  3511. source: "./media/characters/zephiro/paw.svg"
  3512. }
  3513. },
  3514. beans: {
  3515. height: math.unit(0.93, "feet"),
  3516. name: "Beans",
  3517. image: {
  3518. source: "./media/characters/zephiro/beans.svg"
  3519. }
  3520. },
  3521. },
  3522. [
  3523. {
  3524. name: "Micro",
  3525. height: math.unit(3, "inches")
  3526. },
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(5 + 3 / 12, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(118, "feet")
  3535. },
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(5, "feet"),
  3543. weight: math.unit(90, "kg"),
  3544. preyCapacity: math.unit(14, "people"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/fory/front.svg",
  3548. extra: 2862 / 2674,
  3549. bottom: 180 / 3043.8
  3550. },
  3551. form: "weaselbun",
  3552. default: true,
  3553. extraAttributes: {
  3554. "pawSize": {
  3555. name: "Paw Size",
  3556. power: 2,
  3557. type: "area",
  3558. base: math.unit(0.1596, "m^2")
  3559. },
  3560. "pawLength": {
  3561. name: "Paw Length",
  3562. power: 1,
  3563. type: "length",
  3564. base: math.unit(0.7, "m")
  3565. }
  3566. }
  3567. },
  3568. back: {
  3569. height: math.unit(5, "feet"),
  3570. weight: math.unit(90, "kg"),
  3571. preyCapacity: math.unit(14, "people"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/fory/back.svg",
  3575. extra: 1790/1672,
  3576. bottom: 84/1874
  3577. },
  3578. form: "weaselbun",
  3579. extraAttributes: {
  3580. "pawSize": {
  3581. name: "Paw Size",
  3582. power: 2,
  3583. type: "area",
  3584. base: math.unit(0.1596, "m^2")
  3585. },
  3586. "pawLength": {
  3587. name: "Paw Length",
  3588. power: 1,
  3589. type: "length",
  3590. base: math.unit(0.7, "m")
  3591. }
  3592. }
  3593. },
  3594. paw: {
  3595. height: math.unit(2.14, "feet"),
  3596. name: "Paw",
  3597. image: {
  3598. source: "./media/characters/fory/paw.svg"
  3599. },
  3600. form: "weaselbun",
  3601. extraAttributes: {
  3602. "pawSize": {
  3603. name: "Paw Size",
  3604. power: 2,
  3605. type: "area",
  3606. base: math.unit(0.1596, "m^2")
  3607. },
  3608. "pawLength": {
  3609. name: "Paw Length",
  3610. power: 1,
  3611. type: "length",
  3612. base: math.unit(0.48, "m")
  3613. }
  3614. }
  3615. },
  3616. bunBack: {
  3617. height: math.unit(3, "feet"),
  3618. weight: math.unit(20, "kg"),
  3619. preyCapacity: math.unit(3, "people"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/fory/bun-back.svg",
  3623. extra: 1749/1564,
  3624. bottom: 246/1995
  3625. },
  3626. form: "bun",
  3627. default: true,
  3628. extraAttributes: {
  3629. "pawSize": {
  3630. name: "Paw Size",
  3631. power: 2,
  3632. type: "area",
  3633. base: math.unit(0.072, "m^2")
  3634. },
  3635. "pawLength": {
  3636. name: "Paw Length",
  3637. power: 1,
  3638. type: "length",
  3639. base: math.unit(0.45, "m")
  3640. }
  3641. }
  3642. },
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(5, "feet"),
  3648. form: "weaselbun"
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(50, "feet"),
  3653. default: true,
  3654. form: "weaselbun"
  3655. },
  3656. {
  3657. name: "Megamacro",
  3658. height: math.unit(10, "miles"),
  3659. form: "weaselbun"
  3660. },
  3661. {
  3662. name: "Gigamacro",
  3663. height: math.unit(5, "earths"),
  3664. form: "weaselbun"
  3665. },
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(3, "feet"),
  3669. default: true,
  3670. form: "bun"
  3671. },
  3672. {
  3673. name: "Fun-Size",
  3674. height: math.unit(12, "feet"),
  3675. form: "bun"
  3676. },
  3677. {
  3678. name: "Macro",
  3679. height: math.unit(100, "feet"),
  3680. form: "bun"
  3681. },
  3682. {
  3683. name: "Planetary",
  3684. height: math.unit(3, "earths"),
  3685. form: "bun"
  3686. },
  3687. ],
  3688. {
  3689. "weaselbun": {
  3690. name: "Weaselbun",
  3691. default: true
  3692. },
  3693. "bun": {
  3694. name: "Bun",
  3695. },
  3696. }
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(7, "feet"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/kurrikage/front.svg",
  3707. extra: 1845/1733,
  3708. bottom: 119/1964
  3709. }
  3710. },
  3711. back: {
  3712. height: math.unit(7, "feet"),
  3713. weight: math.unit(90, "kg"),
  3714. name: "Back",
  3715. image: {
  3716. source: "./media/characters/kurrikage/back.svg",
  3717. extra: 1790/1677,
  3718. bottom: 61/1851
  3719. }
  3720. },
  3721. dressed: {
  3722. height: math.unit(7, "feet"),
  3723. weight: math.unit(90, "kg"),
  3724. name: "Dressed",
  3725. image: {
  3726. source: "./media/characters/kurrikage/dressed.svg",
  3727. extra: 1845/1733,
  3728. bottom: 119/1964
  3729. }
  3730. },
  3731. foot: {
  3732. height: math.unit(1.5, "feet"),
  3733. name: "Foot",
  3734. image: {
  3735. source: "./media/characters/kurrikage/foot.svg"
  3736. }
  3737. },
  3738. staff: {
  3739. height: math.unit(6.7, "feet"),
  3740. name: "Staff",
  3741. image: {
  3742. source: "./media/characters/kurrikage/staff.svg"
  3743. }
  3744. },
  3745. peek: {
  3746. height: math.unit(1.05, "feet"),
  3747. name: "Peeking",
  3748. image: {
  3749. source: "./media/characters/kurrikage/peek.svg",
  3750. bottom: 0.08
  3751. }
  3752. },
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(12, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Big",
  3762. height: math.unit(20, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(500, "feet")
  3767. },
  3768. {
  3769. name: "Megamacro",
  3770. height: math.unit(20, "miles")
  3771. },
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/shingo/front.svg",
  3783. extra: 1900/1825,
  3784. bottom: 82/1982
  3785. }
  3786. },
  3787. side: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Side",
  3791. image: {
  3792. source: "./media/characters/shingo/side.svg",
  3793. extra: 1930/1865,
  3794. bottom: 16/1946
  3795. }
  3796. },
  3797. back: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Back",
  3801. image: {
  3802. source: "./media/characters/shingo/back.svg",
  3803. extra: 1922/1852,
  3804. bottom: 16/1938
  3805. }
  3806. },
  3807. frontDressed: {
  3808. height: math.unit(6, "feet"),
  3809. weight: math.unit(150, "lb"),
  3810. name: "Front (Dressed)",
  3811. image: {
  3812. source: "./media/characters/shingo/front-dressed.svg",
  3813. extra: 1900/1825,
  3814. bottom: 82/1982
  3815. }
  3816. },
  3817. paw: {
  3818. height: math.unit(1.29, "feet"),
  3819. name: "Paw",
  3820. image: {
  3821. source: "./media/characters/shingo/paw.svg"
  3822. }
  3823. },
  3824. hand: {
  3825. height: math.unit(1.07, "feet"),
  3826. name: "Hand",
  3827. image: {
  3828. source: "./media/characters/shingo/hand.svg"
  3829. }
  3830. },
  3831. frontAlt: {
  3832. height: math.unit(6, "feet"),
  3833. weight: math.unit(75, "kg"),
  3834. name: "Front (Alt)",
  3835. image: {
  3836. source: "./media/characters/shingo/front-alt.svg",
  3837. extra: 3511 / 3338,
  3838. bottom: 0.005
  3839. }
  3840. },
  3841. frontAlt2: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Front (Alt 2)",
  3845. image: {
  3846. source: "./media/characters/shingo/front-alt-2.svg",
  3847. extra: 706/681,
  3848. bottom: 11/717
  3849. }
  3850. },
  3851. pawAlt: {
  3852. height: math.unit(1, "feet"),
  3853. name: "Paw (Alt)",
  3854. image: {
  3855. source: "./media/characters/shingo/paw-alt.svg"
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Micro",
  3862. height: math.unit(4, "inches")
  3863. },
  3864. {
  3865. name: "Normal",
  3866. height: math.unit(6, "feet"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(108, "feet")
  3872. },
  3873. {
  3874. name: "Macro+",
  3875. height: math.unit(1500, "feet")
  3876. },
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3881. {
  3882. side: {
  3883. height: math.unit(6, "feet"),
  3884. weight: math.unit(75, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/aigey/side.svg"
  3888. }
  3889. },
  3890. },
  3891. [
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(200, "feet"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(100, "miles")
  3900. },
  3901. ]
  3902. )
  3903. )
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3906. {
  3907. front: {
  3908. height: math.unit(13, "feet"),
  3909. weight: math.unit(1036.80, "kg"),
  3910. name: "Front",
  3911. image: {
  3912. source: "./media/characters/natasha/front.svg",
  3913. extra: 1301/1210,
  3914. bottom: 39/1340
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(13, "feet"),
  3919. weight: math.unit(1036.80, "kg"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/natasha/back.svg",
  3923. extra: 1342/1252,
  3924. bottom: 20/1362
  3925. }
  3926. },
  3927. head: {
  3928. height: math.unit(3.48, "feet"),
  3929. name: "Head",
  3930. image: {
  3931. source: "./media/characters/natasha/head.svg"
  3932. }
  3933. },
  3934. jaws: {
  3935. height: math.unit(3.52, "feet"),
  3936. name: "Jaws",
  3937. image: {
  3938. source: "./media/characters/natasha/jaws.svg"
  3939. }
  3940. },
  3941. paws: {
  3942. height: math.unit(2.7, "feet"),
  3943. name: "Paws",
  3944. image: {
  3945. source: "./media/characters/natasha/paws.svg"
  3946. }
  3947. },
  3948. collar: {
  3949. height: math.unit(0.89, "feet"),
  3950. name: "Collar",
  3951. image: {
  3952. source: "./media/characters/natasha/collar.svg"
  3953. }
  3954. },
  3955. gauge: {
  3956. height: math.unit(0.36, "feet"),
  3957. name: "Gauge",
  3958. image: {
  3959. source: "./media/characters/natasha/gauge.svg"
  3960. }
  3961. },
  3962. },
  3963. [
  3964. {
  3965. name: "Shortstack",
  3966. height: math.unit(3, "feet")
  3967. },
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(13, "feet"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Macro",
  3975. height: math.unit(100, "feet")
  3976. },
  3977. {
  3978. name: "Macro+",
  3979. height: math.unit(260, "feet")
  3980. },
  3981. {
  3982. name: "Macro++",
  3983. height: math.unit(1, "mile")
  3984. },
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3989. {
  3990. front: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(75, "kg"),
  3993. name: "Front",
  3994. image: {
  3995. source: "./media/characters/malik/front.svg",
  3996. extra: 1750/1561,
  3997. bottom: 80/1830
  3998. },
  3999. extraAttributes: {
  4000. "toeSize": {
  4001. name: "Toe Size",
  4002. power: 2,
  4003. type: "area",
  4004. base: math.unit(0.0159, "m^2")
  4005. },
  4006. "pawSize": {
  4007. name: "Paw Size",
  4008. power: 2,
  4009. type: "area",
  4010. base: math.unit(0.09834, "m^2")
  4011. },
  4012. }
  4013. },
  4014. side: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(75, "kg"),
  4017. name: "Side",
  4018. image: {
  4019. source: "./media/characters/malik/side.svg",
  4020. extra: 1802/1685,
  4021. bottom: 42/1844
  4022. },
  4023. extraAttributes: {
  4024. "toeSize": {
  4025. name: "Toe Size",
  4026. power: 2,
  4027. type: "area",
  4028. base: math.unit(0.0159, "m^2")
  4029. },
  4030. "pawSize": {
  4031. name: "Paw Size",
  4032. power: 2,
  4033. type: "area",
  4034. base: math.unit(0.09834, "m^2")
  4035. },
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(75, "kg"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/malik/back.svg",
  4044. extra: 1803/1607,
  4045. bottom: 33/1836
  4046. },
  4047. extraAttributes: {
  4048. "toeSize": {
  4049. name: "Toe Size",
  4050. power: 2,
  4051. type: "area",
  4052. base: math.unit(0.0159, "m^2")
  4053. },
  4054. "pawSize": {
  4055. name: "Paw Size",
  4056. power: 2,
  4057. type: "area",
  4058. base: math.unit(0.09834, "m^2")
  4059. },
  4060. }
  4061. },
  4062. },
  4063. [
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(156, "feet"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Macro+",
  4071. height: math.unit(1188, "feet")
  4072. },
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(75, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/sefer/front.svg",
  4084. extra: 848 / 659,
  4085. bottom: 28.3 / 876.442
  4086. }
  4087. },
  4088. back: {
  4089. height: math.unit(6, "feet"),
  4090. weight: math.unit(75, "kg"),
  4091. name: "Back",
  4092. image: {
  4093. source: "./media/characters/sefer/back.svg",
  4094. extra: 864 / 695,
  4095. bottom: 10 / 871
  4096. }
  4097. },
  4098. frontDressed: {
  4099. height: math.unit(6, "feet"),
  4100. weight: math.unit(75, "kg"),
  4101. name: "Dressed",
  4102. image: {
  4103. source: "./media/characters/sefer/dressed.svg",
  4104. extra: 839 / 653,
  4105. bottom: 37.6 / 878
  4106. }
  4107. },
  4108. },
  4109. [
  4110. {
  4111. name: "Normal",
  4112. height: math.unit(6, "feet"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Big",
  4117. height: math.unit(8, "meters")
  4118. },
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4123. {
  4124. body: {
  4125. height: math.unit(2.2428, "meter"),
  4126. weight: math.unit(124.738, "kg"),
  4127. name: "Body",
  4128. image: {
  4129. extra: 1225 / 1050,
  4130. source: "./media/characters/north/front.svg"
  4131. }
  4132. }
  4133. },
  4134. [
  4135. {
  4136. name: "Micro",
  4137. height: math.unit(4, "inches")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(63, "meters")
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(101, "miles"),
  4146. default: true
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4152. {
  4153. angled: {
  4154. height: math.unit(4, "meter"),
  4155. weight: math.unit(150, "kg"),
  4156. name: "Angled",
  4157. image: {
  4158. source: "./media/characters/talan/angled-sfw.svg",
  4159. bottom: 29 / 3734
  4160. }
  4161. },
  4162. angledNsfw: {
  4163. height: math.unit(4, "meter"),
  4164. weight: math.unit(150, "kg"),
  4165. name: "Angled (NSFW)",
  4166. image: {
  4167. source: "./media/characters/talan/angled-nsfw.svg",
  4168. bottom: 29 / 3734
  4169. }
  4170. },
  4171. frontNsfw: {
  4172. height: math.unit(4, "meter"),
  4173. weight: math.unit(150, "kg"),
  4174. name: "Front (NSFW)",
  4175. image: {
  4176. source: "./media/characters/talan/front-nsfw.svg",
  4177. bottom: 29 / 3734
  4178. }
  4179. },
  4180. sideNsfw: {
  4181. height: math.unit(4, "meter"),
  4182. weight: math.unit(150, "kg"),
  4183. name: "Side (NSFW)",
  4184. image: {
  4185. source: "./media/characters/talan/side-nsfw.svg",
  4186. bottom: 29 / 3734
  4187. }
  4188. },
  4189. back: {
  4190. height: math.unit(4, "meter"),
  4191. weight: math.unit(150, "kg"),
  4192. name: "Back",
  4193. image: {
  4194. source: "./media/characters/talan/back.svg"
  4195. }
  4196. },
  4197. dickBottom: {
  4198. height: math.unit(0.621, "meter"),
  4199. name: "Dick (Bottom)",
  4200. image: {
  4201. source: "./media/characters/talan/dick-bottom.svg"
  4202. }
  4203. },
  4204. dickTop: {
  4205. height: math.unit(0.621, "meter"),
  4206. name: "Dick (Top)",
  4207. image: {
  4208. source: "./media/characters/talan/dick-top.svg"
  4209. }
  4210. },
  4211. dickSide: {
  4212. height: math.unit(0.305, "meter"),
  4213. name: "Dick (Side)",
  4214. image: {
  4215. source: "./media/characters/talan/dick-side.svg"
  4216. }
  4217. },
  4218. dickFront: {
  4219. height: math.unit(0.305, "meter"),
  4220. name: "Dick (Front)",
  4221. image: {
  4222. source: "./media/characters/talan/dick-front.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(4, "meters")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(100, "meters")
  4234. },
  4235. {
  4236. name: "Megamacro",
  4237. height: math.unit(2, "miles"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Gigamacro",
  4242. height: math.unit(5000, "miles")
  4243. },
  4244. {
  4245. name: "Teramacro",
  4246. height: math.unit(100, "parsecs")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(90, "kg"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/gael'rathus/front.svg"
  4259. }
  4260. },
  4261. frontAlt: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(90, "kg"),
  4264. name: "Front (alt)",
  4265. image: {
  4266. source: "./media/characters/gael'rathus/front-alt.svg"
  4267. }
  4268. },
  4269. frontAlt2: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(90, "kg"),
  4272. name: "Front (alt 2)",
  4273. image: {
  4274. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(9, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Large",
  4286. height: math.unit(25, "feet")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(0.25, "miles")
  4291. },
  4292. {
  4293. name: "Megamacro",
  4294. height: math.unit(10, "miles")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(2, "meter"),
  4303. weight: math.unit(140, "kg"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/sosha/side.svg",
  4307. extra: 1170/1006,
  4308. bottom: 94/1264
  4309. }
  4310. },
  4311. maw: {
  4312. height: math.unit(2.87, "feet"),
  4313. name: "Maw",
  4314. image: {
  4315. source: "./media/characters/sosha/maw.svg",
  4316. extra: 966/865,
  4317. bottom: 0/966
  4318. }
  4319. },
  4320. cooch: {
  4321. height: math.unit(5.6, "feet"),
  4322. name: "Cooch",
  4323. image: {
  4324. source: "./media/characters/sosha/cooch.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(12, "feet"),
  4332. default: true
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4338. {
  4339. side: {
  4340. height: math.unit(5 + 5 / 12, "feet"),
  4341. weight: math.unit(170, "kg"),
  4342. name: "Side",
  4343. image: {
  4344. source: "./media/characters/runnola/side.svg",
  4345. extra: 741 / 448,
  4346. bottom: 0.05
  4347. }
  4348. },
  4349. },
  4350. [
  4351. {
  4352. name: "Small",
  4353. height: math.unit(3, "feet")
  4354. },
  4355. {
  4356. name: "Normal",
  4357. height: math.unit(5 + 5 / 12, "feet"),
  4358. default: true
  4359. },
  4360. {
  4361. name: "Big",
  4362. height: math.unit(10, "feet")
  4363. },
  4364. ]
  4365. ))
  4366. characterMakers.push(() => makeCharacter(
  4367. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4368. {
  4369. front: {
  4370. height: math.unit(2, "meter"),
  4371. weight: math.unit(50, "kg"),
  4372. name: "Front",
  4373. image: {
  4374. source: "./media/characters/kurribird/front.svg",
  4375. bottom: 0.015
  4376. }
  4377. },
  4378. frontAlt: {
  4379. height: math.unit(1.5, "meter"),
  4380. weight: math.unit(50, "kg"),
  4381. name: "Front (Alt)",
  4382. image: {
  4383. source: "./media/characters/kurribird/front-alt.svg",
  4384. extra: 1.45
  4385. }
  4386. },
  4387. },
  4388. [
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(7, "feet")
  4392. },
  4393. {
  4394. name: "Big",
  4395. height: math.unit(12, "feet"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Macro",
  4400. height: math.unit(1500, "feet")
  4401. },
  4402. {
  4403. name: "Megamacro",
  4404. height: math.unit(2, "miles")
  4405. }
  4406. ]
  4407. ))
  4408. characterMakers.push(() => makeCharacter(
  4409. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4410. {
  4411. front: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(80, "kg"),
  4414. name: "Front",
  4415. image: {
  4416. source: "./media/characters/elbial/front.svg",
  4417. extra: 1643 / 1556,
  4418. bottom: 60.2 / 1696
  4419. }
  4420. },
  4421. side: {
  4422. height: math.unit(2, "meter"),
  4423. weight: math.unit(80, "kg"),
  4424. name: "Side",
  4425. image: {
  4426. source: "./media/characters/elbial/side.svg",
  4427. extra: 1601/1528,
  4428. bottom: 97/1698
  4429. }
  4430. },
  4431. back: {
  4432. height: math.unit(2, "meter"),
  4433. weight: math.unit(80, "kg"),
  4434. name: "Back",
  4435. image: {
  4436. source: "./media/characters/elbial/back.svg",
  4437. extra: 1653/1569,
  4438. bottom: 20/1673
  4439. }
  4440. },
  4441. frontDressed: {
  4442. height: math.unit(2, "meter"),
  4443. weight: math.unit(80, "kg"),
  4444. name: "Front (Dressed)",
  4445. image: {
  4446. source: "./media/characters/elbial/front-dressed.svg",
  4447. extra: 1638/1569,
  4448. bottom: 70/1708
  4449. }
  4450. },
  4451. genitals: {
  4452. height: math.unit(2 / 3.367, "meter"),
  4453. name: "Genitals",
  4454. image: {
  4455. source: "./media/characters/elbial/genitals.svg"
  4456. }
  4457. },
  4458. },
  4459. [
  4460. {
  4461. name: "Large",
  4462. height: math.unit(100, "feet")
  4463. },
  4464. {
  4465. name: "Macro",
  4466. height: math.unit(500, "feet"),
  4467. default: true
  4468. },
  4469. {
  4470. name: "Megamacro",
  4471. height: math.unit(10, "miles")
  4472. },
  4473. {
  4474. name: "Gigamacro",
  4475. height: math.unit(25000, "miles")
  4476. },
  4477. {
  4478. name: "Full-Size",
  4479. height: math.unit(8000000, "gigaparsecs")
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(2, "meter"),
  4488. weight: math.unit(60, "kg"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/noah/front.svg",
  4492. extra: 1383/1313,
  4493. bottom: 104/1487
  4494. }
  4495. },
  4496. hand: {
  4497. height: math.unit(0.6, "feet"),
  4498. name: "Hand",
  4499. image: {
  4500. source: "./media/characters/noah/hand.svg"
  4501. }
  4502. },
  4503. talons: {
  4504. height: math.unit(1.385, "feet"),
  4505. name: "Talons",
  4506. image: {
  4507. source: "./media/characters/noah/talons.svg"
  4508. }
  4509. },
  4510. beak: {
  4511. height: math.unit(0.43, "feet"),
  4512. name: "Beak",
  4513. image: {
  4514. source: "./media/characters/noah/beak.svg"
  4515. }
  4516. },
  4517. collar: {
  4518. height: math.unit(0.88, "feet"),
  4519. name: "Collar",
  4520. image: {
  4521. source: "./media/characters/noah/collar.svg"
  4522. }
  4523. },
  4524. eyeNarrow: {
  4525. height: math.unit(0.18, "feet"),
  4526. name: "Eye (Narrow)",
  4527. image: {
  4528. source: "./media/characters/noah/eye-narrow.svg"
  4529. }
  4530. },
  4531. eyeNormal: {
  4532. height: math.unit(0.18, "feet"),
  4533. name: "Eye (Normal)",
  4534. image: {
  4535. source: "./media/characters/noah/eye-normal.svg"
  4536. }
  4537. },
  4538. eyeWide: {
  4539. height: math.unit(0.18, "feet"),
  4540. name: "Eye (Wide)",
  4541. image: {
  4542. source: "./media/characters/noah/eye-wide.svg"
  4543. }
  4544. },
  4545. ear: {
  4546. height: math.unit(0.64, "feet"),
  4547. name: "Ear",
  4548. image: {
  4549. source: "./media/characters/noah/ear.svg"
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Large",
  4556. height: math.unit(50, "feet")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(750, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(50, "miles")
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(100000, "miles")
  4570. },
  4571. {
  4572. name: "Full-Size",
  4573. height: math.unit(3000000000, "miles")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(2, "meter"),
  4582. weight: math.unit(80, "kg"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/natalya/front.svg"
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(80, "kg"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/natalya/back.svg"
  4594. }
  4595. }
  4596. },
  4597. [
  4598. {
  4599. name: "Normal",
  4600. height: math.unit(150, "feet"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(5, "miles")
  4606. },
  4607. {
  4608. name: "Full-Size",
  4609. height: math.unit(600, "kiloparsecs")
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(2, "meter"),
  4618. weight: math.unit(50, "kg"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/erestrebah/front.svg",
  4622. extra: 1262/1162,
  4623. bottom: 96/1358
  4624. }
  4625. },
  4626. back: {
  4627. height: math.unit(2, "meter"),
  4628. weight: math.unit(50, "kg"),
  4629. name: "Back",
  4630. image: {
  4631. source: "./media/characters/erestrebah/back.svg",
  4632. extra: 1257/1139,
  4633. bottom: 13/1270
  4634. }
  4635. },
  4636. wing: {
  4637. height: math.unit(2, "meter"),
  4638. weight: math.unit(50, "kg"),
  4639. name: "Wing",
  4640. image: {
  4641. source: "./media/characters/erestrebah/wing.svg",
  4642. extra: 1262/1162,
  4643. bottom: 96/1358
  4644. }
  4645. },
  4646. mouth: {
  4647. height: math.unit(0.39, "feet"),
  4648. name: "Mouth",
  4649. image: {
  4650. source: "./media/characters/erestrebah/mouth.svg"
  4651. }
  4652. }
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(10, "feet")
  4658. },
  4659. {
  4660. name: "Large",
  4661. height: math.unit(50, "feet"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "Macro",
  4666. height: math.unit(300, "feet")
  4667. },
  4668. {
  4669. name: "Macro+",
  4670. height: math.unit(750, "feet")
  4671. },
  4672. {
  4673. name: "Megamacro",
  4674. height: math.unit(3, "miles")
  4675. }
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meter"),
  4683. weight: math.unit(80, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/jennifer/front.svg",
  4687. bottom: 0.11,
  4688. extra: 1.16
  4689. }
  4690. },
  4691. frontAlt: {
  4692. height: math.unit(2, "meter"),
  4693. weight: math.unit(80, "kg"),
  4694. name: "Front (Alt)",
  4695. image: {
  4696. source: "./media/characters/jennifer/front-alt.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Canon Height",
  4703. height: math.unit(120, "feet"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "Macro+",
  4708. height: math.unit(300, "feet")
  4709. },
  4710. {
  4711. name: "Megamacro",
  4712. height: math.unit(20000, "feet")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(2, "meter"),
  4721. weight: math.unit(50, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/kalista/front.svg",
  4725. extra: 1314/1145,
  4726. bottom: 101/1415
  4727. }
  4728. },
  4729. back: {
  4730. height: math.unit(2, "meter"),
  4731. weight: math.unit(50, "kg"),
  4732. name: "Back",
  4733. image: {
  4734. source: "./media/characters/kalista/back.svg",
  4735. extra: 1366 / 1156,
  4736. bottom: 33.9 / 1362.78
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Uncomfortably Small",
  4743. height: math.unit(10, "feet")
  4744. },
  4745. {
  4746. name: "Small",
  4747. height: math.unit(30, "feet")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(100, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(2000, "feet")
  4757. },
  4758. {
  4759. name: "True Form",
  4760. height: math.unit(8924, "miles")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(120, "kg"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/ggv/front.svg"
  4773. }
  4774. },
  4775. side: {
  4776. height: math.unit(2, "meter"),
  4777. weight: math.unit(120, "kg"),
  4778. name: "Side",
  4779. image: {
  4780. source: "./media/characters/ggv/side.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Extremely Puny",
  4787. height: math.unit(9 + 5 / 12, "feet")
  4788. },
  4789. {
  4790. name: "Horribly Small",
  4791. height: math.unit(47.7, "miles"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Reasonably Sized",
  4796. height: math.unit(25000, "parsecs")
  4797. },
  4798. {
  4799. name: "Slightly Uncompressed",
  4800. height: math.unit(7.77e31, "parsecs")
  4801. },
  4802. {
  4803. name: "Omniversal",
  4804. height: math.unit(1e300, "meters")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(2, "meter"),
  4813. weight: math.unit(75, "lb"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/napalm/front.svg"
  4817. }
  4818. },
  4819. back: {
  4820. height: math.unit(2, "meter"),
  4821. weight: math.unit(75, "lb"),
  4822. name: "Back",
  4823. image: {
  4824. source: "./media/characters/napalm/back.svg"
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Standard",
  4831. height: math.unit(55, "feet"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(7 + 5 / 6, "feet"),
  4841. weight: math.unit(325, "lb"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/asana/front.svg",
  4845. extra: 1133 / 1060,
  4846. bottom: 15.2 / 1148.6
  4847. }
  4848. },
  4849. back: {
  4850. height: math.unit(7 + 5 / 6, "feet"),
  4851. weight: math.unit(325, "lb"),
  4852. name: "Back",
  4853. image: {
  4854. source: "./media/characters/asana/back.svg",
  4855. extra: 1114 / 1043,
  4856. bottom: 5 / 1120
  4857. }
  4858. },
  4859. dressedDark: {
  4860. height: math.unit(7 + 5 / 6, "feet"),
  4861. weight: math.unit(325, "lb"),
  4862. name: "Dressed (Dark)",
  4863. image: {
  4864. source: "./media/characters/asana/dressed-dark.svg",
  4865. extra: 1133 / 1060,
  4866. bottom: 15.2 / 1148.6
  4867. }
  4868. },
  4869. dressedLight: {
  4870. height: math.unit(7 + 5 / 6, "feet"),
  4871. weight: math.unit(325, "lb"),
  4872. name: "Dressed (Light)",
  4873. image: {
  4874. source: "./media/characters/asana/dressed-light.svg",
  4875. extra: 1133 / 1060,
  4876. bottom: 15.2 / 1148.6
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Standard",
  4883. height: math.unit(7 + 5 / 6, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Large",
  4888. height: math.unit(10, "meters")
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(2500, "meters")
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(5e6, "meters")
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(5e12, "lightyears")
  4901. },
  4902. {
  4903. name: "Max Size",
  4904. height: math.unit(1e31, "lightyears")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(2, "meter"),
  4913. weight: math.unit(60, "kg"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/ebony/front.svg",
  4917. bottom: 0.03,
  4918. extra: 1045 / 810 + 0.03
  4919. }
  4920. },
  4921. side: {
  4922. height: math.unit(2, "meter"),
  4923. weight: math.unit(60, "kg"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/ebony/side.svg",
  4927. bottom: 0.03,
  4928. extra: 1045 / 810 + 0.03
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(2, "meter"),
  4933. weight: math.unit(60, "kg"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/ebony/back.svg",
  4937. bottom: 0.01,
  4938. extra: 1045 / 810 + 0.01
  4939. }
  4940. },
  4941. },
  4942. [
  4943. // TODO check why I did this lol
  4944. {
  4945. name: "Standard",
  4946. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(200, "feet")
  4952. },
  4953. {
  4954. name: "Gigamacro",
  4955. height: math.unit(13000, "km")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(175, "lb"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/mountain/front.svg",
  4968. extra: 972 / 955,
  4969. bottom: 64 / 1036.6
  4970. }
  4971. },
  4972. back: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(175, "lb"),
  4975. name: "Back",
  4976. image: {
  4977. source: "./media/characters/mountain/back.svg",
  4978. extra: 970 / 950,
  4979. bottom: 28.25 / 999
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Large",
  4986. height: math.unit(20, "meters")
  4987. },
  4988. {
  4989. name: "Macro",
  4990. height: math.unit(300, "meters")
  4991. },
  4992. {
  4993. name: "Gigamacro",
  4994. height: math.unit(10000, "km"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Examacro",
  4999. height: math.unit(10e9, "lightyears")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(500, "lb"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/rick/front.svg"
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(8, "feet"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(5, "km")
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(8, "feet"),
  5032. weight: math.unit(120, "lb"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/ona/front.svg"
  5036. }
  5037. },
  5038. frontAlt: {
  5039. height: math.unit(8, "feet"),
  5040. weight: math.unit(120, "lb"),
  5041. name: "Front (Alt)",
  5042. image: {
  5043. source: "./media/characters/ona/front-alt.svg"
  5044. }
  5045. },
  5046. back: {
  5047. height: math.unit(8, "feet"),
  5048. weight: math.unit(120, "lb"),
  5049. name: "Back",
  5050. image: {
  5051. source: "./media/characters/ona/back.svg"
  5052. }
  5053. },
  5054. foot: {
  5055. height: math.unit(1.1, "feet"),
  5056. name: "Foot",
  5057. image: {
  5058. source: "./media/characters/ona/foot.svg"
  5059. }
  5060. }
  5061. },
  5062. [
  5063. {
  5064. name: "Megamacro",
  5065. height: math.unit(70, "km"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Gigamacro",
  5070. height: math.unit(681818, "miles")
  5071. },
  5072. {
  5073. name: "Examacro",
  5074. height: math.unit(3800000, "lightyears")
  5075. },
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5080. {
  5081. front: {
  5082. height: math.unit(12, "feet"),
  5083. weight: math.unit(3000, "lb"),
  5084. name: "Front",
  5085. image: {
  5086. source: "./media/characters/mech/front.svg",
  5087. extra: 2900 / 2770,
  5088. bottom: 110 / 3010
  5089. }
  5090. },
  5091. back: {
  5092. height: math.unit(12, "feet"),
  5093. weight: math.unit(3000, "lb"),
  5094. name: "Back",
  5095. image: {
  5096. source: "./media/characters/mech/back.svg",
  5097. extra: 3011 / 2890,
  5098. bottom: 94 / 3105
  5099. }
  5100. },
  5101. maw: {
  5102. height: math.unit(3.07, "feet"),
  5103. name: "Maw",
  5104. image: {
  5105. source: "./media/characters/mech/maw.svg"
  5106. }
  5107. },
  5108. head: {
  5109. height: math.unit(3.07, "feet"),
  5110. name: "Head",
  5111. image: {
  5112. source: "./media/characters/mech/head.svg"
  5113. }
  5114. },
  5115. dick: {
  5116. height: math.unit(1.43, "feet"),
  5117. name: "Dick",
  5118. image: {
  5119. source: "./media/characters/mech/dick.svg"
  5120. }
  5121. },
  5122. },
  5123. [
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(12, "feet")
  5127. },
  5128. {
  5129. name: "Macro",
  5130. height: math.unit(300, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro+",
  5135. height: math.unit(1500, "feet")
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(1.3, "meter"),
  5144. weight: math.unit(30, "kg"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/gregory/front.svg",
  5148. }
  5149. }
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(1.3, "meter"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(20, "meter")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(2.8, "meter"),
  5168. weight: math.unit(200, "kg"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/elory/front.svg",
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(2.8, "meter"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro",
  5183. height: math.unit(38, "meter")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(470, "feet"),
  5192. weight: math.unit(924, "tons"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/angelpatamon/front.svg",
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(470, "feet"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Deity Size I",
  5207. height: math.unit(28651.2, "km")
  5208. },
  5209. {
  5210. name: "Deity Size II",
  5211. height: math.unit(171907.2, "km")
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5217. {
  5218. side: {
  5219. height: math.unit(7.2, "meter"),
  5220. weight: math.unit(8.2, "tons"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/cryae/side.svg",
  5224. extra: 3500 / 1500
  5225. }
  5226. }
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(7.2, "meter"),
  5232. default: true
  5233. }
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5238. {
  5239. front: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(175, "lb"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/xera/front.svg",
  5245. extra: 2377 / 1972,
  5246. bottom: 75.5 / 2452
  5247. }
  5248. },
  5249. side: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(175, "lb"),
  5252. name: "Side",
  5253. image: {
  5254. source: "./media/characters/xera/side.svg",
  5255. extra: 2345 / 2019,
  5256. bottom: 39.7 / 2384
  5257. }
  5258. },
  5259. back: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(175, "lb"),
  5262. name: "Back",
  5263. image: {
  5264. source: "./media/characters/xera/back.svg",
  5265. extra: 2095 / 1984,
  5266. bottom: 67 / 2166
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Small",
  5273. height: math.unit(10, "feet")
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(500, "meters"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Macro+",
  5282. height: math.unit(10, "km")
  5283. },
  5284. {
  5285. name: "Gigamacro",
  5286. height: math.unit(25000, "km")
  5287. },
  5288. {
  5289. name: "Teramacro",
  5290. height: math.unit(3e6, "km")
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(175, "lb"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/nebula/front.svg",
  5303. extra: 2566 / 2362,
  5304. bottom: 81 / 2644
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Small",
  5311. height: math.unit(4.5, "meters")
  5312. },
  5313. {
  5314. name: "Macro",
  5315. height: math.unit(1500, "meters"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Megamacro",
  5320. height: math.unit(150, "km")
  5321. },
  5322. {
  5323. name: "Gigamacro",
  5324. height: math.unit(27000, "km")
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(225, "lb"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/abysgar/front.svg",
  5337. extra: 1739/1614,
  5338. bottom: 71/1810
  5339. }
  5340. },
  5341. frontNsfw: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(225, "lb"),
  5344. name: "Front (NSFW)",
  5345. image: {
  5346. source: "./media/characters/abysgar/front-nsfw.svg",
  5347. extra: 1739/1614,
  5348. bottom: 71/1810
  5349. }
  5350. },
  5351. back: {
  5352. height: math.unit(4.6, "feet"),
  5353. weight: math.unit(225, "lb"),
  5354. name: "Back",
  5355. image: {
  5356. source: "./media/characters/abysgar/back.svg",
  5357. extra: 1384/1327,
  5358. bottom: 0/1384
  5359. }
  5360. },
  5361. head: {
  5362. height: math.unit(1.25, "feet"),
  5363. name: "Head",
  5364. image: {
  5365. source: "./media/characters/abysgar/head.svg",
  5366. extra: 669/569,
  5367. bottom: 0/669
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Small",
  5374. height: math.unit(4.5, "meters")
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(1250, "meters"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Megamacro",
  5383. height: math.unit(125, "km")
  5384. },
  5385. {
  5386. name: "Gigamacro",
  5387. height: math.unit(26000, "km")
  5388. }
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(180, "lb"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/yakuz/front.svg"
  5400. }
  5401. }
  5402. },
  5403. [
  5404. {
  5405. name: "Small",
  5406. height: math.unit(5, "meters")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(1500, "meters"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Megamacro",
  5415. height: math.unit(200, "km")
  5416. },
  5417. {
  5418. name: "Gigamacro",
  5419. height: math.unit(100000, "km")
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(175, "lb"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/mirova/front.svg",
  5432. extra: 3334 / 3071,
  5433. bottom: 42 / 3375.6
  5434. }
  5435. }
  5436. },
  5437. [
  5438. {
  5439. name: "Small",
  5440. height: math.unit(5, "meters")
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(900, "meters"),
  5445. default: true
  5446. },
  5447. {
  5448. name: "Megamacro",
  5449. height: math.unit(135, "km")
  5450. },
  5451. {
  5452. name: "Gigamacro",
  5453. height: math.unit(20000, "km")
  5454. }
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5459. {
  5460. side: {
  5461. height: math.unit(28.35, "feet"),
  5462. weight: math.unit(99.75, "tons"),
  5463. name: "Side",
  5464. image: {
  5465. source: "./media/characters/asana-mech/side.svg",
  5466. extra: 923 / 699,
  5467. bottom: 50 / 975
  5468. }
  5469. },
  5470. chaingun: {
  5471. height: math.unit(7, "feet"),
  5472. weight: math.unit(2400, "lb"),
  5473. name: "Chaingun",
  5474. image: {
  5475. source: "./media/characters/asana-mech/chaingun.svg"
  5476. }
  5477. },
  5478. laser: {
  5479. height: math.unit(7.12, "feet"),
  5480. weight: math.unit(2000, "lb"),
  5481. name: "Laser",
  5482. image: {
  5483. source: "./media/characters/asana-mech/laser.svg"
  5484. }
  5485. },
  5486. },
  5487. [
  5488. {
  5489. name: "Normal",
  5490. height: math.unit(28.35, "feet"),
  5491. default: true
  5492. },
  5493. {
  5494. name: "Macro",
  5495. height: math.unit(2500, "feet")
  5496. },
  5497. {
  5498. name: "Megamacro",
  5499. height: math.unit(25, "miles")
  5500. },
  5501. {
  5502. name: "Examacro",
  5503. height: math.unit(6e8, "lightyears")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(5, "meters"),
  5512. weight: math.unit(1000, "kg"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/asche/front.svg",
  5516. extra: 1258 / 1190,
  5517. bottom: 47 / 1305
  5518. }
  5519. },
  5520. frontUnderwear: {
  5521. height: math.unit(5, "meters"),
  5522. weight: math.unit(1000, "kg"),
  5523. name: "Front (Underwear)",
  5524. image: {
  5525. source: "./media/characters/asche/front-underwear.svg",
  5526. extra: 1258 / 1190,
  5527. bottom: 47 / 1305
  5528. }
  5529. },
  5530. frontDressed: {
  5531. height: math.unit(5, "meters"),
  5532. weight: math.unit(1000, "kg"),
  5533. name: "Front (Dressed)",
  5534. image: {
  5535. source: "./media/characters/asche/front-dressed.svg",
  5536. extra: 1258 / 1190,
  5537. bottom: 47 / 1305
  5538. }
  5539. },
  5540. frontArmor: {
  5541. height: math.unit(5, "meters"),
  5542. weight: math.unit(1000, "kg"),
  5543. name: "Front (Armored)",
  5544. image: {
  5545. source: "./media/characters/asche/front-armored.svg",
  5546. extra: 1374 / 1308,
  5547. bottom: 23 / 1397
  5548. }
  5549. },
  5550. mp724: {
  5551. height: math.unit(0.96, "meters"),
  5552. weight: math.unit(38, "kg"),
  5553. name: "H&K MP724",
  5554. image: {
  5555. source: "./media/characters/asche/h&k-mp724.svg"
  5556. }
  5557. },
  5558. side: {
  5559. height: math.unit(5, "meters"),
  5560. weight: math.unit(1000, "kg"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/asche/side.svg",
  5564. extra: 1717 / 1609,
  5565. bottom: 0.005
  5566. }
  5567. },
  5568. back: {
  5569. height: math.unit(5, "meters"),
  5570. weight: math.unit(1000, "kg"),
  5571. name: "Back",
  5572. image: {
  5573. source: "./media/characters/asche/back.svg",
  5574. extra: 1570 / 1501
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "DEFCON 5",
  5581. height: math.unit(5, "meters")
  5582. },
  5583. {
  5584. name: "DEFCON 4",
  5585. height: math.unit(500, "meters"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "DEFCON 3",
  5590. height: math.unit(5, "km")
  5591. },
  5592. {
  5593. name: "DEFCON 2",
  5594. height: math.unit(500, "km")
  5595. },
  5596. {
  5597. name: "DEFCON 1",
  5598. height: math.unit(500000, "km")
  5599. },
  5600. {
  5601. name: "DEFCON 0",
  5602. height: math.unit(3, "gigaparsecs")
  5603. },
  5604. ]
  5605. ))
  5606. characterMakers.push(() => makeCharacter(
  5607. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5608. {
  5609. front: {
  5610. height: math.unit(7, "feet"),
  5611. weight: math.unit(92.7, "kg"),
  5612. name: "Front",
  5613. image: {
  5614. source: "./media/characters/gale/front.svg",
  5615. extra: 977/919,
  5616. bottom: 105/1082
  5617. }
  5618. },
  5619. side: {
  5620. height: math.unit(6.7, "feet"),
  5621. weight: math.unit(92.7, "kg"),
  5622. name: "Side",
  5623. image: {
  5624. source: "./media/characters/gale/side.svg",
  5625. extra: 978/922,
  5626. bottom: 140/1118
  5627. }
  5628. },
  5629. back: {
  5630. height: math.unit(7, "feet"),
  5631. weight: math.unit(92.7, "kg"),
  5632. name: "Back",
  5633. image: {
  5634. source: "./media/characters/gale/back.svg",
  5635. extra: 966/920,
  5636. bottom: 61/1027
  5637. }
  5638. },
  5639. maw: {
  5640. height: math.unit(2.23, "feet"),
  5641. name: "Maw",
  5642. image: {
  5643. source: "./media/characters/gale/maw.svg"
  5644. }
  5645. },
  5646. foot: {
  5647. height: math.unit(2.1, "feet"),
  5648. name: "Foot",
  5649. image: {
  5650. source: "./media/characters/gale/foot.svg"
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(7, "feet")
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(150, "feet"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Macro+",
  5666. height: math.unit(300, "feet")
  5667. },
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(5 + 10/12, "feet"),
  5675. weight: math.unit(67, "kg"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/draylen/front.svg",
  5679. extra: 832/777,
  5680. bottom: 85/917
  5681. }
  5682. }
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(5 + 10/12, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(150, "feet"),
  5692. default: true
  5693. }
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(7 + 9 / 12, "feet"),
  5701. weight: math.unit(379, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/chez/front.svg"
  5705. }
  5706. },
  5707. side: {
  5708. height: math.unit(7 + 9 / 12, "feet"),
  5709. weight: math.unit(379, "lbs"),
  5710. name: "Side",
  5711. image: {
  5712. source: "./media/characters/chez/side.svg"
  5713. }
  5714. }
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(7 + 9 / 12, "feet"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "God King",
  5724. height: math.unit(9750000, "meters")
  5725. }
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(275, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/kaylum/front.svg",
  5737. bottom: 0.01,
  5738. extra: 1166 / 1031
  5739. }
  5740. },
  5741. frontWingless: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(275, "lbs"),
  5744. name: "Front (Wingless)",
  5745. image: {
  5746. source: "./media/characters/kaylum/front-wingless.svg",
  5747. bottom: 0.01,
  5748. extra: 1117 / 1031
  5749. }
  5750. }
  5751. },
  5752. [
  5753. {
  5754. name: "Normal",
  5755. height: math.unit(3.05, "meters")
  5756. },
  5757. {
  5758. name: "Master",
  5759. height: math.unit(5.5, "meters")
  5760. },
  5761. {
  5762. name: "Rampage",
  5763. height: math.unit(19, "meters")
  5764. },
  5765. {
  5766. name: "Macro Lite",
  5767. height: math.unit(37, "meters")
  5768. },
  5769. {
  5770. name: "Hyper Predator",
  5771. height: math.unit(61, "meters")
  5772. },
  5773. {
  5774. name: "Macro",
  5775. height: math.unit(138, "meters"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(5 + 5 / 12, "feet"),
  5785. weight: math.unit(120, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/geta/front.svg",
  5789. extra: 1003/933,
  5790. bottom: 21/1024
  5791. }
  5792. },
  5793. paw: {
  5794. height: math.unit(0.35, "feet"),
  5795. name: "Paw",
  5796. image: {
  5797. source: "./media/characters/geta/paw.svg"
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Micro",
  5804. height: math.unit(3, "inches"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5 + 5 / 12, "feet")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(300, "lbs"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/tyrnn/front.svg"
  5822. }
  5823. }
  5824. },
  5825. [
  5826. {
  5827. name: "Main Height",
  5828. height: math.unit(355, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Fave. Height",
  5833. height: math.unit(2400, "feet")
  5834. }
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(300, "lbs"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/appledectomy/front.svg"
  5846. }
  5847. }
  5848. },
  5849. [
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(2500, "feet")
  5853. },
  5854. {
  5855. name: "Megamacro",
  5856. height: math.unit(50, "miles"),
  5857. default: true
  5858. },
  5859. {
  5860. name: "Gigamacro",
  5861. height: math.unit(5000, "miles")
  5862. },
  5863. {
  5864. name: "Teramacro",
  5865. height: math.unit(250000, "miles")
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(200, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/vulpes/front.svg",
  5878. extra: 573 / 543,
  5879. bottom: 0.033
  5880. }
  5881. },
  5882. side: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(200, "lbs"),
  5885. name: "Side",
  5886. image: {
  5887. source: "./media/characters/vulpes/side.svg",
  5888. extra: 577 / 549,
  5889. bottom: 11 / 588
  5890. }
  5891. },
  5892. back: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(200, "lbs"),
  5895. name: "Back",
  5896. image: {
  5897. source: "./media/characters/vulpes/back.svg",
  5898. extra: 573 / 549,
  5899. bottom: 20 / 593
  5900. }
  5901. },
  5902. feet: {
  5903. height: math.unit(1.276, "feet"),
  5904. name: "Feet",
  5905. image: {
  5906. source: "./media/characters/vulpes/feet.svg"
  5907. }
  5908. },
  5909. maw: {
  5910. height: math.unit(1.18, "feet"),
  5911. name: "Maw",
  5912. image: {
  5913. source: "./media/characters/vulpes/maw.svg"
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Micro",
  5920. height: math.unit(2, "inches")
  5921. },
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(6.3, "feet")
  5925. },
  5926. {
  5927. name: "Macro",
  5928. height: math.unit(850, "feet")
  5929. },
  5930. {
  5931. name: "Megamacro",
  5932. height: math.unit(7500, "feet"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Gigamacro",
  5937. height: math.unit(570000, "miles")
  5938. }
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(210, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/front.svg"
  5950. }
  5951. },
  5952. side: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(210, "lbs"),
  5955. name: "Side",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/side.svg"
  5958. }
  5959. },
  5960. back: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(210, "lbs"),
  5963. name: "Back",
  5964. image: {
  5965. source: "./media/characters/rain-fallen/back.svg"
  5966. }
  5967. },
  5968. feral: {
  5969. height: math.unit(9, "feet"),
  5970. weight: math.unit(700, "lbs"),
  5971. name: "Feral",
  5972. image: {
  5973. source: "./media/characters/rain-fallen/feral.svg"
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Meddling with Mortals",
  5980. height: math.unit(8 + 8/12, "feet")
  5981. },
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5, "meter")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(150, "meter"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Megamacro",
  5993. height: math.unit(278e6, "meter")
  5994. },
  5995. {
  5996. name: "Gigamacro",
  5997. height: math.unit(2e9, "meter")
  5998. },
  5999. {
  6000. name: "Teramacro",
  6001. height: math.unit(8e12, "meter")
  6002. },
  6003. {
  6004. name: "Devourer",
  6005. height: math.unit(14, "zettameters")
  6006. },
  6007. {
  6008. name: "Scarlet King",
  6009. height: math.unit(18, "yottameters")
  6010. },
  6011. {
  6012. name: "Void",
  6013. height: math.unit(1e88, "yottameters")
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6019. {
  6020. standing: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(180, "lbs"),
  6023. name: "Standing",
  6024. image: {
  6025. source: "./media/characters/zaakira/standing.svg",
  6026. extra: 1599/1504,
  6027. bottom: 39/1638
  6028. }
  6029. },
  6030. laying: {
  6031. height: math.unit(3.3, "feet"),
  6032. weight: math.unit(180, "lbs"),
  6033. name: "Laying",
  6034. image: {
  6035. source: "./media/characters/zaakira/laying.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(12, "feet")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(279, "feet"),
  6047. default: true
  6048. }
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6053. {
  6054. femSfw: {
  6055. height: math.unit(8, "feet"),
  6056. weight: math.unit(350, "lb"),
  6057. name: "Fem",
  6058. image: {
  6059. source: "./media/characters/sigvald/fem-sfw.svg",
  6060. extra: 182 / 164,
  6061. bottom: 8.7 / 190.5
  6062. }
  6063. },
  6064. femNsfw: {
  6065. height: math.unit(8, "feet"),
  6066. weight: math.unit(350, "lb"),
  6067. name: "Fem (NSFW)",
  6068. image: {
  6069. source: "./media/characters/sigvald/fem-nsfw.svg",
  6070. extra: 182 / 164,
  6071. bottom: 8.7 / 190.5
  6072. }
  6073. },
  6074. maleNsfw: {
  6075. height: math.unit(8, "feet"),
  6076. weight: math.unit(350, "lb"),
  6077. name: "Male (NSFW)",
  6078. image: {
  6079. source: "./media/characters/sigvald/male-nsfw.svg",
  6080. extra: 182 / 164,
  6081. bottom: 8.7 / 190.5
  6082. }
  6083. },
  6084. hermNsfw: {
  6085. height: math.unit(8, "feet"),
  6086. weight: math.unit(350, "lb"),
  6087. name: "Herm (NSFW)",
  6088. image: {
  6089. source: "./media/characters/sigvald/herm-nsfw.svg",
  6090. extra: 182 / 164,
  6091. bottom: 8.7 / 190.5
  6092. }
  6093. },
  6094. dick: {
  6095. height: math.unit(2.36, "feet"),
  6096. name: "Dick",
  6097. image: {
  6098. source: "./media/characters/sigvald/dick.svg"
  6099. }
  6100. },
  6101. eye: {
  6102. height: math.unit(0.31, "feet"),
  6103. name: "Eye",
  6104. image: {
  6105. source: "./media/characters/sigvald/eye.svg"
  6106. }
  6107. },
  6108. mouth: {
  6109. height: math.unit(0.92, "feet"),
  6110. name: "Mouth",
  6111. image: {
  6112. source: "./media/characters/sigvald/mouth.svg"
  6113. }
  6114. },
  6115. paws: {
  6116. height: math.unit(2.2, "feet"),
  6117. name: "Paws",
  6118. image: {
  6119. source: "./media/characters/sigvald/paws.svg"
  6120. }
  6121. }
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(8, "feet")
  6127. },
  6128. {
  6129. name: "Large",
  6130. height: math.unit(12, "feet")
  6131. },
  6132. {
  6133. name: "Larger",
  6134. height: math.unit(20, "feet")
  6135. },
  6136. {
  6137. name: "Macro",
  6138. height: math.unit(150, "feet")
  6139. },
  6140. {
  6141. name: "Macro+",
  6142. height: math.unit(200, "feet"),
  6143. default: true
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6149. {
  6150. anthro_front: {
  6151. height: math.unit(5 + 11/12, "feet"),
  6152. weight: math.unit(250, "lb"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/scott/anthro-front.svg",
  6156. extra: 851/781,
  6157. bottom: 54/905
  6158. },
  6159. form: "anthro",
  6160. default: true
  6161. },
  6162. anthro_side: {
  6163. height: math.unit(5.1, "feet"),
  6164. weight: math.unit(250, "lb"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/scott/anthro-side.svg"
  6168. },
  6169. form: "anthro",
  6170. },
  6171. anthro_dick: {
  6172. height: math.unit(1.33, "feet"),
  6173. name: "Dick",
  6174. image: {
  6175. source: "./media/characters/scott/anthro-dick.svg"
  6176. },
  6177. form: "anthro",
  6178. },
  6179. side: {
  6180. height: math.unit(12, "feet"),
  6181. weight: math.unit(2000, "kg"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/scott/side.svg",
  6185. extra: 754 / 724,
  6186. bottom: 0.069
  6187. },
  6188. form: "taur",
  6189. default: true
  6190. },
  6191. upright: {
  6192. height: math.unit(12, "feet"),
  6193. weight: math.unit(2000, "kg"),
  6194. name: "Upright",
  6195. image: {
  6196. source: "./media/characters/scott/upright.svg",
  6197. extra: 3881 / 3722,
  6198. bottom: 0.05
  6199. },
  6200. form: "taur",
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(5 + 11/12, "feet"),
  6207. default: true,
  6208. form: "anthro"
  6209. },
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(12, "feet"),
  6213. default: true,
  6214. form: "taur"
  6215. },
  6216. ],
  6217. {
  6218. "anthro": {
  6219. name: "Anthro",
  6220. default: true
  6221. },
  6222. "taur": {
  6223. name: "Taur",
  6224. },
  6225. }
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6229. {
  6230. side: {
  6231. height: math.unit(8, "meters"),
  6232. weight: math.unit(84755, "lbs"),
  6233. name: "Side",
  6234. image: {
  6235. source: "./media/characters/tobias/side.svg",
  6236. extra: 1474 / 1096,
  6237. bottom: 38.9 / 1513.1235
  6238. }
  6239. },
  6240. maw: {
  6241. height: math.unit(2.3, "meters"),
  6242. name: "Maw",
  6243. image: {
  6244. source: "./media/characters/tobias/maw.svg"
  6245. }
  6246. },
  6247. burp: {
  6248. height: math.unit(2.85, "meters"),
  6249. name: "Burp",
  6250. image: {
  6251. source: "./media/characters/tobias/burp.svg"
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(8, "meters"),
  6259. default: true
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6265. {
  6266. front: {
  6267. height: math.unit(5.5, "feet"),
  6268. weight: math.unit(400, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/kieran/front.svg",
  6272. extra: 2694 / 2364,
  6273. bottom: 217 / 2908
  6274. }
  6275. },
  6276. side: {
  6277. height: math.unit(5.5, "feet"),
  6278. weight: math.unit(400, "lbs"),
  6279. name: "Side",
  6280. image: {
  6281. source: "./media/characters/kieran/side.svg",
  6282. extra: 875 / 777,
  6283. bottom: 84.6 / 959
  6284. }
  6285. },
  6286. },
  6287. [
  6288. {
  6289. name: "Normal",
  6290. height: math.unit(5.5, "feet"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6297. {
  6298. side: {
  6299. height: math.unit(2, "meters"),
  6300. weight: math.unit(70, "kg"),
  6301. name: "Side",
  6302. image: {
  6303. source: "./media/characters/sanya/side.svg",
  6304. bottom: 0.02,
  6305. extra: 1.02
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Small",
  6312. height: math.unit(2, "meters")
  6313. },
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(3, "meters")
  6317. },
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(16, "meters"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(2, "meters"),
  6330. weight: math.unit(120, "kg"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/miranda/front.svg",
  6334. extra: 195 / 185,
  6335. bottom: 10.9 / 206.5
  6336. }
  6337. },
  6338. back: {
  6339. height: math.unit(2, "meters"),
  6340. weight: math.unit(120, "kg"),
  6341. name: "Back",
  6342. image: {
  6343. source: "./media/characters/miranda/back.svg",
  6344. extra: 201 / 193,
  6345. bottom: 2.3 / 203.7
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(10, "feet"),
  6353. default: true
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "James", species: ["deer"], tags: ["anthro"] },
  6359. {
  6360. side: {
  6361. height: math.unit(2, "meters"),
  6362. weight: math.unit(100, "kg"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/james/front.svg",
  6366. extra: 10 / 8.5
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(8.5, "feet"),
  6374. default: true
  6375. }
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6380. {
  6381. side: {
  6382. height: math.unit(9.5, "feet"),
  6383. weight: math.unit(2500, "lbs"),
  6384. name: "Side",
  6385. image: {
  6386. source: "./media/characters/heather/side.svg"
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(9.5, "feet"),
  6394. default: true
  6395. }
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6400. {
  6401. side: {
  6402. height: math.unit(6.5, "feet"),
  6403. weight: math.unit(400, "lbs"),
  6404. name: "Side",
  6405. image: {
  6406. source: "./media/characters/lukas/side.svg",
  6407. extra: 7.25 / 6.5
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(6.5, "feet"),
  6415. default: true
  6416. }
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6421. {
  6422. side: {
  6423. height: math.unit(5, "feet"),
  6424. weight: math.unit(3000, "lbs"),
  6425. name: "Side",
  6426. image: {
  6427. source: "./media/characters/louise/side.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(5, "feet"),
  6435. default: true
  6436. }
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6441. {
  6442. side: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(150, "lbs"),
  6445. name: "Side",
  6446. image: {
  6447. source: "./media/characters/ramona/side.svg",
  6448. extra: 871/854,
  6449. bottom: 41/912
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(6 + 4/12, "feet")
  6457. },
  6458. {
  6459. name: "Minimacro",
  6460. height: math.unit(5.3, "meters"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(20, "stories")
  6466. },
  6467. {
  6468. name: "Macro+",
  6469. height: math.unit(50, "stories")
  6470. },
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6475. {
  6476. standing: {
  6477. height: math.unit(5.75, "feet"),
  6478. weight: math.unit(160, "lbs"),
  6479. name: "Standing",
  6480. image: {
  6481. source: "./media/characters/deerpuff/standing.svg",
  6482. extra: 682 / 624
  6483. }
  6484. },
  6485. sitting: {
  6486. height: math.unit(5.75 / 1.79, "feet"),
  6487. weight: math.unit(160, "lbs"),
  6488. name: "Sitting",
  6489. image: {
  6490. source: "./media/characters/deerpuff/sitting.svg",
  6491. bottom: 44 / 400,
  6492. extra: 1
  6493. }
  6494. },
  6495. taurLaying: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(400, "lbs"),
  6498. name: "Taur (Laying)",
  6499. image: {
  6500. source: "./media/characters/deerpuff/taur-laying.svg"
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Puffball",
  6507. height: math.unit(6, "inches")
  6508. },
  6509. {
  6510. name: "Normalpuff",
  6511. height: math.unit(5.75, "feet")
  6512. },
  6513. {
  6514. name: "Macropuff",
  6515. height: math.unit(1500, "feet"),
  6516. default: true
  6517. },
  6518. {
  6519. name: "Megapuff",
  6520. height: math.unit(500, "miles")
  6521. },
  6522. {
  6523. name: "Gigapuff",
  6524. height: math.unit(250000, "miles")
  6525. },
  6526. {
  6527. name: "Omegapuff",
  6528. height: math.unit(1000, "lightyears")
  6529. },
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6534. {
  6535. stomping: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(170, "lbs"),
  6538. name: "Stomping",
  6539. image: {
  6540. source: "./media/characters/vivian/stomping.svg"
  6541. }
  6542. },
  6543. sitting: {
  6544. height: math.unit(6 / 1.75, "feet"),
  6545. weight: math.unit(170, "lbs"),
  6546. name: "Sitting",
  6547. image: {
  6548. source: "./media/characters/vivian/sitting.svg",
  6549. bottom: 1 / 6.4,
  6550. extra: 1,
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(7, "feet"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(10, "stories")
  6563. },
  6564. {
  6565. name: "Macro+",
  6566. height: math.unit(30, "stories")
  6567. },
  6568. {
  6569. name: "Megamacro",
  6570. height: math.unit(10, "miles")
  6571. },
  6572. {
  6573. name: "Megamacro+",
  6574. height: math.unit(2750000, "meters")
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(160, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/prince/front.svg",
  6587. extra: 1938/1682,
  6588. bottom: 45/1983
  6589. }
  6590. },
  6591. back: {
  6592. height: math.unit(6, "feet"),
  6593. weight: math.unit(160, "lbs"),
  6594. name: "Back",
  6595. image: {
  6596. source: "./media/characters/prince/back.svg",
  6597. extra: 1955/1726,
  6598. bottom: 6/1961
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(7.75, "feet"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Not cute",
  6610. height: math.unit(17, "feet")
  6611. },
  6612. {
  6613. name: "I said NOT",
  6614. height: math.unit(91, "feet")
  6615. },
  6616. {
  6617. name: "Please stop",
  6618. height: math.unit(560, "feet")
  6619. },
  6620. {
  6621. name: "What have you done",
  6622. height: math.unit(2200, "feet")
  6623. },
  6624. {
  6625. name: "Deer God",
  6626. height: math.unit(3.6, "miles")
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6632. {
  6633. standing: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(300, "lbs"),
  6636. name: "Standing",
  6637. image: {
  6638. source: "./media/characters/psymon/standing.svg",
  6639. extra: 1888 / 1810,
  6640. bottom: 0.05
  6641. }
  6642. },
  6643. slithering: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(300, "lbs"),
  6646. name: "Slithering",
  6647. image: {
  6648. source: "./media/characters/psymon/slithering.svg",
  6649. extra: 1330 / 1224
  6650. }
  6651. },
  6652. slitheringAlt: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(300, "lbs"),
  6655. name: "Slithering (Alt)",
  6656. image: {
  6657. source: "./media/characters/psymon/slithering-alt.svg",
  6658. extra: 1330 / 1224
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(11.25, "feet"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Large",
  6670. height: math.unit(27, "feet")
  6671. },
  6672. {
  6673. name: "Giant",
  6674. height: math.unit(87, "feet")
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(365, "feet")
  6679. },
  6680. {
  6681. name: "Megamacro",
  6682. height: math.unit(3, "miles")
  6683. },
  6684. {
  6685. name: "World Serpent",
  6686. height: math.unit(8000, "miles")
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(180, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/daimos/front.svg",
  6699. extra: 4160 / 3897,
  6700. bottom: 0.021
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(8, "feet"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Big Dog",
  6712. height: math.unit(22, "feet")
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(127, "feet")
  6717. },
  6718. {
  6719. name: "Megamacro",
  6720. height: math.unit(3600, "feet")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6726. {
  6727. side: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(180, "lbs"),
  6730. name: "Side",
  6731. image: {
  6732. source: "./media/characters/blake/side.svg",
  6733. extra: 1212 / 1120,
  6734. bottom: 0.05
  6735. }
  6736. },
  6737. crouched: {
  6738. height: math.unit(6 * 0.57, "feet"),
  6739. weight: math.unit(180, "lbs"),
  6740. name: "Crouched",
  6741. image: {
  6742. source: "./media/characters/blake/crouched.svg",
  6743. extra: 840 / 587,
  6744. bottom: 0.04
  6745. }
  6746. },
  6747. bent: {
  6748. height: math.unit(6 * 0.75, "feet"),
  6749. weight: math.unit(180, "lbs"),
  6750. name: "Bent",
  6751. image: {
  6752. source: "./media/characters/blake/bent.svg",
  6753. extra: 592 / 544,
  6754. bottom: 0.035
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(8 + 1 / 6, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Big Backside",
  6766. height: math.unit(37, "feet")
  6767. },
  6768. {
  6769. name: "Subway Shredder",
  6770. height: math.unit(72, "feet")
  6771. },
  6772. {
  6773. name: "City Carver",
  6774. height: math.unit(1675, "feet")
  6775. },
  6776. {
  6777. name: "Tectonic Tweaker",
  6778. height: math.unit(2300, "miles")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6784. {
  6785. front: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(180, "lbs"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/guisetto/front.svg",
  6791. extra: 856 / 817,
  6792. bottom: 0.06
  6793. }
  6794. },
  6795. airborne: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(180, "lbs"),
  6798. name: "Airborne",
  6799. image: {
  6800. source: "./media/characters/guisetto/airborne.svg",
  6801. extra: 584 / 525
  6802. }
  6803. },
  6804. },
  6805. [
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(10 + 11 / 12, "feet"),
  6809. default: true
  6810. },
  6811. {
  6812. name: "Large",
  6813. height: math.unit(35, "feet")
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(475, "feet")
  6818. },
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(180, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/luxor/front.svg",
  6830. extra: 2940 / 2152
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(180, "lbs"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/luxor/back.svg",
  6839. extra: 1083 / 960
  6840. }
  6841. },
  6842. },
  6843. [
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(5 + 5 / 6, "feet"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Lamp",
  6851. height: math.unit(50, "feet")
  6852. },
  6853. {
  6854. name: "Lämp",
  6855. height: math.unit(300, "feet")
  6856. },
  6857. {
  6858. name: "The sun is a lamp",
  6859. height: math.unit(250000, "miles")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(50, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/huoyan/front.svg"
  6872. }
  6873. },
  6874. side: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(180, "lbs"),
  6877. name: "Side",
  6878. image: {
  6879. source: "./media/characters/huoyan/side.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Chef",
  6886. height: math.unit(9, "feet")
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(65, "feet"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Macro",
  6895. height: math.unit(780, "feet")
  6896. },
  6897. {
  6898. name: "Flaming Mountain",
  6899. height: math.unit(4.8, "miles")
  6900. },
  6901. {
  6902. name: "Celestial",
  6903. height: math.unit(765000, "miles")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(5 + 3 / 4, "feet"),
  6912. weight: math.unit(120, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/tails/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(5 + 3 / 4, "feet"),
  6923. default: true
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(4, "feet"),
  6932. weight: math.unit(50, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/rainy/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(800, "feet"),
  6943. default: true
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(150, "lbs"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/rainier/front.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Micro",
  6962. height: math.unit(2, "mm"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(8 + 4/12, "feet"),
  6972. weight: math.unit(450, "kilograms"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/andy-renard/front.svg",
  6976. extra: 862/809,
  6977. bottom: 85/947
  6978. },
  6979. extraAttributes: {
  6980. "pawSize": {
  6981. name: "Paw Size",
  6982. power: 2,
  6983. type: "area",
  6984. base: math.unit(0.45*0.3, "meters^2")
  6985. },
  6986. "handSize": {
  6987. name: "Hand Size",
  6988. power: 2,
  6989. type: "area",
  6990. base: math.unit(0.4 * 0.3, "meters^2")
  6991. },
  6992. "cockSize": {
  6993. name: "Cock Length",
  6994. power: 1,
  6995. type: "length",
  6996. base: math.unit(0.75, "meters")
  6997. },
  6998. "ballDiameter": {
  6999. name: "Ball Diameter",
  7000. power: 1,
  7001. type: "length",
  7002. base: math.unit(0.3, "meters")
  7003. },
  7004. "ballVolume": {
  7005. name: "Ball Volume",
  7006. power: 3,
  7007. type: "volume",
  7008. base: math.unit(0.01413716694, "meters^3")
  7009. },
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(8 + 4/12, "feet"),
  7014. weight: math.unit(450, "kilograms"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/andy-renard/back.svg",
  7018. extra: 1112/1033,
  7019. bottom: 64/1176
  7020. },
  7021. extraAttributes: {
  7022. "pawSize": {
  7023. name: "Paw Size",
  7024. power: 2,
  7025. type: "area",
  7026. base: math.unit(0.45*0.3, "meters^2")
  7027. },
  7028. "handSize": {
  7029. name: "Hand Size",
  7030. power: 2,
  7031. type: "area",
  7032. base: math.unit(0.4 * 0.3, "meters^2")
  7033. },
  7034. "cockSize": {
  7035. name: "Cock Length",
  7036. power: 1,
  7037. type: "length",
  7038. base: math.unit(0.75, "meters")
  7039. },
  7040. "ballDiameter": {
  7041. name: "Ball Diameter",
  7042. power: 1,
  7043. type: "length",
  7044. base: math.unit(0.3, "meters")
  7045. },
  7046. "ballVolume": {
  7047. name: "Ball Volume",
  7048. power: 3,
  7049. type: "volume",
  7050. base: math.unit(0.01413716694, "meters^3")
  7051. },
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Tall",
  7058. height: math.unit(6 + 8/12, "feet")
  7059. },
  7060. {
  7061. name: "Very Tall",
  7062. height: math.unit(8 + 4/12, "feet")
  7063. },
  7064. {
  7065. name: "Mini Macro",
  7066. height: math.unit(15, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Giant",
  7071. height: math.unit(50, "feet")
  7072. },
  7073. {
  7074. name: "Nice",
  7075. height: math.unit(69, "feet")
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(100, "feet")
  7080. },
  7081. {
  7082. name: "Enormous",
  7083. height: math.unit(500, "feet")
  7084. },
  7085. {
  7086. name: "Gargantuan",
  7087. height: math.unit(1000, "feet")
  7088. },
  7089. {
  7090. name: "Mega",
  7091. height: math.unit(1, "mile")
  7092. },
  7093. {
  7094. name: "Giga",
  7095. height: math.unit(50, "miles")
  7096. },
  7097. {
  7098. name: "Tera",
  7099. height: math.unit(1000, "miles")
  7100. },
  7101. {
  7102. name: "Cosmic",
  7103. height: math.unit(1.5, "galaxies")
  7104. },
  7105. {
  7106. name: "God",
  7107. height: math.unit(1.5, "universes")
  7108. },
  7109. {
  7110. name: "Chief Execute God",
  7111. height: math.unit(1.5, "multiverses")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(210, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/cimmaron/front-sfw.svg",
  7124. extra: 701 / 676,
  7125. bottom: 0.046
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(210, "lbs"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/cimmaron/back-sfw.svg",
  7134. extra: 701 / 676,
  7135. bottom: 0.046
  7136. }
  7137. },
  7138. frontNsfw: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(210, "lbs"),
  7141. name: "Front (NSFW)",
  7142. image: {
  7143. source: "./media/characters/cimmaron/front-nsfw.svg",
  7144. extra: 701 / 676,
  7145. bottom: 0.046
  7146. }
  7147. },
  7148. backNsfw: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(210, "lbs"),
  7151. name: "Back (NSFW)",
  7152. image: {
  7153. source: "./media/characters/cimmaron/back-nsfw.svg",
  7154. extra: 701 / 676,
  7155. bottom: 0.046
  7156. }
  7157. },
  7158. dick: {
  7159. height: math.unit(1.714, "feet"),
  7160. name: "Dick",
  7161. image: {
  7162. source: "./media/characters/cimmaron/dick.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(6, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Macro Mayor",
  7174. height: math.unit(350, "meters")
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(200, "lbs"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/akari/front.svg",
  7187. extra: 962 / 901,
  7188. bottom: 0.04
  7189. }
  7190. }
  7191. },
  7192. [
  7193. {
  7194. name: "Micro",
  7195. height: math.unit(5, "inches"),
  7196. default: true
  7197. },
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(7, "feet")
  7201. },
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7206. {
  7207. front: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(140, "lbs"),
  7210. name: "Front",
  7211. image: {
  7212. source: "./media/characters/cynosura/front.svg",
  7213. extra: 437/410,
  7214. bottom: 9/446
  7215. }
  7216. },
  7217. back: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(140, "lbs"),
  7220. name: "Back",
  7221. image: {
  7222. source: "./media/characters/cynosura/back.svg",
  7223. extra: 1304/1160,
  7224. bottom: 71/1375
  7225. }
  7226. },
  7227. },
  7228. [
  7229. {
  7230. name: "Micro",
  7231. height: math.unit(4, "inches")
  7232. },
  7233. {
  7234. name: "Normal",
  7235. height: math.unit(5.75, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Tall",
  7240. height: math.unit(10, "feet")
  7241. },
  7242. {
  7243. name: "Big",
  7244. height: math.unit(20, "feet")
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(50, "feet")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(13 + 2/12, "feet"),
  7257. weight: math.unit(800, "kg"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/gin/front.svg",
  7261. extra: 1312/1191,
  7262. bottom: 45/1357
  7263. }
  7264. },
  7265. mouth: {
  7266. height: math.unit(2.39 * 1.8, "feet"),
  7267. name: "Mouth",
  7268. image: {
  7269. source: "./media/characters/gin/mouth.svg"
  7270. }
  7271. },
  7272. hand: {
  7273. height: math.unit(1.57 * 2.19, "feet"),
  7274. name: "Hand",
  7275. image: {
  7276. source: "./media/characters/gin/hand.svg"
  7277. }
  7278. },
  7279. foot: {
  7280. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7281. name: "Foot",
  7282. image: {
  7283. source: "./media/characters/gin/foot.svg"
  7284. }
  7285. },
  7286. sole: {
  7287. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7288. name: "Sole",
  7289. image: {
  7290. source: "./media/characters/gin/sole.svg"
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Very Small",
  7297. height: math.unit(13 + 2 / 12, "feet")
  7298. },
  7299. {
  7300. name: "Micro",
  7301. height: math.unit(600, "miles")
  7302. },
  7303. {
  7304. name: "Regular",
  7305. height: math.unit(20, "earths"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(2.2, "solarradii")
  7311. },
  7312. {
  7313. name: "Teramacro",
  7314. height: math.unit(1.2, "galaxies")
  7315. },
  7316. {
  7317. name: "Omegamacro",
  7318. height: math.unit(200, "universes")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6 + 1 / 6, "feet"),
  7327. weight: math.unit(178, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/guy/front.svg"
  7331. }
  7332. }
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(6 + 1 / 6, "feet"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Large",
  7342. height: math.unit(25 + 7 / 12, "feet")
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(60 + 9 / 12, "feet")
  7347. },
  7348. {
  7349. name: "Macro+",
  7350. height: math.unit(246, "feet")
  7351. },
  7352. {
  7353. name: "Macro++",
  7354. height: math.unit(878, "feet")
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(9, "feet"),
  7363. weight: math.unit(800, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/tiberius/front.svg",
  7367. extra: 2295 / 2071
  7368. }
  7369. },
  7370. back: {
  7371. height: math.unit(9, "feet"),
  7372. weight: math.unit(800, "lbs"),
  7373. name: "Back",
  7374. image: {
  7375. source: "./media/characters/tiberius/back.svg",
  7376. extra: 2373 / 2160
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(9, "feet"),
  7384. default: true
  7385. }
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7390. {
  7391. front: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(600, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/surgo/front.svg",
  7397. extra: 3591 / 2227
  7398. }
  7399. },
  7400. back: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(600, "lbs"),
  7403. name: "Back",
  7404. image: {
  7405. source: "./media/characters/surgo/back.svg",
  7406. extra: 3557 / 2228
  7407. }
  7408. },
  7409. laying: {
  7410. height: math.unit(6 * 0.85, "feet"),
  7411. weight: math.unit(600, "lbs"),
  7412. name: "Laying",
  7413. image: {
  7414. source: "./media/characters/surgo/laying.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(6, "feet"),
  7422. default: true
  7423. }
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7428. {
  7429. side: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(150, "lbs"),
  7432. name: "Side",
  7433. image: {
  7434. source: "./media/characters/cibus/side.svg",
  7435. extra: 800 / 400
  7436. }
  7437. },
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(6, "feet"),
  7443. default: true
  7444. }
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(240, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/nibbles/front.svg"
  7456. }
  7457. },
  7458. side: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(240, "lbs"),
  7461. name: "Side",
  7462. image: {
  7463. source: "./media/characters/nibbles/side.svg"
  7464. }
  7465. },
  7466. },
  7467. [
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(9, "feet"),
  7471. default: true
  7472. }
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7477. {
  7478. side: {
  7479. height: math.unit(5 + 1 / 6, "feet"),
  7480. weight: math.unit(130, "lbs"),
  7481. name: "Side",
  7482. image: {
  7483. source: "./media/characters/rikky/side.svg",
  7484. extra: 851 / 801
  7485. }
  7486. },
  7487. },
  7488. [
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(5 + 1 / 6, "feet")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(152, "feet"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(7, "miles")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7506. {
  7507. side: {
  7508. height: math.unit(370, "cm"),
  7509. weight: math.unit(350, "lbs"),
  7510. name: "Side",
  7511. image: {
  7512. source: "./media/characters/malfressa/side.svg"
  7513. }
  7514. },
  7515. walking: {
  7516. height: math.unit(370, "cm"),
  7517. weight: math.unit(350, "lbs"),
  7518. name: "Walking",
  7519. image: {
  7520. source: "./media/characters/malfressa/walking.svg"
  7521. }
  7522. },
  7523. feral: {
  7524. height: math.unit(2500, "cm"),
  7525. weight: math.unit(100000, "lbs"),
  7526. name: "Feral",
  7527. image: {
  7528. source: "./media/characters/malfressa/feral.svg",
  7529. extra: 2108 / 837,
  7530. bottom: 0.02
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(370, "cm")
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(300, "meters"),
  7542. default: true
  7543. }
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(60, "kg"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/jaro/front.svg",
  7555. extra: 845/817,
  7556. bottom: 45/890
  7557. }
  7558. },
  7559. back: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(60, "kg"),
  7562. name: "Back",
  7563. image: {
  7564. source: "./media/characters/jaro/back.svg",
  7565. extra: 847/817,
  7566. bottom: 34/881
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Micro",
  7573. height: math.unit(7, "inches")
  7574. },
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(5.5, "feet"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Minimacro",
  7582. height: math.unit(20, "feet")
  7583. },
  7584. {
  7585. name: "Macro",
  7586. height: math.unit(200, "meters")
  7587. }
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(195, "lb"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/rogue/front.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(90, "feet"),
  7606. default: true
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7612. {
  7613. standing: {
  7614. height: math.unit(5 + 8 / 12, "feet"),
  7615. weight: math.unit(140, "lb"),
  7616. name: "Standing",
  7617. image: {
  7618. source: "./media/characters/piper/standing.svg",
  7619. extra: 1440/1284,
  7620. bottom: 66/1506
  7621. }
  7622. },
  7623. running: {
  7624. height: math.unit(5 + 8 / 12, "feet"),
  7625. weight: math.unit(140, "lb"),
  7626. name: "Running",
  7627. image: {
  7628. source: "./media/characters/piper/running.svg",
  7629. extra: 3948/3655,
  7630. bottom: 0/3948
  7631. }
  7632. },
  7633. sole: {
  7634. height: math.unit(0.81, "feet"),
  7635. weight: math.unit(2, "kg"),
  7636. name: "Sole",
  7637. image: {
  7638. source: "./media/characters/piper/sole.svg"
  7639. }
  7640. },
  7641. nipple: {
  7642. height: math.unit(0.25, "feet"),
  7643. weight: math.unit(1.5, "lb"),
  7644. name: "Nipple",
  7645. image: {
  7646. source: "./media/characters/piper/nipple.svg"
  7647. }
  7648. },
  7649. head: {
  7650. height: math.unit(1.1, "feet"),
  7651. name: "Head",
  7652. image: {
  7653. source: "./media/characters/piper/head.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Micro",
  7660. height: math.unit(2, "inches")
  7661. },
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(5 + 8 / 12, "feet")
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(250, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(7, "miles")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(220, "lb"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/gemini/front.svg"
  7686. }
  7687. },
  7688. back: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(220, "lb"),
  7691. name: "Back",
  7692. image: {
  7693. source: "./media/characters/gemini/back.svg"
  7694. }
  7695. },
  7696. kneeling: {
  7697. height: math.unit(6 / 1.5, "feet"),
  7698. weight: math.unit(220, "lb"),
  7699. name: "Kneeling",
  7700. image: {
  7701. source: "./media/characters/gemini/kneeling.svg",
  7702. bottom: 0.02
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(300, "meters"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(6900, "meters")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7720. {
  7721. anthro: {
  7722. height: math.unit(2.35, "meters"),
  7723. weight: math.unit(73, "kg"),
  7724. name: "Anthro",
  7725. image: {
  7726. source: "./media/characters/alicia/anthro.svg",
  7727. extra: 2571 / 2385,
  7728. bottom: 75 / 2648
  7729. }
  7730. },
  7731. paw: {
  7732. height: math.unit(1.32, "feet"),
  7733. name: "Paw",
  7734. image: {
  7735. source: "./media/characters/alicia/paw.svg"
  7736. }
  7737. },
  7738. feral: {
  7739. height: math.unit(1.69, "meters"),
  7740. weight: math.unit(73, "kg"),
  7741. name: "Feral",
  7742. image: {
  7743. source: "./media/characters/alicia/feral.svg",
  7744. extra: 2123 / 1715,
  7745. bottom: 222 / 2349
  7746. }
  7747. },
  7748. },
  7749. [
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(2.35, "meters")
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(60, "meters"),
  7757. default: true
  7758. },
  7759. {
  7760. name: "Megamacro",
  7761. height: math.unit(10000, "kilometers")
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(7, "feet"),
  7770. weight: math.unit(250, "lbs"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/archy/front.svg"
  7774. }
  7775. }
  7776. },
  7777. [
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(1, "inch")
  7781. },
  7782. {
  7783. name: "Shorty",
  7784. height: math.unit(5, "feet")
  7785. },
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(7, "feet")
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(600, "meters"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Megamacro",
  7797. height: math.unit(1, "mile")
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(1.65, "meters"),
  7806. weight: math.unit(74, "kg"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/berri/front.svg",
  7810. extra: 857 / 837,
  7811. bottom: 18 / 877
  7812. }
  7813. },
  7814. bum: {
  7815. height: math.unit(1.46, "feet"),
  7816. name: "Bum",
  7817. image: {
  7818. source: "./media/characters/berri/bum.svg"
  7819. }
  7820. },
  7821. mouth: {
  7822. height: math.unit(0.44, "feet"),
  7823. name: "Mouth",
  7824. image: {
  7825. source: "./media/characters/berri/mouth.svg"
  7826. }
  7827. },
  7828. paw: {
  7829. height: math.unit(0.826, "feet"),
  7830. name: "Paw",
  7831. image: {
  7832. source: "./media/characters/berri/paw.svg"
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(1.65, "meters")
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(60, "m"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Megamacro",
  7848. height: math.unit(9.213, "km")
  7849. },
  7850. {
  7851. name: "Planet Eater",
  7852. height: math.unit(489, "megameters")
  7853. },
  7854. {
  7855. name: "Teramacro",
  7856. height: math.unit(2471635000000, "meters")
  7857. },
  7858. {
  7859. name: "Examacro",
  7860. height: math.unit(8.0624e+26, "meters")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(1.72, "meters"),
  7869. weight: math.unit(68, "kg"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/lexi/front.svg"
  7873. }
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Very Smol",
  7879. height: math.unit(10, "mm")
  7880. },
  7881. {
  7882. name: "Micro",
  7883. height: math.unit(6.8, "cm"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(1.72, "m")
  7889. }
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(1.69, "meters"),
  7897. weight: math.unit(68, "kg"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/martin/front.svg",
  7901. extra: 596 / 581
  7902. }
  7903. }
  7904. },
  7905. [
  7906. {
  7907. name: "Micro",
  7908. height: math.unit(6.85, "cm"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(1.69, "m")
  7914. }
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(1.69, "meters"),
  7922. weight: math.unit(68, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/juno/front.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Micro",
  7932. height: math.unit(7, "cm")
  7933. },
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(1.89, "m")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(353, "meters"),
  7941. default: true
  7942. }
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(1.93, "meters"),
  7950. weight: math.unit(83, "kg"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/samantha/front.svg"
  7954. }
  7955. },
  7956. frontClothed: {
  7957. height: math.unit(1.93, "meters"),
  7958. weight: math.unit(83, "kg"),
  7959. name: "Front (Clothed)",
  7960. image: {
  7961. source: "./media/characters/samantha/front-clothed.svg"
  7962. }
  7963. },
  7964. back: {
  7965. height: math.unit(1.93, "meters"),
  7966. weight: math.unit(83, "kg"),
  7967. name: "Back",
  7968. image: {
  7969. source: "./media/characters/samantha/back.svg"
  7970. }
  7971. },
  7972. },
  7973. [
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(1.93, "m")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(74, "meters"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Macro+",
  7985. height: math.unit(223, "meters"),
  7986. },
  7987. {
  7988. name: "Megamacro",
  7989. height: math.unit(8381, "meters"),
  7990. },
  7991. {
  7992. name: "Megamacro+",
  7993. height: math.unit(12000, "kilometers")
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(1.92, "meters"),
  8002. weight: math.unit(80, "kg"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/dr-clay/front.svg"
  8006. }
  8007. },
  8008. frontClothed: {
  8009. height: math.unit(1.92, "meters"),
  8010. weight: math.unit(80, "kg"),
  8011. name: "Front (Clothed)",
  8012. image: {
  8013. source: "./media/characters/dr-clay/front-clothed.svg"
  8014. }
  8015. }
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(1.92, "m")
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(214, "meters"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Macro+",
  8029. height: math.unit(12.237, "meters"),
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(557, "megameters"),
  8034. },
  8035. {
  8036. name: "Unimaginable",
  8037. height: math.unit(120e9, "lightyears")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(2, "meters"),
  8046. weight: math.unit(80, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Teramacro",
  8056. height: math.unit(500000, "lightyears"),
  8057. default: true
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8063. {
  8064. crux: {
  8065. height: math.unit(2, "meters"),
  8066. weight: math.unit(150, "kg"),
  8067. name: "Crux",
  8068. image: {
  8069. source: "./media/characters/vemus/crux.svg",
  8070. extra: 1074/936,
  8071. bottom: 23/1097
  8072. }
  8073. },
  8074. skunkTanuki: {
  8075. height: math.unit(2, "meters"),
  8076. weight: math.unit(150, "kg"),
  8077. name: "Skunk-Tanuki",
  8078. image: {
  8079. source: "./media/characters/vemus/skunk-tanuki.svg",
  8080. extra: 926/893,
  8081. bottom: 20/946
  8082. }
  8083. },
  8084. },
  8085. [
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(4, "meters"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Big",
  8093. height: math.unit(8, "meters")
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(100, "meters")
  8098. },
  8099. {
  8100. name: "Macro+",
  8101. height: math.unit(1500, "meters")
  8102. },
  8103. {
  8104. name: "Stellar",
  8105. height: math.unit(14e8, "meters")
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(2, "meters"),
  8114. weight: math.unit(70, "kg"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/beherit/front.svg",
  8118. extra: 1234/1109,
  8119. bottom: 55/1289
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(6, "feet")
  8127. },
  8128. {
  8129. name: "Lorg",
  8130. height: math.unit(25, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Lorger",
  8135. height: math.unit(75, "feet")
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(200, "meters")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(2, "meters"),
  8148. weight: math.unit(150, "kg"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/everett/front.svg",
  8152. extra: 1017/866,
  8153. bottom: 86/1103
  8154. }
  8155. },
  8156. paw: {
  8157. height: math.unit(2 / 3.6, "meters"),
  8158. name: "Paw",
  8159. image: {
  8160. source: "./media/characters/everett/paw.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(15, "feet"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Lorg",
  8172. height: math.unit(70, "feet"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Lorger",
  8177. height: math.unit(250, "feet")
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(500, "meters")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(2, "meters"),
  8190. weight: math.unit(86, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/rose/front.svg",
  8194. extra: 1785/1636,
  8195. bottom: 30/1815
  8196. },
  8197. form: "liom",
  8198. default: true
  8199. },
  8200. frontSporty: {
  8201. height: math.unit(2, "meters"),
  8202. weight: math.unit(86, "kg"),
  8203. name: "Front (Sporty)",
  8204. image: {
  8205. source: "./media/characters/rose/front-sporty.svg",
  8206. extra: 350/335,
  8207. bottom: 10/360
  8208. },
  8209. form: "liom"
  8210. },
  8211. frontAlt: {
  8212. height: math.unit(1.6, "meters"),
  8213. weight: math.unit(86, "kg"),
  8214. name: "Front (Alt)",
  8215. image: {
  8216. source: "./media/characters/rose/front-alt.svg",
  8217. extra: 299/283,
  8218. bottom: 3/302
  8219. },
  8220. form: "liom"
  8221. },
  8222. plush: {
  8223. height: math.unit(2, "meters"),
  8224. weight: math.unit(86/3, "kg"),
  8225. name: "Plush",
  8226. image: {
  8227. source: "./media/characters/rose/plush.svg",
  8228. extra: 361/337,
  8229. bottom: 11/372
  8230. },
  8231. form: "plush",
  8232. default: true
  8233. },
  8234. faeStanding: {
  8235. height: math.unit(10, "cm"),
  8236. weight: math.unit(10, "grams"),
  8237. name: "Standing",
  8238. image: {
  8239. source: "./media/characters/rose/fae-standing.svg",
  8240. extra: 1189/1060,
  8241. bottom: 27/1216
  8242. },
  8243. form: "fae",
  8244. default: true
  8245. },
  8246. faeSitting: {
  8247. height: math.unit(5, "cm"),
  8248. weight: math.unit(10, "grams"),
  8249. name: "Sitting",
  8250. image: {
  8251. source: "./media/characters/rose/fae-sitting.svg",
  8252. extra: 737/577,
  8253. bottom: 356/1093
  8254. },
  8255. form: "fae"
  8256. },
  8257. faePaw: {
  8258. height: math.unit(1.35, "cm"),
  8259. name: "Paw",
  8260. image: {
  8261. source: "./media/characters/rose/fae-paw.svg"
  8262. },
  8263. form: "fae"
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "True Micro",
  8269. height: math.unit(9, "cm"),
  8270. form: "liom"
  8271. },
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(16, "cm"),
  8275. form: "liom"
  8276. },
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(1.85, "meters"),
  8280. default: true,
  8281. form: "liom"
  8282. },
  8283. {
  8284. name: "Mini-Macro",
  8285. height: math.unit(5, "meters"),
  8286. form: "liom"
  8287. },
  8288. {
  8289. name: "Macro",
  8290. height: math.unit(15, "meters"),
  8291. form: "liom"
  8292. },
  8293. {
  8294. name: "True Macro",
  8295. height: math.unit(40, "meters"),
  8296. form: "liom"
  8297. },
  8298. {
  8299. name: "City Scale",
  8300. height: math.unit(1, "km"),
  8301. form: "liom"
  8302. },
  8303. {
  8304. name: "Plushie",
  8305. height: math.unit(9, "cm"),
  8306. form: "plush",
  8307. default: true
  8308. },
  8309. {
  8310. name: "Fae",
  8311. height: math.unit(10, "cm"),
  8312. form: "fae",
  8313. default: true
  8314. },
  8315. ],
  8316. {
  8317. "liom": {
  8318. name: "Liom"
  8319. },
  8320. "plush": {
  8321. name: "Plush"
  8322. },
  8323. "fae": {
  8324. name: "Fae Fox",
  8325. default: true
  8326. }
  8327. }
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(2, "meters"),
  8334. weight: math.unit(350, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/regal/front.svg"
  8338. }
  8339. },
  8340. back: {
  8341. height: math.unit(2, "meters"),
  8342. weight: math.unit(350, "lbs"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/regal/back.svg"
  8346. }
  8347. },
  8348. },
  8349. [
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(350, "feet"),
  8353. default: true
  8354. }
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8359. {
  8360. standing: {
  8361. height: math.unit(4 + 11/12, "feet"),
  8362. weight: math.unit(100, "lb"),
  8363. name: "Standing",
  8364. image: {
  8365. source: "./media/characters/opal/standing.svg",
  8366. extra: 1588/1513,
  8367. bottom: 23/1611
  8368. }
  8369. },
  8370. sitting: {
  8371. height: math.unit(2.3, "feet"),
  8372. weight: math.unit(100, "lb"),
  8373. name: "Sitting",
  8374. image: {
  8375. source: "./media/characters/opal/sitting.svg",
  8376. extra: 1031/892,
  8377. bottom: 142/1173
  8378. }
  8379. },
  8380. hand: {
  8381. height: math.unit(0.59, "feet"),
  8382. name: "Hand",
  8383. image: {
  8384. source: "./media/characters/opal/hand.svg"
  8385. }
  8386. },
  8387. foot: {
  8388. height: math.unit(0.61, "feet"),
  8389. name: "Foot",
  8390. image: {
  8391. source: "./media/characters/opal/foot.svg"
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Small",
  8398. height: math.unit(4 + 11 / 12, "feet")
  8399. },
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(20, "feet"),
  8403. default: true
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(120, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(80, "miles")
  8412. },
  8413. {
  8414. name: "True Size",
  8415. height: math.unit(100000, "lightyears")
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(200, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/vector-wuff/front.svg"
  8428. }
  8429. }
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(2.8, "meters")
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(450, "meters"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Megamacro",
  8443. height: math.unit(15, "kilometers")
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(256, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/dannik/front.svg"
  8456. }
  8457. }
  8458. },
  8459. [
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(69.57, "meters"),
  8463. default: true
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(6, "feet"),
  8472. weight: math.unit(120, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/azura-saharah/front.svg"
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(120, "lbs"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/azura-saharah/back.svg"
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(100, "feet"),
  8491. default: true
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8497. {
  8498. side: {
  8499. height: math.unit(5 + 4 / 12, "feet"),
  8500. weight: math.unit(163, "lbs"),
  8501. name: "Side",
  8502. image: {
  8503. source: "./media/characters/kennedy/side.svg"
  8504. }
  8505. }
  8506. },
  8507. [
  8508. {
  8509. name: "Standard Doggo",
  8510. height: math.unit(5 + 4 / 12, "feet")
  8511. },
  8512. {
  8513. name: "Big Doggo",
  8514. height: math.unit(25 + 3 / 12, "feet"),
  8515. default: true
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(5 + 5/12, "feet"),
  8524. weight: math.unit(100, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/odios-de-lunar/front.svg",
  8528. extra: 1468/1323,
  8529. bottom: 22/1490
  8530. }
  8531. }
  8532. },
  8533. [
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(3, "inches")
  8537. },
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(5.5, "feet"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(100, "feet")
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8551. {
  8552. back: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(220, "lbs"),
  8555. name: "Back",
  8556. image: {
  8557. source: "./media/characters/mandake/back.svg"
  8558. }
  8559. }
  8560. },
  8561. [
  8562. {
  8563. name: "Normal",
  8564. height: math.unit(7, "feet"),
  8565. default: true
  8566. },
  8567. {
  8568. name: "Macro",
  8569. height: math.unit(78, "feet")
  8570. },
  8571. {
  8572. name: "Macro+",
  8573. height: math.unit(300, "meters")
  8574. },
  8575. {
  8576. name: "Macro++",
  8577. height: math.unit(2400, "feet")
  8578. },
  8579. {
  8580. name: "Megamacro",
  8581. height: math.unit(5167, "meters")
  8582. },
  8583. {
  8584. name: "Gigamacro",
  8585. height: math.unit(41769, "miles")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/yozey/front.svg"
  8598. }
  8599. },
  8600. frontAlt: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(120, "lbs"),
  8603. name: "Front (Alt)",
  8604. image: {
  8605. source: "./media/characters/yozey/front-alt.svg"
  8606. }
  8607. },
  8608. side: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(120, "lbs"),
  8611. name: "Side",
  8612. image: {
  8613. source: "./media/characters/yozey/side.svg"
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Micro",
  8620. height: math.unit(3, "inches"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(6, "feet")
  8626. }
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(103, "lbs"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/valeska-voss/front.svg"
  8638. }
  8639. }
  8640. },
  8641. [
  8642. {
  8643. name: "Mini-Sized Sub",
  8644. height: math.unit(3.1, "inches")
  8645. },
  8646. {
  8647. name: "Mid-Sized Sub",
  8648. height: math.unit(6.2, "inches")
  8649. },
  8650. {
  8651. name: "Full-Sized Sub",
  8652. height: math.unit(9.3, "inches")
  8653. },
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(5 + 2 / 12, "foot"),
  8657. default: true
  8658. },
  8659. ]
  8660. ))
  8661. characterMakers.push(() => makeCharacter(
  8662. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8663. {
  8664. front: {
  8665. height: math.unit(6, "feet"),
  8666. weight: math.unit(160, "lbs"),
  8667. name: "Front",
  8668. image: {
  8669. source: "./media/characters/gene-zeta/front.svg",
  8670. extra: 3006 / 2826,
  8671. bottom: 182 / 3188
  8672. }
  8673. }
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(6, "inches")
  8679. },
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(5 + 11 / 12, "foot"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(140, "feet")
  8688. },
  8689. {
  8690. name: "Supercharged",
  8691. height: math.unit(2500, "feet")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(350, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/razinox/front.svg",
  8704. extra: 1686 / 1548,
  8705. bottom: 28.2 / 1868
  8706. }
  8707. },
  8708. back: {
  8709. height: math.unit(6, "feet"),
  8710. weight: math.unit(350, "lbs"),
  8711. name: "Back",
  8712. image: {
  8713. source: "./media/characters/razinox/back.svg",
  8714. extra: 1660 / 1590,
  8715. bottom: 15 / 1665
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(10 + 8 / 12, "foot")
  8723. },
  8724. {
  8725. name: "Minimacro",
  8726. height: math.unit(15, "foot")
  8727. },
  8728. {
  8729. name: "Macro",
  8730. height: math.unit(60, "foot"),
  8731. default: true
  8732. },
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(5, "miles")
  8736. },
  8737. {
  8738. name: "Gigamacro",
  8739. height: math.unit(6000, "miles")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lbs"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/cobalt/front.svg"
  8752. }
  8753. }
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(8 + 1 / 12, "foot")
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(111, "foot"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Supracosmic",
  8767. height: math.unit(1e42, "feet")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(5, "inches"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/amanda/front.svg",
  8779. extra: 926/791,
  8780. bottom: 38/964
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(5, "inches"),
  8785. name: "Back",
  8786. image: {
  8787. source: "./media/characters/amanda/back.svg",
  8788. extra: 909/805,
  8789. bottom: 43/952
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Micro",
  8796. height: math.unit(5, "inches"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(2.75, "meters"),
  8806. weight: math.unit(1200, "lb"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/teal/front.svg",
  8810. extra: 2463 / 2320,
  8811. bottom: 166 / 2629
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(2.75, "meters"),
  8816. weight: math.unit(1200, "lb"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/teal/back.svg",
  8820. extra: 2580 / 2489,
  8821. bottom: 151 / 2731
  8822. }
  8823. },
  8824. sitting: {
  8825. height: math.unit(1.9, "meters"),
  8826. weight: math.unit(1200, "lb"),
  8827. name: "Sitting",
  8828. image: {
  8829. source: "./media/characters/teal/sitting.svg",
  8830. extra: 623 / 590,
  8831. bottom: 121 / 744
  8832. }
  8833. },
  8834. standing: {
  8835. height: math.unit(2.75, "meters"),
  8836. weight: math.unit(1200, "lb"),
  8837. name: "Standing",
  8838. image: {
  8839. source: "./media/characters/teal/standing.svg",
  8840. extra: 923 / 893,
  8841. bottom: 60 / 983
  8842. }
  8843. },
  8844. stretching: {
  8845. height: math.unit(3.65, "meters"),
  8846. weight: math.unit(1200, "lb"),
  8847. name: "Stretching",
  8848. image: {
  8849. source: "./media/characters/teal/stretching.svg",
  8850. extra: 1276 / 1244,
  8851. bottom: 0 / 1276
  8852. }
  8853. },
  8854. legged: {
  8855. height: math.unit(1.3, "meters"),
  8856. weight: math.unit(100, "lb"),
  8857. name: "Legged",
  8858. image: {
  8859. source: "./media/characters/teal/legged.svg",
  8860. extra: 462 / 437,
  8861. bottom: 24 / 486
  8862. }
  8863. },
  8864. naga: {
  8865. height: math.unit(5.4, "meters"),
  8866. weight: math.unit(4000, "lb"),
  8867. name: "Naga",
  8868. image: {
  8869. source: "./media/characters/teal/naga.svg",
  8870. extra: 1902 / 1858,
  8871. bottom: 0 / 1902
  8872. }
  8873. },
  8874. hand: {
  8875. height: math.unit(0.52, "meters"),
  8876. name: "Hand",
  8877. image: {
  8878. source: "./media/characters/teal/hand.svg"
  8879. }
  8880. },
  8881. maw: {
  8882. height: math.unit(0.43, "meters"),
  8883. name: "Maw",
  8884. image: {
  8885. source: "./media/characters/teal/maw.svg"
  8886. }
  8887. },
  8888. slit: {
  8889. height: math.unit(0.25, "meters"),
  8890. name: "Slit",
  8891. image: {
  8892. source: "./media/characters/teal/slit.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(2.75, "meters"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(300, "feet")
  8905. },
  8906. {
  8907. name: "Macro+",
  8908. height: math.unit(2000, "feet")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8914. {
  8915. frontCat: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(180, "lbs"),
  8918. name: "Front (Cat)",
  8919. image: {
  8920. source: "./media/characters/ravin-amulet/front-cat.svg"
  8921. }
  8922. },
  8923. frontCatAlt: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(180, "lbs"),
  8926. name: "Front (Alt, Cat)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8929. }
  8930. },
  8931. frontWerewolf: {
  8932. height: math.unit(6 * 1.2, "feet"),
  8933. weight: math.unit(225, "lbs"),
  8934. name: "Front (Werewolf)",
  8935. image: {
  8936. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8937. }
  8938. },
  8939. backWerewolf: {
  8940. height: math.unit(6 * 1.2, "feet"),
  8941. weight: math.unit(225, "lbs"),
  8942. name: "Back (Werewolf)",
  8943. image: {
  8944. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Nano",
  8951. height: math.unit(1, "micrometer")
  8952. },
  8953. {
  8954. name: "Micro",
  8955. height: math.unit(1, "inch")
  8956. },
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(6, "feet"),
  8960. default: true
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(60, "feet")
  8965. }
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(6, "feet"),
  8973. weight: math.unit(165, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/fluoresce/front.svg"
  8977. }
  8978. }
  8979. },
  8980. [
  8981. {
  8982. name: "Micro",
  8983. height: math.unit(6, "cm")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(5 + 7 / 12, "feet"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(56, "feet")
  8993. },
  8994. {
  8995. name: "Megamacro",
  8996. height: math.unit(1.9, "miles")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(9 + 6 / 12, "feet"),
  9005. weight: math.unit(523, "lbs"),
  9006. name: "Side",
  9007. image: {
  9008. source: "./media/characters/aurora/side.svg",
  9009. extra: 474/393,
  9010. bottom: 5/479
  9011. }
  9012. }
  9013. },
  9014. [
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(9 + 6 / 12, "feet")
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(96, "feet"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Macro+",
  9026. height: math.unit(243, "feet")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(194, "cm"),
  9035. weight: math.unit(90, "kg"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/ranek/front.svg",
  9039. extra: 1862/1791,
  9040. bottom: 80/1942
  9041. }
  9042. },
  9043. back: {
  9044. height: math.unit(194, "cm"),
  9045. weight: math.unit(90, "kg"),
  9046. name: "Back",
  9047. image: {
  9048. source: "./media/characters/ranek/back.svg",
  9049. extra: 1853/1787,
  9050. bottom: 74/1927
  9051. }
  9052. },
  9053. feral: {
  9054. height: math.unit(30, "cm"),
  9055. weight: math.unit(1.6, "lbs"),
  9056. name: "Feral",
  9057. image: {
  9058. source: "./media/characters/ranek/feral.svg",
  9059. extra: 990/631,
  9060. bottom: 29/1019
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(194, "cm"),
  9068. default: true
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(100, "meters")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(5 + 6 / 12, "feet"),
  9081. weight: math.unit(153, "lbs"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/andrew-cooper/front.svg"
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Nano",
  9091. height: math.unit(1, "mm")
  9092. },
  9093. {
  9094. name: "Micro",
  9095. height: math.unit(2, "inches")
  9096. },
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(5 + 6 / 12, "feet"),
  9100. default: true
  9101. }
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(180, "lbs"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/akane-sato/front.svg",
  9113. extra: 1219 / 1140
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(180, "lbs"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/akane-sato/back.svg",
  9122. extra: 1219 / 1170
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(2.5, "meters")
  9130. },
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(250, "meters"),
  9134. default: true
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(25, "km")
  9139. },
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9144. {
  9145. front: {
  9146. height: math.unit(6, "feet"),
  9147. weight: math.unit(65, "kg"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/rook/front.svg",
  9151. extra: 960 / 950
  9152. }
  9153. }
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(8.8, "feet")
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(88, "feet"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(8, "miles")
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(12 + 2 / 12, "feet"),
  9176. weight: math.unit(808, "lbs"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/prodigy/front.svg"
  9180. }
  9181. }
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(12 + 2 / 12, "feet"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(143, "feet")
  9192. },
  9193. {
  9194. name: "Macro+",
  9195. height: math.unit(400, "feet")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(225, "lbs"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/daniel/front.svg"
  9208. }
  9209. },
  9210. leaning: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(225, "lbs"),
  9213. name: "Leaning",
  9214. image: {
  9215. source: "./media/characters/daniel/leaning.svg"
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(1000, "feet"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(88, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/chiros/front.svg",
  9236. extra: 306 / 226
  9237. }
  9238. },
  9239. side: {
  9240. height: math.unit(6, "feet"),
  9241. weight: math.unit(88, "lbs"),
  9242. name: "Side",
  9243. image: {
  9244. source: "./media/characters/chiros/side.svg",
  9245. extra: 306 / 226
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(6, "cm"),
  9253. default: true
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(100, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/selka/front.svg",
  9266. extra: 947 / 887
  9267. }
  9268. }
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(5, "cm"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(8 + 3 / 12, "feet"),
  9283. weight: math.unit(424, "lbs"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/verin/front.svg",
  9287. extra: 1845 / 1550
  9288. }
  9289. },
  9290. frontArmored: {
  9291. height: math.unit(8 + 3 / 12, "feet"),
  9292. weight: math.unit(424, "lbs"),
  9293. name: "Front (Armored)",
  9294. image: {
  9295. source: "./media/characters/verin/front-armor.svg",
  9296. extra: 1845 / 1550,
  9297. bottom: 0.01
  9298. }
  9299. },
  9300. back: {
  9301. height: math.unit(8 + 3 / 12, "feet"),
  9302. weight: math.unit(424, "lbs"),
  9303. name: "Back",
  9304. image: {
  9305. source: "./media/characters/verin/back.svg",
  9306. bottom: 0.1,
  9307. extra: 1
  9308. }
  9309. },
  9310. foot: {
  9311. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9312. name: "Foot",
  9313. image: {
  9314. source: "./media/characters/verin/foot.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(8 + 3 / 12, "feet")
  9322. },
  9323. {
  9324. name: "Minimacro",
  9325. height: math.unit(21, "feet"),
  9326. default: true
  9327. },
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(626, "feet")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(2.718, "meters"),
  9339. weight: math.unit(150, "lbs"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/sovrim-terraquian/front.svg",
  9343. extra: 1752/1689,
  9344. bottom: 36/1788
  9345. }
  9346. },
  9347. back: {
  9348. height: math.unit(2.718, "meters"),
  9349. weight: math.unit(150, "lbs"),
  9350. name: "Back",
  9351. image: {
  9352. source: "./media/characters/sovrim-terraquian/back.svg",
  9353. extra: 1698/1657,
  9354. bottom: 58/1756
  9355. }
  9356. },
  9357. tongue: {
  9358. height: math.unit(2.865, "feet"),
  9359. name: "Tongue",
  9360. image: {
  9361. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9362. }
  9363. },
  9364. hand: {
  9365. height: math.unit(1.61, "feet"),
  9366. name: "Hand",
  9367. image: {
  9368. source: "./media/characters/sovrim-terraquian/hand.svg"
  9369. }
  9370. },
  9371. foot: {
  9372. height: math.unit(1.05, "feet"),
  9373. name: "Foot",
  9374. image: {
  9375. source: "./media/characters/sovrim-terraquian/foot.svg"
  9376. }
  9377. },
  9378. footAlt: {
  9379. height: math.unit(0.88, "feet"),
  9380. name: "Foot (Alt)",
  9381. image: {
  9382. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(2, "inches")
  9390. },
  9391. {
  9392. name: "Small",
  9393. height: math.unit(1, "meter")
  9394. },
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(Math.E, "meters"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(20, "meters")
  9403. },
  9404. {
  9405. name: "Macro+",
  9406. height: math.unit(400, "meters")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(7, "feet"),
  9415. weight: math.unit(489, "lbs"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/reece-silvermane/front.svg",
  9419. bottom: 0.02,
  9420. extra: 1
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Macro",
  9427. height: math.unit(1.5, "miles"),
  9428. default: true
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(78, "kg"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/kane/front.svg",
  9441. extra: 978 / 899
  9442. }
  9443. },
  9444. back: {
  9445. height: math.unit(6, "feet"),
  9446. weight: math.unit(78, "kg"),
  9447. name: "Back",
  9448. image: {
  9449. source: "./media/characters/kane/back.svg",
  9450. extra: 1966/1800,
  9451. bottom: 0/1966
  9452. }
  9453. },
  9454. head: {
  9455. height: math.unit(1.4, "feet"),
  9456. name: "Head",
  9457. image: {
  9458. source: "./media/characters/kane/head.svg"
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(2.1, "m"),
  9466. },
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(1, "km"),
  9470. default: true
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9476. {
  9477. frontSfw: {
  9478. name: "Front (SFW)",
  9479. height: math.unit(6 + 3/12, "feet"),
  9480. weight: math.unit(200, "kg"),
  9481. image: {
  9482. source: "./media/characters/tegon/front-sfw.svg",
  9483. extra: 1105/1087,
  9484. bottom: 86/1191
  9485. }
  9486. },
  9487. backSfw: {
  9488. name: "Back (SFW)",
  9489. height: math.unit(6 + 3/12, "feet"),
  9490. weight: math.unit(200, "kg"),
  9491. image: {
  9492. source: "./media/characters/tegon/back-sfw.svg",
  9493. extra: 1107/1087,
  9494. bottom: 21/1128
  9495. }
  9496. },
  9497. frontNsfw: {
  9498. name: "Front (NSFW)",
  9499. height: math.unit(6 + 3/12, "feet"),
  9500. weight: math.unit(200, "kg"),
  9501. image: {
  9502. source: "./media/characters/tegon/front-nsfw.svg",
  9503. extra: 1105/1087,
  9504. bottom: 86/1191
  9505. }
  9506. },
  9507. maw: {
  9508. height: math.unit(1.23, "feet"),
  9509. name: "Maw",
  9510. image: {
  9511. source: "./media/characters/tegon/maw.svg"
  9512. }
  9513. },
  9514. dick: {
  9515. height: math.unit(1.18, "feet"),
  9516. name: "Dick",
  9517. image: {
  9518. source: "./media/characters/tegon/dick.svg"
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Micro",
  9525. height: math.unit(1, "inch")
  9526. },
  9527. {
  9528. name: "Normal",
  9529. height: math.unit(6 + 3 / 12, "feet"),
  9530. default: true
  9531. },
  9532. {
  9533. name: "Macro",
  9534. height: math.unit(300, "feet")
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(69, "miles")
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9544. {
  9545. side: {
  9546. height: math.unit(6, "feet"),
  9547. weight: math.unit(2304, "lbs"),
  9548. name: "Side",
  9549. image: {
  9550. source: "./media/characters/arcturax/side.svg",
  9551. extra: 790 / 376,
  9552. bottom: 0.01
  9553. }
  9554. },
  9555. },
  9556. [
  9557. {
  9558. name: "Micro",
  9559. height: math.unit(2, "inch")
  9560. },
  9561. {
  9562. name: "Normal",
  9563. height: math.unit(6, "feet")
  9564. },
  9565. {
  9566. name: "Macro",
  9567. height: math.unit(39, "feet"),
  9568. default: true
  9569. },
  9570. {
  9571. name: "Megamacro",
  9572. height: math.unit(7, "miles")
  9573. },
  9574. ]
  9575. ))
  9576. characterMakers.push(() => makeCharacter(
  9577. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9578. {
  9579. front: {
  9580. height: math.unit(6, "feet"),
  9581. weight: math.unit(50, "lbs"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/sentri/front.svg",
  9585. extra: 1750 / 1570,
  9586. bottom: 0.025
  9587. }
  9588. },
  9589. frontAlt: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(50, "lbs"),
  9592. name: "Front (Alt)",
  9593. image: {
  9594. source: "./media/characters/sentri/front-alt.svg",
  9595. extra: 1750 / 1570,
  9596. bottom: 0.025
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(15, "feet"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(2500, "feet")
  9609. }
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9614. {
  9615. front: {
  9616. height: math.unit(5 + 8 / 12, "feet"),
  9617. weight: math.unit(130, "lbs"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/corvin/front.svg",
  9621. extra: 1803 / 1629
  9622. }
  9623. },
  9624. frontShirt: {
  9625. height: math.unit(5 + 8 / 12, "feet"),
  9626. weight: math.unit(130, "lbs"),
  9627. name: "Front (Shirt)",
  9628. image: {
  9629. source: "./media/characters/corvin/front-shirt.svg",
  9630. extra: 1803 / 1629
  9631. }
  9632. },
  9633. frontPoncho: {
  9634. height: math.unit(5 + 8 / 12, "feet"),
  9635. weight: math.unit(130, "lbs"),
  9636. name: "Front (Poncho)",
  9637. image: {
  9638. source: "./media/characters/corvin/front-poncho.svg",
  9639. extra: 1803 / 1629
  9640. }
  9641. },
  9642. side: {
  9643. height: math.unit(5 + 8 / 12, "feet"),
  9644. weight: math.unit(130, "lbs"),
  9645. name: "Side",
  9646. image: {
  9647. source: "./media/characters/corvin/side.svg",
  9648. extra: 1012 / 945
  9649. }
  9650. },
  9651. back: {
  9652. height: math.unit(5 + 8 / 12, "feet"),
  9653. weight: math.unit(130, "lbs"),
  9654. name: "Back",
  9655. image: {
  9656. source: "./media/characters/corvin/back.svg",
  9657. extra: 1803 / 1629
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Micro",
  9664. height: math.unit(3, "inches")
  9665. },
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(5 + 8 / 12, "feet")
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(300, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(500, "miles")
  9678. }
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(135, "lbs"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/q/front.svg",
  9690. extra: 854 / 752,
  9691. bottom: 0.005
  9692. }
  9693. },
  9694. back: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(130, "lbs"),
  9697. name: "Back",
  9698. image: {
  9699. source: "./media/characters/q/back.svg",
  9700. extra: 854 / 752
  9701. }
  9702. },
  9703. },
  9704. [
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(90, "feet"),
  9708. default: true
  9709. },
  9710. {
  9711. name: "Extra Macro",
  9712. height: math.unit(300, "feet"),
  9713. },
  9714. {
  9715. name: "BIG WALF",
  9716. height: math.unit(750, "feet"),
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(3, "feet"),
  9725. weight: math.unit(28, "lbs"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/citrine/front.svg"
  9729. }
  9730. }
  9731. },
  9732. [
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(3, "feet"),
  9736. default: true
  9737. }
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9742. {
  9743. front: {
  9744. height: math.unit(14, "feet"),
  9745. weight: math.unit(1450, "kg"),
  9746. preyCapacity: math.unit(15, "people"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/aura-starwind/front.svg",
  9750. extra: 1440/1327,
  9751. bottom: 11/1451
  9752. }
  9753. },
  9754. side: {
  9755. height: math.unit(14, "feet"),
  9756. weight: math.unit(1450, "kg"),
  9757. preyCapacity: math.unit(15, "people"),
  9758. name: "Side",
  9759. image: {
  9760. source: "./media/characters/aura-starwind/side.svg",
  9761. extra: 1654 / 1497
  9762. }
  9763. },
  9764. taur: {
  9765. height: math.unit(18, "feet"),
  9766. weight: math.unit(5500, "kg"),
  9767. preyCapacity: math.unit(50, "people"),
  9768. name: "Taur",
  9769. image: {
  9770. source: "./media/characters/aura-starwind/taur.svg",
  9771. extra: 1760 / 1650
  9772. }
  9773. },
  9774. feral: {
  9775. height: math.unit(46, "feet"),
  9776. weight: math.unit(25000, "kg"),
  9777. preyCapacity: math.unit(120, "people"),
  9778. name: "Feral",
  9779. image: {
  9780. source: "./media/characters/aura-starwind/feral.svg"
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(14, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(50, "meters")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(5000, "meters")
  9797. },
  9798. {
  9799. name: "Gigamacro",
  9800. height: math.unit(100000, "kilometers")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(2 + 7 / 12, "feet"),
  9809. weight: math.unit(32, "lbs"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/rivet/front.svg",
  9813. extra: 1716 / 1658,
  9814. bottom: 0.03
  9815. }
  9816. },
  9817. foot: {
  9818. height: math.unit(0.551, "feet"),
  9819. name: "Rivet's Foot",
  9820. image: {
  9821. source: "./media/characters/rivet/foot.svg"
  9822. },
  9823. rename: true
  9824. }
  9825. },
  9826. [
  9827. {
  9828. name: "Micro",
  9829. height: math.unit(1.5, "inches"),
  9830. },
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(2 + 7 / 12, "feet"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Macro",
  9838. height: math.unit(85, "feet")
  9839. },
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(2.2, "km")
  9843. }
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(5 + 9 / 12, "feet"),
  9851. weight: math.unit(150, "lbs"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/coffee/front.svg",
  9855. extra: 946/880,
  9856. bottom: 66/1012
  9857. }
  9858. },
  9859. foot: {
  9860. height: math.unit(1.29, "feet"),
  9861. name: "Foot",
  9862. image: {
  9863. source: "./media/characters/coffee/foot.svg"
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Micro",
  9870. height: math.unit(2, "inches"),
  9871. },
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(5 + 9 / 12, "feet"),
  9875. default: true
  9876. },
  9877. {
  9878. name: "Macro",
  9879. height: math.unit(800, "feet")
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(25, "miles")
  9884. }
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(200, "lbs"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/chari-gal/front.svg",
  9896. extra: 735/649,
  9897. bottom: 55/790
  9898. },
  9899. form: "normal",
  9900. default: true
  9901. },
  9902. back: {
  9903. height: math.unit(6, "feet"),
  9904. weight: math.unit(200, "lb"),
  9905. name: "Back",
  9906. image: {
  9907. source: "./media/characters/chari-gal/back.svg",
  9908. extra: 762/666,
  9909. bottom: 31/793
  9910. },
  9911. form: "normal"
  9912. },
  9913. mouth: {
  9914. height: math.unit(1.35, "feet"),
  9915. name: "Mouth",
  9916. image: {
  9917. source: "./media/characters/chari-gal/mouth.svg"
  9918. },
  9919. form: "normal"
  9920. },
  9921. gigantamax: {
  9922. height: math.unit(6 * 16, "feet"),
  9923. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9924. name: "Gigantamax",
  9925. image: {
  9926. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9927. extra: 1507/1149,
  9928. bottom: 254/1761
  9929. },
  9930. form: "gigantamax",
  9931. default: true
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(5 + 7 / 12, "feet"),
  9938. form: "normal",
  9939. },
  9940. {
  9941. name: "Macro",
  9942. height: math.unit(200, "feet"),
  9943. default: true,
  9944. form: "normal"
  9945. },
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9949. form: "gigantamax",
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(16 * 200, "feet"),
  9954. default: true,
  9955. form: "gigantamax"
  9956. },
  9957. ],
  9958. {
  9959. "normal": {
  9960. name: "Normal",
  9961. default: true
  9962. },
  9963. "gigantamax": {
  9964. name: "Gigantamax",
  9965. },
  9966. }
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(150, "lbs"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/nova/front.svg",
  9977. extra: 5000 / 4722,
  9978. bottom: 0.02
  9979. }
  9980. }
  9981. },
  9982. [
  9983. {
  9984. name: "Micro-",
  9985. height: math.unit(0.8, "inches")
  9986. },
  9987. {
  9988. name: "Micro",
  9989. height: math.unit(2, "inches"),
  9990. default: true
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9996. {
  9997. koboldFront: {
  9998. height: math.unit(3 + 1 / 12, "feet"),
  9999. weight: math.unit(21.7, "lbs"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/argent/kobold-front.svg",
  10003. extra: 1471 / 1331,
  10004. bottom: 100.8 / 1575.5
  10005. },
  10006. form: "kobold",
  10007. default: true
  10008. },
  10009. dragonFront: {
  10010. height: math.unit(75, "inches"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/argent/dragon-front.svg",
  10014. extra: 1389/1248,
  10015. bottom: 54/1443
  10016. },
  10017. form: "dragon",
  10018. },
  10019. dragonBack: {
  10020. height: math.unit(75, "inches"),
  10021. name: "Back",
  10022. image: {
  10023. source: "./media/characters/argent/dragon-back.svg",
  10024. extra: 1399/1271,
  10025. bottom: 23/1422
  10026. },
  10027. form: "dragon",
  10028. },
  10029. dragonDressed: {
  10030. height: math.unit(75, "inches"),
  10031. name: "Dressed",
  10032. image: {
  10033. source: "./media/characters/argent/dragon-dressed.svg",
  10034. extra: 1350/1215,
  10035. bottom: 26/1376
  10036. },
  10037. form: "dragon"
  10038. },
  10039. dragonHead: {
  10040. height: math.unit(23.5, "inches"),
  10041. name: "Head",
  10042. image: {
  10043. source: "./media/characters/argent/dragon-head.svg"
  10044. },
  10045. form: "dragon",
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Micro",
  10051. height: math.unit(2, "inches"),
  10052. form: "kobold",
  10053. },
  10054. {
  10055. name: "Normal",
  10056. height: math.unit(3 + 1 / 12, "feet"),
  10057. form: "kobold",
  10058. default: true
  10059. },
  10060. {
  10061. name: "Macro",
  10062. height: math.unit(120, "feet"),
  10063. form: "kobold",
  10064. },
  10065. {
  10066. name: "Speck",
  10067. height: math.unit(1, "mm"),
  10068. form: "dragon",
  10069. },
  10070. {
  10071. name: "Tiny",
  10072. height: math.unit(1, "cm"),
  10073. form: "dragon",
  10074. },
  10075. {
  10076. name: "Micro",
  10077. height: math.unit(5, "cm"),
  10078. form: "dragon",
  10079. },
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(75, "inches"),
  10083. form: "dragon",
  10084. default: true
  10085. },
  10086. {
  10087. name: "Extra Tall",
  10088. height: math.unit(9, "feet"),
  10089. form: "dragon",
  10090. },
  10091. {
  10092. name: "Inconvenient",
  10093. height: math.unit(5, "meters"),
  10094. form: "dragon",
  10095. },
  10096. {
  10097. name: "Macro",
  10098. height: math.unit(70, "meters"),
  10099. form: "dragon",
  10100. },
  10101. {
  10102. name: "Macro+",
  10103. height: math.unit(250, "meters"),
  10104. form: "dragon",
  10105. },
  10106. {
  10107. name: "Megamacro",
  10108. height: math.unit(20, "km"),
  10109. form: "dragon",
  10110. },
  10111. {
  10112. name: "Mountainous",
  10113. height: math.unit(100, "km"),
  10114. form: "dragon",
  10115. },
  10116. {
  10117. name: "Continental",
  10118. height: math.unit(2, "megameters"),
  10119. form: "dragon",
  10120. },
  10121. {
  10122. name: "Too Big",
  10123. height: math.unit(900, "megameters"),
  10124. form: "dragon",
  10125. },
  10126. ],
  10127. {
  10128. "kobold": {
  10129. name: "Kobold",
  10130. default: true
  10131. },
  10132. "dragon": {
  10133. name: "Dragon",
  10134. },
  10135. }
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10139. {
  10140. lamp: {
  10141. height: math.unit(7 * 1559 / 989, "feet"),
  10142. name: "Magic Lamp",
  10143. image: {
  10144. source: "./media/characters/mira-al-cul/lamp.svg",
  10145. extra: 1617 / 1559
  10146. }
  10147. },
  10148. front: {
  10149. height: math.unit(7, "feet"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/mira-al-cul/front.svg",
  10153. extra: 1044 / 990
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Heavily Restricted",
  10160. height: math.unit(7 * 1559 / 989, "feet")
  10161. },
  10162. {
  10163. name: "Freshly Freed",
  10164. height: math.unit(50 * 1559 / 989, "feet")
  10165. },
  10166. {
  10167. name: "World Encompassing",
  10168. height: math.unit(10000 * 1559 / 989, "miles")
  10169. },
  10170. {
  10171. name: "Galactic",
  10172. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10173. },
  10174. {
  10175. name: "Palmed Universe",
  10176. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Multiversal Matriarch",
  10181. height: math.unit(8.87e10, "yottameters")
  10182. },
  10183. {
  10184. name: "Void Mother",
  10185. height: math.unit(3.14e110, "yottaparsecs")
  10186. },
  10187. {
  10188. name: "Toying with Transcendence",
  10189. height: math.unit(1e307, "meters")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10195. {
  10196. front: {
  10197. height: math.unit(17 + 1 / 12, "feet"),
  10198. weight: math.unit(476.2 * 5, "lbs"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/kuro-shi-uchū/front.svg",
  10202. extra: 2329 / 1835,
  10203. bottom: 0.02
  10204. }
  10205. },
  10206. },
  10207. [
  10208. {
  10209. name: "Micro",
  10210. height: math.unit(2, "inches")
  10211. },
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(12, "meters")
  10215. },
  10216. {
  10217. name: "Planetary",
  10218. height: math.unit(0.00929, "AU"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "Universal",
  10223. height: math.unit(20, "gigaparsecs")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10229. {
  10230. front: {
  10231. height: math.unit(5 + 2 / 12, "feet"),
  10232. weight: math.unit(120, "lbs"),
  10233. name: "Front",
  10234. image: {
  10235. source: "./media/characters/katherine/front.svg",
  10236. extra: 2075 / 1969
  10237. }
  10238. },
  10239. dress: {
  10240. height: math.unit(5 + 2 / 12, "feet"),
  10241. weight: math.unit(120, "lbs"),
  10242. name: "Dress",
  10243. image: {
  10244. source: "./media/characters/katherine/dress.svg",
  10245. extra: 2258 / 2064
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Micro",
  10252. height: math.unit(1, "inches"),
  10253. default: true
  10254. },
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(5 + 2 / 12, "feet")
  10258. },
  10259. {
  10260. name: "Macro",
  10261. height: math.unit(100, "meters")
  10262. },
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(80, "miles")
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10271. {
  10272. front: {
  10273. height: math.unit(7 + 8 / 12, "feet"),
  10274. weight: math.unit(250, "lbs"),
  10275. name: "Front",
  10276. image: {
  10277. source: "./media/characters/yevis/front.svg",
  10278. extra: 1938 / 1755
  10279. }
  10280. }
  10281. },
  10282. [
  10283. {
  10284. name: "Mortal",
  10285. height: math.unit(7 + 8 / 12, "feet")
  10286. },
  10287. {
  10288. name: "Battle",
  10289. height: math.unit(25 + 11 / 12, "feet")
  10290. },
  10291. {
  10292. name: "Wrath",
  10293. height: math.unit(1654 + 11 / 12, "feet")
  10294. },
  10295. {
  10296. name: "Planet Destroyer",
  10297. height: math.unit(12000, "miles")
  10298. },
  10299. {
  10300. name: "Galaxy Conqueror",
  10301. height: math.unit(1.45, "zettameters"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "Universal War",
  10306. height: math.unit(184, "gigaparsecs")
  10307. },
  10308. {
  10309. name: "Eternity War",
  10310. height: math.unit(1.98e55, "yottaparsecs")
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10316. {
  10317. front: {
  10318. height: math.unit(5 + 8 / 12, "feet"),
  10319. weight: math.unit(63, "kg"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/xavier/front.svg",
  10323. extra: 944 / 883
  10324. }
  10325. },
  10326. frontStretch: {
  10327. height: math.unit(5 + 8 / 12, "feet"),
  10328. weight: math.unit(63, "kg"),
  10329. name: "Stretching",
  10330. image: {
  10331. source: "./media/characters/xavier/front-stretch.svg",
  10332. extra: 962 / 820
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Normal",
  10339. height: math.unit(5 + 8 / 12, "feet")
  10340. },
  10341. {
  10342. name: "Macro",
  10343. height: math.unit(100, "meters"),
  10344. default: true
  10345. },
  10346. {
  10347. name: "McLargeHuge",
  10348. height: math.unit(10, "miles")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(5 + 5 / 12, "feet"),
  10357. weight: math.unit(150, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/joshii/front.svg",
  10361. extra: 765 / 653,
  10362. bottom: 51 / 816
  10363. }
  10364. },
  10365. foot: {
  10366. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10367. name: "Foot",
  10368. image: {
  10369. source: "./media/characters/joshii/foot.svg"
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Micro",
  10376. height: math.unit(2, "inches")
  10377. },
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(5 + 5 / 12, "feet")
  10381. },
  10382. {
  10383. name: "Macro",
  10384. height: math.unit(785, "feet"),
  10385. default: true
  10386. },
  10387. {
  10388. name: "Megamacro",
  10389. height: math.unit(24.5, "miles")
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10395. {
  10396. front: {
  10397. height: math.unit(6, "feet"),
  10398. weight: math.unit(150, "lb"),
  10399. name: "Front",
  10400. image: {
  10401. source: "./media/characters/goddess-elizabeth/front.svg",
  10402. extra: 1800 / 1525,
  10403. bottom: 0.005
  10404. }
  10405. },
  10406. foot: {
  10407. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10408. name: "Foot",
  10409. image: {
  10410. source: "./media/characters/goddess-elizabeth/foot.svg"
  10411. }
  10412. },
  10413. mouth: {
  10414. height: math.unit(6, "feet"),
  10415. name: "Mouth",
  10416. image: {
  10417. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Micro",
  10424. height: math.unit(12, "feet")
  10425. },
  10426. {
  10427. name: "Normal",
  10428. height: math.unit(80, "miles"),
  10429. default: true
  10430. },
  10431. {
  10432. name: "Macro",
  10433. height: math.unit(15000, "parsecs")
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10439. {
  10440. front: {
  10441. height: math.unit(5 + 9 / 12, "feet"),
  10442. weight: math.unit(144, "lb"),
  10443. name: "Front",
  10444. image: {
  10445. source: "./media/characters/kara/front.svg"
  10446. }
  10447. },
  10448. feet: {
  10449. height: math.unit(6 / 6.765, "feet"),
  10450. name: "Kara's Feet",
  10451. rename: true,
  10452. image: {
  10453. source: "./media/characters/kara/feet.svg"
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(5 + 9 / 12, "feet")
  10461. },
  10462. {
  10463. name: "Macro",
  10464. height: math.unit(174, "feet"),
  10465. default: true
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10471. {
  10472. front: {
  10473. height: math.unit(18, "feet"),
  10474. weight: math.unit(4050, "lb"),
  10475. name: "Front",
  10476. image: {
  10477. source: "./media/characters/tyrone/front.svg",
  10478. extra: 2405 / 2270,
  10479. bottom: 182 / 2587
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(18, "feet"),
  10487. default: true
  10488. },
  10489. {
  10490. name: "Macro",
  10491. height: math.unit(300, "feet")
  10492. },
  10493. {
  10494. name: "Megamacro",
  10495. height: math.unit(15, "km")
  10496. },
  10497. {
  10498. name: "Gigamacro",
  10499. height: math.unit(500, "km")
  10500. },
  10501. {
  10502. name: "Teramacro",
  10503. height: math.unit(0.5, "gigameters")
  10504. },
  10505. {
  10506. name: "Omnimacro",
  10507. height: math.unit(1e252, "yottauniverse")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(7 + 8 / 12, "feet"),
  10516. weight: math.unit(120, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/danny/front.svg",
  10520. extra: 1490 / 1350
  10521. }
  10522. },
  10523. back: {
  10524. height: math.unit(7 + 8 / 12, "feet"),
  10525. weight: math.unit(120, "lb"),
  10526. name: "Back",
  10527. image: {
  10528. source: "./media/characters/danny/back.svg",
  10529. extra: 1490 / 1350
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Normal",
  10536. height: math.unit(7 + 8 / 12, "feet"),
  10537. default: true
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(3.5, "inches"),
  10546. weight: math.unit(19, "grams"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/mallow/front.svg",
  10550. extra: 471 / 431
  10551. }
  10552. },
  10553. back: {
  10554. height: math.unit(3.5, "inches"),
  10555. weight: math.unit(19, "grams"),
  10556. name: "Back",
  10557. image: {
  10558. source: "./media/characters/mallow/back.svg",
  10559. extra: 471 / 431
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(3.5, "inches"),
  10567. default: true
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10573. {
  10574. front: {
  10575. height: math.unit(9, "feet"),
  10576. weight: math.unit(230, "kg"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/starry-aqua/front.svg"
  10580. }
  10581. },
  10582. back: {
  10583. height: math.unit(9, "feet"),
  10584. weight: math.unit(230, "kg"),
  10585. name: "Back",
  10586. image: {
  10587. source: "./media/characters/starry-aqua/back.svg"
  10588. }
  10589. },
  10590. hand: {
  10591. height: math.unit(9 * 0.1168, "feet"),
  10592. name: "Hand",
  10593. image: {
  10594. source: "./media/characters/starry-aqua/hand.svg"
  10595. }
  10596. },
  10597. foot: {
  10598. height: math.unit(9 * 0.18, "feet"),
  10599. name: "Foot",
  10600. image: {
  10601. source: "./media/characters/starry-aqua/foot.svg"
  10602. }
  10603. }
  10604. },
  10605. [
  10606. {
  10607. name: "Micro",
  10608. height: math.unit(3, "inches")
  10609. },
  10610. {
  10611. name: "Normal",
  10612. height: math.unit(9, "feet")
  10613. },
  10614. {
  10615. name: "Macro",
  10616. height: math.unit(300, "feet"),
  10617. default: true
  10618. },
  10619. {
  10620. name: "Megamacro",
  10621. height: math.unit(3200, "feet")
  10622. }
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(15, "feet"),
  10630. weight: math.unit(5026, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/luka-towers/front.svg",
  10634. extra: 1269/1133,
  10635. bottom: 51/1320
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Normal",
  10642. height: math.unit(15, "feet"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Minimacro",
  10647. height: math.unit(25, "feet")
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(320, "feet")
  10652. },
  10653. {
  10654. name: "Megamacro",
  10655. height: math.unit(35000, "feet")
  10656. },
  10657. {
  10658. name: "Gigamacro",
  10659. height: math.unit(4000, "miles")
  10660. },
  10661. {
  10662. name: "Teramacro",
  10663. height: math.unit(15000, "miles")
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10669. {
  10670. front: {
  10671. height: math.unit(6, "feet"),
  10672. weight: math.unit(150, "lb"),
  10673. name: "Front",
  10674. image: {
  10675. source: "./media/characters/natalie-nightring/front.svg",
  10676. extra: 1,
  10677. bottom: 0.06
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Uh Oh",
  10684. height: math.unit(0.1, "mm")
  10685. },
  10686. {
  10687. name: "Small",
  10688. height: math.unit(3, "inches")
  10689. },
  10690. {
  10691. name: "Human Scale",
  10692. height: math.unit(6, "feet")
  10693. },
  10694. {
  10695. name: "Librarian",
  10696. height: math.unit(50, "feet"),
  10697. default: true
  10698. },
  10699. {
  10700. name: "Immense",
  10701. height: math.unit(200, "miles")
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(180, "lbs"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/danni-rosie/front.svg",
  10714. extra: 1260 / 1128,
  10715. bottom: 0.022
  10716. }
  10717. },
  10718. },
  10719. [
  10720. {
  10721. name: "Micro",
  10722. height: math.unit(2, "inches"),
  10723. default: true
  10724. },
  10725. ]
  10726. ))
  10727. characterMakers.push(() => makeCharacter(
  10728. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10729. {
  10730. front: {
  10731. height: math.unit(5 + 9 / 12, "feet"),
  10732. weight: math.unit(220, "lb"),
  10733. name: "Front",
  10734. image: {
  10735. source: "./media/characters/samantha-kruse/front.svg",
  10736. extra: (985 / 935),
  10737. bottom: 0.03
  10738. }
  10739. },
  10740. frontUndressed: {
  10741. height: math.unit(5 + 9 / 12, "feet"),
  10742. weight: math.unit(220, "lb"),
  10743. name: "Front (Undressed)",
  10744. image: {
  10745. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10746. extra: (973 / 923),
  10747. bottom: 0.025
  10748. }
  10749. },
  10750. fat: {
  10751. height: math.unit(5 + 9 / 12, "feet"),
  10752. weight: math.unit(900, "lb"),
  10753. name: "Front (Fat)",
  10754. image: {
  10755. source: "./media/characters/samantha-kruse/fat.svg",
  10756. extra: 2688 / 2561
  10757. }
  10758. },
  10759. },
  10760. [
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(5 + 9 / 12, "feet"),
  10764. default: true
  10765. }
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10770. {
  10771. back: {
  10772. height: math.unit(5 + 4 / 12, "feet"),
  10773. weight: math.unit(4963, "lb"),
  10774. name: "Back",
  10775. image: {
  10776. source: "./media/characters/amelia-rosie/back.svg",
  10777. extra: 1113 / 963,
  10778. bottom: 0.01
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Level 0",
  10785. height: math.unit(5 + 4 / 12, "feet")
  10786. },
  10787. {
  10788. name: "Level 1",
  10789. height: math.unit(164597, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Level 2",
  10794. height: math.unit(956243, "miles")
  10795. },
  10796. {
  10797. name: "Level 3",
  10798. height: math.unit(29421709423, "miles")
  10799. },
  10800. {
  10801. name: "Level 4",
  10802. height: math.unit(154, "lightyears")
  10803. },
  10804. {
  10805. name: "Level 5",
  10806. height: math.unit(4738272, "lightyears")
  10807. },
  10808. {
  10809. name: "Level 6",
  10810. height: math.unit(145787152896, "lightyears")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(5 + 11 / 12, "feet"),
  10819. weight: math.unit(65, "kg"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/rook-kitara/front.svg",
  10823. extra: 1347 / 1274,
  10824. bottom: 0.005
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Totally Unfair",
  10831. height: math.unit(1.8, "mm")
  10832. },
  10833. {
  10834. name: "Lap Rookie",
  10835. height: math.unit(1.4, "feet")
  10836. },
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(5 + 11 / 12, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "How Did This Happen",
  10844. height: math.unit(80, "miles")
  10845. }
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(7, "feet"),
  10853. weight: math.unit(300, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/pisces/front.svg",
  10857. extra: 2255 / 2115,
  10858. bottom: 0.03
  10859. }
  10860. },
  10861. back: {
  10862. height: math.unit(7, "feet"),
  10863. weight: math.unit(300, "lb"),
  10864. name: "Back",
  10865. image: {
  10866. source: "./media/characters/pisces/back.svg",
  10867. extra: 2146 / 2055,
  10868. bottom: 0.04
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Normal",
  10875. height: math.unit(7, "feet"),
  10876. default: true
  10877. },
  10878. {
  10879. name: "Swimming Pool",
  10880. height: math.unit(12.2, "meters")
  10881. },
  10882. {
  10883. name: "Olympic Swimming Pool",
  10884. height: math.unit(56.3, "meters")
  10885. },
  10886. {
  10887. name: "Lake Superior",
  10888. height: math.unit(93900, "meters")
  10889. },
  10890. {
  10891. name: "Mediterranean Sea",
  10892. height: math.unit(644457, "meters")
  10893. },
  10894. {
  10895. name: "World's Oceans",
  10896. height: math.unit(4567491, "meters")
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10902. {
  10903. front: {
  10904. height: math.unit(2.3, "meters"),
  10905. weight: math.unit(120, "kg"),
  10906. name: "Front",
  10907. image: {
  10908. source: "./media/characters/zelas/front.svg"
  10909. }
  10910. },
  10911. side: {
  10912. height: math.unit(2.3, "meters"),
  10913. weight: math.unit(120, "kg"),
  10914. name: "Side",
  10915. image: {
  10916. source: "./media/characters/zelas/side.svg"
  10917. }
  10918. },
  10919. back: {
  10920. height: math.unit(2.3, "meters"),
  10921. weight: math.unit(120, "kg"),
  10922. name: "Back",
  10923. image: {
  10924. source: "./media/characters/zelas/back.svg"
  10925. }
  10926. },
  10927. foot: {
  10928. height: math.unit(1.116, "feet"),
  10929. name: "Foot",
  10930. image: {
  10931. source: "./media/characters/zelas/foot.svg"
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Normal",
  10938. height: math.unit(2.3, "meters")
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(30, "meters"),
  10943. default: true
  10944. },
  10945. ]
  10946. ))
  10947. characterMakers.push(() => makeCharacter(
  10948. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10949. {
  10950. front: {
  10951. height: math.unit(1, "inch"),
  10952. weight: math.unit(0.21, "grams"),
  10953. name: "Front",
  10954. image: {
  10955. source: "./media/characters/talbot/front.svg",
  10956. extra: 594 / 544
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Micro",
  10963. height: math.unit(1, "inch"),
  10964. default: true
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10970. {
  10971. front: {
  10972. height: math.unit(3 + 3 / 12, "feet"),
  10973. weight: math.unit(51.8, "lb"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/fliss/front.svg",
  10977. extra: 840 / 640
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Teeny Tiny",
  10984. height: math.unit(1, "mm")
  10985. },
  10986. {
  10987. name: "Small",
  10988. height: math.unit(1, "inch"),
  10989. default: true
  10990. },
  10991. {
  10992. name: "Standard Sylveon",
  10993. height: math.unit(3 + 3 / 12, "feet")
  10994. },
  10995. {
  10996. name: "Large Nuisance",
  10997. height: math.unit(33, "feet")
  10998. },
  10999. {
  11000. name: "City Filler",
  11001. height: math.unit(3000, "feet")
  11002. },
  11003. {
  11004. name: "New Horizon",
  11005. height: math.unit(6000, "miles")
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(5, "cm"),
  11014. weight: math.unit(1.94, "g"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/fleta/front.svg",
  11018. extra: 835 / 803
  11019. }
  11020. },
  11021. back: {
  11022. height: math.unit(5, "cm"),
  11023. weight: math.unit(1.94, "g"),
  11024. name: "Back",
  11025. image: {
  11026. source: "./media/characters/fleta/back.svg",
  11027. extra: 835 / 803
  11028. }
  11029. },
  11030. },
  11031. [
  11032. {
  11033. name: "Micro",
  11034. height: math.unit(5, "cm"),
  11035. default: true
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11041. {
  11042. front: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(225, "lb"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/dominic/front.svg",
  11048. extra: 1770 / 1620,
  11049. bottom: 0.025
  11050. }
  11051. },
  11052. back: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(225, "lb"),
  11055. name: "Back",
  11056. image: {
  11057. source: "./media/characters/dominic/back.svg",
  11058. extra: 1745 / 1620,
  11059. bottom: 0.065
  11060. }
  11061. },
  11062. },
  11063. [
  11064. {
  11065. name: "Nano",
  11066. height: math.unit(0.1, "mm")
  11067. },
  11068. {
  11069. name: "Micro-",
  11070. height: math.unit(1, "mm")
  11071. },
  11072. {
  11073. name: "Micro",
  11074. height: math.unit(4, "inches")
  11075. },
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(6 + 4 / 12, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Macro",
  11083. height: math.unit(115, "feet")
  11084. },
  11085. {
  11086. name: "Macro+",
  11087. height: math.unit(955, "feet")
  11088. },
  11089. {
  11090. name: "Megamacro",
  11091. height: math.unit(8990, "feet")
  11092. },
  11093. {
  11094. name: "Gigmacro",
  11095. height: math.unit(9310, "miles")
  11096. },
  11097. {
  11098. name: "Teramacro",
  11099. height: math.unit(1567005010, "miles")
  11100. },
  11101. {
  11102. name: "Examacro",
  11103. height: math.unit(1425, "parsecs")
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(400, "feet"),
  11112. weight: math.unit(44444444, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/major-colonel/front.svg"
  11116. }
  11117. },
  11118. back: {
  11119. height: math.unit(400, "feet"),
  11120. weight: math.unit(44444444, "lb"),
  11121. name: "Back",
  11122. image: {
  11123. source: "./media/characters/major-colonel/back.svg"
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Macro",
  11130. height: math.unit(400, "feet"),
  11131. default: true
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11137. {
  11138. catFront: {
  11139. height: math.unit(6, "feet"),
  11140. weight: math.unit(120, "lb"),
  11141. name: "Front (Cat Side)",
  11142. image: {
  11143. source: "./media/characters/axel-lycan/cat-front.svg",
  11144. extra: 430 / 402,
  11145. bottom: 43 / 472.35
  11146. }
  11147. },
  11148. catBack: {
  11149. height: math.unit(6, "feet"),
  11150. weight: math.unit(120, "lb"),
  11151. name: "Back (Cat Side)",
  11152. image: {
  11153. source: "./media/characters/axel-lycan/cat-back.svg",
  11154. extra: 447 / 419,
  11155. bottom: 23.3 / 469
  11156. }
  11157. },
  11158. wolfFront: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(120, "lb"),
  11161. name: "Front (Wolf Side)",
  11162. image: {
  11163. source: "./media/characters/axel-lycan/wolf-front.svg",
  11164. extra: 485 / 456,
  11165. bottom: 19 / 504
  11166. }
  11167. },
  11168. wolfBack: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(120, "lb"),
  11171. name: "Back (Wolf Side)",
  11172. image: {
  11173. source: "./media/characters/axel-lycan/wolf-back.svg",
  11174. extra: 475 / 438,
  11175. bottom: 39.2 / 514
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Macro",
  11182. height: math.unit(1, "km"),
  11183. default: true
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(5 + 9 / 12, "feet"),
  11192. weight: math.unit(175, "lb"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/vanrel-hyena/front.svg",
  11196. extra: 1086 / 1010,
  11197. bottom: 0.04
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Normal",
  11204. height: math.unit(5 + 9 / 12, "feet"),
  11205. default: true
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11211. {
  11212. front: {
  11213. height: math.unit(6, "feet"),
  11214. weight: math.unit(103, "lb"),
  11215. name: "Front",
  11216. image: {
  11217. source: "./media/characters/abbott-absol/front.svg",
  11218. extra: 765/694,
  11219. bottom: 47/812
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Megamicro",
  11226. height: math.unit(0.1, "mm")
  11227. },
  11228. {
  11229. name: "Micro",
  11230. height: math.unit(1, "inch")
  11231. },
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(6, "feet"),
  11235. default: true
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(6, "feet"),
  11244. weight: math.unit(264, "lb"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/hector/front.svg",
  11248. extra: 2280 / 2130,
  11249. bottom: 0.07
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Normal",
  11256. height: math.unit(12.25, "foot"),
  11257. default: true
  11258. },
  11259. {
  11260. name: "Macro",
  11261. height: math.unit(160, "feet")
  11262. },
  11263. ]
  11264. ))
  11265. characterMakers.push(() => makeCharacter(
  11266. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11267. {
  11268. front: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(150, "lb"),
  11271. name: "Front",
  11272. image: {
  11273. source: "./media/characters/sal/front.svg",
  11274. extra: 1846 / 1699,
  11275. bottom: 0.04
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Megamacro",
  11282. height: math.unit(10, "miles"),
  11283. default: true
  11284. },
  11285. ]
  11286. ))
  11287. characterMakers.push(() => makeCharacter(
  11288. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11289. {
  11290. front: {
  11291. height: math.unit(3, "meters"),
  11292. weight: math.unit(450, "kg"),
  11293. name: "front",
  11294. image: {
  11295. source: "./media/characters/ranger/front.svg",
  11296. extra: 2401 / 2243,
  11297. bottom: 0.05
  11298. }
  11299. },
  11300. },
  11301. [
  11302. {
  11303. name: "Normal",
  11304. height: math.unit(3, "meters"),
  11305. default: true
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11311. {
  11312. front: {
  11313. height: math.unit(14, "feet"),
  11314. weight: math.unit(800, "kg"),
  11315. name: "Front",
  11316. image: {
  11317. source: "./media/characters/theresa/front.svg",
  11318. extra: 3575 / 3346,
  11319. bottom: 0.03
  11320. }
  11321. },
  11322. },
  11323. [
  11324. {
  11325. name: "Normal",
  11326. height: math.unit(14, "feet"),
  11327. default: true
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11333. {
  11334. front: {
  11335. height: math.unit(6, "feet"),
  11336. weight: math.unit(3, "kg"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/ine/front.svg",
  11340. extra: 678 / 539,
  11341. bottom: 0.023
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Normal",
  11348. height: math.unit(2.265, "feet"),
  11349. default: true
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(5, "feet"),
  11358. weight: math.unit(30, "kg"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/vial/front.svg",
  11362. extra: 1365 / 1277,
  11363. bottom: 0.04
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Normal",
  11370. height: math.unit(5, "feet"),
  11371. default: true
  11372. },
  11373. ]
  11374. ))
  11375. characterMakers.push(() => makeCharacter(
  11376. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11377. {
  11378. side: {
  11379. height: math.unit(3.4, "meters"),
  11380. weight: math.unit(1000, "lb"),
  11381. name: "Side",
  11382. image: {
  11383. source: "./media/characters/rovoska/side.svg",
  11384. extra: 4403 / 1515
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(3.4, "meters"),
  11392. default: true
  11393. },
  11394. ]
  11395. ))
  11396. characterMakers.push(() => makeCharacter(
  11397. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11398. {
  11399. front: {
  11400. height: math.unit(8, "feet"),
  11401. weight: math.unit(315, "lb"),
  11402. name: "Front",
  11403. image: {
  11404. source: "./media/characters/gunner-rotthbauer/front.svg"
  11405. }
  11406. },
  11407. back: {
  11408. height: math.unit(8, "feet"),
  11409. weight: math.unit(315, "lb"),
  11410. name: "Back",
  11411. image: {
  11412. source: "./media/characters/gunner-rotthbauer/back.svg"
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Micro",
  11419. height: math.unit(3.5, "inches")
  11420. },
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(8, "feet"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(250, "feet")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(1, "AU")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(5 + 5 / 12, "feet"),
  11441. weight: math.unit(140, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/allatia/front.svg",
  11445. extra: 1227 / 1180,
  11446. bottom: 0.027
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Normal",
  11453. height: math.unit(5 + 5 / 12, "feet")
  11454. },
  11455. {
  11456. name: "Macro",
  11457. height: math.unit(250, "feet"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Megamacro",
  11462. height: math.unit(8, "miles")
  11463. }
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11468. {
  11469. front: {
  11470. height: math.unit(6, "feet"),
  11471. weight: math.unit(120, "lb"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/tene/front.svg",
  11475. extra: 814/750,
  11476. bottom: 36/850
  11477. }
  11478. },
  11479. stomping: {
  11480. height: math.unit(2.025, "meters"),
  11481. weight: math.unit(120, "lb"),
  11482. name: "Stomping",
  11483. image: {
  11484. source: "./media/characters/tene/stomping.svg",
  11485. extra: 885/821,
  11486. bottom: 15/900
  11487. }
  11488. },
  11489. sitting: {
  11490. height: math.unit(1, "meter"),
  11491. weight: math.unit(120, "lb"),
  11492. name: "Sitting",
  11493. image: {
  11494. source: "./media/characters/tene/sitting.svg",
  11495. extra: 396/366,
  11496. bottom: 79/475
  11497. }
  11498. },
  11499. smiling: {
  11500. height: math.unit(1.2, "feet"),
  11501. name: "Smiling",
  11502. image: {
  11503. source: "./media/characters/tene/smiling.svg",
  11504. extra: 1364/1071,
  11505. bottom: 0/1364
  11506. }
  11507. },
  11508. smug: {
  11509. height: math.unit(1.3, "feet"),
  11510. name: "Smug",
  11511. image: {
  11512. source: "./media/characters/tene/smug.svg",
  11513. extra: 1323/1082,
  11514. bottom: 0/1323
  11515. }
  11516. },
  11517. feral: {
  11518. height: math.unit(3.9, "feet"),
  11519. weight: math.unit(250, "lb"),
  11520. name: "Feral",
  11521. image: {
  11522. source: "./media/characters/tene/feral.svg",
  11523. extra: 717 / 458,
  11524. bottom: 0.179
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(6, "feet")
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(300, "feet"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(5, "miles")
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11546. {
  11547. side: {
  11548. height: math.unit(6, "feet"),
  11549. name: "Side",
  11550. image: {
  11551. source: "./media/characters/evander/side.svg",
  11552. extra: 877 / 477
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(0.83, "meters"),
  11560. default: true
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(12, "feet"),
  11569. weight: math.unit(1000, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11573. extra: 1762 / 1611
  11574. }
  11575. },
  11576. back: {
  11577. height: math.unit(12, "feet"),
  11578. weight: math.unit(1000, "lb"),
  11579. name: "Back",
  11580. image: {
  11581. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11582. extra: 1762 / 1611
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(12, "feet"),
  11590. default: true
  11591. },
  11592. {
  11593. name: "Kaiju",
  11594. height: math.unit(150, "feet")
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(5 + 11/12, "feet"),
  11603. weight: math.unit(180, "lb"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/zero-alurus/front.svg",
  11607. extra: 1032/957,
  11608. bottom: 10/1042
  11609. }
  11610. },
  11611. back: {
  11612. height: math.unit(5 + 11/12, "feet"),
  11613. weight: math.unit(180, "lb"),
  11614. name: "Back",
  11615. image: {
  11616. source: "./media/characters/zero-alurus/back.svg",
  11617. extra: 1027/950,
  11618. bottom: 12/1039
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Normal",
  11625. height: math.unit(5 + 11 / 12, "feet")
  11626. },
  11627. {
  11628. name: "Mini-Macro",
  11629. height: math.unit(25, "feet")
  11630. },
  11631. {
  11632. name: "Macro",
  11633. height: math.unit(90, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Macro+",
  11638. height: math.unit(500, "feet")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(1200, "feet")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(200, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/mega-shi/front.svg",
  11655. extra: 1279 / 1250,
  11656. bottom: 0.02
  11657. }
  11658. },
  11659. back: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(200, "lb"),
  11662. name: "Back",
  11663. image: {
  11664. source: "./media/characters/mega-shi/back.svg",
  11665. extra: 1279 / 1250,
  11666. bottom: 0.02
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Micro",
  11673. height: math.unit(16 + 6 / 12, "feet")
  11674. },
  11675. {
  11676. name: "Third Dimension",
  11677. height: math.unit(40, "meters")
  11678. },
  11679. {
  11680. name: "Normal",
  11681. height: math.unit(660, "feet"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Megamacro",
  11686. height: math.unit(10, "miles")
  11687. },
  11688. {
  11689. name: "Planetary Launch",
  11690. height: math.unit(500, "miles")
  11691. },
  11692. {
  11693. name: "Interstellar",
  11694. height: math.unit(1e9, "miles")
  11695. },
  11696. {
  11697. name: "Leaving the Universe",
  11698. height: math.unit(1, "gigaparsec")
  11699. },
  11700. {
  11701. name: "Travelling Universes",
  11702. height: math.unit(30e15, "parsecs")
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(5 + 4/12, "feet"),
  11711. weight: math.unit(120, "lb"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/odyssey/front.svg",
  11715. extra: 1747/1571,
  11716. bottom: 47/1794
  11717. }
  11718. },
  11719. side: {
  11720. height: math.unit(5.1, "feet"),
  11721. weight: math.unit(120, "lb"),
  11722. name: "Side",
  11723. image: {
  11724. source: "./media/characters/odyssey/side.svg",
  11725. extra: 1847/1619,
  11726. bottom: 47/1894
  11727. }
  11728. },
  11729. lounging: {
  11730. height: math.unit(1.464, "feet"),
  11731. weight: math.unit(120, "lb"),
  11732. name: "Lounging",
  11733. image: {
  11734. source: "./media/characters/odyssey/lounging.svg",
  11735. extra: 1235/837,
  11736. bottom: 551/1786
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(5 + 4 / 12, "feet")
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(1, "km")
  11748. },
  11749. {
  11750. name: "Megamacro",
  11751. height: math.unit(3000, "km")
  11752. },
  11753. {
  11754. name: "Gigamacro",
  11755. height: math.unit(1, "AU"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Omniversal",
  11760. height: math.unit(100e14, "lightyears")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(5 + 10/12, "feet"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/mekuto/front.svg",
  11772. extra: 875/835,
  11773. bottom: 46/921
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Minimicro",
  11780. height: math.unit(0.2, "inches")
  11781. },
  11782. {
  11783. name: "Micro",
  11784. height: math.unit(1.5, "inches")
  11785. },
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(5 + 10 / 12, "feet"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Minimacro",
  11793. height: math.unit(17 + 9 / 12, "feet")
  11794. },
  11795. {
  11796. name: "Macro",
  11797. height: math.unit(177.5, "feet")
  11798. },
  11799. {
  11800. name: "Megamacro",
  11801. height: math.unit(152, "miles")
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11807. {
  11808. front: {
  11809. height: math.unit(6.5, "inches"),
  11810. weight: math.unit(13, "oz"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/dafydd-tomos/front.svg",
  11814. extra: 2990 / 2603,
  11815. bottom: 0.03
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Micro",
  11822. height: math.unit(6.5, "inches"),
  11823. default: true
  11824. },
  11825. ]
  11826. ))
  11827. characterMakers.push(() => makeCharacter(
  11828. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11829. {
  11830. front: {
  11831. height: math.unit(6, "feet"),
  11832. weight: math.unit(150, "lb"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/splinter/front.svg",
  11836. extra: 2990 / 2882,
  11837. bottom: 0.04
  11838. }
  11839. },
  11840. back: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(150, "lb"),
  11843. name: "Back",
  11844. image: {
  11845. source: "./media/characters/splinter/back.svg",
  11846. extra: 2990 / 2882,
  11847. bottom: 0.04
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(6, "feet")
  11855. },
  11856. {
  11857. name: "Macro",
  11858. height: math.unit(230, "meters"),
  11859. default: true
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(4 + 10 / 12, "feet"),
  11868. weight: math.unit(480, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/snow-gabumon/front.svg",
  11872. extra: 1140 / 963,
  11873. bottom: 0.058
  11874. }
  11875. },
  11876. back: {
  11877. height: math.unit(4 + 10 / 12, "feet"),
  11878. weight: math.unit(480, "lb"),
  11879. name: "Back",
  11880. image: {
  11881. source: "./media/characters/snow-gabumon/back.svg",
  11882. extra: 1115 / 962,
  11883. bottom: 0.041
  11884. }
  11885. },
  11886. frontUndresed: {
  11887. height: math.unit(4 + 10 / 12, "feet"),
  11888. weight: math.unit(480, "lb"),
  11889. name: "Front (Undressed)",
  11890. image: {
  11891. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11892. extra: 1061 / 960,
  11893. bottom: 0.045
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Micro",
  11900. height: math.unit(1, "inch")
  11901. },
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(4 + 10 / 12, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(200, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(120, "miles")
  11914. },
  11915. {
  11916. name: "Gigamacro",
  11917. height: math.unit(9800, "miles")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(1.7, "meters"),
  11926. weight: math.unit(140, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/moody/front.svg",
  11930. extra: 3226 / 3007,
  11931. bottom: 0.087
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(1, "mm")
  11939. },
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(1.7, "meters"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Macro",
  11947. height: math.unit(80, "meters")
  11948. },
  11949. {
  11950. name: "Macro+",
  11951. height: math.unit(500, "meters")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/zyas/front.svg",
  11964. extra: 1180 / 1120,
  11965. bottom: 0.045
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(10, "feet"),
  11973. default: true
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(500, "feet")
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(5, "miles")
  11982. },
  11983. {
  11984. name: "Teramacro",
  11985. height: math.unit(150000, "miles")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(150, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/cuon/front.svg",
  11998. extra: 1390 / 1320,
  11999. bottom: 0.008
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Micro",
  12006. height: math.unit(3, "inches")
  12007. },
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(18 + 9 / 12, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(360, "feet")
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(360, "miles")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(2.4, "meters"),
  12028. weight: math.unit(70, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/nyanuxk/front.svg",
  12032. extra: 1172 / 1084,
  12033. bottom: 0.065
  12034. }
  12035. },
  12036. side: {
  12037. height: math.unit(2.4, "meters"),
  12038. weight: math.unit(70, "kg"),
  12039. name: "Side",
  12040. image: {
  12041. source: "./media/characters/nyanuxk/side.svg",
  12042. extra: 1190 / 1132,
  12043. bottom: 0.007
  12044. }
  12045. },
  12046. back: {
  12047. height: math.unit(2.4, "meters"),
  12048. weight: math.unit(70, "kg"),
  12049. name: "Back",
  12050. image: {
  12051. source: "./media/characters/nyanuxk/back.svg",
  12052. extra: 1200 / 1141,
  12053. bottom: 0.015
  12054. }
  12055. },
  12056. foot: {
  12057. height: math.unit(0.52, "meters"),
  12058. name: "Foot",
  12059. image: {
  12060. source: "./media/characters/nyanuxk/foot.svg"
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Micro",
  12067. height: math.unit(2, "cm")
  12068. },
  12069. {
  12070. name: "Normal",
  12071. height: math.unit(2.4, "meters"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Smaller Macro",
  12076. height: math.unit(120, "meters")
  12077. },
  12078. {
  12079. name: "Bigger Macro",
  12080. height: math.unit(1.2, "km")
  12081. },
  12082. {
  12083. name: "Megamacro",
  12084. height: math.unit(15, "kilometers")
  12085. },
  12086. {
  12087. name: "Gigamacro",
  12088. height: math.unit(2000, "km")
  12089. },
  12090. {
  12091. name: "Teramacro",
  12092. height: math.unit(500000, "km")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12098. {
  12099. side: {
  12100. height: math.unit(6, "feet"),
  12101. name: "Side",
  12102. image: {
  12103. source: "./media/characters/ailbhe/side.svg",
  12104. extra: 757 / 464,
  12105. bottom: 0.041
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Normal",
  12112. height: math.unit(1.07, "meters"),
  12113. default: true
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(120, "kg"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/zevulfius/front.svg",
  12126. extra: 965 / 903
  12127. }
  12128. },
  12129. side: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(120, "kg"),
  12132. name: "Side",
  12133. image: {
  12134. source: "./media/characters/zevulfius/side.svg",
  12135. extra: 939 / 900
  12136. }
  12137. },
  12138. back: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(120, "kg"),
  12141. name: "Back",
  12142. image: {
  12143. source: "./media/characters/zevulfius/back.svg",
  12144. extra: 918 / 854,
  12145. bottom: 0.005
  12146. }
  12147. },
  12148. foot: {
  12149. height: math.unit(6 / 3.72, "feet"),
  12150. name: "Foot",
  12151. image: {
  12152. source: "./media/characters/zevulfius/foot.svg"
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(750, "meters")
  12160. },
  12161. {
  12162. name: "Megamacro",
  12163. height: math.unit(20, "km"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Gigamacro",
  12168. height: math.unit(2000, "km")
  12169. },
  12170. {
  12171. name: "Teramacro",
  12172. height: math.unit(250000, "km")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(100, "feet"),
  12181. weight: math.unit(350, "kg"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/rikes/front.svg",
  12185. extra: 1565 / 1483,
  12186. bottom: 0.017
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Macro",
  12193. height: math.unit(100, "feet"),
  12194. default: true
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(8, "feet"),
  12203. weight: math.unit(356, "lb"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/adam-silver-mane/front.svg",
  12207. extra: 1036/937,
  12208. bottom: 63/1099
  12209. }
  12210. },
  12211. side: {
  12212. height: math.unit(8, "feet"),
  12213. weight: math.unit(356, "lb"),
  12214. name: "Side",
  12215. image: {
  12216. source: "./media/characters/adam-silver-mane/side.svg",
  12217. extra: 997/901,
  12218. bottom: 59/1056
  12219. }
  12220. },
  12221. frontNsfw: {
  12222. height: math.unit(8, "feet"),
  12223. weight: math.unit(356, "lb"),
  12224. name: "Front (NSFW)",
  12225. image: {
  12226. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12227. extra: 1036/937,
  12228. bottom: 63/1099
  12229. }
  12230. },
  12231. sideNsfw: {
  12232. height: math.unit(8, "feet"),
  12233. weight: math.unit(356, "lb"),
  12234. name: "Side (NSFW)",
  12235. image: {
  12236. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12237. extra: 997/901,
  12238. bottom: 59/1056
  12239. }
  12240. },
  12241. dick: {
  12242. height: math.unit(2.1, "feet"),
  12243. name: "Dick",
  12244. image: {
  12245. source: "./media/characters/adam-silver-mane/dick.svg"
  12246. }
  12247. },
  12248. taur: {
  12249. height: math.unit(16, "feet"),
  12250. weight: math.unit(1500, "kg"),
  12251. name: "Taur",
  12252. image: {
  12253. source: "./media/characters/adam-silver-mane/taur.svg",
  12254. extra: 1713 / 1571,
  12255. bottom: 0.01
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Normal",
  12262. height: math.unit(8, "feet")
  12263. },
  12264. {
  12265. name: "Minimacro",
  12266. height: math.unit(80, "feet")
  12267. },
  12268. {
  12269. name: "MDA",
  12270. height: math.unit(80, "meters")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(800, "feet"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(8000, "feet")
  12280. },
  12281. {
  12282. name: "Gigamacro",
  12283. height: math.unit(800, "miles")
  12284. },
  12285. {
  12286. name: "Teramacro",
  12287. height: math.unit(80000, "miles")
  12288. },
  12289. {
  12290. name: "Celestial",
  12291. height: math.unit(8e6, "miles")
  12292. },
  12293. {
  12294. name: "Star Dragon",
  12295. height: math.unit(800000, "parsecs")
  12296. },
  12297. {
  12298. name: "Godly",
  12299. height: math.unit(800, "teraparsecs")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(6, "feet"),
  12308. weight: math.unit(150, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/ky'owin/front.svg",
  12312. extra: 3862/3053,
  12313. bottom: 74/3936
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(6 + 8 / 12, "feet")
  12321. },
  12322. {
  12323. name: "Large",
  12324. height: math.unit(68, "feet")
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(132, "feet")
  12329. },
  12330. {
  12331. name: "Macro+",
  12332. height: math.unit(340, "feet")
  12333. },
  12334. {
  12335. name: "Macro++",
  12336. height: math.unit(680, "feet"),
  12337. default: true
  12338. },
  12339. {
  12340. name: "Megamacro",
  12341. height: math.unit(1, "mile")
  12342. },
  12343. {
  12344. name: "Megamacro+",
  12345. height: math.unit(10, "miles")
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12351. {
  12352. front: {
  12353. height: math.unit(4, "feet"),
  12354. weight: math.unit(50, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/mal/front.svg",
  12358. extra: 785 / 724,
  12359. bottom: 0.07
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Micro",
  12366. height: math.unit(4, "inches")
  12367. },
  12368. {
  12369. name: "Normal",
  12370. height: math.unit(4, "feet"),
  12371. default: true
  12372. },
  12373. {
  12374. name: "Macro",
  12375. height: math.unit(200, "feet")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(150, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/jordan-deware/front.svg",
  12388. extra: 1191 / 1012
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Nano",
  12395. height: math.unit(0.01, "mm")
  12396. },
  12397. {
  12398. name: "Minimicro",
  12399. height: math.unit(1, "mm")
  12400. },
  12401. {
  12402. name: "Micro",
  12403. height: math.unit(0.5, "inches")
  12404. },
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(4, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Minimacro",
  12412. height: math.unit(40, "meters")
  12413. },
  12414. {
  12415. name: "Small Macro",
  12416. height: math.unit(400, "meters")
  12417. },
  12418. {
  12419. name: "Macro",
  12420. height: math.unit(4, "miles")
  12421. },
  12422. {
  12423. name: "Megamacro",
  12424. height: math.unit(40, "miles")
  12425. },
  12426. {
  12427. name: "Megamacro+",
  12428. height: math.unit(400, "miles")
  12429. },
  12430. {
  12431. name: "Gigamacro",
  12432. height: math.unit(400000, "miles")
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(15, "feet"),
  12441. weight: math.unit(3000, "kg"),
  12442. preyCapacity: math.unit(450, "people"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/kimiko/front.svg",
  12446. extra: 875/832,
  12447. bottom: 36/911
  12448. },
  12449. extraAttributes: {
  12450. "pawSize": {
  12451. name: "Paw Size",
  12452. power: 1,
  12453. type: "length",
  12454. base: math.unit(0.9, "meters")
  12455. },
  12456. }
  12457. },
  12458. side: {
  12459. height: math.unit(15, "feet"),
  12460. weight: math.unit(3000, "kg"),
  12461. preyCapacity: math.unit(400, "people"),
  12462. name: "Side",
  12463. image: {
  12464. source: "./media/characters/kimiko/side.svg",
  12465. extra: 448/270,
  12466. bottom: 7/455
  12467. },
  12468. extraAttributes: {
  12469. "pawSize": {
  12470. name: "Paw Size",
  12471. power: 1,
  12472. type: "length",
  12473. base: math.unit(0.9, "meters")
  12474. },
  12475. }
  12476. },
  12477. maw: {
  12478. height: math.unit(0.81, "feet"),
  12479. name: "Maw",
  12480. image: {
  12481. source: "./media/characters/kimiko/maw.svg"
  12482. }
  12483. },
  12484. },
  12485. [
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(15, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(220, "feet")
  12494. },
  12495. {
  12496. name: "Macro+",
  12497. height: math.unit(1450, "feet")
  12498. },
  12499. {
  12500. name: "Megamacro",
  12501. height: math.unit(11500, "feet")
  12502. },
  12503. {
  12504. name: "Gigamacro",
  12505. height: math.unit(9500, "miles")
  12506. },
  12507. {
  12508. name: "Teramacro",
  12509. height: math.unit(2208005005, "miles")
  12510. },
  12511. {
  12512. name: "Examacro",
  12513. height: math.unit(2750, "parsecs")
  12514. },
  12515. {
  12516. name: "Zettamacro",
  12517. height: math.unit(101500, "parsecs")
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(6, "feet"),
  12526. weight: math.unit(70, "kg"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/andrew-sleepy/front.svg"
  12530. }
  12531. },
  12532. side: {
  12533. height: math.unit(6, "feet"),
  12534. weight: math.unit(70, "kg"),
  12535. name: "Side",
  12536. image: {
  12537. source: "./media/characters/andrew-sleepy/side.svg"
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Micro",
  12544. height: math.unit(1, "mm"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(6, "feet"),
  12554. weight: math.unit(150, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/judio/front.svg",
  12558. extra: 1258 / 1110
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(5 + 6 / 12, "feet")
  12566. },
  12567. {
  12568. name: "Macro",
  12569. height: math.unit(1000, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Megamacro",
  12574. height: math.unit(10, "miles")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12580. {
  12581. frontDressed: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(68, "kg"),
  12584. name: "Front (Dressed)",
  12585. image: {
  12586. source: "./media/characters/nomaxice/front-dressed.svg",
  12587. extra: 1137/824,
  12588. bottom: 74/1211
  12589. }
  12590. },
  12591. frontShorts: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(68, "kg"),
  12594. name: "Front (Shorts)",
  12595. image: {
  12596. source: "./media/characters/nomaxice/front-shorts.svg",
  12597. extra: 1137/824,
  12598. bottom: 74/1211
  12599. }
  12600. },
  12601. back: {
  12602. height: math.unit(6, "feet"),
  12603. weight: math.unit(68, "kg"),
  12604. name: "Back",
  12605. image: {
  12606. source: "./media/characters/nomaxice/back.svg",
  12607. extra: 822/786,
  12608. bottom: 39/861
  12609. }
  12610. },
  12611. hand: {
  12612. height: math.unit(0.565, "feet"),
  12613. name: "Hand",
  12614. image: {
  12615. source: "./media/characters/nomaxice/hand.svg"
  12616. }
  12617. },
  12618. foot: {
  12619. height: math.unit(1, "feet"),
  12620. name: "Foot",
  12621. image: {
  12622. source: "./media/characters/nomaxice/foot.svg"
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Micro",
  12629. height: math.unit(8, "cm")
  12630. },
  12631. {
  12632. name: "Norm",
  12633. height: math.unit(1.82, "m")
  12634. },
  12635. {
  12636. name: "Norm+",
  12637. height: math.unit(8.8, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Big",
  12642. height: math.unit(8, "meters")
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(18, "meters")
  12647. },
  12648. {
  12649. name: "Macro+",
  12650. height: math.unit(88, "meters")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(12, "feet"),
  12659. weight: math.unit(1.5, "tons"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/dydros/front.svg",
  12663. extra: 863 / 800,
  12664. bottom: 0.015
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(12, "feet"),
  12669. weight: math.unit(1.5, "tons"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/dydros/back.svg",
  12673. extra: 900 / 843,
  12674. bottom: 0.005
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(12, "feet"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(100, "kg"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/riggi/front.svg",
  12695. extra: 5787 / 5303
  12696. }
  12697. },
  12698. hyper: {
  12699. height: math.unit(6 * 5 / 3, "feet"),
  12700. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12701. name: "Hyper",
  12702. image: {
  12703. source: "./media/characters/riggi/hyper.svg",
  12704. extra: 3595 / 3485
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Small Macro",
  12711. height: math.unit(50, "feet")
  12712. },
  12713. {
  12714. name: "Default",
  12715. height: math.unit(200, "feet"),
  12716. default: true
  12717. },
  12718. {
  12719. name: "Loom",
  12720. height: math.unit(10000, "feet")
  12721. },
  12722. {
  12723. name: "Cruising Altitude",
  12724. height: math.unit(30000, "feet")
  12725. },
  12726. {
  12727. name: "Megamacro",
  12728. height: math.unit(100, "miles")
  12729. },
  12730. {
  12731. name: "Continent Sized",
  12732. height: math.unit(2800, "miles")
  12733. },
  12734. {
  12735. name: "Earth Sized",
  12736. height: math.unit(8000, "miles")
  12737. },
  12738. ]
  12739. ))
  12740. characterMakers.push(() => makeCharacter(
  12741. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12742. {
  12743. front: {
  12744. height: math.unit(6, "feet"),
  12745. weight: math.unit(250, "lb"),
  12746. name: "Front",
  12747. image: {
  12748. source: "./media/characters/alexi/front.svg",
  12749. extra: 3483 / 3291,
  12750. bottom: 0.04
  12751. }
  12752. },
  12753. back: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(250, "lb"),
  12756. name: "Back",
  12757. image: {
  12758. source: "./media/characters/alexi/back.svg",
  12759. extra: 3533 / 3356,
  12760. bottom: 0.021
  12761. }
  12762. },
  12763. frontTransforming: {
  12764. height: math.unit(8.58, "feet"),
  12765. weight: math.unit(1300, "lb"),
  12766. name: "Transforming",
  12767. image: {
  12768. source: "./media/characters/alexi/front-transforming.svg",
  12769. extra: 437 / 409,
  12770. bottom: 19 / 458.66
  12771. }
  12772. },
  12773. frontTransformed: {
  12774. height: math.unit(12.5, "feet"),
  12775. weight: math.unit(4000, "lb"),
  12776. name: "Transformed",
  12777. image: {
  12778. source: "./media/characters/alexi/front-transformed.svg",
  12779. extra: 639 / 614,
  12780. bottom: 30.55 / 671
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(14, "feet"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Minimacro",
  12792. height: math.unit(30, "meters")
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(500, "meters")
  12797. },
  12798. {
  12799. name: "Megamacro",
  12800. height: math.unit(9000, "km")
  12801. },
  12802. {
  12803. name: "Teramacro",
  12804. height: math.unit(384000, "km")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/kayroo/front.svg",
  12817. extra: 1153 / 1038,
  12818. bottom: 0.06
  12819. }
  12820. },
  12821. foot: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(150, "lb"),
  12824. name: "Foot",
  12825. image: {
  12826. source: "./media/characters/kayroo/foot.svg"
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(8, "feet"),
  12834. default: true
  12835. },
  12836. {
  12837. name: "Minimacro",
  12838. height: math.unit(250, "feet")
  12839. },
  12840. {
  12841. name: "Macro",
  12842. height: math.unit(2800, "feet")
  12843. },
  12844. {
  12845. name: "Megamacro",
  12846. height: math.unit(5200, "feet")
  12847. },
  12848. {
  12849. name: "Gigamacro",
  12850. height: math.unit(27000, "feet")
  12851. },
  12852. {
  12853. name: "Omega",
  12854. height: math.unit(45000, "feet")
  12855. },
  12856. ]
  12857. ))
  12858. characterMakers.push(() => makeCharacter(
  12859. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12860. {
  12861. front: {
  12862. height: math.unit(18, "feet"),
  12863. weight: math.unit(5800, "lb"),
  12864. name: "Front",
  12865. image: {
  12866. source: "./media/characters/rhys/front.svg",
  12867. extra: 3386 / 3090,
  12868. bottom: 0.07
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Normal",
  12875. height: math.unit(18, "feet"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Working Size",
  12880. height: math.unit(200, "feet")
  12881. },
  12882. {
  12883. name: "Demolition Size",
  12884. height: math.unit(2000, "feet")
  12885. },
  12886. {
  12887. name: "Maximum Licensed Size",
  12888. height: math.unit(5, "miles")
  12889. },
  12890. {
  12891. name: "Maximum Observed Size",
  12892. height: math.unit(10, "yottameters")
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12898. {
  12899. front: {
  12900. height: math.unit(6, "feet"),
  12901. weight: math.unit(250, "lb"),
  12902. name: "Front",
  12903. image: {
  12904. source: "./media/characters/toto/front.svg",
  12905. extra: 527 / 479,
  12906. bottom: 0.05
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Micro",
  12913. height: math.unit(3, "feet")
  12914. },
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(10, "feet")
  12918. },
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(150, "feet"),
  12922. default: true
  12923. },
  12924. {
  12925. name: "Megamacro",
  12926. height: math.unit(1200, "feet")
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "King", species: ["lion"], tags: ["anthro"] },
  12932. {
  12933. back: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(150, "lb"),
  12936. name: "Back",
  12937. image: {
  12938. source: "./media/characters/king/back.svg"
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Micro",
  12945. height: math.unit(2, "inches")
  12946. },
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(8, "feet")
  12950. },
  12951. {
  12952. name: "Macro",
  12953. height: math.unit(200, "feet"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(50, "miles")
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12964. {
  12965. front: {
  12966. height: math.unit(11, "feet"),
  12967. weight: math.unit(1400, "lb"),
  12968. name: "Front",
  12969. image: {
  12970. source: "./media/characters/cordite/front.svg",
  12971. extra: 1919/1827,
  12972. bottom: 40/1959
  12973. }
  12974. },
  12975. side: {
  12976. height: math.unit(11, "feet"),
  12977. weight: math.unit(1400, "lb"),
  12978. name: "Side",
  12979. image: {
  12980. source: "./media/characters/cordite/side.svg",
  12981. extra: 1908/1793,
  12982. bottom: 38/1946
  12983. }
  12984. },
  12985. back: {
  12986. height: math.unit(11, "feet"),
  12987. weight: math.unit(1400, "lb"),
  12988. name: "Back",
  12989. image: {
  12990. source: "./media/characters/cordite/back.svg",
  12991. extra: 1938/1837,
  12992. bottom: 10/1948
  12993. }
  12994. },
  12995. feral: {
  12996. height: math.unit(2, "feet"),
  12997. weight: math.unit(90, "lb"),
  12998. name: "Feral",
  12999. image: {
  13000. source: "./media/characters/cordite/feral.svg",
  13001. extra: 1260 / 755,
  13002. bottom: 0.05
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(11, "feet"),
  13010. default: true
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(150, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/pianostrong/front.svg",
  13023. extra: 6577 / 6254,
  13024. bottom: 0.02
  13025. }
  13026. },
  13027. side: {
  13028. height: math.unit(6, "feet"),
  13029. weight: math.unit(150, "lb"),
  13030. name: "Side",
  13031. image: {
  13032. source: "./media/characters/pianostrong/side.svg",
  13033. extra: 6106 / 5730
  13034. }
  13035. },
  13036. back: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Back",
  13040. image: {
  13041. source: "./media/characters/pianostrong/back.svg",
  13042. extra: 6085 / 5733,
  13043. bottom: 0.01
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(100, "feet")
  13051. },
  13052. {
  13053. name: "Macro+",
  13054. height: math.unit(300, "feet"),
  13055. default: true
  13056. },
  13057. {
  13058. name: "Macro++",
  13059. height: math.unit(1000, "feet")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/kona/front.svg",
  13072. extra: 2960 / 2629,
  13073. bottom: 0.005
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(11 + 8 / 12, "feet")
  13081. },
  13082. {
  13083. name: "Macro",
  13084. height: math.unit(850, "feet"),
  13085. default: true
  13086. },
  13087. {
  13088. name: "Macro+",
  13089. height: math.unit(1.5, "km"),
  13090. default: true
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(80, "miles")
  13095. },
  13096. {
  13097. name: "Gigamacro",
  13098. height: math.unit(3500, "miles")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13104. {
  13105. side: {
  13106. height: math.unit(1.9, "meters"),
  13107. weight: math.unit(326, "kg"),
  13108. name: "Side",
  13109. image: {
  13110. source: "./media/characters/levi/side.svg",
  13111. extra: 1704 / 1334,
  13112. bottom: 0.02
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Normal",
  13119. height: math.unit(1.9, "meters"),
  13120. default: true
  13121. },
  13122. {
  13123. name: "Macro",
  13124. height: math.unit(20, "meters")
  13125. },
  13126. {
  13127. name: "Macro+",
  13128. height: math.unit(200, "meters")
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(2, "km")
  13133. },
  13134. {
  13135. name: "Megamacro+",
  13136. height: math.unit(20, "km")
  13137. },
  13138. {
  13139. name: "Gigamacro",
  13140. height: math.unit(2500, "km")
  13141. },
  13142. {
  13143. name: "Gigamacro+",
  13144. height: math.unit(120000, "km")
  13145. },
  13146. {
  13147. name: "Teramacro",
  13148. height: math.unit(7.77e6, "km")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(6 + 4/12, "feet"),
  13157. weight: math.unit(190, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/bmc/front.svg",
  13161. extra: 1626/1472,
  13162. bottom: 79/1705
  13163. }
  13164. },
  13165. back: {
  13166. height: math.unit(6 + 4/12, "feet"),
  13167. weight: math.unit(190, "lb"),
  13168. name: "Back",
  13169. image: {
  13170. source: "./media/characters/bmc/back.svg",
  13171. extra: 1640/1479,
  13172. bottom: 45/1685
  13173. }
  13174. },
  13175. frontArmor: {
  13176. height: math.unit(6 + 4/12, "feet"),
  13177. weight: math.unit(190, "lb"),
  13178. name: "Front-armor",
  13179. image: {
  13180. source: "./media/characters/bmc/front-armor.svg",
  13181. extra: 1538/1468,
  13182. bottom: 79/1617
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Human-sized",
  13189. height: math.unit(6 + 4 / 12, "feet")
  13190. },
  13191. {
  13192. name: "Interactive Size",
  13193. height: math.unit(25, "feet")
  13194. },
  13195. {
  13196. name: "Small",
  13197. height: math.unit(250, "feet")
  13198. },
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(1250, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Good Day",
  13206. height: math.unit(88, "miles")
  13207. },
  13208. {
  13209. name: "Largest Measured Size",
  13210. height: math.unit(105.960, "galaxies")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(20, "feet"),
  13219. weight: math.unit(2016, "kg"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/sven-the-kaiju/front.svg",
  13223. extra: 1277/1250,
  13224. bottom: 35/1312
  13225. }
  13226. },
  13227. mouth: {
  13228. height: math.unit(1.85, "feet"),
  13229. name: "Mouth",
  13230. image: {
  13231. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Fairy",
  13238. height: math.unit(6, "inches")
  13239. },
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(20, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Rampage",
  13247. height: math.unit(200, "feet")
  13248. },
  13249. {
  13250. name: "Archfey Forest Guardian",
  13251. height: math.unit(1, "mile")
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13257. {
  13258. front: {
  13259. height: math.unit(4, "meters"),
  13260. weight: math.unit(2, "tons"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/marik/front.svg",
  13264. extra: 1057 / 1003,
  13265. bottom: 0.08
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(4, "meters"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Macro",
  13277. height: math.unit(20, "meters")
  13278. },
  13279. {
  13280. name: "Megamacro",
  13281. height: math.unit(50, "km")
  13282. },
  13283. {
  13284. name: "Gigamacro",
  13285. height: math.unit(100, "km")
  13286. },
  13287. {
  13288. name: "Alpha Macro",
  13289. height: math.unit(7.88e7, "yottameters")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(6, "feet"),
  13298. weight: math.unit(110, "lb"),
  13299. name: "Front",
  13300. image: {
  13301. source: "./media/characters/mel/front.svg",
  13302. extra: 736 / 617,
  13303. bottom: 0.017
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Pico",
  13310. height: math.unit(3, "pm")
  13311. },
  13312. {
  13313. name: "Nano",
  13314. height: math.unit(3, "nm")
  13315. },
  13316. {
  13317. name: "Micro",
  13318. height: math.unit(0.3, "mm"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Micro+",
  13323. height: math.unit(3, "mm")
  13324. },
  13325. {
  13326. name: "Normal",
  13327. height: math.unit(5 + 10.5 / 12, "feet")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13333. {
  13334. kaiju: {
  13335. height: math.unit(1.75, "meters"),
  13336. weight: math.unit(55, "kg"),
  13337. name: "Kaiju",
  13338. image: {
  13339. source: "./media/characters/lykonous/kaiju.svg",
  13340. extra: 1055 / 946,
  13341. bottom: 0.135
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(2.5, "meters"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Kaiju Dragon",
  13353. height: math.unit(60, "meters")
  13354. },
  13355. {
  13356. name: "Mega Kaiju",
  13357. height: math.unit(120, "km")
  13358. },
  13359. {
  13360. name: "Giga Kaiju",
  13361. height: math.unit(200, "megameters")
  13362. },
  13363. {
  13364. name: "Terra Kaiju",
  13365. height: math.unit(400, "gigameters")
  13366. },
  13367. {
  13368. name: "Kaiju Dragon God",
  13369. height: math.unit(13000, "exaparsecs")
  13370. },
  13371. ]
  13372. ))
  13373. characterMakers.push(() => makeCharacter(
  13374. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13375. {
  13376. front: {
  13377. height: math.unit(6, "feet"),
  13378. weight: math.unit(150, "lb"),
  13379. name: "Front",
  13380. image: {
  13381. source: "./media/characters/blü/front.svg",
  13382. extra: 1883 / 1564,
  13383. bottom: 0.031
  13384. }
  13385. },
  13386. },
  13387. [
  13388. {
  13389. name: "Normal",
  13390. height: math.unit(13, "feet"),
  13391. default: true
  13392. },
  13393. {
  13394. name: "Big Boi",
  13395. height: math.unit(150, "meters")
  13396. },
  13397. {
  13398. name: "Mini Stomper",
  13399. height: math.unit(300, "meters")
  13400. },
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(1000, "meters")
  13404. },
  13405. {
  13406. name: "Megamacro",
  13407. height: math.unit(11000, "meters")
  13408. },
  13409. {
  13410. name: "Gigamacro",
  13411. height: math.unit(11000, "km")
  13412. },
  13413. {
  13414. name: "Teramacro",
  13415. height: math.unit(420000, "km")
  13416. },
  13417. {
  13418. name: "Examacro",
  13419. height: math.unit(120, "parsecs")
  13420. },
  13421. {
  13422. name: "God Tho",
  13423. height: math.unit(98000000000, "parsecs")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13429. {
  13430. taurFront: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(200, "lb"),
  13433. name: "Taur (Front)",
  13434. image: {
  13435. source: "./media/characters/scales/taur-front.svg",
  13436. extra: 1,
  13437. bottom: 0.05
  13438. }
  13439. },
  13440. taurBack: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(200, "lb"),
  13443. name: "Taur (Back)",
  13444. image: {
  13445. source: "./media/characters/scales/taur-back.svg",
  13446. extra: 1,
  13447. bottom: 0.08
  13448. }
  13449. },
  13450. anthro: {
  13451. height: math.unit(6 * 7 / 12, "feet"),
  13452. weight: math.unit(100, "lb"),
  13453. name: "Anthro",
  13454. image: {
  13455. source: "./media/characters/scales/anthro.svg",
  13456. extra: 1,
  13457. bottom: 0.06
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(12, "feet"),
  13465. default: true
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(150, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/koragos/front.svg",
  13478. extra: 841 / 794,
  13479. bottom: 0.035
  13480. }
  13481. },
  13482. back: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Back",
  13486. image: {
  13487. source: "./media/characters/koragos/back.svg",
  13488. extra: 841 / 810,
  13489. bottom: 0.022
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Normal",
  13496. height: math.unit(6 + 11 / 12, "feet"),
  13497. default: true
  13498. },
  13499. {
  13500. name: "Macro",
  13501. height: math.unit(490, "feet")
  13502. },
  13503. {
  13504. name: "Megamacro",
  13505. height: math.unit(10, "miles")
  13506. },
  13507. {
  13508. name: "Gigamacro",
  13509. height: math.unit(50, "miles")
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(6, "feet"),
  13518. weight: math.unit(250, "lb"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/xylrem/front.svg",
  13522. extra: 3323 / 3050,
  13523. bottom: 0.065
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Micro",
  13530. height: math.unit(4, "feet")
  13531. },
  13532. {
  13533. name: "Normal",
  13534. height: math.unit(16, "feet"),
  13535. default: true
  13536. },
  13537. {
  13538. name: "Macro",
  13539. height: math.unit(2720, "feet")
  13540. },
  13541. {
  13542. name: "Megamacro",
  13543. height: math.unit(25000, "miles")
  13544. },
  13545. ]
  13546. ))
  13547. characterMakers.push(() => makeCharacter(
  13548. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13549. {
  13550. front: {
  13551. height: math.unit(8, "feet"),
  13552. weight: math.unit(250, "kg"),
  13553. name: "Front",
  13554. image: {
  13555. source: "./media/characters/ikideru/front.svg",
  13556. extra: 930 / 870,
  13557. bottom: 0.087
  13558. }
  13559. },
  13560. back: {
  13561. height: math.unit(8, "feet"),
  13562. weight: math.unit(250, "kg"),
  13563. name: "Back",
  13564. image: {
  13565. source: "./media/characters/ikideru/back.svg",
  13566. extra: 919 / 852,
  13567. bottom: 0.055
  13568. }
  13569. },
  13570. },
  13571. [
  13572. {
  13573. name: "Rare",
  13574. height: math.unit(8, "feet"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Playful Loom",
  13579. height: math.unit(80, "feet")
  13580. },
  13581. {
  13582. name: "City Leaner",
  13583. height: math.unit(230, "feet")
  13584. },
  13585. {
  13586. name: "Megamacro",
  13587. height: math.unit(2500, "feet")
  13588. },
  13589. {
  13590. name: "Gigamacro",
  13591. height: math.unit(26400, "feet")
  13592. },
  13593. {
  13594. name: "Tectonic Shifter",
  13595. height: math.unit(1.7, "megameters")
  13596. },
  13597. {
  13598. name: "Planet Carer",
  13599. height: math.unit(21, "megameters")
  13600. },
  13601. {
  13602. name: "God",
  13603. height: math.unit(11157.22, "parsecs")
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13609. {
  13610. front: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(120, "lb"),
  13613. name: "Front",
  13614. image: {
  13615. source: "./media/characters/neo/front.svg"
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Micro",
  13622. height: math.unit(2, "inches"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Human Size",
  13627. height: math.unit(5 + 8 / 12, "feet")
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(13 + 10 / 12, "feet"),
  13636. weight: math.unit(5320, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/chauncey-chantz/front.svg",
  13640. extra: 1587 / 1435,
  13641. bottom: 0.02
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(13 + 10 / 12, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(45, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(250, "miles")
  13658. },
  13659. {
  13660. name: "Planetary",
  13661. height: math.unit(10000, "miles")
  13662. },
  13663. {
  13664. name: "Galactic",
  13665. height: math.unit(40000, "parsecs")
  13666. },
  13667. {
  13668. name: "Universal",
  13669. height: math.unit(1, "yottameter")
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13675. {
  13676. front: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/epifox/front.svg",
  13682. extra: 1,
  13683. bottom: 0.075
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(6, "inches")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(12, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Macro",
  13699. height: math.unit(3810, "feet")
  13700. },
  13701. {
  13702. name: "Megamacro",
  13703. height: math.unit(500, "miles")
  13704. },
  13705. ]
  13706. ))
  13707. characterMakers.push(() => makeCharacter(
  13708. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13709. {
  13710. front: {
  13711. height: math.unit(1.8796, "m"),
  13712. weight: math.unit(230, "lb"),
  13713. name: "Front",
  13714. image: {
  13715. source: "./media/characters/colin-t/front.svg",
  13716. extra: 1272 / 1193,
  13717. bottom: 0.07
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Micro",
  13724. height: math.unit(0.571, "meters")
  13725. },
  13726. {
  13727. name: "Normal",
  13728. height: math.unit(1.8796, "meters"),
  13729. default: true
  13730. },
  13731. {
  13732. name: "Tall",
  13733. height: math.unit(4, "meters")
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(67.241, "meters")
  13738. },
  13739. {
  13740. name: "Megamacro",
  13741. height: math.unit(371.856, "meters")
  13742. },
  13743. {
  13744. name: "Planetary",
  13745. height: math.unit(12631.5689, "km")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(1.85, "meters"),
  13754. weight: math.unit(80, "kg"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/matvei/front.svg",
  13758. extra: 456/447,
  13759. bottom: 8/464
  13760. }
  13761. },
  13762. back: {
  13763. height: math.unit(1.85, "meters"),
  13764. weight: math.unit(80, "kg"),
  13765. name: "Back",
  13766. image: {
  13767. source: "./media/characters/matvei/back.svg",
  13768. extra: 434/427,
  13769. bottom: 11/445
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(1.85, "meters"),
  13777. default: true
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(5 + 9 / 12, "feet"),
  13786. weight: math.unit(70, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/quincy/front.svg",
  13790. extra: 3041 / 2751
  13791. }
  13792. },
  13793. back: {
  13794. height: math.unit(5 + 9 / 12, "feet"),
  13795. weight: math.unit(70, "lb"),
  13796. name: "Back",
  13797. image: {
  13798. source: "./media/characters/quincy/back.svg",
  13799. extra: 3041 / 2751
  13800. }
  13801. },
  13802. flying: {
  13803. height: math.unit(5 + 4 / 12, "feet"),
  13804. weight: math.unit(70, "lb"),
  13805. name: "Flying",
  13806. image: {
  13807. source: "./media/characters/quincy/flying.svg",
  13808. extra: 1044 / 930
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Micro",
  13815. height: math.unit(3, "cm")
  13816. },
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(5 + 9 / 12, "feet")
  13820. },
  13821. {
  13822. name: "Macro",
  13823. height: math.unit(200, "meters"),
  13824. default: true
  13825. },
  13826. {
  13827. name: "Megamacro",
  13828. height: math.unit(1000, "meters")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(3 + 11/12, "feet"),
  13837. weight: math.unit(50, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/vanrel/front.svg",
  13841. extra: 1104/949,
  13842. bottom: 52/1156
  13843. }
  13844. },
  13845. back: {
  13846. height: math.unit(3 + 11/12, "feet"),
  13847. weight: math.unit(50, "lb"),
  13848. name: "Back",
  13849. image: {
  13850. source: "./media/characters/vanrel/back.svg",
  13851. extra: 1119/976,
  13852. bottom: 37/1156
  13853. }
  13854. },
  13855. tome: {
  13856. height: math.unit(1.35, "feet"),
  13857. weight: math.unit(10, "lb"),
  13858. name: "Vanrel's Tome",
  13859. rename: true,
  13860. image: {
  13861. source: "./media/characters/vanrel/tome.svg"
  13862. }
  13863. },
  13864. beans: {
  13865. height: math.unit(0.89, "feet"),
  13866. name: "Beans",
  13867. image: {
  13868. source: "./media/characters/vanrel/beans.svg"
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Normal",
  13875. height: math.unit(3 + 11/12, "feet"),
  13876. default: true
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(7 + 5 / 12, "feet"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/kuiper-vanrel/front.svg",
  13888. extra: 1219/1169,
  13889. bottom: 69/1288
  13890. }
  13891. },
  13892. back: {
  13893. height: math.unit(7 + 5 / 12, "feet"),
  13894. name: "Back",
  13895. image: {
  13896. source: "./media/characters/kuiper-vanrel/back.svg",
  13897. extra: 1236/1193,
  13898. bottom: 27/1263
  13899. }
  13900. },
  13901. foot: {
  13902. height: math.unit(0.55, "meters"),
  13903. name: "Foot",
  13904. image: {
  13905. source: "./media/characters/kuiper-vanrel/foot.svg",
  13906. }
  13907. },
  13908. battle: {
  13909. height: math.unit(6.824, "feet"),
  13910. name: "Battle",
  13911. image: {
  13912. source: "./media/characters/kuiper-vanrel/battle.svg",
  13913. extra: 1466 / 1327,
  13914. bottom: 29 / 1492.5
  13915. }
  13916. },
  13917. meerkui: {
  13918. height: math.unit(18, "inches"),
  13919. name: "Meerkui",
  13920. image: {
  13921. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13922. extra: 1354/1289,
  13923. bottom: 69/1423
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Normal",
  13930. height: math.unit(7 + 5 / 12, "feet"),
  13931. default: true
  13932. },
  13933. ]
  13934. ))
  13935. characterMakers.push(() => makeCharacter(
  13936. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13937. {
  13938. front: {
  13939. height: math.unit(8 + 5 / 12, "feet"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/keset-vanrel/front.svg",
  13943. extra: 1231/1148,
  13944. bottom: 82/1313
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(8 + 5 / 12, "feet"),
  13949. name: "Back",
  13950. image: {
  13951. source: "./media/characters/keset-vanrel/back.svg",
  13952. extra: 1240/1174,
  13953. bottom: 33/1273
  13954. }
  13955. },
  13956. hand: {
  13957. height: math.unit(0.6, "meters"),
  13958. name: "Hand",
  13959. image: {
  13960. source: "./media/characters/keset-vanrel/hand.svg"
  13961. }
  13962. },
  13963. foot: {
  13964. height: math.unit(0.94978, "meters"),
  13965. name: "Foot",
  13966. image: {
  13967. source: "./media/characters/keset-vanrel/foot.svg"
  13968. }
  13969. },
  13970. battle: {
  13971. height: math.unit(7.408, "feet"),
  13972. name: "Battle",
  13973. image: {
  13974. source: "./media/characters/keset-vanrel/battle.svg",
  13975. extra: 1890 / 1386,
  13976. bottom: 73.28 / 1970
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Normal",
  13983. height: math.unit(8 + 5 / 12, "feet"),
  13984. default: true
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13990. {
  13991. front: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(150, "lb"),
  13994. name: "Front",
  13995. image: {
  13996. source: "./media/characters/neos/front.svg",
  13997. extra: 1696 / 992,
  13998. bottom: 0.14
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Normal",
  14005. height: math.unit(54, "cm"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Macro",
  14010. height: math.unit(100, "m")
  14011. },
  14012. {
  14013. name: "Megamacro",
  14014. height: math.unit(10, "km")
  14015. },
  14016. {
  14017. name: "Megamacro+",
  14018. height: math.unit(100, "km")
  14019. },
  14020. {
  14021. name: "Gigamacro",
  14022. height: math.unit(100, "Mm")
  14023. },
  14024. {
  14025. name: "Teramacro",
  14026. height: math.unit(100, "Gm")
  14027. },
  14028. {
  14029. name: "Examacro",
  14030. height: math.unit(100, "Em")
  14031. },
  14032. {
  14033. name: "Godly",
  14034. height: math.unit(10000, "Ym")
  14035. },
  14036. {
  14037. name: "Beyond Godly",
  14038. height: math.unit(25, "multiverses")
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14044. {
  14045. fluide_tame: {
  14046. height: math.unit(5, "feet"),
  14047. name: "Tame",
  14048. image: {
  14049. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14050. extra: 1655/1574,
  14051. bottom: 231/1886
  14052. },
  14053. form: "fluide",
  14054. default: true
  14055. },
  14056. fluide_nude: {
  14057. height: math.unit(5, "feet"),
  14058. name: "Nude",
  14059. image: {
  14060. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14061. extra: 1655/1574,
  14062. bottom: 231/1886
  14063. },
  14064. form: "fluide",
  14065. },
  14066. male_tame: {
  14067. height: math.unit(5, "feet"),
  14068. name: "Tame",
  14069. image: {
  14070. source: "./media/characters/sammy-mouse/male-tame.svg",
  14071. extra: 1655/1574,
  14072. bottom: 231/1886
  14073. },
  14074. form: "male",
  14075. default: true
  14076. },
  14077. male_nude: {
  14078. height: math.unit(5, "feet"),
  14079. name: "Nude",
  14080. image: {
  14081. source: "./media/characters/sammy-mouse/male-nude.svg",
  14082. extra: 1655/1574,
  14083. bottom: 231/1886
  14084. },
  14085. form: "male",
  14086. },
  14087. female_nude: {
  14088. height: math.unit(5, "feet"),
  14089. name: "Nude",
  14090. image: {
  14091. source: "./media/characters/sammy-mouse/female-nude.svg",
  14092. extra: 1655/1574,
  14093. bottom: 231/1886
  14094. },
  14095. form: "female",
  14096. default: true
  14097. },
  14098. mouth: {
  14099. height: math.unit(0.32, "feet"),
  14100. name: "Mouth",
  14101. image: {
  14102. source: "./media/characters/sammy-mouse/mouth.svg"
  14103. },
  14104. allForms: true
  14105. },
  14106. paw: {
  14107. height: math.unit(0.42, "feet"),
  14108. name: "Paw",
  14109. image: {
  14110. source: "./media/characters/sammy-mouse/paw.svg"
  14111. },
  14112. allForms: true
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Micro",
  14118. height: math.unit(5, "inches"),
  14119. allForms: true
  14120. },
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(5, "feet"),
  14124. default: true,
  14125. allForms: true
  14126. },
  14127. {
  14128. name: "Macro",
  14129. height: math.unit(60, "feet"),
  14130. allForms: true
  14131. },
  14132. ],
  14133. {
  14134. "fluide": {
  14135. name: "Fluide",
  14136. default: true
  14137. },
  14138. "male": {
  14139. name: "Male",
  14140. },
  14141. "female": {
  14142. name: "Female",
  14143. },
  14144. }
  14145. ))
  14146. characterMakers.push(() => makeCharacter(
  14147. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14148. {
  14149. front: {
  14150. height: math.unit(4, "feet"),
  14151. weight: math.unit(50, "lb"),
  14152. name: "Front",
  14153. image: {
  14154. source: "./media/characters/kole/front.svg",
  14155. extra: 1423 / 1303,
  14156. bottom: 0.025
  14157. }
  14158. },
  14159. back: {
  14160. height: math.unit(4, "feet"),
  14161. weight: math.unit(50, "lb"),
  14162. name: "Back",
  14163. image: {
  14164. source: "./media/characters/kole/back.svg",
  14165. extra: 1426 / 1280,
  14166. bottom: 0.02
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(4, "feet"),
  14174. default: true
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(2.5, "feet"),
  14183. weight: math.unit(32, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/rufran/front.svg",
  14187. extra: 1313/885,
  14188. bottom: 94/1407
  14189. }
  14190. },
  14191. side: {
  14192. height: math.unit(2.5, "feet"),
  14193. weight: math.unit(32, "lb"),
  14194. name: "Side",
  14195. image: {
  14196. source: "./media/characters/rufran/side.svg",
  14197. extra: 1109/852,
  14198. bottom: 118/1227
  14199. }
  14200. },
  14201. back: {
  14202. height: math.unit(2.5, "feet"),
  14203. weight: math.unit(32, "lb"),
  14204. name: "Back",
  14205. image: {
  14206. source: "./media/characters/rufran/back.svg",
  14207. extra: 1280/878,
  14208. bottom: 131/1411
  14209. }
  14210. },
  14211. mouth: {
  14212. height: math.unit(1.13, "feet"),
  14213. name: "Mouth",
  14214. image: {
  14215. source: "./media/characters/rufran/mouth.svg"
  14216. }
  14217. },
  14218. foot: {
  14219. height: math.unit(1.33, "feet"),
  14220. name: "Foot",
  14221. image: {
  14222. source: "./media/characters/rufran/foot.svg"
  14223. }
  14224. },
  14225. koboldFront: {
  14226. height: math.unit(2 + 6 / 12, "feet"),
  14227. weight: math.unit(20, "lb"),
  14228. name: "Front (Kobold)",
  14229. image: {
  14230. source: "./media/characters/rufran/kobold-front.svg",
  14231. extra: 2041 / 1839,
  14232. bottom: 0.055
  14233. }
  14234. },
  14235. koboldBack: {
  14236. height: math.unit(2 + 6 / 12, "feet"),
  14237. weight: math.unit(20, "lb"),
  14238. name: "Back (Kobold)",
  14239. image: {
  14240. source: "./media/characters/rufran/kobold-back.svg",
  14241. extra: 2054 / 1839,
  14242. bottom: 0.01
  14243. }
  14244. },
  14245. koboldHand: {
  14246. height: math.unit(0.2166, "meters"),
  14247. name: "Hand (Kobold)",
  14248. image: {
  14249. source: "./media/characters/rufran/kobold-hand.svg"
  14250. }
  14251. },
  14252. koboldFoot: {
  14253. height: math.unit(0.185, "meters"),
  14254. name: "Foot (Kobold)",
  14255. image: {
  14256. source: "./media/characters/rufran/kobold-foot.svg"
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Micro",
  14263. height: math.unit(1, "inch")
  14264. },
  14265. {
  14266. name: "Normal",
  14267. height: math.unit(2 + 6 / 12, "feet"),
  14268. default: true
  14269. },
  14270. {
  14271. name: "Big",
  14272. height: math.unit(60, "feet")
  14273. },
  14274. {
  14275. name: "Macro",
  14276. height: math.unit(325, "feet")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(0.3, "meters"),
  14285. weight: math.unit(3.5, "kg"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/chip/front.svg",
  14289. extra: 748 / 674
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Micro",
  14296. height: math.unit(1, "inch"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14303. {
  14304. side: {
  14305. height: math.unit(2.3, "meters"),
  14306. weight: math.unit(3500, "lb"),
  14307. name: "Side",
  14308. image: {
  14309. source: "./media/characters/torvid/side.svg",
  14310. extra: 1972 / 722,
  14311. bottom: 0.035
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Normal",
  14318. height: math.unit(2.3, "meters"),
  14319. default: true
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(2, "meters"),
  14328. weight: math.unit(150.5, "kg"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/susan/front.svg",
  14332. extra: 693 / 635,
  14333. bottom: 0.05
  14334. }
  14335. },
  14336. },
  14337. [
  14338. {
  14339. name: "Megamacro",
  14340. height: math.unit(505, "miles"),
  14341. default: true
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(6, "feet"),
  14350. weight: math.unit(150, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/raindrops/front.svg",
  14354. extra: 2655 / 2461,
  14355. bottom: 49 / 2705
  14356. }
  14357. },
  14358. back: {
  14359. height: math.unit(6, "feet"),
  14360. weight: math.unit(150, "lb"),
  14361. name: "Back",
  14362. image: {
  14363. source: "./media/characters/raindrops/back.svg",
  14364. extra: 2574 / 2400,
  14365. bottom: 65 / 2634
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Micro",
  14372. height: math.unit(6, "inches")
  14373. },
  14374. {
  14375. name: "Normal",
  14376. height: math.unit(6 + 2 / 12, "feet")
  14377. },
  14378. {
  14379. name: "Macro",
  14380. height: math.unit(131, "feet"),
  14381. default: true
  14382. },
  14383. {
  14384. name: "Megamacro",
  14385. height: math.unit(15, "miles")
  14386. },
  14387. {
  14388. name: "Gigamacro",
  14389. height: math.unit(4000, "miles")
  14390. },
  14391. {
  14392. name: "Teramacro",
  14393. height: math.unit(315000, "miles")
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14399. {
  14400. normal_front: {
  14401. height: math.unit(9 + 2/12, "feet"),
  14402. weight: math.unit(325, "kg"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/tezwa/normal-front.svg",
  14406. extra: 770/714,
  14407. bottom: 32/802
  14408. },
  14409. form: "normal",
  14410. },
  14411. normal_paw: {
  14412. height: math.unit(2.2, "feet"),
  14413. name: "Paw",
  14414. image: {
  14415. source: "./media/characters/tezwa/paw.svg"
  14416. },
  14417. form: "normal",
  14418. },
  14419. muscled_front: {
  14420. height: math.unit(916 + 8/12, "feet"),
  14421. weight: math.unit(500000, "tons"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/tezwa/muscled-front.svg",
  14425. extra: 1840/1697,
  14426. bottom: 29/1869
  14427. },
  14428. form: "muscled",
  14429. },
  14430. muscled_paw: {
  14431. height: math.unit(200, "feet"),
  14432. name: "Paw",
  14433. image: {
  14434. source: "./media/characters/tezwa/paw.svg"
  14435. },
  14436. form: "muscled",
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(9 + 2 / 12, "feet"),
  14443. default: true,
  14444. form: "normal"
  14445. },
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(916 + 8/12, "feet"),
  14449. default: true,
  14450. form: "muscled"
  14451. },
  14452. ],
  14453. {
  14454. "normal": {
  14455. name: "Normal",
  14456. default: true
  14457. },
  14458. "muscled": {
  14459. name: "Muscled",
  14460. },
  14461. }
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14465. {
  14466. front: {
  14467. height: math.unit(58, "feet"),
  14468. weight: math.unit(89000, "lb"),
  14469. name: "Front",
  14470. image: {
  14471. source: "./media/characters/typhus/front.svg",
  14472. extra: 816 / 800,
  14473. bottom: 0.065
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(58, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(12, "feet"),
  14490. weight: math.unit(6, "tonnes"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/lyra-von-wulf/front.svg",
  14494. extra: 1,
  14495. bottom: 0.10
  14496. }
  14497. },
  14498. frontMecha: {
  14499. height: math.unit(12, "feet"),
  14500. weight: math.unit(12, "tonnes"),
  14501. name: "Front (Mecha)",
  14502. image: {
  14503. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14504. extra: 1,
  14505. bottom: 0.042
  14506. }
  14507. },
  14508. maw: {
  14509. height: math.unit(2.2, "feet"),
  14510. name: "Maw",
  14511. image: {
  14512. source: "./media/characters/lyra-von-wulf/maw.svg"
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Normal",
  14519. height: math.unit(12, "feet"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Classic",
  14524. height: math.unit(50, "feet")
  14525. },
  14526. {
  14527. name: "Macro",
  14528. height: math.unit(500, "feet")
  14529. },
  14530. {
  14531. name: "Megamacro",
  14532. height: math.unit(1, "mile")
  14533. },
  14534. {
  14535. name: "Gigamacro",
  14536. height: math.unit(400, "miles")
  14537. },
  14538. {
  14539. name: "Teramacro",
  14540. height: math.unit(22000, "miles")
  14541. },
  14542. {
  14543. name: "Solarmacro",
  14544. height: math.unit(8600000, "miles")
  14545. },
  14546. {
  14547. name: "Galactic",
  14548. height: math.unit(1057000, "lightyears")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(6 + 10 / 12, "feet"),
  14557. weight: math.unit(150, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/dixon/front.svg",
  14561. extra: 3361 / 3209,
  14562. bottom: 0.01
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(6 + 10 / 12, "feet"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Big",
  14574. height: math.unit(12, "meters")
  14575. },
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(500, "meters")
  14579. },
  14580. {
  14581. name: "Megamacro",
  14582. height: math.unit(2, "km")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14588. {
  14589. kingCheetah_front: {
  14590. height: math.unit(1.85, "meters"),
  14591. weight: math.unit(68, "kg"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/kauko/king-cheetah-front.svg",
  14595. extra: 1007/972,
  14596. bottom: 35/1042
  14597. },
  14598. form: "king-cheetah",
  14599. default: true
  14600. },
  14601. kingCheetah_back: {
  14602. height: math.unit(1.85, "meters"),
  14603. weight: math.unit(68, "kg"),
  14604. name: "Back",
  14605. image: {
  14606. source: "./media/characters/kauko/king-cheetah-back.svg",
  14607. extra: 1015/980,
  14608. bottom: 11/1026
  14609. },
  14610. form: "king-cheetah",
  14611. },
  14612. kingCheetah_hand: {
  14613. height: math.unit(0.23, "meters"),
  14614. name: "Hand",
  14615. image: {
  14616. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14617. },
  14618. form: "king-cheetah",
  14619. },
  14620. kingCheetah_paw: {
  14621. height: math.unit(0.38, "meters"),
  14622. name: "Paw",
  14623. image: {
  14624. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14625. },
  14626. form: "king-cheetah",
  14627. },
  14628. kingCheetah_nape: {
  14629. height: math.unit(0.23, "meters"),
  14630. name: "Nape",
  14631. image: {
  14632. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14633. },
  14634. form: "king-cheetah",
  14635. },
  14636. wolf_front: {
  14637. height: math.unit(1.88, "meters"),
  14638. weight: math.unit(74, "kg"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/kauko/wolf-front.svg",
  14642. extra: 952/908,
  14643. bottom: 64/1016
  14644. },
  14645. form: "wolf",
  14646. default: true
  14647. },
  14648. wolf_dressed: {
  14649. height: math.unit(1.88, "meters"),
  14650. weight: math.unit(74, "kg"),
  14651. name: "Dressed",
  14652. image: {
  14653. source: "./media/characters/kauko/wolf-dressed.svg",
  14654. extra: 963/916,
  14655. bottom: 101/1064
  14656. },
  14657. form: "wolf",
  14658. },
  14659. wolf_hand: {
  14660. height: math.unit(0.3, "meters"),
  14661. name: "Hand",
  14662. image: {
  14663. source: "./media/characters/kauko/wolf-hand.svg"
  14664. },
  14665. form: "wolf",
  14666. },
  14667. wolf_paw: {
  14668. height: math.unit(0.407, "meters"),
  14669. name: "Paw",
  14670. image: {
  14671. source: "./media/characters/kauko/wolf-paw.svg"
  14672. },
  14673. form: "wolf",
  14674. },
  14675. wolf_nape: {
  14676. height: math.unit(0.25, "meters"),
  14677. name: "Nape",
  14678. image: {
  14679. source: "./media/characters/kauko/wolf-nape.svg"
  14680. },
  14681. form: "wolf",
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(1.85, "m"),
  14688. default: true,
  14689. form: "king-cheetah"
  14690. },
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(1.88, "m"),
  14694. default: true,
  14695. form: "wolf"
  14696. },
  14697. ],
  14698. {
  14699. "king-cheetah": {
  14700. name: "King Cheetah",
  14701. default: true
  14702. },
  14703. "wolf": {
  14704. name: "Wolf",
  14705. },
  14706. }
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14710. {
  14711. frontSfw: {
  14712. height: math.unit(5, "meters"),
  14713. weight: math.unit(4250, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/varg/front-sfw.svg",
  14717. extra: 1103/1010,
  14718. bottom: 50/1153
  14719. },
  14720. form: "anthro",
  14721. default: true
  14722. },
  14723. backSfw: {
  14724. height: math.unit(5, "meters"),
  14725. weight: math.unit(4250, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/varg/back-sfw.svg",
  14729. extra: 1038/1022,
  14730. bottom: 36/1074
  14731. },
  14732. form: "anthro"
  14733. },
  14734. frontNsfw: {
  14735. height: math.unit(5, "meters"),
  14736. weight: math.unit(4250, "lb"),
  14737. name: "Front (NSFW)",
  14738. image: {
  14739. source: "./media/characters/varg/front-nsfw.svg",
  14740. extra: 1103/1010,
  14741. bottom: 50/1153
  14742. },
  14743. form: "anthro"
  14744. },
  14745. sheath: {
  14746. height: math.unit(3.8, "feet"),
  14747. weight: math.unit(90, "kilograms"),
  14748. name: "Sheath",
  14749. image: {
  14750. source: "./media/characters/varg/sheath.svg"
  14751. },
  14752. form: "anthro"
  14753. },
  14754. dick: {
  14755. height: math.unit(4.6, "feet"),
  14756. weight: math.unit(451, "kilograms"),
  14757. name: "Dick",
  14758. image: {
  14759. source: "./media/characters/varg/dick.svg"
  14760. },
  14761. form: "anthro"
  14762. },
  14763. feralSfw: {
  14764. height: math.unit(5, "meters"),
  14765. weight: math.unit(100000, "lb"),
  14766. name: "Side",
  14767. image: {
  14768. source: "./media/characters/varg/feral-sfw.svg",
  14769. extra: 1065/511,
  14770. bottom: 211/1276
  14771. },
  14772. form: "feral",
  14773. default: true
  14774. },
  14775. feralNsfw: {
  14776. height: math.unit(5, "meters"),
  14777. weight: math.unit(100000, "lb"),
  14778. name: "Side (NSFW)",
  14779. image: {
  14780. source: "./media/characters/varg/feral-nsfw.svg",
  14781. extra: 1065/511,
  14782. bottom: 211/1276
  14783. },
  14784. form: "feral",
  14785. },
  14786. feralSheath: {
  14787. height: math.unit(9.8, "feet"),
  14788. weight: math.unit(2000, "kilograms"),
  14789. name: "Sheath",
  14790. image: {
  14791. source: "./media/characters/varg/sheath.svg"
  14792. },
  14793. form: "feral"
  14794. },
  14795. feralDick: {
  14796. height: math.unit(13.11, "feet"),
  14797. weight: math.unit(10440, "kilograms"),
  14798. name: "Dick",
  14799. image: {
  14800. source: "./media/characters/varg/dick.svg"
  14801. },
  14802. form: "feral"
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Normal",
  14808. height: math.unit(5, "meters"),
  14809. form: "anthro"
  14810. },
  14811. {
  14812. name: "Macro",
  14813. height: math.unit(200, "meters"),
  14814. form: "anthro"
  14815. },
  14816. {
  14817. name: "Megamacro",
  14818. height: math.unit(20, "kilometers"),
  14819. form: "anthro"
  14820. },
  14821. {
  14822. name: "True Size",
  14823. height: math.unit(211, "km"),
  14824. form: "anthro",
  14825. default: true
  14826. },
  14827. {
  14828. name: "Gigamacro",
  14829. height: math.unit(1000, "km"),
  14830. form: "anthro"
  14831. },
  14832. {
  14833. name: "Gigamacro+",
  14834. height: math.unit(8000, "km"),
  14835. form: "anthro"
  14836. },
  14837. {
  14838. name: "Teramacro",
  14839. height: math.unit(1000000, "km"),
  14840. form: "anthro"
  14841. },
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(5, "meters"),
  14845. form: "feral"
  14846. },
  14847. {
  14848. name: "Macro",
  14849. height: math.unit(200, "meters"),
  14850. form: "feral"
  14851. },
  14852. {
  14853. name: "Megamacro",
  14854. height: math.unit(20, "kilometers"),
  14855. form: "feral"
  14856. },
  14857. {
  14858. name: "True Size",
  14859. height: math.unit(211, "km"),
  14860. form: "feral",
  14861. default: true
  14862. },
  14863. {
  14864. name: "Gigamacro",
  14865. height: math.unit(1000, "km"),
  14866. form: "feral"
  14867. },
  14868. {
  14869. name: "Gigamacro+",
  14870. height: math.unit(8000, "km"),
  14871. form: "feral"
  14872. },
  14873. {
  14874. name: "Teramacro",
  14875. height: math.unit(1000000, "km"),
  14876. form: "feral"
  14877. },
  14878. ],
  14879. {
  14880. "anthro": {
  14881. name: "Anthro",
  14882. default: true
  14883. },
  14884. "feral": {
  14885. name: "Feral",
  14886. },
  14887. }
  14888. ))
  14889. characterMakers.push(() => makeCharacter(
  14890. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14891. {
  14892. front: {
  14893. height: math.unit(7 + 7 / 12, "feet"),
  14894. weight: math.unit(267, "lb"),
  14895. name: "Front",
  14896. image: {
  14897. source: "./media/characters/dayza/front.svg",
  14898. extra: 1262 / 1200,
  14899. bottom: 0.035
  14900. }
  14901. },
  14902. side: {
  14903. height: math.unit(7 + 7 / 12, "feet"),
  14904. weight: math.unit(267, "lb"),
  14905. name: "Side",
  14906. image: {
  14907. source: "./media/characters/dayza/side.svg",
  14908. extra: 1295 / 1245,
  14909. bottom: 0.05
  14910. }
  14911. },
  14912. back: {
  14913. height: math.unit(7 + 7 / 12, "feet"),
  14914. weight: math.unit(267, "lb"),
  14915. name: "Back",
  14916. image: {
  14917. source: "./media/characters/dayza/back.svg",
  14918. extra: 1241 / 1170
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(7 + 7 / 12, "feet"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Macro",
  14930. height: math.unit(155, "feet")
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(6 + 5 / 12, "feet"),
  14939. weight: math.unit(160, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/xanthos/front.svg",
  14943. extra: 1,
  14944. bottom: 0.04
  14945. }
  14946. },
  14947. back: {
  14948. height: math.unit(6 + 5 / 12, "feet"),
  14949. weight: math.unit(160, "lb"),
  14950. name: "Back",
  14951. image: {
  14952. source: "./media/characters/xanthos/back.svg",
  14953. extra: 1,
  14954. bottom: 0.03
  14955. }
  14956. },
  14957. hand: {
  14958. height: math.unit(0.928, "feet"),
  14959. name: "Hand",
  14960. image: {
  14961. source: "./media/characters/xanthos/hand.svg"
  14962. }
  14963. },
  14964. foot: {
  14965. height: math.unit(1.286, "feet"),
  14966. name: "Foot",
  14967. image: {
  14968. source: "./media/characters/xanthos/foot.svg"
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(6 + 5 / 12, "feet"),
  14976. default: true
  14977. },
  14978. {
  14979. name: "Normal+",
  14980. height: math.unit(6, "meters")
  14981. },
  14982. {
  14983. name: "Macro",
  14984. height: math.unit(40, "feet")
  14985. },
  14986. {
  14987. name: "Macro+",
  14988. height: math.unit(200, "meters")
  14989. },
  14990. {
  14991. name: "Megamacro",
  14992. height: math.unit(20, "km")
  14993. },
  14994. {
  14995. name: "Megamacro+",
  14996. height: math.unit(100, "km")
  14997. },
  14998. {
  14999. name: "Gigamacro",
  15000. height: math.unit(200, "megameters")
  15001. },
  15002. {
  15003. name: "Gigamacro+",
  15004. height: math.unit(1.5, "gigameters")
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(6 + 3 / 12, "feet"),
  15013. weight: math.unit(215, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/grynn/front.svg",
  15017. extra: 4627 / 4209,
  15018. bottom: 0.047
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Micro",
  15025. height: math.unit(6, "inches")
  15026. },
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(6 + 3 / 12, "feet"),
  15030. default: true
  15031. },
  15032. {
  15033. name: "Big",
  15034. height: math.unit(104, "feet")
  15035. },
  15036. {
  15037. name: "Macro",
  15038. height: math.unit(944, "feet")
  15039. },
  15040. {
  15041. name: "Macro+",
  15042. height: math.unit(9480, "feet")
  15043. },
  15044. {
  15045. name: "Megamacro",
  15046. height: math.unit(78752, "feet")
  15047. },
  15048. {
  15049. name: "Megamacro+",
  15050. height: math.unit(630128, "feet")
  15051. },
  15052. {
  15053. name: "Megamacro++",
  15054. height: math.unit(3150695, "feet")
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(7 + 5 / 12, "feet"),
  15063. weight: math.unit(450, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/mocha-aura/front.svg",
  15067. extra: 1907 / 1817,
  15068. bottom: 0.04
  15069. }
  15070. },
  15071. back: {
  15072. height: math.unit(7 + 5 / 12, "feet"),
  15073. weight: math.unit(450, "lb"),
  15074. name: "Back",
  15075. image: {
  15076. source: "./media/characters/mocha-aura/back.svg",
  15077. extra: 1900 / 1825,
  15078. bottom: 0.045
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Nano",
  15085. height: math.unit(1, "nm")
  15086. },
  15087. {
  15088. name: "Megamicro",
  15089. height: math.unit(1, "mm")
  15090. },
  15091. {
  15092. name: "Micro",
  15093. height: math.unit(3, "inches")
  15094. },
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(7 + 5 / 12, "feet"),
  15098. default: true
  15099. },
  15100. {
  15101. name: "Macro",
  15102. height: math.unit(30, "feet")
  15103. },
  15104. {
  15105. name: "Megamacro",
  15106. height: math.unit(3500, "feet")
  15107. },
  15108. {
  15109. name: "Teramacro",
  15110. height: math.unit(500000, "miles")
  15111. },
  15112. {
  15113. name: "Petamacro",
  15114. height: math.unit(50000000000000000, "parsecs")
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15120. {
  15121. front: {
  15122. height: math.unit(6, "feet"),
  15123. weight: math.unit(150, "lb"),
  15124. name: "Front",
  15125. image: {
  15126. source: "./media/characters/ilisha-devya/front.svg",
  15127. extra: 1053/1049,
  15128. bottom: 270/1323
  15129. }
  15130. },
  15131. back: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(150, "lb"),
  15134. name: "Back",
  15135. image: {
  15136. source: "./media/characters/ilisha-devya/back.svg",
  15137. extra: 1131/1128,
  15138. bottom: 39/1170
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Macro",
  15145. height: math.unit(500, "feet"),
  15146. default: true
  15147. },
  15148. {
  15149. name: "Megamacro",
  15150. height: math.unit(10, "miles")
  15151. },
  15152. {
  15153. name: "Gigamacro",
  15154. height: math.unit(100000, "miles")
  15155. },
  15156. {
  15157. name: "Examacro",
  15158. height: math.unit(1e9, "lightyears")
  15159. },
  15160. {
  15161. name: "Omniversal",
  15162. height: math.unit(1e33, "lightyears")
  15163. },
  15164. {
  15165. name: "Beyond Infinite",
  15166. height: math.unit(1e100, "lightyears")
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15172. {
  15173. Side: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Side",
  15177. image: {
  15178. source: "./media/characters/mira/side.svg",
  15179. extra: 900 / 799,
  15180. bottom: 0.02
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Human Size",
  15187. height: math.unit(6, "feet")
  15188. },
  15189. {
  15190. name: "Macro",
  15191. height: math.unit(100, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(10, "miles")
  15197. },
  15198. {
  15199. name: "Gigamacro",
  15200. height: math.unit(25000, "miles")
  15201. },
  15202. {
  15203. name: "Teramacro",
  15204. height: math.unit(300, "AU")
  15205. },
  15206. {
  15207. name: "Full Size",
  15208. height: math.unit(4.5e10, "lightyears")
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(6, "feet"),
  15217. weight: math.unit(150, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/holly/front.svg",
  15221. extra: 639 / 606
  15222. }
  15223. },
  15224. back: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Back",
  15228. image: {
  15229. source: "./media/characters/holly/back.svg",
  15230. extra: 623 / 598
  15231. }
  15232. },
  15233. frontWorking: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front (Working)",
  15237. image: {
  15238. source: "./media/characters/holly/front-working.svg",
  15239. extra: 607 / 577,
  15240. bottom: 0.048
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(12 + 3 / 12, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(6, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/porter/front.svg",
  15261. extra: 1,
  15262. bottom: 0.01
  15263. }
  15264. },
  15265. frontRobes: {
  15266. height: math.unit(6, "feet"),
  15267. weight: math.unit(150, "lb"),
  15268. name: "Front (Robes)",
  15269. image: {
  15270. source: "./media/characters/porter/front-robes.svg",
  15271. extra: 1.01,
  15272. bottom: 0.01
  15273. }
  15274. },
  15275. },
  15276. [
  15277. {
  15278. name: "Normal",
  15279. height: math.unit(11 + 9 / 12, "feet"),
  15280. default: true
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15286. {
  15287. legendary: {
  15288. height: math.unit(6, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Legendary",
  15291. image: {
  15292. source: "./media/characters/lucy/legendary.svg",
  15293. extra: 1355 / 1100,
  15294. bottom: 0.045
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Legendary",
  15301. height: math.unit(86882 * 2, "miles"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15308. {
  15309. front: {
  15310. height: math.unit(6, "feet"),
  15311. weight: math.unit(150, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/drusilla/front.svg",
  15315. extra: 678 / 635,
  15316. bottom: 0.03
  15317. }
  15318. },
  15319. back: {
  15320. height: math.unit(6, "feet"),
  15321. weight: math.unit(150, "lb"),
  15322. name: "Back",
  15323. image: {
  15324. source: "./media/characters/drusilla/back.svg",
  15325. extra: 678 / 635,
  15326. bottom: 0.005
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Macro",
  15333. height: math.unit(100, "feet")
  15334. },
  15335. {
  15336. name: "Canon Height",
  15337. height: math.unit(2000, "feet"),
  15338. default: true
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15344. {
  15345. front: {
  15346. height: math.unit(6, "feet"),
  15347. weight: math.unit(180, "lb"),
  15348. name: "Front",
  15349. image: {
  15350. source: "./media/characters/renard-thatch/front.svg",
  15351. extra: 2411 / 2275,
  15352. bottom: 0.01
  15353. }
  15354. },
  15355. frontPosing: {
  15356. height: math.unit(6, "feet"),
  15357. weight: math.unit(180, "lb"),
  15358. name: "Front (Posing)",
  15359. image: {
  15360. source: "./media/characters/renard-thatch/front-posing.svg",
  15361. extra: 2381 / 2261,
  15362. bottom: 0.01
  15363. }
  15364. },
  15365. back: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(180, "lb"),
  15368. name: "Back",
  15369. image: {
  15370. source: "./media/characters/renard-thatch/back.svg",
  15371. extra: 2428 / 2288
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Micro",
  15378. height: math.unit(3, "inches")
  15379. },
  15380. {
  15381. name: "Default",
  15382. height: math.unit(6, "feet"),
  15383. default: true
  15384. },
  15385. {
  15386. name: "Macro",
  15387. height: math.unit(75, "feet")
  15388. },
  15389. ]
  15390. ))
  15391. characterMakers.push(() => makeCharacter(
  15392. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15393. {
  15394. front: {
  15395. height: math.unit(1450, "feet"),
  15396. weight: math.unit(1.21e6, "tons"),
  15397. name: "Front",
  15398. image: {
  15399. source: "./media/characters/sekvra/front.svg",
  15400. extra: 1193/1190,
  15401. bottom: 78/1271
  15402. }
  15403. },
  15404. side: {
  15405. height: math.unit(1450, "feet"),
  15406. weight: math.unit(1.21e6, "tons"),
  15407. name: "Side",
  15408. image: {
  15409. source: "./media/characters/sekvra/side.svg",
  15410. extra: 1193/1190,
  15411. bottom: 52/1245
  15412. }
  15413. },
  15414. back: {
  15415. height: math.unit(1450, "feet"),
  15416. weight: math.unit(1.21e6, "tons"),
  15417. name: "Back",
  15418. image: {
  15419. source: "./media/characters/sekvra/back.svg",
  15420. extra: 1219/1216,
  15421. bottom: 21/1240
  15422. }
  15423. },
  15424. frontClothed: {
  15425. height: math.unit(1450, "feet"),
  15426. weight: math.unit(1.21e6, "tons"),
  15427. name: "Front (Clothed)",
  15428. image: {
  15429. source: "./media/characters/sekvra/front-clothed.svg",
  15430. extra: 1192/1189,
  15431. bottom: 79/1271
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Macro",
  15438. height: math.unit(1450, "feet"),
  15439. default: true
  15440. },
  15441. {
  15442. name: "Megamacro",
  15443. height: math.unit(15000, "feet")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/carmine/front.svg",
  15456. extra: 1557/1538,
  15457. bottom: 68/1625
  15458. }
  15459. },
  15460. frontArmor: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Front (Armor)",
  15464. image: {
  15465. source: "./media/characters/carmine/front-armor.svg",
  15466. extra: 1549/1530,
  15467. bottom: 82/1631
  15468. }
  15469. },
  15470. mouth: {
  15471. height: math.unit(0.55, "feet"),
  15472. name: "Mouth",
  15473. image: {
  15474. source: "./media/characters/carmine/mouth.svg"
  15475. }
  15476. },
  15477. hand: {
  15478. height: math.unit(1.05, "feet"),
  15479. name: "Hand",
  15480. image: {
  15481. source: "./media/characters/carmine/hand.svg"
  15482. }
  15483. },
  15484. foot: {
  15485. height: math.unit(0.6, "feet"),
  15486. name: "Foot",
  15487. image: {
  15488. source: "./media/characters/carmine/foot.svg"
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Large",
  15495. height: math.unit(1, "mile")
  15496. },
  15497. {
  15498. name: "Huge",
  15499. height: math.unit(40, "miles"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Colossal",
  15504. height: math.unit(2500, "miles")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(6, "feet"),
  15513. weight: math.unit(150, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/elyssia/front.svg",
  15517. extra: 2201 / 2035,
  15518. bottom: 0.05
  15519. }
  15520. },
  15521. frontClothed: {
  15522. height: math.unit(6, "feet"),
  15523. weight: math.unit(150, "lb"),
  15524. name: "Front (Clothed)",
  15525. image: {
  15526. source: "./media/characters/elyssia/front-clothed.svg",
  15527. extra: 2201 / 2035,
  15528. bottom: 0.05
  15529. }
  15530. },
  15531. back: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(150, "lb"),
  15534. name: "Back",
  15535. image: {
  15536. source: "./media/characters/elyssia/back.svg",
  15537. extra: 2201 / 2035,
  15538. bottom: 0.013
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Smaller",
  15545. height: math.unit(150, "feet")
  15546. },
  15547. {
  15548. name: "Standard",
  15549. height: math.unit(1400, "feet"),
  15550. default: true
  15551. },
  15552. {
  15553. name: "Distracted",
  15554. height: math.unit(15000, "feet")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(7 + 4/12, "feet"),
  15563. weight: math.unit(690, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/geno-maxwell/front.svg",
  15567. extra: 984/856,
  15568. bottom: 87/1071
  15569. }
  15570. },
  15571. back: {
  15572. height: math.unit(7 + 4/12, "feet"),
  15573. weight: math.unit(690, "lb"),
  15574. name: "Back",
  15575. image: {
  15576. source: "./media/characters/geno-maxwell/back.svg",
  15577. extra: 981/854,
  15578. bottom: 57/1038
  15579. }
  15580. },
  15581. frontCostume: {
  15582. height: math.unit(7 + 4/12, "feet"),
  15583. weight: math.unit(690, "lb"),
  15584. name: "Front (Costume)",
  15585. image: {
  15586. source: "./media/characters/geno-maxwell/front-costume.svg",
  15587. extra: 984/856,
  15588. bottom: 87/1071
  15589. }
  15590. },
  15591. backcostume: {
  15592. height: math.unit(7 + 4/12, "feet"),
  15593. weight: math.unit(690, "lb"),
  15594. name: "Back (Costume)",
  15595. image: {
  15596. source: "./media/characters/geno-maxwell/back-costume.svg",
  15597. extra: 981/854,
  15598. bottom: 57/1038
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Micro",
  15605. height: math.unit(3, "inches")
  15606. },
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(7 + 4 / 12, "feet"),
  15610. default: true
  15611. },
  15612. {
  15613. name: "Macro",
  15614. height: math.unit(220, "feet")
  15615. },
  15616. {
  15617. name: "Megamacro",
  15618. height: math.unit(11, "miles")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(7 + 4/12, "feet"),
  15627. weight: math.unit(750, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/regena-maxwell/front.svg",
  15631. extra: 984/856,
  15632. bottom: 87/1071
  15633. }
  15634. },
  15635. back: {
  15636. height: math.unit(7 + 4/12, "feet"),
  15637. weight: math.unit(750, "lb"),
  15638. name: "Back",
  15639. image: {
  15640. source: "./media/characters/regena-maxwell/back.svg",
  15641. extra: 981/854,
  15642. bottom: 57/1038
  15643. }
  15644. },
  15645. frontCostume: {
  15646. height: math.unit(7 + 4/12, "feet"),
  15647. weight: math.unit(750, "lb"),
  15648. name: "Front (Costume)",
  15649. image: {
  15650. source: "./media/characters/regena-maxwell/front-costume.svg",
  15651. extra: 984/856,
  15652. bottom: 87/1071
  15653. }
  15654. },
  15655. backcostume: {
  15656. height: math.unit(7 + 4/12, "feet"),
  15657. weight: math.unit(750, "lb"),
  15658. name: "Back (Costume)",
  15659. image: {
  15660. source: "./media/characters/regena-maxwell/back-costume.svg",
  15661. extra: 981/854,
  15662. bottom: 57/1038
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(7 + 4 / 12, "feet"),
  15670. default: true
  15671. },
  15672. {
  15673. name: "Macro",
  15674. height: math.unit(220, "feet")
  15675. },
  15676. {
  15677. name: "Megamacro",
  15678. height: math.unit(11, "miles")
  15679. },
  15680. ]
  15681. ))
  15682. characterMakers.push(() => makeCharacter(
  15683. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15684. {
  15685. front: {
  15686. height: math.unit(6, "feet"),
  15687. weight: math.unit(150, "lb"),
  15688. name: "Front",
  15689. image: {
  15690. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15691. extra: 860 / 690,
  15692. bottom: 0.03
  15693. }
  15694. },
  15695. },
  15696. [
  15697. {
  15698. name: "Normal",
  15699. height: math.unit(1.7, "meters"),
  15700. default: true
  15701. },
  15702. ]
  15703. ))
  15704. characterMakers.push(() => makeCharacter(
  15705. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15706. {
  15707. front: {
  15708. height: math.unit(6, "feet"),
  15709. weight: math.unit(150, "lb"),
  15710. name: "Front",
  15711. image: {
  15712. source: "./media/characters/quilly/front.svg",
  15713. extra: 890 / 776
  15714. }
  15715. },
  15716. },
  15717. [
  15718. {
  15719. name: "Gigamacro",
  15720. height: math.unit(404090, "miles"),
  15721. default: true
  15722. },
  15723. ]
  15724. ))
  15725. characterMakers.push(() => makeCharacter(
  15726. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15727. {
  15728. front: {
  15729. height: math.unit(7 + 8 / 12, "feet"),
  15730. weight: math.unit(350, "lb"),
  15731. name: "Front",
  15732. image: {
  15733. source: "./media/characters/tempest/front.svg",
  15734. extra: 1175 / 1086,
  15735. bottom: 0.02
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Normal",
  15742. height: math.unit(7 + 8 / 12, "feet"),
  15743. default: true
  15744. },
  15745. ]
  15746. ))
  15747. characterMakers.push(() => makeCharacter(
  15748. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15749. {
  15750. side: {
  15751. height: math.unit(4 + 5 / 12, "feet"),
  15752. weight: math.unit(80, "lb"),
  15753. name: "Side",
  15754. image: {
  15755. source: "./media/characters/rodger/side.svg",
  15756. extra: 1235 / 1118
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Micro",
  15763. height: math.unit(1, "inch")
  15764. },
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(4 + 5 / 12, "feet"),
  15768. default: true
  15769. },
  15770. {
  15771. name: "Macro",
  15772. height: math.unit(120, "feet")
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(150, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/danyel/front.svg",
  15785. extra: 1185 / 1123,
  15786. bottom: 0.05
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Shrunken",
  15793. height: math.unit(0.5, "mm")
  15794. },
  15795. {
  15796. name: "Micro",
  15797. height: math.unit(1, "mm"),
  15798. default: true
  15799. },
  15800. {
  15801. name: "Upsized",
  15802. height: math.unit(5 + 5 / 12, "feet")
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(5 + 6 / 12, "feet"),
  15811. weight: math.unit(200, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/vivian-bijoux/front.svg",
  15815. extra: 1217/1209,
  15816. bottom: 76/1293
  15817. }
  15818. },
  15819. back: {
  15820. height: math.unit(5 + 6 / 12, "feet"),
  15821. weight: math.unit(200, "lb"),
  15822. name: "Back",
  15823. image: {
  15824. source: "./media/characters/vivian-bijoux/back.svg",
  15825. extra: 1214/1208,
  15826. bottom: 51/1265
  15827. }
  15828. },
  15829. dressed: {
  15830. height: math.unit(5 + 6 / 12, "feet"),
  15831. weight: math.unit(200, "lb"),
  15832. name: "Dressed",
  15833. image: {
  15834. source: "./media/characters/vivian-bijoux/dressed.svg",
  15835. extra: 1217/1209,
  15836. bottom: 76/1293
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(5 + 6 / 12, "feet"),
  15844. default: true
  15845. },
  15846. {
  15847. name: "Bad Dream",
  15848. height: math.unit(500, "feet")
  15849. },
  15850. {
  15851. name: "Nightmare",
  15852. height: math.unit(500, "miles")
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(6 + 1 / 12, "feet"),
  15861. weight: math.unit(260, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/zeta/front.svg",
  15865. extra: 1968 / 1889,
  15866. bottom: 0.06
  15867. }
  15868. },
  15869. back: {
  15870. height: math.unit(6 + 1 / 12, "feet"),
  15871. weight: math.unit(260, "lb"),
  15872. name: "Back",
  15873. image: {
  15874. source: "./media/characters/zeta/back.svg",
  15875. extra: 1944 / 1858,
  15876. bottom: 0.03
  15877. }
  15878. },
  15879. hand: {
  15880. height: math.unit(1.112, "feet"),
  15881. name: "Hand",
  15882. image: {
  15883. source: "./media/characters/zeta/hand.svg"
  15884. }
  15885. },
  15886. foot: {
  15887. height: math.unit(1.48, "feet"),
  15888. name: "Foot",
  15889. image: {
  15890. source: "./media/characters/zeta/foot.svg"
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Micro",
  15897. height: math.unit(6, "inches")
  15898. },
  15899. {
  15900. name: "Normal",
  15901. height: math.unit(6 + 1 / 12, "feet"),
  15902. default: true
  15903. },
  15904. {
  15905. name: "Macro",
  15906. height: math.unit(20, "feet")
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(6, "feet"),
  15915. weight: math.unit(150, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/jamie-larsen/front.svg",
  15919. extra: 962 / 933,
  15920. bottom: 0.02
  15921. }
  15922. },
  15923. back: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Back",
  15927. image: {
  15928. source: "./media/characters/jamie-larsen/back.svg",
  15929. extra: 997 / 946
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Macro",
  15936. height: math.unit(28 + 7 / 12, "feet"),
  15937. default: true
  15938. },
  15939. {
  15940. name: "Macro+",
  15941. height: math.unit(180, "feet")
  15942. },
  15943. {
  15944. name: "Megamacro",
  15945. height: math.unit(10, "miles")
  15946. },
  15947. {
  15948. name: "Gigamacro",
  15949. height: math.unit(200000, "miles")
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15955. {
  15956. front: {
  15957. height: math.unit(6, "feet"),
  15958. weight: math.unit(120, "lb"),
  15959. name: "Front",
  15960. image: {
  15961. source: "./media/characters/vance/front.svg",
  15962. extra: 1980 / 1890,
  15963. bottom: 0.09
  15964. }
  15965. },
  15966. back: {
  15967. height: math.unit(6, "feet"),
  15968. weight: math.unit(120, "lb"),
  15969. name: "Back",
  15970. image: {
  15971. source: "./media/characters/vance/back.svg",
  15972. extra: 2081 / 1994,
  15973. bottom: 0.014
  15974. }
  15975. },
  15976. hand: {
  15977. height: math.unit(0.88, "feet"),
  15978. name: "Hand",
  15979. image: {
  15980. source: "./media/characters/vance/hand.svg"
  15981. }
  15982. },
  15983. foot: {
  15984. height: math.unit(0.64, "feet"),
  15985. name: "Foot",
  15986. image: {
  15987. source: "./media/characters/vance/foot.svg"
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Small",
  15994. height: math.unit(90, "feet"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Macro",
  15999. height: math.unit(100, "meters")
  16000. },
  16001. {
  16002. name: "Megamacro",
  16003. height: math.unit(15, "miles")
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6, "feet"),
  16012. weight: math.unit(180, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/xochitl/front.svg",
  16016. extra: 2297 / 2261,
  16017. bottom: 0.065
  16018. }
  16019. },
  16020. back: {
  16021. height: math.unit(6, "feet"),
  16022. weight: math.unit(180, "lb"),
  16023. name: "Back",
  16024. image: {
  16025. source: "./media/characters/xochitl/back.svg",
  16026. extra: 2386 / 2354,
  16027. bottom: 0.01
  16028. }
  16029. },
  16030. foot: {
  16031. height: math.unit(6 / 5 * 1.15, "feet"),
  16032. weight: math.unit(150, "lb"),
  16033. name: "Foot",
  16034. image: {
  16035. source: "./media/characters/xochitl/foot.svg"
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Macro",
  16042. height: math.unit(80, "feet")
  16043. },
  16044. {
  16045. name: "Macro+",
  16046. height: math.unit(400, "feet"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Gigamacro",
  16051. height: math.unit(80000, "miles")
  16052. },
  16053. {
  16054. name: "Gigamacro+",
  16055. height: math.unit(400000, "miles")
  16056. },
  16057. {
  16058. name: "Teramacro",
  16059. height: math.unit(300, "AU")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/vincent/front.svg",
  16072. extra: 1130 / 1080,
  16073. bottom: 0.055
  16074. }
  16075. },
  16076. beak: {
  16077. height: math.unit(6 * 0.1, "feet"),
  16078. name: "Beak",
  16079. image: {
  16080. source: "./media/characters/vincent/beak.svg"
  16081. }
  16082. },
  16083. hand: {
  16084. height: math.unit(6 * 0.85, "feet"),
  16085. weight: math.unit(150, "lb"),
  16086. name: "Hand",
  16087. image: {
  16088. source: "./media/characters/vincent/hand.svg"
  16089. }
  16090. },
  16091. foot: {
  16092. height: math.unit(6 * 0.19, "feet"),
  16093. weight: math.unit(150, "lb"),
  16094. name: "Foot",
  16095. image: {
  16096. source: "./media/characters/vincent/foot.svg"
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Base",
  16103. height: math.unit(6 + 5 / 12, "feet"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Macro",
  16108. height: math.unit(300, "feet")
  16109. },
  16110. {
  16111. name: "Megamacro",
  16112. height: math.unit(2, "miles")
  16113. },
  16114. {
  16115. name: "Gigamacro",
  16116. height: math.unit(1000, "miles")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(2, "meters"),
  16125. weight: math.unit(500, "kg"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/coatl/front.svg",
  16129. extra: 3948 / 3500,
  16130. bottom: 0.082
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(4, "meters")
  16138. },
  16139. {
  16140. name: "Macro",
  16141. height: math.unit(100, "meters"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Macro+",
  16146. height: math.unit(300, "meters")
  16147. },
  16148. {
  16149. name: "Megamacro",
  16150. height: math.unit(3, "gigameters")
  16151. },
  16152. {
  16153. name: "Megamacro+",
  16154. height: math.unit(300, "terameters")
  16155. },
  16156. {
  16157. name: "Megamacro++",
  16158. height: math.unit(3, "lightyears")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(50, "kg"),
  16168. name: "front",
  16169. image: {
  16170. source: "./media/characters/shiroryu/front.svg",
  16171. extra: 1990 / 1935
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Mortal Mingling",
  16178. height: math.unit(3, "meters")
  16179. },
  16180. {
  16181. name: "Kaiju-ish",
  16182. height: math.unit(250, "meters")
  16183. },
  16184. {
  16185. name: "Somewhat Godly",
  16186. height: math.unit(400, "km"),
  16187. default: true
  16188. },
  16189. {
  16190. name: "Planetary",
  16191. height: math.unit(300, "megameters")
  16192. },
  16193. {
  16194. name: "Galaxy-dwarfing",
  16195. height: math.unit(450, "kiloparsecs")
  16196. },
  16197. {
  16198. name: "Universe Eater",
  16199. height: math.unit(150, "gigaparsecs")
  16200. },
  16201. {
  16202. name: "Almost Immeasurable",
  16203. height: math.unit(1.3e266, "yottaparsecs")
  16204. },
  16205. ]
  16206. ))
  16207. characterMakers.push(() => makeCharacter(
  16208. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16209. {
  16210. front: {
  16211. height: math.unit(6, "feet"),
  16212. weight: math.unit(150, "lb"),
  16213. name: "Front",
  16214. image: {
  16215. source: "./media/characters/umeko/front.svg",
  16216. extra: 1,
  16217. bottom: 0.019
  16218. }
  16219. },
  16220. frontArmored: {
  16221. height: math.unit(6, "feet"),
  16222. weight: math.unit(150, "lb"),
  16223. name: "Front (Armored)",
  16224. image: {
  16225. source: "./media/characters/umeko/front-armored.svg",
  16226. extra: 1,
  16227. bottom: 0.021
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Macro",
  16234. height: math.unit(220, "feet"),
  16235. default: true
  16236. },
  16237. {
  16238. name: "Guardian Dragon",
  16239. height: math.unit(50, "miles")
  16240. },
  16241. {
  16242. name: "Cosmic",
  16243. height: math.unit(800000, "miles")
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16249. {
  16250. front: {
  16251. height: math.unit(6, "feet"),
  16252. weight: math.unit(150, "lb"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/cassidy/front.svg",
  16256. extra: 810/808,
  16257. bottom: 41/851
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Canon Height",
  16264. height: math.unit(120, "feet"),
  16265. default: true
  16266. },
  16267. {
  16268. name: "Macro+",
  16269. height: math.unit(400, "feet")
  16270. },
  16271. {
  16272. name: "Macro++",
  16273. height: math.unit(4000, "feet")
  16274. },
  16275. {
  16276. name: "Megamacro",
  16277. height: math.unit(3, "miles")
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/isaac/front.svg",
  16290. extra: 896 / 815,
  16291. bottom: 0.11
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Human Size",
  16298. height: math.unit(8, "feet"),
  16299. default: true
  16300. },
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(400, "feet")
  16304. },
  16305. {
  16306. name: "Megamacro",
  16307. height: math.unit(50, "miles")
  16308. },
  16309. {
  16310. name: "Canon Height",
  16311. height: math.unit(200, "AU")
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(72, "kg"),
  16321. name: "Front",
  16322. image: {
  16323. source: "./media/characters/sleekit/front.svg",
  16324. extra: 4693 / 4487,
  16325. bottom: 0.012
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Minimum Height",
  16332. height: math.unit(10, "meters")
  16333. },
  16334. {
  16335. name: "Smaller",
  16336. height: math.unit(25, "meters")
  16337. },
  16338. {
  16339. name: "Larger",
  16340. height: math.unit(38, "meters"),
  16341. default: true
  16342. },
  16343. {
  16344. name: "Maximum height",
  16345. height: math.unit(100, "meters")
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16351. {
  16352. front: {
  16353. height: math.unit(6, "feet"),
  16354. weight: math.unit(150, "lb"),
  16355. name: "Front",
  16356. image: {
  16357. source: "./media/characters/nillia/front.svg",
  16358. extra: 719/665,
  16359. bottom: 6/725
  16360. }
  16361. },
  16362. back: {
  16363. height: math.unit(6, "feet"),
  16364. weight: math.unit(150, "lb"),
  16365. name: "Back",
  16366. image: {
  16367. source: "./media/characters/nillia/back.svg",
  16368. extra: 705/651,
  16369. bottom: 5/710
  16370. }
  16371. },
  16372. },
  16373. [
  16374. {
  16375. name: "Canon Height",
  16376. height: math.unit(489, "feet"),
  16377. default: true
  16378. }
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(6, "feet"),
  16386. weight: math.unit(150, "lb"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/mesmyriza/front.svg",
  16390. extra: 1541/1291,
  16391. bottom: 87/1628
  16392. }
  16393. },
  16394. foot: {
  16395. height: math.unit(6 / (250 / 35), "feet"),
  16396. name: "Foot",
  16397. image: {
  16398. source: "./media/characters/mesmyriza/foot.svg"
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Macro",
  16405. height: math.unit(457, "meters"),
  16406. default: true
  16407. },
  16408. {
  16409. name: "Megamacro",
  16410. height: math.unit(8, "megameters")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16416. {
  16417. front: {
  16418. height: math.unit(6, "feet"),
  16419. weight: math.unit(250, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/saudade/front.svg",
  16423. extra: 1172 / 1139,
  16424. bottom: 0.035
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Micro",
  16431. height: math.unit(3, "inches")
  16432. },
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(6, "feet"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Macro",
  16440. height: math.unit(50, "feet")
  16441. },
  16442. {
  16443. name: "Megamacro",
  16444. height: math.unit(2800, "feet")
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(5 + 4 / 12, "feet"),
  16453. weight: math.unit(100, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/keireer/front.svg",
  16457. extra: 716 / 666,
  16458. bottom: 0.05
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(5 + 4 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(5.5, "feet"),
  16475. weight: math.unit(90, "kg"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/mirja/front.svg",
  16479. extra: 1452/1262,
  16480. bottom: 67/1519
  16481. }
  16482. },
  16483. frontDressed: {
  16484. height: math.unit(5.5, "feet"),
  16485. weight: math.unit(90, "lb"),
  16486. name: "Front (Dressed)",
  16487. image: {
  16488. source: "./media/characters/mirja/dressed.svg",
  16489. extra: 1452/1262,
  16490. bottom: 67/1519
  16491. }
  16492. },
  16493. back: {
  16494. height: math.unit(6, "feet"),
  16495. weight: math.unit(90, "lb"),
  16496. name: "Back",
  16497. image: {
  16498. source: "./media/characters/mirja/back.svg",
  16499. extra: 1892/1795,
  16500. bottom: 48/1940
  16501. }
  16502. },
  16503. maw: {
  16504. height: math.unit(1.312, "feet"),
  16505. name: "Maw",
  16506. image: {
  16507. source: "./media/characters/mirja/maw.svg"
  16508. }
  16509. },
  16510. paw: {
  16511. height: math.unit(1.15, "feet"),
  16512. name: "Paw",
  16513. image: {
  16514. source: "./media/characters/mirja/paw.svg"
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "\"Incognito\"",
  16521. height: math.unit(3, "meters")
  16522. },
  16523. {
  16524. name: "Strolling Size",
  16525. height: math.unit(15, "km")
  16526. },
  16527. {
  16528. name: "Larger Strolling Size",
  16529. height: math.unit(400, "km")
  16530. },
  16531. {
  16532. name: "Preferred Size",
  16533. height: math.unit(5000, "km"),
  16534. default: true
  16535. },
  16536. {
  16537. name: "True Size",
  16538. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(15, "feet"),
  16547. weight: math.unit(880, "kg"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/nightraver/front.svg",
  16551. extra: 2444 / 2160,
  16552. bottom: 0.027
  16553. }
  16554. },
  16555. back: {
  16556. height: math.unit(15, "feet"),
  16557. weight: math.unit(880, "kg"),
  16558. name: "Back",
  16559. image: {
  16560. source: "./media/characters/nightraver/back.svg",
  16561. extra: 2309 / 2180,
  16562. bottom: 0.005
  16563. }
  16564. },
  16565. sole: {
  16566. height: math.unit(2.878, "feet"),
  16567. name: "Sole",
  16568. image: {
  16569. source: "./media/characters/nightraver/sole.svg"
  16570. }
  16571. },
  16572. foot: {
  16573. height: math.unit(2.285, "feet"),
  16574. name: "Foot",
  16575. image: {
  16576. source: "./media/characters/nightraver/foot.svg"
  16577. }
  16578. },
  16579. maw: {
  16580. height: math.unit(2.67, "feet"),
  16581. name: "Maw",
  16582. image: {
  16583. source: "./media/characters/nightraver/maw.svg"
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Micro",
  16590. height: math.unit(1, "cm")
  16591. },
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(15, "feet"),
  16595. default: true
  16596. },
  16597. {
  16598. name: "Macro",
  16599. height: math.unit(300, "feet")
  16600. },
  16601. {
  16602. name: "Megamacro",
  16603. height: math.unit(300, "miles")
  16604. },
  16605. {
  16606. name: "Gigamacro",
  16607. height: math.unit(10000, "miles")
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16613. {
  16614. side: {
  16615. height: math.unit(2, "inches"),
  16616. weight: math.unit(5, "grams"),
  16617. name: "Side",
  16618. image: {
  16619. source: "./media/characters/arc/side.svg"
  16620. }
  16621. },
  16622. },
  16623. [
  16624. {
  16625. name: "Micro",
  16626. height: math.unit(2, "inches"),
  16627. default: true
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16633. {
  16634. front: {
  16635. height: math.unit(1.1938, "meters"),
  16636. weight: math.unit(54, "kg"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/nebula-shahar/front.svg",
  16640. extra: 1642 / 1436,
  16641. bottom: 0.06
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Megamicro",
  16648. height: math.unit(0.3, "mm")
  16649. },
  16650. {
  16651. name: "Micro",
  16652. height: math.unit(3, "cm")
  16653. },
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(138, "cm"),
  16657. default: true
  16658. },
  16659. {
  16660. name: "Macro",
  16661. height: math.unit(30, "m")
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(5.24, "feet"),
  16670. weight: math.unit(150, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/shayla/front.svg",
  16674. extra: 1512 / 1414,
  16675. bottom: 0.01
  16676. }
  16677. },
  16678. back: {
  16679. height: math.unit(5.24, "feet"),
  16680. weight: math.unit(150, "lb"),
  16681. name: "Back",
  16682. image: {
  16683. source: "./media/characters/shayla/back.svg",
  16684. extra: 1512 / 1414
  16685. }
  16686. },
  16687. hand: {
  16688. height: math.unit(0.7781496062992126, "feet"),
  16689. name: "Hand",
  16690. image: {
  16691. source: "./media/characters/shayla/hand.svg"
  16692. }
  16693. },
  16694. foot: {
  16695. height: math.unit(1.4206036745406823, "feet"),
  16696. name: "Foot",
  16697. image: {
  16698. source: "./media/characters/shayla/foot.svg"
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Micro",
  16705. height: math.unit(0.32, "feet")
  16706. },
  16707. {
  16708. name: "Normal",
  16709. height: math.unit(5.24, "feet"),
  16710. default: true
  16711. },
  16712. {
  16713. name: "Macro",
  16714. height: math.unit(492.12, "feet")
  16715. },
  16716. {
  16717. name: "Megamacro",
  16718. height: math.unit(186.41, "miles")
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(2.2, "m"),
  16727. weight: math.unit(120, "kg"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/pia-jr/front.svg",
  16731. extra: 1000 / 970,
  16732. bottom: 0.035
  16733. }
  16734. },
  16735. hand: {
  16736. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16737. name: "Hand",
  16738. image: {
  16739. source: "./media/characters/pia-jr/hand.svg"
  16740. }
  16741. },
  16742. paw: {
  16743. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16744. name: "Paw",
  16745. image: {
  16746. source: "./media/characters/pia-jr/paw.svg"
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Micro",
  16753. height: math.unit(1.2, "cm")
  16754. },
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(2.2, "m"),
  16758. default: true
  16759. },
  16760. {
  16761. name: "Macro",
  16762. height: math.unit(180, "m")
  16763. },
  16764. {
  16765. name: "Megamacro",
  16766. height: math.unit(420, "km")
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16772. {
  16773. front: {
  16774. height: math.unit(2, "m"),
  16775. weight: math.unit(115, "kg"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/pia-sr/front.svg",
  16779. extra: 760 / 730,
  16780. bottom: 0.015
  16781. }
  16782. },
  16783. back: {
  16784. height: math.unit(2, "m"),
  16785. weight: math.unit(115, "kg"),
  16786. name: "Back",
  16787. image: {
  16788. source: "./media/characters/pia-sr/back.svg",
  16789. extra: 760 / 730,
  16790. bottom: 0.01
  16791. }
  16792. },
  16793. hand: {
  16794. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16795. name: "Hand",
  16796. image: {
  16797. source: "./media/characters/pia-sr/hand.svg"
  16798. }
  16799. },
  16800. foot: {
  16801. height: math.unit(1.83, "feet"),
  16802. name: "Foot",
  16803. image: {
  16804. source: "./media/characters/pia-sr/foot.svg"
  16805. }
  16806. },
  16807. },
  16808. [
  16809. {
  16810. name: "Micro",
  16811. height: math.unit(88, "mm")
  16812. },
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(2, "m"),
  16816. default: true
  16817. },
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(200, "m")
  16821. },
  16822. {
  16823. name: "Megamacro",
  16824. height: math.unit(420, "km")
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16830. {
  16831. front: {
  16832. height: math.unit(8 + 2 / 12, "feet"),
  16833. weight: math.unit(300, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/kibibyte/front.svg",
  16837. extra: 2221 / 2098,
  16838. bottom: 0.04
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(8 + 2 / 12, "feet"),
  16846. default: true
  16847. },
  16848. {
  16849. name: "Socialable Macro",
  16850. height: math.unit(50, "feet")
  16851. },
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(300, "feet")
  16855. },
  16856. {
  16857. name: "Megamacro",
  16858. height: math.unit(500, "miles")
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(6, "feet"),
  16867. weight: math.unit(150, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/felix/front.svg",
  16871. extra: 762 / 722,
  16872. bottom: 0.02
  16873. }
  16874. },
  16875. frontClothed: {
  16876. height: math.unit(6, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Front (Clothed)",
  16879. image: {
  16880. source: "./media/characters/felix/front-clothed.svg",
  16881. extra: 762 / 722,
  16882. bottom: 0.02
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(6 + 8 / 12, "feet"),
  16890. default: true
  16891. },
  16892. {
  16893. name: "Macro",
  16894. height: math.unit(2600, "feet")
  16895. },
  16896. {
  16897. name: "Megamacro",
  16898. height: math.unit(450, "miles")
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(6 + 1 / 12, "feet"),
  16907. weight: math.unit(250, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/tobo/front.svg",
  16911. extra: 608 / 586,
  16912. bottom: 0.023
  16913. }
  16914. },
  16915. back: {
  16916. height: math.unit(6 + 1 / 12, "feet"),
  16917. weight: math.unit(250, "lb"),
  16918. name: "Back",
  16919. image: {
  16920. source: "./media/characters/tobo/back.svg",
  16921. extra: 608 / 586
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Nano",
  16928. height: math.unit(2, "nm")
  16929. },
  16930. {
  16931. name: "Megamicro",
  16932. height: math.unit(0.1, "mm")
  16933. },
  16934. {
  16935. name: "Micro",
  16936. height: math.unit(1, "inch"),
  16937. default: true
  16938. },
  16939. {
  16940. name: "Human-sized",
  16941. height: math.unit(6 + 1 / 12, "feet")
  16942. },
  16943. {
  16944. name: "Macro",
  16945. height: math.unit(250, "feet")
  16946. },
  16947. {
  16948. name: "Megamacro",
  16949. height: math.unit(75, "miles")
  16950. },
  16951. {
  16952. name: "Texas-sized",
  16953. height: math.unit(750, "miles")
  16954. },
  16955. {
  16956. name: "Teramacro",
  16957. height: math.unit(50000, "miles")
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(6, "feet"),
  16966. weight: math.unit(269, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/danny-kapowsky/front.svg",
  16970. extra: 766 / 736,
  16971. bottom: 0.044
  16972. }
  16973. },
  16974. back: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(269, "lb"),
  16977. name: "Back",
  16978. image: {
  16979. source: "./media/characters/danny-kapowsky/back.svg",
  16980. extra: 797 / 760,
  16981. bottom: 0.025
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(150, "feet"),
  16989. default: true
  16990. },
  16991. {
  16992. name: "Macro+",
  16993. height: math.unit(200, "feet")
  16994. },
  16995. {
  16996. name: "Macro++",
  16997. height: math.unit(300, "feet")
  16998. },
  16999. {
  17000. name: "Macro+++",
  17001. height: math.unit(400, "feet")
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17007. {
  17008. side: {
  17009. height: math.unit(6, "feet"),
  17010. weight: math.unit(170, "lb"),
  17011. name: "Side",
  17012. image: {
  17013. source: "./media/characters/finn/side.svg",
  17014. extra: 1953 / 1807,
  17015. bottom: 0.057
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Megamacro",
  17022. height: math.unit(14445, "feet"),
  17023. default: true
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17029. {
  17030. front: {
  17031. height: math.unit(5 + 6 / 12, "feet"),
  17032. weight: math.unit(125, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/roy/front.svg",
  17036. extra: 1,
  17037. bottom: 0.11
  17038. }
  17039. },
  17040. },
  17041. [
  17042. {
  17043. name: "Micro",
  17044. height: math.unit(3, "inches"),
  17045. default: true
  17046. },
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(5 + 6 / 12, "feet")
  17050. },
  17051. {
  17052. name: "Lesser Macro",
  17053. height: math.unit(60, "feet")
  17054. },
  17055. {
  17056. name: "Greater Macro",
  17057. height: math.unit(120, "feet")
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(6, "feet"),
  17066. weight: math.unit(100, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/aevsivs/front.svg",
  17070. extra: 1,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(6, "feet"),
  17076. weight: math.unit(100, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/aevsivs/back.svg"
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Micro",
  17086. height: math.unit(2, "inches"),
  17087. default: true
  17088. },
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(5, "feet")
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(5 + 7 / 12, "feet"),
  17100. weight: math.unit(159, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/hildegard/front.svg",
  17104. extra: 289 / 269,
  17105. bottom: 7.63 / 297.8
  17106. }
  17107. },
  17108. back: {
  17109. height: math.unit(5 + 7 / 12, "feet"),
  17110. weight: math.unit(159, "lb"),
  17111. name: "Back",
  17112. image: {
  17113. source: "./media/characters/hildegard/back.svg",
  17114. extra: 280 / 260,
  17115. bottom: 2.3 / 282
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(5 + 7 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17129. {
  17130. bernard: {
  17131. height: math.unit(2 + 7 / 12, "feet"),
  17132. weight: math.unit(66, "lb"),
  17133. name: "Bernard",
  17134. rename: true,
  17135. image: {
  17136. source: "./media/characters/bernard-wilder/bernard.svg",
  17137. extra: 192 / 128,
  17138. bottom: 0.05
  17139. }
  17140. },
  17141. wilder: {
  17142. height: math.unit(5 + 8 / 12, "feet"),
  17143. weight: math.unit(143, "lb"),
  17144. name: "Wilder",
  17145. rename: true,
  17146. image: {
  17147. source: "./media/characters/bernard-wilder/wilder.svg",
  17148. extra: 361 / 312,
  17149. bottom: 0.02
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(2 + 7 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17163. {
  17164. anthro: {
  17165. height: math.unit(6 + 1 / 12, "feet"),
  17166. weight: math.unit(155, "lb"),
  17167. name: "Anthro",
  17168. image: {
  17169. source: "./media/characters/hearth/anthro.svg",
  17170. extra: 1178/1136,
  17171. bottom: 28/1206
  17172. }
  17173. },
  17174. feral: {
  17175. height: math.unit(3.78, "feet"),
  17176. weight: math.unit(35, "kg"),
  17177. name: "Feral",
  17178. image: {
  17179. source: "./media/characters/hearth/feral.svg",
  17180. extra: 153 / 135,
  17181. bottom: 0.03
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(6 + 1 / 12, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(6, "feet"),
  17198. weight: math.unit(182, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/ingrid/front.svg",
  17202. extra: 294 / 268,
  17203. bottom: 0.027
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(6, "feet"),
  17211. default: true
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17217. {
  17218. eevee: {
  17219. height: math.unit(2 + 10 / 12, "feet"),
  17220. weight: math.unit(86, "lb"),
  17221. name: "Malgam",
  17222. image: {
  17223. source: "./media/characters/malgam/eevee.svg",
  17224. extra: 952/784,
  17225. bottom: 38/990
  17226. }
  17227. },
  17228. sylveon: {
  17229. height: math.unit(4, "feet"),
  17230. weight: math.unit(101, "lb"),
  17231. name: "Future Malgam",
  17232. rename: true,
  17233. image: {
  17234. source: "./media/characters/malgam/sylveon.svg",
  17235. extra: 371 / 325,
  17236. bottom: 0.015
  17237. }
  17238. },
  17239. gigantamax: {
  17240. height: math.unit(50, "feet"),
  17241. name: "Gigantamax Malgam",
  17242. rename: true,
  17243. image: {
  17244. source: "./media/characters/malgam/gigantamax.svg"
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(2 + 10 / 12, "feet"),
  17252. default: true
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(5 + 11 / 12, "feet"),
  17261. weight: math.unit(188, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/fleur/front.svg",
  17265. extra: 309 / 283,
  17266. bottom: 0.007
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(5 + 11 / 12, "feet"),
  17274. default: true
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17280. {
  17281. front: {
  17282. height: math.unit(5 + 4 / 12, "feet"),
  17283. weight: math.unit(122, "lb"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/jude/front.svg",
  17287. extra: 288 / 273,
  17288. bottom: 0.03
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(5 + 4 / 12, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17302. {
  17303. front: {
  17304. height: math.unit(5 + 11 / 12, "feet"),
  17305. weight: math.unit(190, "lb"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/seara/front.svg",
  17309. extra: 1,
  17310. bottom: 0.05
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(5 + 11 / 12, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(16 + 5 / 12, "feet"),
  17327. weight: math.unit(524, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/caspian-lugia/front.svg",
  17331. extra: 1,
  17332. bottom: 0.04
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(16 + 5 / 12, "feet"),
  17340. default: true
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17346. {
  17347. front: {
  17348. height: math.unit(5 + 7 / 12, "feet"),
  17349. weight: math.unit(170, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/mika/front.svg",
  17353. extra: 1,
  17354. bottom: 0.016
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(5 + 7 / 12, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17368. {
  17369. front: {
  17370. height: math.unit(6 + 2 / 12, "feet"),
  17371. weight: math.unit(268, "lb"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/sol/front.svg",
  17375. extra: 247 / 231,
  17376. bottom: 0.05
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(6 + 2 / 12, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17390. {
  17391. buizel: {
  17392. height: math.unit(2 + 5 / 12, "feet"),
  17393. weight: math.unit(87, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/umiko/buizel.svg",
  17397. extra: 172 / 157,
  17398. bottom: 0.01
  17399. },
  17400. form: "buizel",
  17401. default: true
  17402. },
  17403. floatzel: {
  17404. height: math.unit(5 + 9 / 12, "feet"),
  17405. weight: math.unit(250, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/umiko/floatzel.svg",
  17409. extra: 1076/1006,
  17410. bottom: 15/1091
  17411. },
  17412. form: "floatzel",
  17413. default: true
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(2 + 5 / 12, "feet"),
  17420. form: "buizel",
  17421. default: true
  17422. },
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(5 + 9 / 12, "feet"),
  17426. form: "floatzel",
  17427. default: true
  17428. },
  17429. ],
  17430. {
  17431. "buizel": {
  17432. name: "Buizel"
  17433. },
  17434. "floatzel": {
  17435. name: "Floatzel",
  17436. default: true
  17437. }
  17438. }
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6 + 2 / 12, "feet"),
  17445. weight: math.unit(146, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/iliac/front.svg",
  17449. extra: 389 / 365,
  17450. bottom: 0.035
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(6 + 2 / 12, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6, "feet"),
  17467. weight: math.unit(170, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/topaz/front.svg",
  17471. extra: 317 / 303,
  17472. bottom: 0.055
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(6, "feet"),
  17480. default: true
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(5 + 11 / 12, "feet"),
  17489. weight: math.unit(144, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/gabriel/front.svg",
  17493. extra: 285 / 262,
  17494. bottom: 0.004
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(5 + 11 / 12, "feet"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17508. {
  17509. side: {
  17510. height: math.unit(6 + 5 / 12, "feet"),
  17511. weight: math.unit(300, "lb"),
  17512. name: "Side",
  17513. image: {
  17514. source: "./media/characters/tempest-suicune/side.svg",
  17515. extra: 195 / 154,
  17516. bottom: 0.04
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(6 + 5 / 12, "feet"),
  17524. default: true
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(7 + 2 / 12, "feet"),
  17533. weight: math.unit(322, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/vulcan/front.svg",
  17537. extra: 154 / 147,
  17538. bottom: 0.04
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(7 + 2 / 12, "feet"),
  17546. default: true
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(5 + 10 / 12, "feet"),
  17555. weight: math.unit(264, "lb"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/gault/front.svg",
  17559. extra: 161 / 140,
  17560. bottom: 0.028
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Normal",
  17567. height: math.unit(5 + 10 / 12, "feet"),
  17568. default: true
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17574. {
  17575. front: {
  17576. height: math.unit(6, "feet"),
  17577. weight: math.unit(150, "lb"),
  17578. name: "Front",
  17579. image: {
  17580. source: "./media/characters/shard/front.svg",
  17581. extra: 273 / 238,
  17582. bottom: 0.02
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(3 + 6 / 12, "feet"),
  17590. default: true
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(5 + 11 / 12, "feet"),
  17599. weight: math.unit(146, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/ashe/front.svg",
  17603. extra: 400 / 373,
  17604. bottom: 0.01
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(5 + 11 / 12, "feet"),
  17612. default: true
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17618. {
  17619. front: {
  17620. height: math.unit(5 + 5 / 12, "feet"),
  17621. weight: math.unit(135, "lb"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/beatrix/front.svg",
  17625. extra: 392 / 379,
  17626. bottom: 0.01
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(6, "feet"),
  17634. default: true
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(6 + 2/12, "feet"),
  17643. weight: math.unit(135, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/ignatius/front.svg",
  17647. extra: 1380/1259,
  17648. bottom: 27/1407
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Normal",
  17655. height: math.unit(6 + 2/12, "feet"),
  17656. default: true
  17657. },
  17658. ]
  17659. ))
  17660. characterMakers.push(() => makeCharacter(
  17661. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17662. {
  17663. front: {
  17664. height: math.unit(6 + 2 / 12, "feet"),
  17665. weight: math.unit(138, "lb"),
  17666. name: "Front",
  17667. image: {
  17668. source: "./media/characters/mei-li/front.svg",
  17669. extra: 237 / 229,
  17670. bottom: 0.03
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(6 + 2 / 12, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(2 + 4 / 12, "feet"),
  17687. weight: math.unit(62, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/puru/front.svg",
  17691. extra: 206 / 149,
  17692. bottom: 0.06
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(2 + 4 / 12, "feet"),
  17700. default: true
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17706. {
  17707. anthro: {
  17708. height: math.unit(5 + 8/12, "feet"),
  17709. weight: math.unit(200, "lb"),
  17710. energyNeed: math.unit(2000, "kcal"),
  17711. name: "Anthro",
  17712. image: {
  17713. source: "./media/characters/kee/anthro.svg",
  17714. extra: 3251/3184,
  17715. bottom: 250/3501
  17716. }
  17717. },
  17718. taur: {
  17719. height: math.unit(11, "feet"),
  17720. weight: math.unit(500, "lb"),
  17721. energyNeed: math.unit(5000, "kcal"),
  17722. name: "Taur",
  17723. image: {
  17724. source: "./media/characters/kee/taur.svg",
  17725. extra: 1362/1320,
  17726. bottom: 83/1445
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(5 + 8/12, "feet"),
  17734. default: true
  17735. },
  17736. {
  17737. name: "Macro",
  17738. height: math.unit(35, "feet")
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17744. {
  17745. anthro: {
  17746. height: math.unit(7, "feet"),
  17747. weight: math.unit(190, "lb"),
  17748. name: "Anthro",
  17749. image: {
  17750. source: "./media/characters/cobalt-dracha/anthro.svg",
  17751. extra: 231 / 225,
  17752. bottom: 0.04
  17753. }
  17754. },
  17755. feral: {
  17756. height: math.unit(9 + 7 / 12, "feet"),
  17757. weight: math.unit(294, "lb"),
  17758. name: "Feral",
  17759. image: {
  17760. source: "./media/characters/cobalt-dracha/feral.svg",
  17761. extra: 692 / 633,
  17762. bottom: 0.05
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(7, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17776. {
  17777. fallen: {
  17778. height: math.unit(11 + 8 / 12, "feet"),
  17779. weight: math.unit(485, "lb"),
  17780. name: "Java (Fallen)",
  17781. rename: true,
  17782. image: {
  17783. source: "./media/characters/java/fallen.svg",
  17784. extra: 226 / 208,
  17785. bottom: 0.005
  17786. }
  17787. },
  17788. godkin: {
  17789. height: math.unit(10 + 6 / 12, "feet"),
  17790. weight: math.unit(328, "lb"),
  17791. name: "Java (Godkin)",
  17792. rename: true,
  17793. image: {
  17794. source: "./media/characters/java/godkin.svg",
  17795. extra: 1104/1068,
  17796. bottom: 36/1140
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(11 + 8 / 12, "feet"),
  17804. default: true
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17810. {
  17811. front: {
  17812. height: math.unit(5 + 9 / 12, "feet"),
  17813. weight: math.unit(170, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/purna/front.svg",
  17817. extra: 239 / 229,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(5 + 9 / 12, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(5 + 9 / 12, "feet"),
  17835. weight: math.unit(142, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/kuva/front.svg",
  17839. extra: 281 / 271,
  17840. bottom: 0.006
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(5 + 9 / 12, "feet"),
  17848. default: true
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17854. {
  17855. anthro: {
  17856. height: math.unit(9 + 2 / 12, "feet"),
  17857. weight: math.unit(270, "lb"),
  17858. name: "Anthro",
  17859. image: {
  17860. source: "./media/characters/embra/anthro.svg",
  17861. extra: 200 / 187,
  17862. bottom: 0.02
  17863. }
  17864. },
  17865. feral: {
  17866. height: math.unit(18 + 8 / 12, "feet"),
  17867. weight: math.unit(576, "lb"),
  17868. name: "Feral",
  17869. image: {
  17870. source: "./media/characters/embra/feral.svg",
  17871. extra: 152 / 137,
  17872. bottom: 0.037
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(9 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17886. {
  17887. anthro: {
  17888. height: math.unit(10 + 9 / 12, "feet"),
  17889. weight: math.unit(224, "lb"),
  17890. name: "Anthro",
  17891. image: {
  17892. source: "./media/characters/grottos/anthro.svg",
  17893. extra: 350 / 332,
  17894. bottom: 0.045
  17895. }
  17896. },
  17897. feral: {
  17898. height: math.unit(20 + 7 / 12, "feet"),
  17899. weight: math.unit(629, "lb"),
  17900. name: "Feral",
  17901. image: {
  17902. source: "./media/characters/grottos/feral.svg",
  17903. extra: 207 / 190,
  17904. bottom: 0.05
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(10 + 9 / 12, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17918. {
  17919. anthro: {
  17920. height: math.unit(9 + 6 / 12, "feet"),
  17921. weight: math.unit(298, "lb"),
  17922. name: "Anthro",
  17923. image: {
  17924. source: "./media/characters/frifna/anthro.svg",
  17925. extra: 282 / 269,
  17926. bottom: 0.015
  17927. }
  17928. },
  17929. feral: {
  17930. height: math.unit(16 + 2 / 12, "feet"),
  17931. weight: math.unit(624, "lb"),
  17932. name: "Feral",
  17933. image: {
  17934. source: "./media/characters/frifna/feral.svg"
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(9 + 6 / 12, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(6 + 2 / 12, "feet"),
  17951. weight: math.unit(168, "lb"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/elise/front.svg",
  17955. extra: 276 / 271
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(6 + 2 / 12, "feet"),
  17963. default: true
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(5 + 10 / 12, "feet"),
  17972. weight: math.unit(210, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/glade/front.svg",
  17976. extra: 258 / 247,
  17977. bottom: 0.008
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(5 + 10 / 12, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(5 + 10 / 12, "feet"),
  17994. weight: math.unit(129, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/rina/front.svg",
  17998. extra: 266 / 255,
  17999. bottom: 0.005
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(5 + 10 / 12, "feet"),
  18007. default: true
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18013. {
  18014. front: {
  18015. height: math.unit(6 + 1 / 12, "feet"),
  18016. weight: math.unit(192, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/veronica/front.svg",
  18020. extra: 319 / 309,
  18021. bottom: 0.005
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Normal",
  18028. height: math.unit(6 + 1 / 12, "feet"),
  18029. default: true
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(9 + 3 / 12, "feet"),
  18038. weight: math.unit(1100, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/braxton/front.svg",
  18042. extra: 1057 / 984,
  18043. bottom: 0.05
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(9 + 3 / 12, "feet")
  18051. },
  18052. {
  18053. name: "Giant",
  18054. height: math.unit(300, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(700, "feet")
  18060. },
  18061. {
  18062. name: "Megamacro",
  18063. height: math.unit(6000, "feet")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(6 + 7 / 12, "feet"),
  18072. weight: math.unit(150, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/blue-feyonics/front.svg",
  18076. extra: 1403 / 1306,
  18077. bottom: 0.047
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(6 + 7 / 12, "feet"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(1.8, "meters"),
  18094. weight: math.unit(60, "kg"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/maxwell/front.svg",
  18098. extra: 2060 / 1873
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Micro",
  18105. height: math.unit(1, "mm")
  18106. },
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(1.8, "meter"),
  18110. default: true
  18111. },
  18112. {
  18113. name: "Macro",
  18114. height: math.unit(30, "meters")
  18115. },
  18116. {
  18117. name: "Megamacro",
  18118. height: math.unit(10, "km")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(6, "feet"),
  18127. weight: math.unit(150, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/jack/front.svg",
  18131. extra: 1754 / 1640,
  18132. bottom: 0.01
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(80000, "feet"),
  18140. default: true
  18141. },
  18142. {
  18143. name: "Max size",
  18144. height: math.unit(10, "lightyears")
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18150. {
  18151. urban: {
  18152. height: math.unit(5, "feet"),
  18153. weight: math.unit(240, "lb"),
  18154. name: "Urban",
  18155. image: {
  18156. source: "./media/characters/cafat/urban.svg",
  18157. extra: 1223/1126,
  18158. bottom: 205/1428
  18159. }
  18160. },
  18161. summer: {
  18162. height: math.unit(5, "feet"),
  18163. weight: math.unit(240, "lb"),
  18164. name: "Summer",
  18165. image: {
  18166. source: "./media/characters/cafat/summer.svg",
  18167. extra: 1223/1126,
  18168. bottom: 205/1428
  18169. }
  18170. },
  18171. winter: {
  18172. height: math.unit(5, "feet"),
  18173. weight: math.unit(240, "lb"),
  18174. name: "Winter",
  18175. image: {
  18176. source: "./media/characters/cafat/winter.svg",
  18177. extra: 1223/1126,
  18178. bottom: 205/1428
  18179. }
  18180. },
  18181. lingerie: {
  18182. height: math.unit(5, "feet"),
  18183. weight: math.unit(240, "lb"),
  18184. name: "Lingerie",
  18185. image: {
  18186. source: "./media/characters/cafat/lingerie.svg",
  18187. extra: 1223/1126,
  18188. bottom: 205/1428
  18189. }
  18190. },
  18191. upright: {
  18192. height: math.unit(6.3, "feet"),
  18193. weight: math.unit(240, "lb"),
  18194. name: "Upright",
  18195. image: {
  18196. source: "./media/characters/cafat/upright.svg",
  18197. bottom: 0.01
  18198. }
  18199. },
  18200. uprightFull: {
  18201. height: math.unit(6.3, "feet"),
  18202. weight: math.unit(240, "lb"),
  18203. name: "Upright (Full)",
  18204. image: {
  18205. source: "./media/characters/cafat/upright-full.svg",
  18206. bottom: 0.01
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Small",
  18213. height: math.unit(5, "feet"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Large",
  18218. height: math.unit(13, "feet")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(6, "feet"),
  18227. weight: math.unit(150, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/verin-raharra/front.svg",
  18231. extra: 5019 / 4835,
  18232. bottom: 0.023
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(7 + 5 / 12, "feet"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Upsized",
  18244. height: math.unit(20, "feet")
  18245. },
  18246. ]
  18247. ))
  18248. characterMakers.push(() => makeCharacter(
  18249. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18250. {
  18251. front: {
  18252. height: math.unit(7, "feet"),
  18253. weight: math.unit(230, "lb"),
  18254. name: "Front",
  18255. image: {
  18256. source: "./media/characters/nakata/front.svg",
  18257. extra: 1.005,
  18258. bottom: 0.01
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Normal",
  18265. height: math.unit(7, "feet"),
  18266. default: true
  18267. },
  18268. {
  18269. name: "Big",
  18270. height: math.unit(14, "feet")
  18271. },
  18272. {
  18273. name: "Macro",
  18274. height: math.unit(400, "feet")
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(4.91, "feet"),
  18283. weight: math.unit(100, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/lily/front.svg",
  18287. extra: 1585 / 1415,
  18288. bottom: 0.02
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(4.91, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18302. {
  18303. laying: {
  18304. height: math.unit(4 + 4 / 12, "feet"),
  18305. weight: math.unit(600, "lb"),
  18306. name: "Laying",
  18307. image: {
  18308. source: "./media/characters/sheila/laying.svg",
  18309. extra: 1333 / 1265,
  18310. bottom: 0.16
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(4 + 4 / 12, "feet"),
  18318. default: true
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(6, "feet"),
  18327. weight: math.unit(190, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/sax/front.svg",
  18331. extra: 1187 / 973,
  18332. bottom: 0.042
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Micro",
  18339. height: math.unit(4, "inches"),
  18340. default: true
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(6, "feet"),
  18349. weight: math.unit(150, "lb"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/pandora/front.svg",
  18353. extra: 2720 / 2556,
  18354. bottom: 0.015
  18355. }
  18356. },
  18357. back: {
  18358. height: math.unit(6, "feet"),
  18359. weight: math.unit(150, "lb"),
  18360. name: "Back",
  18361. image: {
  18362. source: "./media/characters/pandora/back.svg",
  18363. extra: 2720 / 2556,
  18364. bottom: 0.01
  18365. }
  18366. },
  18367. beans: {
  18368. height: math.unit(6 / 8, "feet"),
  18369. name: "Beans",
  18370. image: {
  18371. source: "./media/characters/pandora/beans.svg"
  18372. }
  18373. },
  18374. collar: {
  18375. height: math.unit(0.31, "feet"),
  18376. name: "Collar",
  18377. image: {
  18378. source: "./media/characters/pandora/collar.svg"
  18379. }
  18380. },
  18381. skirt: {
  18382. height: math.unit(6, "feet"),
  18383. weight: math.unit(150, "lb"),
  18384. name: "Skirt",
  18385. image: {
  18386. source: "./media/characters/pandora/skirt.svg",
  18387. extra: 1622 / 1525,
  18388. bottom: 0.015
  18389. }
  18390. },
  18391. hoodie: {
  18392. height: math.unit(6, "feet"),
  18393. weight: math.unit(150, "lb"),
  18394. name: "Hoodie",
  18395. image: {
  18396. source: "./media/characters/pandora/hoodie.svg",
  18397. extra: 1622 / 1525,
  18398. bottom: 0.015
  18399. }
  18400. },
  18401. casual: {
  18402. height: math.unit(6, "feet"),
  18403. weight: math.unit(150, "lb"),
  18404. name: "Casual",
  18405. image: {
  18406. source: "./media/characters/pandora/casual.svg",
  18407. extra: 1622 / 1525,
  18408. bottom: 0.015
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(6, "feet")
  18416. },
  18417. {
  18418. name: "Big Steppy",
  18419. height: math.unit(1, "km"),
  18420. default: true
  18421. },
  18422. {
  18423. name: "Galactic Steppy",
  18424. height: math.unit(2, "gigameters")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18430. {
  18431. side: {
  18432. height: math.unit(10, "feet"),
  18433. weight: math.unit(800, "kg"),
  18434. name: "Side",
  18435. image: {
  18436. source: "./media/characters/venio-darcony/side.svg",
  18437. extra: 1373 / 1003,
  18438. bottom: 0.037
  18439. }
  18440. },
  18441. front: {
  18442. height: math.unit(19, "feet"),
  18443. weight: math.unit(800, "kg"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/venio-darcony/front.svg"
  18447. }
  18448. },
  18449. back: {
  18450. height: math.unit(19, "feet"),
  18451. weight: math.unit(800, "kg"),
  18452. name: "Back",
  18453. image: {
  18454. source: "./media/characters/venio-darcony/back.svg"
  18455. }
  18456. },
  18457. sideNsfw: {
  18458. height: math.unit(10, "feet"),
  18459. weight: math.unit(800, "kg"),
  18460. name: "Side (NSFW)",
  18461. image: {
  18462. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18463. extra: 1373 / 1003,
  18464. bottom: 0.037
  18465. }
  18466. },
  18467. frontNsfw: {
  18468. height: math.unit(19, "feet"),
  18469. weight: math.unit(800, "kg"),
  18470. name: "Front (NSFW)",
  18471. image: {
  18472. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18473. }
  18474. },
  18475. backNsfw: {
  18476. height: math.unit(19, "feet"),
  18477. weight: math.unit(800, "kg"),
  18478. name: "Back (NSFW)",
  18479. image: {
  18480. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18481. }
  18482. },
  18483. sideArmored: {
  18484. height: math.unit(10, "feet"),
  18485. weight: math.unit(800, "kg"),
  18486. name: "Side (Armored)",
  18487. image: {
  18488. source: "./media/characters/venio-darcony/side-armored.svg",
  18489. extra: 1373 / 1003,
  18490. bottom: 0.037
  18491. }
  18492. },
  18493. frontArmored: {
  18494. height: math.unit(19, "feet"),
  18495. weight: math.unit(900, "kg"),
  18496. name: "Front (Armored)",
  18497. image: {
  18498. source: "./media/characters/venio-darcony/front-armored.svg"
  18499. }
  18500. },
  18501. backArmored: {
  18502. height: math.unit(19, "feet"),
  18503. weight: math.unit(900, "kg"),
  18504. name: "Back (Armored)",
  18505. image: {
  18506. source: "./media/characters/venio-darcony/back-armored.svg"
  18507. }
  18508. },
  18509. sword: {
  18510. height: math.unit(10, "feet"),
  18511. weight: math.unit(50, "lb"),
  18512. name: "Sword",
  18513. image: {
  18514. source: "./media/characters/venio-darcony/sword.svg"
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(10, "feet")
  18522. },
  18523. {
  18524. name: "Macro",
  18525. height: math.unit(130, "feet"),
  18526. default: true
  18527. },
  18528. {
  18529. name: "Macro+",
  18530. height: math.unit(240, "feet")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18536. {
  18537. front: {
  18538. height: math.unit(6, "feet"),
  18539. weight: math.unit(150, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/veski/front.svg",
  18543. extra: 1299 / 1225,
  18544. bottom: 0.04
  18545. }
  18546. },
  18547. back: {
  18548. height: math.unit(6, "feet"),
  18549. weight: math.unit(150, "lb"),
  18550. name: "Back",
  18551. image: {
  18552. source: "./media/characters/veski/back.svg",
  18553. extra: 1299 / 1225,
  18554. bottom: 0.008
  18555. }
  18556. },
  18557. maw: {
  18558. height: math.unit(1.5 * 1.21, "feet"),
  18559. name: "Maw",
  18560. image: {
  18561. source: "./media/characters/veski/maw.svg"
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Macro",
  18568. height: math.unit(2, "km"),
  18569. default: true
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(5 + 7 / 12, "feet"),
  18578. name: "Front",
  18579. image: {
  18580. source: "./media/characters/isabelle/front.svg",
  18581. extra: 2130 / 1976,
  18582. bottom: 0.05
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Supermicro",
  18589. height: math.unit(10, "micrometers")
  18590. },
  18591. {
  18592. name: "Micro",
  18593. height: math.unit(1, "inch")
  18594. },
  18595. {
  18596. name: "Tiny",
  18597. height: math.unit(5, "inches")
  18598. },
  18599. {
  18600. name: "Standard",
  18601. height: math.unit(5 + 7 / 12, "inches")
  18602. },
  18603. {
  18604. name: "Macro",
  18605. height: math.unit(80, "meters"),
  18606. default: true
  18607. },
  18608. {
  18609. name: "Megamacro",
  18610. height: math.unit(250, "meters")
  18611. },
  18612. {
  18613. name: "Gigamacro",
  18614. height: math.unit(5, "km")
  18615. },
  18616. {
  18617. name: "Cosmic",
  18618. height: math.unit(2.5e6, "miles")
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(6, "feet"),
  18627. weight: math.unit(150, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/hanzo/front.svg",
  18631. extra: 374 / 344,
  18632. bottom: 0.02
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Normal",
  18639. height: math.unit(8, "feet"),
  18640. default: true
  18641. },
  18642. ]
  18643. ))
  18644. characterMakers.push(() => makeCharacter(
  18645. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18646. {
  18647. front: {
  18648. height: math.unit(7, "feet"),
  18649. weight: math.unit(130, "lb"),
  18650. name: "Front",
  18651. image: {
  18652. source: "./media/characters/anna/front.svg",
  18653. extra: 169 / 145,
  18654. bottom: 0.06
  18655. }
  18656. },
  18657. full: {
  18658. height: math.unit(4.96, "feet"),
  18659. weight: math.unit(220, "lb"),
  18660. name: "Full",
  18661. image: {
  18662. source: "./media/characters/anna/full.svg",
  18663. extra: 138 / 114,
  18664. bottom: 0.15
  18665. }
  18666. },
  18667. tongue: {
  18668. height: math.unit(2.53, "feet"),
  18669. name: "Tongue",
  18670. image: {
  18671. source: "./media/characters/anna/tongue.svg"
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Normal",
  18678. height: math.unit(7, "feet"),
  18679. default: true
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18685. {
  18686. front: {
  18687. height: math.unit(7 + 1/12, "feet"),
  18688. weight: math.unit(150, "lb"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/ian-corvid/front.svg",
  18692. extra: 621/591,
  18693. bottom: 14/635
  18694. }
  18695. },
  18696. back: {
  18697. height: math.unit(7 + 1/12, "feet"),
  18698. weight: math.unit(150, "lb"),
  18699. name: "Back",
  18700. image: {
  18701. source: "./media/characters/ian-corvid/back.svg",
  18702. extra: 621/600,
  18703. bottom: 10/631
  18704. }
  18705. },
  18706. stomping: {
  18707. height: math.unit(7 + 1/12, "feet"),
  18708. weight: math.unit(150, "lb"),
  18709. name: "Stomping",
  18710. image: {
  18711. source: "./media/characters/ian-corvid/stomping.svg",
  18712. extra: 309/291,
  18713. bottom: 7/316
  18714. }
  18715. },
  18716. tongue: {
  18717. height: math.unit(3.9, "feet"),
  18718. name: "Tongue",
  18719. image: {
  18720. source: "./media/characters/ian-corvid/tongue.svg"
  18721. }
  18722. },
  18723. beak: {
  18724. height: math.unit(0.9, "feet"),
  18725. name: "Beak",
  18726. image: {
  18727. source: "./media/characters/ian-corvid/beak.svg"
  18728. }
  18729. },
  18730. sitting: {
  18731. height: math.unit(7 / 1.8, "feet"),
  18732. weight: math.unit(150, "lb"),
  18733. name: "Sitting",
  18734. image: {
  18735. source: "./media/characters/ian-corvid/sitting.svg",
  18736. extra: 1400 / 1269,
  18737. bottom: 0.15
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Tiny Microw",
  18744. height: math.unit(1, "inch")
  18745. },
  18746. {
  18747. name: "Microw",
  18748. height: math.unit(6, "inches")
  18749. },
  18750. {
  18751. name: "Crow",
  18752. height: math.unit(7 + 1 / 12, "feet"),
  18753. default: true
  18754. },
  18755. {
  18756. name: "Macrow",
  18757. height: math.unit(176, "feet")
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(5 + 7 / 12, "feet"),
  18766. weight: math.unit(147, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/natalie-kellon/front.svg",
  18770. extra: 1214 / 1141,
  18771. bottom: 0.02
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Micro",
  18778. height: math.unit(1 / 16, "inch")
  18779. },
  18780. {
  18781. name: "Tiny",
  18782. height: math.unit(4, "inches")
  18783. },
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(5 + 7 / 12, "feet"),
  18787. default: true
  18788. },
  18789. {
  18790. name: "Amazon",
  18791. height: math.unit(12, "feet")
  18792. },
  18793. {
  18794. name: "Giantess",
  18795. height: math.unit(160, "meters")
  18796. },
  18797. {
  18798. name: "Titaness",
  18799. height: math.unit(800, "meters")
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(6, "feet"),
  18808. weight: math.unit(150, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/alluria/front.svg",
  18812. extra: 806 / 738,
  18813. bottom: 0.01
  18814. }
  18815. },
  18816. side: {
  18817. height: math.unit(6, "feet"),
  18818. weight: math.unit(150, "lb"),
  18819. name: "Side",
  18820. image: {
  18821. source: "./media/characters/alluria/side.svg",
  18822. extra: 800 / 750,
  18823. }
  18824. },
  18825. back: {
  18826. height: math.unit(6, "feet"),
  18827. weight: math.unit(150, "lb"),
  18828. name: "Back",
  18829. image: {
  18830. source: "./media/characters/alluria/back.svg",
  18831. extra: 806 / 738,
  18832. }
  18833. },
  18834. frontMaid: {
  18835. height: math.unit(6, "feet"),
  18836. weight: math.unit(150, "lb"),
  18837. name: "Front (Maid)",
  18838. image: {
  18839. source: "./media/characters/alluria/front-maid.svg",
  18840. extra: 806 / 738,
  18841. bottom: 0.01
  18842. }
  18843. },
  18844. sideMaid: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(150, "lb"),
  18847. name: "Side (Maid)",
  18848. image: {
  18849. source: "./media/characters/alluria/side-maid.svg",
  18850. extra: 800 / 750,
  18851. bottom: 0.005
  18852. }
  18853. },
  18854. backMaid: {
  18855. height: math.unit(6, "feet"),
  18856. weight: math.unit(150, "lb"),
  18857. name: "Back (Maid)",
  18858. image: {
  18859. source: "./media/characters/alluria/back-maid.svg",
  18860. extra: 806 / 738,
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Micro",
  18867. height: math.unit(6, "inches"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(6, "feet"),
  18877. weight: math.unit(150, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/kyle/front.svg",
  18881. extra: 1069 / 962,
  18882. bottom: 77.228 / 1727.45
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(150, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(6, "feet"),
  18899. weight: math.unit(300, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/duncan/front.svg",
  18903. extra: 1650 / 1482,
  18904. bottom: 0.05
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(100, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(5 + 4 / 12, "feet"),
  18921. weight: math.unit(220, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/memory/front.svg",
  18925. extra: 3641 / 3545,
  18926. bottom: 0.03
  18927. }
  18928. },
  18929. back: {
  18930. height: math.unit(5 + 4 / 12, "feet"),
  18931. weight: math.unit(220, "lb"),
  18932. name: "Back",
  18933. image: {
  18934. source: "./media/characters/memory/back.svg",
  18935. extra: 3641 / 3545,
  18936. bottom: 0.025
  18937. }
  18938. },
  18939. frontSkirt: {
  18940. height: math.unit(5 + 4 / 12, "feet"),
  18941. weight: math.unit(220, "lb"),
  18942. name: "Front (Skirt)",
  18943. image: {
  18944. source: "./media/characters/memory/front-skirt.svg",
  18945. extra: 3641 / 3545,
  18946. bottom: 0.03
  18947. }
  18948. },
  18949. frontDress: {
  18950. height: math.unit(5 + 4 / 12, "feet"),
  18951. weight: math.unit(220, "lb"),
  18952. name: "Front (Dress)",
  18953. image: {
  18954. source: "./media/characters/memory/front-dress.svg",
  18955. extra: 3641 / 3545,
  18956. bottom: 0.03
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Micro",
  18963. height: math.unit(6, "inches"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Normal",
  18968. height: math.unit(5 + 4 / 12, "feet")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(4 + 11 / 12, "feet"),
  18977. weight: math.unit(100, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/luno/front.svg",
  18981. extra: 1535 / 1487,
  18982. bottom: 0.03
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Micro",
  18989. height: math.unit(3, "inches")
  18990. },
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(4 + 11 / 12, "feet"),
  18994. default: true
  18995. },
  18996. {
  18997. name: "Macro",
  18998. height: math.unit(300, "feet")
  18999. },
  19000. {
  19001. name: "Megamacro",
  19002. height: math.unit(700, "miles")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(6 + 2 / 12, "feet"),
  19011. weight: math.unit(170, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/jamesy/front.svg",
  19015. extra: 440 / 382,
  19016. bottom: 0.005
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Micro",
  19023. height: math.unit(3, "inches")
  19024. },
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(6 + 2 / 12, "feet"),
  19028. default: true
  19029. },
  19030. {
  19031. name: "Macro",
  19032. height: math.unit(300, "feet")
  19033. },
  19034. {
  19035. name: "Megamacro",
  19036. height: math.unit(700, "miles")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(6, "feet"),
  19045. weight: math.unit(160, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/mark/front.svg",
  19049. extra: 3300 / 3100,
  19050. bottom: 136.42 / 3440.47
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Macro",
  19057. height: math.unit(120, "meters")
  19058. },
  19059. {
  19060. name: "Bigger Macro",
  19061. height: math.unit(350, "meters")
  19062. },
  19063. {
  19064. name: "Megamacro",
  19065. height: math.unit(8, "km"),
  19066. default: true
  19067. },
  19068. {
  19069. name: "Continental",
  19070. height: math.unit(4550, "km")
  19071. },
  19072. {
  19073. name: "Planetary",
  19074. height: math.unit(65000, "km")
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(6, "feet"),
  19083. weight: math.unit(400, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/mac/front.svg",
  19087. extra: 1048 / 987.7,
  19088. bottom: 60 / 1107.6,
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Macro",
  19095. height: math.unit(500, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(5 + 2 / 12, "feet"),
  19105. weight: math.unit(190, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/bari/front.svg",
  19109. extra: 3156 / 2880,
  19110. bottom: 0.03
  19111. }
  19112. },
  19113. back: {
  19114. height: math.unit(5 + 2 / 12, "feet"),
  19115. weight: math.unit(190, "lb"),
  19116. name: "Back",
  19117. image: {
  19118. source: "./media/characters/bari/back.svg",
  19119. extra: 3260 / 2834,
  19120. bottom: 0.025
  19121. }
  19122. },
  19123. frontPlush: {
  19124. height: math.unit(5 + 2 / 12, "feet"),
  19125. weight: math.unit(190, "lb"),
  19126. name: "Front (Plush)",
  19127. image: {
  19128. source: "./media/characters/bari/front-plush.svg",
  19129. extra: 1112 / 1061,
  19130. bottom: 0.002
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Micro",
  19137. height: math.unit(3, "inches")
  19138. },
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(5 + 2 / 12, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Macro",
  19146. height: math.unit(20, "feet")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(6 + 1 / 12, "feet"),
  19155. weight: math.unit(275, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/hunter-misha-raven/front.svg"
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Mortal",
  19165. height: math.unit(6 + 1 / 12, "feet")
  19166. },
  19167. {
  19168. name: "Divine",
  19169. height: math.unit(1.12134e34, "parsecs"),
  19170. default: true
  19171. },
  19172. ]
  19173. ))
  19174. characterMakers.push(() => makeCharacter(
  19175. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19176. {
  19177. front: {
  19178. height: math.unit(6 + 3 / 12, "feet"),
  19179. weight: math.unit(220, "lb"),
  19180. name: "Front",
  19181. image: {
  19182. source: "./media/characters/max-calore/front.svg",
  19183. extra: 1700 / 1648,
  19184. bottom: 0.01
  19185. }
  19186. },
  19187. back: {
  19188. height: math.unit(6 + 3 / 12, "feet"),
  19189. weight: math.unit(220, "lb"),
  19190. name: "Back",
  19191. image: {
  19192. source: "./media/characters/max-calore/back.svg",
  19193. extra: 1700 / 1648,
  19194. bottom: 0.01
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(6 + 3 / 12, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19208. {
  19209. side: {
  19210. height: math.unit(2 + 8 / 12, "feet"),
  19211. weight: math.unit(99, "lb"),
  19212. name: "Side",
  19213. image: {
  19214. source: "./media/characters/aspen/side.svg",
  19215. extra: 152 / 138,
  19216. bottom: 0.032
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(2 + 8 / 12, "feet"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19230. {
  19231. side: {
  19232. height: math.unit(3 + 2 / 12, "feet"),
  19233. weight: math.unit(224, "lb"),
  19234. name: "Side",
  19235. image: {
  19236. source: "./media/characters/sheila-feral-wolf/side.svg",
  19237. extra: 179 / 166,
  19238. bottom: 0.03
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(3 + 2 / 12, "feet"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19252. {
  19253. side: {
  19254. height: math.unit(1 + 9 / 12, "feet"),
  19255. weight: math.unit(38, "lb"),
  19256. name: "Side",
  19257. image: {
  19258. source: "./media/characters/michelle/side.svg",
  19259. extra: 147 / 136.7,
  19260. bottom: 0.03
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(1 + 9 / 12, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19274. {
  19275. front: {
  19276. height: math.unit(1.54, "feet"),
  19277. weight: math.unit(50, "lb"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/nino/front.svg"
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(1.54, "feet"),
  19288. default: true
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(1.49, "feet"),
  19297. weight: math.unit(45, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/viola/front.svg"
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(1.49, "feet"),
  19308. default: true
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19314. {
  19315. front: {
  19316. height: math.unit(6 + 5 / 12, "feet"),
  19317. weight: math.unit(580, "lb"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/atlas/front.svg",
  19321. extra: 298.5 / 290,
  19322. bottom: 0.015
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(6 + 5 / 12, "feet"),
  19330. default: true
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19336. {
  19337. side: {
  19338. height: math.unit(15.6, "inches"),
  19339. weight: math.unit(10, "lb"),
  19340. name: "Side",
  19341. image: {
  19342. source: "./media/characters/davy/side.svg",
  19343. extra: 200 / 170,
  19344. bottom: 0.01
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(15.6, "inches"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19358. {
  19359. side: {
  19360. height: math.unit(4 + 8 / 12, "feet"),
  19361. weight: math.unit(166, "lb"),
  19362. name: "Side",
  19363. image: {
  19364. source: "./media/characters/fiona/side.svg",
  19365. extra: 232 / 220,
  19366. bottom: 0.03
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Normal",
  19373. height: math.unit(4 + 8 / 12, "feet"),
  19374. default: true
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19380. {
  19381. front: {
  19382. height: math.unit(26, "inches"),
  19383. weight: math.unit(35, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/lyla/front.svg",
  19387. bottom: 0.1
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(3, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19401. {
  19402. side: {
  19403. height: math.unit(1.8, "feet"),
  19404. weight: math.unit(44, "lb"),
  19405. name: "Side",
  19406. image: {
  19407. source: "./media/characters/perseus/side.svg",
  19408. bottom: 0.21
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(1.8, "feet"),
  19416. default: true
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19422. {
  19423. side: {
  19424. height: math.unit(4 + 2 / 12, "feet"),
  19425. weight: math.unit(20, "lb"),
  19426. name: "Side",
  19427. image: {
  19428. source: "./media/characters/remus/side.svg"
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(4 + 2 / 12, "feet"),
  19436. default: true
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19442. {
  19443. front: {
  19444. height: math.unit(4 + 11 / 12, "feet"),
  19445. weight: math.unit(114, "lb"),
  19446. name: "Front",
  19447. image: {
  19448. source: "./media/characters/raf/front.svg",
  19449. extra: 1504/1339,
  19450. bottom: 26/1530
  19451. }
  19452. },
  19453. side: {
  19454. height: math.unit(4 + 11 / 12, "feet"),
  19455. weight: math.unit(114, "lb"),
  19456. name: "Side",
  19457. image: {
  19458. source: "./media/characters/raf/side.svg",
  19459. extra: 1466/1316,
  19460. bottom: 29/1495
  19461. }
  19462. },
  19463. paw: {
  19464. height: math.unit(1.45, "feet"),
  19465. name: "Paw",
  19466. image: {
  19467. source: "./media/characters/raf/paw.svg"
  19468. },
  19469. extraAttributes: {
  19470. "toeSize": {
  19471. name: "Toe Size",
  19472. power: 2,
  19473. type: "area",
  19474. base: math.unit(0.004, "m^2")
  19475. },
  19476. "padSize": {
  19477. name: "Pad Size",
  19478. power: 2,
  19479. type: "area",
  19480. base: math.unit(0.04, "m^2")
  19481. },
  19482. "footSize": {
  19483. name: "Foot Size",
  19484. power: 2,
  19485. type: "area",
  19486. base: math.unit(0.08, "m^2")
  19487. },
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Micro",
  19494. height: math.unit(2, "inches")
  19495. },
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(4 + 11 / 12, "feet"),
  19499. default: true
  19500. },
  19501. {
  19502. name: "Macro",
  19503. height: math.unit(70, "feet")
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(1.5, "meters"),
  19512. weight: math.unit(68, "kg"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/liam-einarr/front.svg",
  19516. extra: 2822 / 2666
  19517. }
  19518. },
  19519. back: {
  19520. height: math.unit(1.5, "meters"),
  19521. weight: math.unit(68, "kg"),
  19522. name: "Back",
  19523. image: {
  19524. source: "./media/characters/liam-einarr/back.svg",
  19525. extra: 2822 / 2666,
  19526. bottom: 0.015
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(1.5, "meters"),
  19534. default: true
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(150, "meters")
  19539. },
  19540. {
  19541. name: "Megamacro",
  19542. height: math.unit(35, "km")
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19548. {
  19549. front: {
  19550. height: math.unit(6, "feet"),
  19551. weight: math.unit(75, "kg"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/linda/front.svg",
  19555. extra: 930 / 874,
  19556. bottom: 0.004
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(6, "feet"),
  19564. default: true
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(6 + 8 / 12, "feet"),
  19573. weight: math.unit(220, "lb"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/caylex/front.svg",
  19577. extra: 821 / 772,
  19578. bottom: 0.07
  19579. }
  19580. },
  19581. back: {
  19582. height: math.unit(6 + 8 / 12, "feet"),
  19583. weight: math.unit(220, "lb"),
  19584. name: "Back",
  19585. image: {
  19586. source: "./media/characters/caylex/back.svg",
  19587. extra: 821 / 772,
  19588. bottom: 0.022
  19589. }
  19590. },
  19591. hand: {
  19592. height: math.unit(1.25, "feet"),
  19593. name: "Hand",
  19594. image: {
  19595. source: "./media/characters/caylex/hand.svg"
  19596. }
  19597. },
  19598. foot: {
  19599. height: math.unit(1.6, "feet"),
  19600. name: "Foot",
  19601. image: {
  19602. source: "./media/characters/caylex/foot.svg"
  19603. }
  19604. },
  19605. armored: {
  19606. height: math.unit(6 + 8 / 12, "feet"),
  19607. weight: math.unit(250, "lb"),
  19608. name: "Armored",
  19609. image: {
  19610. source: "./media/characters/caylex/armored.svg",
  19611. extra: 1420 / 1310,
  19612. bottom: 0.045
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Normal",
  19619. height: math.unit(6 + 8 / 12, "feet"),
  19620. default: true
  19621. },
  19622. {
  19623. name: "Normal+",
  19624. height: math.unit(12, "feet")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(7 + 6 / 12, "feet"),
  19633. weight: math.unit(288, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/alana/front.svg",
  19637. extra: 679 / 653,
  19638. bottom: 22.5 / 701
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(7 + 6 / 12, "feet")
  19646. },
  19647. {
  19648. name: "Large",
  19649. height: math.unit(50, "feet")
  19650. },
  19651. {
  19652. name: "Macro",
  19653. height: math.unit(100, "feet"),
  19654. default: true
  19655. },
  19656. {
  19657. name: "Macro+",
  19658. height: math.unit(200, "feet")
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19664. {
  19665. front: {
  19666. height: math.unit(6 + 1 / 12, "feet"),
  19667. weight: math.unit(210, "lb"),
  19668. name: "Front",
  19669. image: {
  19670. source: "./media/characters/hasani/front.svg",
  19671. extra: 244 / 232,
  19672. bottom: 0.01
  19673. }
  19674. },
  19675. back: {
  19676. height: math.unit(6 + 1 / 12, "feet"),
  19677. weight: math.unit(210, "lb"),
  19678. name: "Back",
  19679. image: {
  19680. source: "./media/characters/hasani/back.svg",
  19681. extra: 244 / 232,
  19682. bottom: 0.01
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(6 + 1 / 12, "feet")
  19690. },
  19691. {
  19692. name: "Macro",
  19693. height: math.unit(175, "feet"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(1.82, "meters"),
  19703. weight: math.unit(140, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/nita/front.svg",
  19707. extra: 2473 / 2363,
  19708. bottom: 0.01
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(1.82, "m")
  19716. },
  19717. {
  19718. name: "Macro",
  19719. height: math.unit(300, "m")
  19720. },
  19721. {
  19722. name: "Mistake Canon",
  19723. height: math.unit(0.5, "miles"),
  19724. default: true
  19725. },
  19726. {
  19727. name: "Big Mistake",
  19728. height: math.unit(13, "miles")
  19729. },
  19730. {
  19731. name: "Playing God",
  19732. height: math.unit(2450, "miles")
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(4, "feet"),
  19741. weight: math.unit(120, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/shiriko/front.svg",
  19745. extra: 970/934,
  19746. bottom: 5/975
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(4, "feet"),
  19754. default: true
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19760. {
  19761. front: {
  19762. height: math.unit(6, "feet"),
  19763. name: "front",
  19764. image: {
  19765. source: "./media/characters/deja/front.svg",
  19766. extra: 926 / 840,
  19767. bottom: 0.07
  19768. }
  19769. },
  19770. },
  19771. [
  19772. {
  19773. name: "Planck Length",
  19774. height: math.unit(1.6e-35, "meters")
  19775. },
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(30.48, "meters"),
  19779. default: true
  19780. },
  19781. {
  19782. name: "Universal",
  19783. height: math.unit(8.8e26, "meters")
  19784. },
  19785. ]
  19786. ))
  19787. characterMakers.push(() => makeCharacter(
  19788. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19789. {
  19790. side: {
  19791. height: math.unit(8, "feet"),
  19792. weight: math.unit(6300, "lb"),
  19793. name: "Side",
  19794. image: {
  19795. source: "./media/characters/anima/side.svg",
  19796. bottom: 0.035
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(8, "feet"),
  19804. default: true
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19810. {
  19811. front: {
  19812. height: math.unit(8, "feet"),
  19813. weight: math.unit(350, "lb"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/bianca/front.svg",
  19817. extra: 234 / 225,
  19818. bottom: 0.03
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Normal",
  19825. height: math.unit(8, "feet"),
  19826. default: true
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19832. {
  19833. front: {
  19834. height: math.unit(11 + 5/12, "feet"),
  19835. weight: math.unit(1200, "lb"),
  19836. name: "Front",
  19837. image: {
  19838. source: "./media/characters/adinia/front.svg",
  19839. extra: 1767/1641,
  19840. bottom: 44/1811
  19841. },
  19842. extraAttributes: {
  19843. "energyIntake": {
  19844. name: "Energy Intake",
  19845. power: 3,
  19846. type: "energy",
  19847. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19848. },
  19849. }
  19850. },
  19851. back: {
  19852. height: math.unit(11 + 5/12, "feet"),
  19853. weight: math.unit(1200, "lb"),
  19854. name: "Back",
  19855. image: {
  19856. source: "./media/characters/adinia/back.svg",
  19857. extra: 1834/1684,
  19858. bottom: 14/1848
  19859. },
  19860. extraAttributes: {
  19861. "energyIntake": {
  19862. name: "Energy Intake",
  19863. power: 3,
  19864. type: "energy",
  19865. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19866. },
  19867. }
  19868. },
  19869. maw: {
  19870. height: math.unit(3.79, "feet"),
  19871. name: "Maw",
  19872. image: {
  19873. source: "./media/characters/adinia/maw.svg"
  19874. }
  19875. },
  19876. rump: {
  19877. height: math.unit(4.6, "feet"),
  19878. name: "Rump",
  19879. image: {
  19880. source: "./media/characters/adinia/rump.svg"
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Normal",
  19887. height: math.unit(11 + 5 / 12, "feet"),
  19888. default: true
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19894. {
  19895. front: {
  19896. height: math.unit(3, "meters"),
  19897. weight: math.unit(200, "kg"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/lykasa/front.svg",
  19901. extra: 1076 / 976,
  19902. bottom: 0.06
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(3, "meters")
  19910. },
  19911. {
  19912. name: "Kaiju",
  19913. height: math.unit(120, "meters"),
  19914. default: true
  19915. },
  19916. {
  19917. name: "Mega Kaiju",
  19918. height: math.unit(240, "km")
  19919. },
  19920. {
  19921. name: "Giga Kaiju",
  19922. height: math.unit(400, "megameters")
  19923. },
  19924. {
  19925. name: "Tera Kaiju",
  19926. height: math.unit(800, "gigameters")
  19927. },
  19928. {
  19929. name: "Kaiju Dragon Goddess",
  19930. height: math.unit(26, "zettaparsecs")
  19931. },
  19932. ]
  19933. ))
  19934. characterMakers.push(() => makeCharacter(
  19935. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19936. {
  19937. side: {
  19938. height: math.unit(283 / 124 * 6, "feet"),
  19939. weight: math.unit(35000, "lb"),
  19940. name: "Side",
  19941. image: {
  19942. source: "./media/characters/malfaren/side.svg",
  19943. extra: 1310/529,
  19944. bottom: 24/1334
  19945. }
  19946. },
  19947. front: {
  19948. height: math.unit(22.36, "feet"),
  19949. weight: math.unit(35000, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/malfaren/front.svg",
  19953. extra: 1237/1115,
  19954. bottom: 32/1269
  19955. }
  19956. },
  19957. maw: {
  19958. height: math.unit(6.9, "feet"),
  19959. name: "Maw",
  19960. image: {
  19961. source: "./media/characters/malfaren/maw.svg"
  19962. }
  19963. },
  19964. dick: {
  19965. height: math.unit(6.19, "feet"),
  19966. name: "Dick",
  19967. image: {
  19968. source: "./media/characters/malfaren/dick.svg"
  19969. }
  19970. },
  19971. eye: {
  19972. height: math.unit(0.69, "feet"),
  19973. name: "Eye",
  19974. image: {
  19975. source: "./media/characters/malfaren/eye.svg"
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Big",
  19982. height: math.unit(283 / 162 * 6, "feet"),
  19983. },
  19984. {
  19985. name: "Bigger",
  19986. height: math.unit(283 / 124 * 6, "feet")
  19987. },
  19988. {
  19989. name: "Massive",
  19990. height: math.unit(283 / 92 * 6, "feet"),
  19991. default: true
  19992. },
  19993. {
  19994. name: "👀💦",
  19995. height: math.unit(283 / 73 * 6, "feet"),
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(1.7, "m"),
  20004. weight: math.unit(70, "kg"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/kernel/front.svg",
  20008. extra: 1960/1821,
  20009. bottom: 17/1977
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Nano",
  20016. height: math.unit(17, "micrometers")
  20017. },
  20018. {
  20019. name: "Micro",
  20020. height: math.unit(1.7, "mm")
  20021. },
  20022. {
  20023. name: "Small",
  20024. height: math.unit(1.7, "cm")
  20025. },
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(1.7, "m"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(1.75, "meters"),
  20038. weight: math.unit(65, "kg"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/jayne-folest/front.svg",
  20042. extra: 2115 / 2007,
  20043. bottom: 0.02
  20044. }
  20045. },
  20046. back: {
  20047. height: math.unit(1.75, "meters"),
  20048. weight: math.unit(65, "kg"),
  20049. name: "Back",
  20050. image: {
  20051. source: "./media/characters/jayne-folest/back.svg",
  20052. extra: 2115 / 2007,
  20053. bottom: 0.005
  20054. }
  20055. },
  20056. frontClothed: {
  20057. height: math.unit(1.75, "meters"),
  20058. weight: math.unit(65, "kg"),
  20059. name: "Front (Clothed)",
  20060. image: {
  20061. source: "./media/characters/jayne-folest/front-clothed.svg",
  20062. extra: 2115 / 2007,
  20063. bottom: 0.035
  20064. }
  20065. },
  20066. hand: {
  20067. height: math.unit(1 / 1.260, "feet"),
  20068. name: "Hand",
  20069. image: {
  20070. source: "./media/characters/jayne-folest/hand.svg"
  20071. }
  20072. },
  20073. foot: {
  20074. height: math.unit(1 / 0.918, "feet"),
  20075. name: "Foot",
  20076. image: {
  20077. source: "./media/characters/jayne-folest/foot.svg"
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Micro",
  20084. height: math.unit(4, "cm")
  20085. },
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(1.75, "meters")
  20089. },
  20090. {
  20091. name: "Macro",
  20092. height: math.unit(47.5, "meters"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(180, "cm"),
  20102. weight: math.unit(70, "kg"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/algier/front.svg",
  20106. extra: 596 / 572,
  20107. bottom: 0.04
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(180, "cm"),
  20112. weight: math.unit(70, "kg"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/algier/back.svg",
  20116. extra: 596 / 572,
  20117. bottom: 0.025
  20118. }
  20119. },
  20120. frontdressed: {
  20121. height: math.unit(180, "cm"),
  20122. weight: math.unit(150, "kg"),
  20123. name: "Front-dressed",
  20124. image: {
  20125. source: "./media/characters/algier/front-dressed.svg",
  20126. extra: 596 / 572,
  20127. bottom: 0.038
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Micro",
  20134. height: math.unit(5, "cm")
  20135. },
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(180, "cm"),
  20139. default: true
  20140. },
  20141. {
  20142. name: "Macro",
  20143. height: math.unit(64, "m")
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20149. {
  20150. upright: {
  20151. height: math.unit(7, "feet"),
  20152. weight: math.unit(300, "lb"),
  20153. name: "Upright",
  20154. image: {
  20155. source: "./media/characters/pretzel/upright.svg",
  20156. extra: 534 / 522,
  20157. bottom: 0.065
  20158. }
  20159. },
  20160. sprawling: {
  20161. height: math.unit(3.75, "feet"),
  20162. weight: math.unit(300, "lb"),
  20163. name: "Sprawling",
  20164. image: {
  20165. source: "./media/characters/pretzel/sprawling.svg",
  20166. extra: 314 / 281,
  20167. bottom: 0.1
  20168. }
  20169. },
  20170. tongue: {
  20171. height: math.unit(2, "feet"),
  20172. name: "Tongue",
  20173. image: {
  20174. source: "./media/characters/pretzel/tongue.svg"
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(7, "feet"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Oversized",
  20186. height: math.unit(15, "feet")
  20187. },
  20188. {
  20189. name: "Huge",
  20190. height: math.unit(30, "feet")
  20191. },
  20192. {
  20193. name: "Macro",
  20194. height: math.unit(250, "feet")
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20200. {
  20201. sideFront: {
  20202. height: math.unit(5 + 2 / 12, "feet"),
  20203. weight: math.unit(120, "lb"),
  20204. name: "Front Side",
  20205. image: {
  20206. source: "./media/characters/roxi/side-front.svg",
  20207. extra: 2924 / 2717,
  20208. bottom: 0.08
  20209. }
  20210. },
  20211. sideBack: {
  20212. height: math.unit(5 + 2 / 12, "feet"),
  20213. weight: math.unit(120, "lb"),
  20214. name: "Back Side",
  20215. image: {
  20216. source: "./media/characters/roxi/side-back.svg",
  20217. extra: 2904 / 2693,
  20218. bottom: 0.06
  20219. }
  20220. },
  20221. front: {
  20222. height: math.unit(5 + 2 / 12, "feet"),
  20223. weight: math.unit(120, "lb"),
  20224. name: "Front",
  20225. image: {
  20226. source: "./media/characters/roxi/front.svg",
  20227. extra: 2028 / 1907,
  20228. bottom: 0.01
  20229. }
  20230. },
  20231. frontAlt: {
  20232. height: math.unit(5 + 2 / 12, "feet"),
  20233. weight: math.unit(120, "lb"),
  20234. name: "Front (Alt)",
  20235. image: {
  20236. source: "./media/characters/roxi/front-alt.svg",
  20237. extra: 1828 / 1798,
  20238. bottom: 0.01
  20239. }
  20240. },
  20241. sitting: {
  20242. height: math.unit(2.8, "feet"),
  20243. weight: math.unit(120, "lb"),
  20244. name: "Sitting",
  20245. image: {
  20246. source: "./media/characters/roxi/sitting.svg",
  20247. extra: 2660 / 2462,
  20248. bottom: 0.1
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(5 + 2 / 12, "feet"),
  20256. default: true
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20262. {
  20263. side: {
  20264. height: math.unit(55, "feet"),
  20265. weight: math.unit(153, "tons"),
  20266. name: "Side",
  20267. image: {
  20268. source: "./media/characters/shadow/side.svg",
  20269. extra: 701 / 628,
  20270. bottom: 0.02
  20271. }
  20272. },
  20273. flying: {
  20274. height: math.unit(145, "feet"),
  20275. weight: math.unit(153, "tons"),
  20276. name: "Flying",
  20277. image: {
  20278. source: "./media/characters/shadow/flying.svg"
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(55, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20292. {
  20293. front: {
  20294. height: math.unit(6, "feet"),
  20295. weight: math.unit(200, "lb"),
  20296. name: "Front",
  20297. image: {
  20298. source: "./media/characters/marcie/front.svg",
  20299. extra: 960 / 876,
  20300. bottom: 58 / 1017.87
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Macro",
  20307. height: math.unit(1, "mile"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(7, "feet"),
  20317. weight: math.unit(200, "lb"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/kachina/front.svg",
  20321. extra: 3206/2764,
  20322. bottom: 140/3346
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(7, "feet"),
  20330. default: true
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20336. {
  20337. looking: {
  20338. height: math.unit(2, "meters"),
  20339. weight: math.unit(300, "kg"),
  20340. name: "Looking",
  20341. image: {
  20342. source: "./media/characters/kash/looking.svg",
  20343. extra: 474 / 344,
  20344. bottom: 0.03
  20345. }
  20346. },
  20347. side: {
  20348. height: math.unit(2, "meters"),
  20349. weight: math.unit(300, "kg"),
  20350. name: "Side",
  20351. image: {
  20352. source: "./media/characters/kash/side.svg",
  20353. extra: 302 / 251,
  20354. bottom: 0.03
  20355. }
  20356. },
  20357. front: {
  20358. height: math.unit(2, "meters"),
  20359. weight: math.unit(300, "kg"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/kash/front.svg",
  20363. extra: 495 / 360,
  20364. bottom: 0.015
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(2, "meters"),
  20372. default: true
  20373. },
  20374. {
  20375. name: "Big",
  20376. height: math.unit(3, "meters")
  20377. },
  20378. {
  20379. name: "Large",
  20380. height: math.unit(5, "meters")
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20386. {
  20387. feeding: {
  20388. height: math.unit(6.7, "feet"),
  20389. weight: math.unit(350, "lb"),
  20390. name: "Feeding",
  20391. image: {
  20392. source: "./media/characters/lalim/feeding.svg",
  20393. }
  20394. },
  20395. },
  20396. [
  20397. {
  20398. name: "Normal",
  20399. height: math.unit(6.7, "feet"),
  20400. default: true
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20406. {
  20407. front: {
  20408. height: math.unit(9.5, "feet"),
  20409. weight: math.unit(600, "lb"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/de'vout/front.svg",
  20413. extra: 1443 / 1328,
  20414. bottom: 0.025
  20415. }
  20416. },
  20417. back: {
  20418. height: math.unit(9.5, "feet"),
  20419. weight: math.unit(600, "lb"),
  20420. name: "Back",
  20421. image: {
  20422. source: "./media/characters/de'vout/back.svg",
  20423. extra: 1443 / 1328
  20424. }
  20425. },
  20426. frontDressed: {
  20427. height: math.unit(9.5, "feet"),
  20428. weight: math.unit(600, "lb"),
  20429. name: "Front (Dressed",
  20430. image: {
  20431. source: "./media/characters/de'vout/front-dressed.svg",
  20432. extra: 1443 / 1328,
  20433. bottom: 0.025
  20434. }
  20435. },
  20436. backDressed: {
  20437. height: math.unit(9.5, "feet"),
  20438. weight: math.unit(600, "lb"),
  20439. name: "Back (Dressed",
  20440. image: {
  20441. source: "./media/characters/de'vout/back-dressed.svg",
  20442. extra: 1443 / 1328
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(9.5, "feet"),
  20450. default: true
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(8, "feet"),
  20459. weight: math.unit(225, "lb"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/talana/front.svg",
  20463. extra: 1410 / 1300,
  20464. bottom: 0.015
  20465. }
  20466. },
  20467. frontDressed: {
  20468. height: math.unit(8, "feet"),
  20469. weight: math.unit(225, "lb"),
  20470. name: "Front (Dressed",
  20471. image: {
  20472. source: "./media/characters/talana/front-dressed.svg",
  20473. extra: 1410 / 1300,
  20474. bottom: 0.015
  20475. }
  20476. },
  20477. },
  20478. [
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(8, "feet"),
  20482. default: true
  20483. },
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20488. {
  20489. side: {
  20490. height: math.unit(7.2, "feet"),
  20491. weight: math.unit(150, "lb"),
  20492. name: "Side",
  20493. image: {
  20494. source: "./media/characters/xeauvok/side.svg",
  20495. extra: 1975 / 1523,
  20496. bottom: 0.07
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(7.2, "feet"),
  20504. default: true
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20510. {
  20511. side: {
  20512. height: math.unit(4, "meters"),
  20513. weight: math.unit(2200, "kg"),
  20514. name: "Side",
  20515. image: {
  20516. source: "./media/characters/zara/side.svg",
  20517. extra: 765/744,
  20518. bottom: 156/921
  20519. }
  20520. },
  20521. },
  20522. [
  20523. {
  20524. name: "Normal",
  20525. height: math.unit(4, "meters"),
  20526. default: true
  20527. },
  20528. ]
  20529. ))
  20530. characterMakers.push(() => makeCharacter(
  20531. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20532. {
  20533. side: {
  20534. height: math.unit(6, "feet"),
  20535. weight: math.unit(150, "lb"),
  20536. name: "Side",
  20537. image: {
  20538. source: "./media/characters/richard-dragon/side.svg",
  20539. extra: 845 / 340,
  20540. bottom: 0.017
  20541. }
  20542. },
  20543. maw: {
  20544. height: math.unit(2.97, "feet"),
  20545. name: "Maw",
  20546. image: {
  20547. source: "./media/characters/richard-dragon/maw.svg"
  20548. }
  20549. },
  20550. },
  20551. [
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(4, "feet"),
  20559. weight: math.unit(100, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/richard-smeargle/front.svg",
  20563. extra: 2952 / 2820,
  20564. bottom: 0.028
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(4, "feet"),
  20572. default: true
  20573. },
  20574. {
  20575. name: "Dynamax",
  20576. height: math.unit(20, "meters")
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20582. {
  20583. front: {
  20584. height: math.unit(6, "feet"),
  20585. weight: math.unit(110, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/klay/front.svg",
  20589. extra: 962 / 883,
  20590. bottom: 0.04
  20591. }
  20592. },
  20593. back: {
  20594. height: math.unit(6, "feet"),
  20595. weight: math.unit(110, "lb"),
  20596. name: "Back",
  20597. image: {
  20598. source: "./media/characters/klay/back.svg",
  20599. extra: 962 / 883
  20600. }
  20601. },
  20602. beans: {
  20603. height: math.unit(1.15, "feet"),
  20604. name: "Beans",
  20605. image: {
  20606. source: "./media/characters/klay/beans.svg"
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Micro",
  20613. height: math.unit(6, "inches")
  20614. },
  20615. {
  20616. name: "Mini",
  20617. height: math.unit(3, "feet")
  20618. },
  20619. {
  20620. name: "Normal",
  20621. height: math.unit(6, "feet"),
  20622. default: true
  20623. },
  20624. {
  20625. name: "Big",
  20626. height: math.unit(25, "feet")
  20627. },
  20628. {
  20629. name: "Macro",
  20630. height: math.unit(100, "feet")
  20631. },
  20632. {
  20633. name: "Megamacro",
  20634. height: math.unit(400, "feet")
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20640. {
  20641. front: {
  20642. height: math.unit(6, "feet"),
  20643. weight: math.unit(160, "lb"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/marcus/front.svg",
  20647. extra: 734 / 676,
  20648. bottom: 0.03
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Little",
  20655. height: math.unit(6, "feet")
  20656. },
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(110, "feet"),
  20660. default: true
  20661. },
  20662. {
  20663. name: "Macro",
  20664. height: math.unit(250, "feet")
  20665. },
  20666. {
  20667. name: "Megamacro",
  20668. height: math.unit(1000, "feet")
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20674. {
  20675. front: {
  20676. height: math.unit(7, "feet"),
  20677. weight: math.unit(275, "lb"),
  20678. name: "Front",
  20679. image: {
  20680. source: "./media/characters/claude-delroute/front.svg",
  20681. extra: 902/827,
  20682. bottom: 26/928
  20683. }
  20684. },
  20685. side: {
  20686. height: math.unit(7, "feet"),
  20687. weight: math.unit(275, "lb"),
  20688. name: "Side",
  20689. image: {
  20690. source: "./media/characters/claude-delroute/side.svg",
  20691. extra: 908/853,
  20692. bottom: 16/924
  20693. }
  20694. },
  20695. back: {
  20696. height: math.unit(7, "feet"),
  20697. weight: math.unit(275, "lb"),
  20698. name: "Back",
  20699. image: {
  20700. source: "./media/characters/claude-delroute/back.svg",
  20701. extra: 911/829,
  20702. bottom: 18/929
  20703. }
  20704. },
  20705. maw: {
  20706. height: math.unit(0.6407, "meters"),
  20707. name: "Maw",
  20708. image: {
  20709. source: "./media/characters/claude-delroute/maw.svg"
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(7, "feet"),
  20717. default: true
  20718. },
  20719. {
  20720. name: "Lorge",
  20721. height: math.unit(20, "feet")
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(8 + 4 / 12, "feet"),
  20730. weight: math.unit(600, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/dragonien/front.svg",
  20734. extra: 100 / 94,
  20735. bottom: 3.3 / 103.3445
  20736. }
  20737. },
  20738. back: {
  20739. height: math.unit(8 + 4 / 12, "feet"),
  20740. weight: math.unit(600, "lb"),
  20741. name: "Back",
  20742. image: {
  20743. source: "./media/characters/dragonien/back.svg",
  20744. extra: 776 / 746,
  20745. bottom: 6.4 / 782.0616
  20746. }
  20747. },
  20748. foot: {
  20749. height: math.unit(1.54, "feet"),
  20750. name: "Foot",
  20751. image: {
  20752. source: "./media/characters/dragonien/foot.svg",
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(8 + 4 / 12, "feet"),
  20760. default: true
  20761. },
  20762. {
  20763. name: "Macro",
  20764. height: math.unit(200, "feet")
  20765. },
  20766. {
  20767. name: "Megamacro",
  20768. height: math.unit(1, "mile")
  20769. },
  20770. {
  20771. name: "Gigamacro",
  20772. height: math.unit(1000, "miles")
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(5 + 2 / 12, "feet"),
  20781. weight: math.unit(110, "lb"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/desta/front.svg",
  20785. extra: 767 / 726,
  20786. bottom: 11.7 / 779
  20787. }
  20788. },
  20789. back: {
  20790. height: math.unit(5 + 2 / 12, "feet"),
  20791. weight: math.unit(110, "lb"),
  20792. name: "Back",
  20793. image: {
  20794. source: "./media/characters/desta/back.svg",
  20795. extra: 777 / 728,
  20796. bottom: 6 / 784
  20797. }
  20798. },
  20799. frontAlt: {
  20800. height: math.unit(5 + 2 / 12, "feet"),
  20801. weight: math.unit(110, "lb"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/desta/front-alt.svg",
  20805. extra: 1482 / 1417
  20806. }
  20807. },
  20808. side: {
  20809. height: math.unit(5 + 2 / 12, "feet"),
  20810. weight: math.unit(110, "lb"),
  20811. name: "Side",
  20812. image: {
  20813. source: "./media/characters/desta/side.svg",
  20814. extra: 2579 / 2491,
  20815. bottom: 0.053
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Micro",
  20822. height: math.unit(6, "inches")
  20823. },
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(5 + 2 / 12, "feet"),
  20827. default: true
  20828. },
  20829. {
  20830. name: "Macro",
  20831. height: math.unit(62, "feet")
  20832. },
  20833. {
  20834. name: "Megamacro",
  20835. height: math.unit(1800, "feet")
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(10, "feet"),
  20844. weight: math.unit(700, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/storm-alystar/front.svg",
  20848. extra: 2112 / 1898,
  20849. bottom: 0.034
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Micro",
  20856. height: math.unit(3.5, "inches")
  20857. },
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(10, "feet"),
  20861. default: true
  20862. },
  20863. {
  20864. name: "Macro",
  20865. height: math.unit(400, "feet")
  20866. },
  20867. {
  20868. name: "Deific",
  20869. height: math.unit(60, "miles")
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(2.35, "meters"),
  20878. weight: math.unit(119, "kg"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/ilia/front.svg",
  20882. extra: 1285 / 1255,
  20883. bottom: 0.06
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(2.35, "meters")
  20891. },
  20892. {
  20893. name: "Macro",
  20894. height: math.unit(140, "meters"),
  20895. default: true
  20896. },
  20897. {
  20898. name: "Megamacro",
  20899. height: math.unit(100, "miles")
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20905. {
  20906. front: {
  20907. height: math.unit(6 + 5 / 12, "feet"),
  20908. weight: math.unit(190, "lb"),
  20909. name: "Front",
  20910. image: {
  20911. source: "./media/characters/kingdead/front.svg",
  20912. extra: 1228 / 1177
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Micro",
  20919. height: math.unit(7, "inches")
  20920. },
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(6 + 5 / 12, "feet")
  20924. },
  20925. {
  20926. name: "Macro",
  20927. height: math.unit(150, "feet"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Megamacro",
  20932. height: math.unit(200, "miles")
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(8, "feet"),
  20941. weight: math.unit(600, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/kyrehx/front.svg",
  20945. extra: 1195 / 1095,
  20946. bottom: 0.034
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Micro",
  20953. height: math.unit(2, "inches")
  20954. },
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(8, "feet"),
  20958. default: true
  20959. },
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(255, "feet")
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20968. {
  20969. front: {
  20970. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20971. weight: math.unit(184, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/xang/front.svg",
  20975. extra: 845 / 755
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20983. default: true
  20984. },
  20985. {
  20986. name: "Macro",
  20987. height: math.unit(0.935 * 146, "feet")
  20988. },
  20989. {
  20990. name: "Megamacro",
  20991. height: math.unit(0.935 * 3, "miles")
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20997. {
  20998. frontDressed: {
  20999. height: math.unit(5 + 7 / 12, "feet"),
  21000. weight: math.unit(140, "lb"),
  21001. name: "Front (Dressed)",
  21002. image: {
  21003. source: "./media/characters/doc-weardno/front-dressed.svg",
  21004. extra: 263 / 234
  21005. }
  21006. },
  21007. backDressed: {
  21008. height: math.unit(5 + 7 / 12, "feet"),
  21009. weight: math.unit(140, "lb"),
  21010. name: "Back (Dressed)",
  21011. image: {
  21012. source: "./media/characters/doc-weardno/back-dressed.svg",
  21013. extra: 266 / 238
  21014. }
  21015. },
  21016. front: {
  21017. height: math.unit(5 + 7 / 12, "feet"),
  21018. weight: math.unit(140, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/doc-weardno/front.svg",
  21022. extra: 254 / 233
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Micro",
  21029. height: math.unit(3, "inches")
  21030. },
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(5 + 7 / 12, "feet"),
  21034. default: true
  21035. },
  21036. {
  21037. name: "Macro",
  21038. height: math.unit(25, "feet")
  21039. },
  21040. {
  21041. name: "Megamacro",
  21042. height: math.unit(2, "miles")
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21048. {
  21049. front: {
  21050. height: math.unit(6 + 2 / 12, "feet"),
  21051. weight: math.unit(153, "lb"),
  21052. name: "Front",
  21053. image: {
  21054. source: "./media/characters/seth-whilst/front.svg",
  21055. bottom: 0.07
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Micro",
  21062. height: math.unit(5, "inches")
  21063. },
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(6 + 2 / 12, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21073. {
  21074. front: {
  21075. height: math.unit(3, "inches"),
  21076. weight: math.unit(8, "grams"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/pocket-jabari/front.svg",
  21080. extra: 1024 / 974,
  21081. bottom: 0.039
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Minimicro",
  21088. height: math.unit(8, "mm")
  21089. },
  21090. {
  21091. name: "Micro",
  21092. height: math.unit(3, "inches"),
  21093. default: true
  21094. },
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(3, "feet")
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21103. {
  21104. frontDressed: {
  21105. height: math.unit(15, "feet"),
  21106. weight: math.unit(3280, "lb"),
  21107. name: "Front (Dressed)",
  21108. image: {
  21109. source: "./media/characters/sapphy/front-dressed.svg",
  21110. extra: 1951/1654,
  21111. bottom: 194/2145
  21112. },
  21113. form: "anthro",
  21114. default: true
  21115. },
  21116. backDressed: {
  21117. height: math.unit(15, "feet"),
  21118. weight: math.unit(3280, "lb"),
  21119. name: "Back (Dressed)",
  21120. image: {
  21121. source: "./media/characters/sapphy/back-dressed.svg",
  21122. extra: 2058/1918,
  21123. bottom: 125/2183
  21124. },
  21125. form: "anthro"
  21126. },
  21127. frontNude: {
  21128. height: math.unit(15, "feet"),
  21129. weight: math.unit(3280, "lb"),
  21130. name: "Front (Nude)",
  21131. image: {
  21132. source: "./media/characters/sapphy/front-nude.svg",
  21133. extra: 1951/1654,
  21134. bottom: 194/2145
  21135. },
  21136. form: "anthro"
  21137. },
  21138. backNude: {
  21139. height: math.unit(15, "feet"),
  21140. weight: math.unit(3280, "lb"),
  21141. name: "Back (Nude)",
  21142. image: {
  21143. source: "./media/characters/sapphy/back-nude.svg",
  21144. extra: 2058/1918,
  21145. bottom: 125/2183
  21146. },
  21147. form: "anthro"
  21148. },
  21149. full: {
  21150. height: math.unit(15, "feet"),
  21151. weight: math.unit(3280, "lb"),
  21152. name: "Full",
  21153. image: {
  21154. source: "./media/characters/sapphy/full.svg",
  21155. extra: 1396/1317,
  21156. bottom: 44/1440
  21157. },
  21158. form: "anthro"
  21159. },
  21160. dick: {
  21161. height: math.unit(3.8, "feet"),
  21162. name: "Dick",
  21163. image: {
  21164. source: "./media/characters/sapphy/dick.svg"
  21165. },
  21166. form: "anthro"
  21167. },
  21168. feral: {
  21169. height: math.unit(35, "feet"),
  21170. weight: math.unit(160, "tons"),
  21171. name: "Feral",
  21172. image: {
  21173. source: "./media/characters/sapphy/feral.svg",
  21174. extra: 1050/573,
  21175. bottom: 60/1110
  21176. },
  21177. form: "feral",
  21178. default: true
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(15, "feet"),
  21185. form: "anthro"
  21186. },
  21187. {
  21188. name: "Casual Macro",
  21189. height: math.unit(120, "feet"),
  21190. form: "anthro"
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(2150, "feet"),
  21195. default: true,
  21196. form: "anthro"
  21197. },
  21198. {
  21199. name: "Megamacro",
  21200. height: math.unit(8, "miles"),
  21201. form: "anthro"
  21202. },
  21203. {
  21204. name: "Galaxy Mom",
  21205. height: math.unit(6, "megalightyears"),
  21206. form: "anthro"
  21207. },
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(35, "feet"),
  21211. form: "feral",
  21212. default: true
  21213. },
  21214. {
  21215. name: "Macro",
  21216. height: math.unit(300, "feet"),
  21217. form: "feral"
  21218. },
  21219. {
  21220. name: "Galaxy Mom",
  21221. height: math.unit(10, "megalightyears"),
  21222. form: "feral"
  21223. },
  21224. ],
  21225. {
  21226. "anthro": {
  21227. name: "Anthro",
  21228. default: true
  21229. },
  21230. "feral": {
  21231. name: "Feral"
  21232. }
  21233. }
  21234. ))
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21237. {
  21238. hyenaFront: {
  21239. height: math.unit(6, "feet"),
  21240. weight: math.unit(190, "lb"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/kiro/hyena-front.svg",
  21244. extra: 927/839,
  21245. bottom: 91/1018
  21246. },
  21247. form: "hyena",
  21248. default: true
  21249. },
  21250. front: {
  21251. height: math.unit(6, "feet"),
  21252. weight: math.unit(170, "lb"),
  21253. name: "Front",
  21254. image: {
  21255. source: "./media/characters/kiro/front.svg",
  21256. extra: 1064 / 1012,
  21257. bottom: 0.052
  21258. },
  21259. form: "folf",
  21260. default: true
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Micro",
  21266. height: math.unit(6, "inches"),
  21267. form: "folf"
  21268. },
  21269. {
  21270. name: "Normal",
  21271. height: math.unit(6, "feet"),
  21272. form: "folf",
  21273. default: true
  21274. },
  21275. {
  21276. name: "Macro",
  21277. height: math.unit(72, "feet"),
  21278. form: "folf"
  21279. },
  21280. {
  21281. name: "Micro",
  21282. height: math.unit(6, "inches"),
  21283. form: "hyena"
  21284. },
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(6, "feet"),
  21288. form: "hyena",
  21289. default: true
  21290. },
  21291. {
  21292. name: "Macro",
  21293. height: math.unit(72, "feet"),
  21294. form: "hyena"
  21295. },
  21296. ],
  21297. {
  21298. "hyena": {
  21299. name: "Hyena",
  21300. default: true
  21301. },
  21302. "folf": {
  21303. name: "Folf",
  21304. },
  21305. }
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(5 + 9 / 12, "feet"),
  21312. weight: math.unit(175, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/irishfox/front.svg",
  21316. extra: 1912 / 1680,
  21317. bottom: 0.02
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Nano",
  21324. height: math.unit(1, "mm")
  21325. },
  21326. {
  21327. name: "Micro",
  21328. height: math.unit(2, "inches")
  21329. },
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(5 + 9 / 12, "feet"),
  21333. default: true
  21334. },
  21335. {
  21336. name: "Macro",
  21337. height: math.unit(45, "feet")
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21343. {
  21344. front: {
  21345. height: math.unit(6 + 1 / 12, "feet"),
  21346. weight: math.unit(75, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/aronai-sieyes/front.svg",
  21350. extra: 1532/1450,
  21351. bottom: 42/1574
  21352. }
  21353. },
  21354. side: {
  21355. height: math.unit(6 + 1 / 12, "feet"),
  21356. weight: math.unit(75, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/aronai-sieyes/side.svg",
  21360. extra: 1422/1365,
  21361. bottom: 148/1570
  21362. }
  21363. },
  21364. back: {
  21365. height: math.unit(6 + 1 / 12, "feet"),
  21366. weight: math.unit(75, "lb"),
  21367. name: "Back",
  21368. image: {
  21369. source: "./media/characters/aronai-sieyes/back.svg",
  21370. extra: 1526/1464,
  21371. bottom: 51/1577
  21372. }
  21373. },
  21374. dressed: {
  21375. height: math.unit(6 + 1 / 12, "feet"),
  21376. weight: math.unit(75, "lb"),
  21377. name: "Dressed",
  21378. image: {
  21379. source: "./media/characters/aronai-sieyes/dressed.svg",
  21380. extra: 1559/1483,
  21381. bottom: 39/1598
  21382. }
  21383. },
  21384. slit: {
  21385. height: math.unit(1.3, "feet"),
  21386. name: "Slit",
  21387. image: {
  21388. source: "./media/characters/aronai-sieyes/slit.svg"
  21389. }
  21390. },
  21391. slitSpread: {
  21392. height: math.unit(0.9, "feet"),
  21393. name: "Slit (Spread)",
  21394. image: {
  21395. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21396. }
  21397. },
  21398. rump: {
  21399. height: math.unit(1.3, "feet"),
  21400. name: "Rump",
  21401. image: {
  21402. source: "./media/characters/aronai-sieyes/rump.svg"
  21403. }
  21404. },
  21405. maw: {
  21406. height: math.unit(1.25, "feet"),
  21407. name: "Maw",
  21408. image: {
  21409. source: "./media/characters/aronai-sieyes/maw.svg"
  21410. }
  21411. },
  21412. feral: {
  21413. height: math.unit(18, "feet"),
  21414. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21415. name: "Feral",
  21416. image: {
  21417. source: "./media/characters/aronai-sieyes/feral.svg",
  21418. extra: 1530 / 1240,
  21419. bottom: 0.035
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Micro",
  21426. height: math.unit(2, "inches")
  21427. },
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(6 + 1 / 12, "feet"),
  21431. default: true
  21432. }
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(12, "feet"),
  21440. weight: math.unit(410, "kg"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/xuna/front.svg",
  21444. extra: 2184 / 1980
  21445. }
  21446. },
  21447. side: {
  21448. height: math.unit(12, "feet"),
  21449. weight: math.unit(410, "kg"),
  21450. name: "Side",
  21451. image: {
  21452. source: "./media/characters/xuna/side.svg",
  21453. extra: 2184 / 1980
  21454. }
  21455. },
  21456. back: {
  21457. height: math.unit(12, "feet"),
  21458. weight: math.unit(410, "kg"),
  21459. name: "Back",
  21460. image: {
  21461. source: "./media/characters/xuna/back.svg",
  21462. extra: 2184 / 1980
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Nano glow",
  21469. height: math.unit(10, "nm")
  21470. },
  21471. {
  21472. name: "Micro floof",
  21473. height: math.unit(0.3, "m")
  21474. },
  21475. {
  21476. name: "Huggable softy boi",
  21477. height: math.unit(3.6576, "m"),
  21478. default: true
  21479. },
  21480. {
  21481. name: "Admirable floof",
  21482. height: math.unit(80, "meters")
  21483. },
  21484. {
  21485. name: "Gentle macro",
  21486. height: math.unit(300, "meters")
  21487. },
  21488. {
  21489. name: "Very careful floof",
  21490. height: math.unit(3200, "meters")
  21491. },
  21492. {
  21493. name: "The mega floof",
  21494. height: math.unit(36000, "meters")
  21495. },
  21496. {
  21497. name: "Giga-fur-Wicker",
  21498. height: math.unit(4800000, "meters")
  21499. },
  21500. {
  21501. name: "Licky world",
  21502. height: math.unit(20000000, "meters")
  21503. },
  21504. {
  21505. name: "Floofy cyan sun",
  21506. height: math.unit(1500000000, "meters")
  21507. },
  21508. {
  21509. name: "Milky Wicker",
  21510. height: math.unit(1000000000000000000000, "meters")
  21511. },
  21512. {
  21513. name: "The observing Wicker",
  21514. height: math.unit(999999999999999999999999999, "meters")
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(5 + 9 / 12, "feet"),
  21523. weight: math.unit(150, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/arokha-sieyes/front.svg",
  21527. extra: 1425 / 1284,
  21528. bottom: 0.05
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Normal",
  21535. height: math.unit(5 + 9 / 12, "feet")
  21536. },
  21537. {
  21538. name: "Macro",
  21539. height: math.unit(30, "meters"),
  21540. default: true
  21541. },
  21542. ]
  21543. ))
  21544. characterMakers.push(() => makeCharacter(
  21545. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21546. {
  21547. front: {
  21548. height: math.unit(6, "feet"),
  21549. weight: math.unit(180, "lb"),
  21550. name: "Front",
  21551. image: {
  21552. source: "./media/characters/arokh-sieyes/front.svg",
  21553. extra: 1830 / 1769,
  21554. bottom: 0.01
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(6, "feet")
  21562. },
  21563. {
  21564. name: "Macro",
  21565. height: math.unit(30, "meters"),
  21566. default: true
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21572. {
  21573. side: {
  21574. height: math.unit(13 + 1 / 12, "feet"),
  21575. weight: math.unit(8.5, "tonnes"),
  21576. preyCapacity: math.unit(36, "people"),
  21577. name: "Side",
  21578. image: {
  21579. source: "./media/characters/goldeneye/side.svg",
  21580. extra: 1139/741,
  21581. bottom: 98/1237
  21582. }
  21583. },
  21584. front: {
  21585. height: math.unit(5.1, "feet"),
  21586. weight: math.unit(8.5, "tonnes"),
  21587. preyCapacity: math.unit(36, "people"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/goldeneye/front.svg",
  21591. extra: 635/365,
  21592. bottom: 598/1233
  21593. }
  21594. },
  21595. maw: {
  21596. height: math.unit(6.6, "feet"),
  21597. name: "Maw",
  21598. image: {
  21599. source: "./media/characters/goldeneye/maw.svg"
  21600. }
  21601. },
  21602. headFront: {
  21603. height: math.unit(8, "feet"),
  21604. name: "Head (Front)",
  21605. image: {
  21606. source: "./media/characters/goldeneye/head-front.svg"
  21607. }
  21608. },
  21609. headSide: {
  21610. height: math.unit(6, "feet"),
  21611. name: "Head (Side)",
  21612. image: {
  21613. source: "./media/characters/goldeneye/head-side.svg"
  21614. }
  21615. },
  21616. headBack: {
  21617. height: math.unit(8, "feet"),
  21618. name: "Head (Back)",
  21619. image: {
  21620. source: "./media/characters/goldeneye/head-back.svg"
  21621. }
  21622. },
  21623. paw: {
  21624. height: math.unit(3.4, "feet"),
  21625. name: "Paw",
  21626. image: {
  21627. source: "./media/characters/goldeneye/paw.svg"
  21628. }
  21629. },
  21630. toering: {
  21631. height: math.unit(0.45, "feet"),
  21632. name: "Toering",
  21633. image: {
  21634. source: "./media/characters/goldeneye/toering.svg"
  21635. }
  21636. },
  21637. eyes: {
  21638. height: math.unit(0.5, "feet"),
  21639. name: "Eyes",
  21640. image: {
  21641. source: "./media/characters/goldeneye/eyes.svg"
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(13 + 1 / 12, "feet"),
  21649. default: true
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21655. {
  21656. front: {
  21657. height: math.unit(6 + 1 / 12, "feet"),
  21658. weight: math.unit(210, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/leonardo-lycheborne/front.svg",
  21662. extra: 776/723,
  21663. bottom: 34/810
  21664. }
  21665. },
  21666. side: {
  21667. height: math.unit(6 + 1 / 12, "feet"),
  21668. weight: math.unit(210, "lb"),
  21669. name: "Side",
  21670. image: {
  21671. source: "./media/characters/leonardo-lycheborne/side.svg",
  21672. extra: 780/728,
  21673. bottom: 12/792
  21674. }
  21675. },
  21676. back: {
  21677. height: math.unit(6 + 1 / 12, "feet"),
  21678. weight: math.unit(210, "lb"),
  21679. name: "Back",
  21680. image: {
  21681. source: "./media/characters/leonardo-lycheborne/back.svg",
  21682. extra: 775/721,
  21683. bottom: 17/792
  21684. }
  21685. },
  21686. hand: {
  21687. height: math.unit(1.08, "feet"),
  21688. name: "Hand",
  21689. image: {
  21690. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21691. }
  21692. },
  21693. foot: {
  21694. height: math.unit(1.32, "feet"),
  21695. name: "Foot",
  21696. image: {
  21697. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21698. }
  21699. },
  21700. maw: {
  21701. height: math.unit(1, "feet"),
  21702. name: "Maw",
  21703. image: {
  21704. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21705. }
  21706. },
  21707. were: {
  21708. height: math.unit(20, "feet"),
  21709. weight: math.unit(7800, "lb"),
  21710. name: "Were",
  21711. image: {
  21712. source: "./media/characters/leonardo-lycheborne/were.svg",
  21713. extra: 1224/1165,
  21714. bottom: 72/1296
  21715. }
  21716. },
  21717. feral: {
  21718. height: math.unit(7.5, "feet"),
  21719. weight: math.unit(600, "lb"),
  21720. name: "Feral",
  21721. image: {
  21722. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21723. extra: 797/702,
  21724. bottom: 139/936
  21725. }
  21726. },
  21727. taur: {
  21728. height: math.unit(11, "feet"),
  21729. weight: math.unit(3300, "lb"),
  21730. name: "Taur",
  21731. image: {
  21732. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21733. extra: 1271/1197,
  21734. bottom: 47/1318
  21735. }
  21736. },
  21737. barghest: {
  21738. height: math.unit(11, "feet"),
  21739. weight: math.unit(1300, "lb"),
  21740. name: "Barghest",
  21741. image: {
  21742. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21743. extra: 1291/1204,
  21744. bottom: 37/1328
  21745. }
  21746. },
  21747. dick: {
  21748. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21749. name: "Dick",
  21750. image: {
  21751. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21752. }
  21753. },
  21754. dickWere: {
  21755. height: math.unit((20) / 3.8, "feet"),
  21756. name: "Dick (Were)",
  21757. image: {
  21758. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21759. }
  21760. },
  21761. },
  21762. [
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(6 + 1 / 12, "feet"),
  21766. default: true
  21767. },
  21768. ]
  21769. ))
  21770. characterMakers.push(() => makeCharacter(
  21771. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21772. {
  21773. front: {
  21774. height: math.unit(10, "feet"),
  21775. weight: math.unit(350, "lb"),
  21776. name: "Front",
  21777. image: {
  21778. source: "./media/characters/jet/front.svg",
  21779. extra: 2050 / 1980,
  21780. bottom: 0.013
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(10, "feet"),
  21785. weight: math.unit(350, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/jet/back.svg",
  21789. extra: 2050 / 1980,
  21790. bottom: 0.013
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Micro",
  21797. height: math.unit(6, "inches")
  21798. },
  21799. {
  21800. name: "Normal",
  21801. height: math.unit(10, "feet"),
  21802. default: true
  21803. },
  21804. {
  21805. name: "Macro",
  21806. height: math.unit(100, "feet")
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21812. {
  21813. front: {
  21814. height: math.unit(15, "feet"),
  21815. weight: math.unit(2800, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/tanarath/front.svg",
  21819. extra: 2392 / 2220,
  21820. bottom: 0.03
  21821. }
  21822. },
  21823. back: {
  21824. height: math.unit(15, "feet"),
  21825. weight: math.unit(2800, "lb"),
  21826. name: "Back",
  21827. image: {
  21828. source: "./media/characters/tanarath/back.svg",
  21829. extra: 2392 / 2220,
  21830. bottom: 0.03
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(15, "feet"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(7 + 1 / 12, "feet"),
  21847. weight: math.unit(175, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/patty-cattybatty/front.svg",
  21851. extra: 908 / 874,
  21852. bottom: 0.025
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Micro",
  21859. height: math.unit(1, "inch")
  21860. },
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(7 + 1 / 12, "feet")
  21864. },
  21865. {
  21866. name: "Mini Macro",
  21867. height: math.unit(155, "feet")
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(1077, "feet")
  21872. },
  21873. {
  21874. name: "Mega Macro",
  21875. height: math.unit(47650, "feet"),
  21876. default: true
  21877. },
  21878. {
  21879. name: "Giga Macro",
  21880. height: math.unit(440, "miles")
  21881. },
  21882. {
  21883. name: "Tera Macro",
  21884. height: math.unit(8700, "miles")
  21885. },
  21886. {
  21887. name: "Planetary Macro",
  21888. height: math.unit(32700, "miles")
  21889. },
  21890. {
  21891. name: "Solar Macro",
  21892. height: math.unit(550000, "miles")
  21893. },
  21894. {
  21895. name: "Celestial Macro",
  21896. height: math.unit(2.5, "AU")
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(4 + 5 / 12, "feet"),
  21905. weight: math.unit(90, "lb"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/cappu/front.svg",
  21909. extra: 1247 / 1152,
  21910. bottom: 0.012
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(4 + 5 / 12, "feet"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21924. {
  21925. frontDressed: {
  21926. height: math.unit(70, "cm"),
  21927. weight: math.unit(6, "kg"),
  21928. name: "Front (Dressed)",
  21929. image: {
  21930. source: "./media/characters/sebi/front-dressed.svg",
  21931. extra: 713.5 / 686.5,
  21932. bottom: 0.003
  21933. }
  21934. },
  21935. front: {
  21936. height: math.unit(70, "cm"),
  21937. weight: math.unit(5, "kg"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/sebi/front.svg",
  21941. extra: 713.5 / 686.5,
  21942. bottom: 0.003
  21943. }
  21944. }
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(70, "cm"),
  21950. default: true
  21951. },
  21952. {
  21953. name: "Macro",
  21954. height: math.unit(8, "meters")
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21960. {
  21961. front: {
  21962. height: math.unit(6, "feet"),
  21963. weight: math.unit(150, "lb"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/typhek/front.svg",
  21967. extra: 1948 / 1929,
  21968. bottom: 0.025
  21969. }
  21970. },
  21971. side: {
  21972. height: math.unit(6, "feet"),
  21973. weight: math.unit(150, "lb"),
  21974. name: "Side",
  21975. image: {
  21976. source: "./media/characters/typhek/side.svg",
  21977. extra: 2034 / 2010,
  21978. bottom: 0.003
  21979. }
  21980. },
  21981. back: {
  21982. height: math.unit(6, "feet"),
  21983. weight: math.unit(150, "lb"),
  21984. name: "Back",
  21985. image: {
  21986. source: "./media/characters/typhek/back.svg",
  21987. extra: 2005 / 1978,
  21988. bottom: 0.004
  21989. }
  21990. },
  21991. palm: {
  21992. height: math.unit(1.2, "feet"),
  21993. name: "Palm",
  21994. image: {
  21995. source: "./media/characters/typhek/palm.svg"
  21996. }
  21997. },
  21998. fist: {
  21999. height: math.unit(1.1, "feet"),
  22000. name: "Fist",
  22001. image: {
  22002. source: "./media/characters/typhek/fist.svg"
  22003. }
  22004. },
  22005. foot: {
  22006. height: math.unit(1.57, "feet"),
  22007. name: "Foot",
  22008. image: {
  22009. source: "./media/characters/typhek/foot.svg"
  22010. }
  22011. },
  22012. sole: {
  22013. height: math.unit(2.05, "feet"),
  22014. name: "Sole",
  22015. image: {
  22016. source: "./media/characters/typhek/sole.svg"
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Macro",
  22023. height: math.unit(40, "stories"),
  22024. default: true
  22025. },
  22026. {
  22027. name: "Megamacro",
  22028. height: math.unit(1, "mile")
  22029. },
  22030. {
  22031. name: "Gigamacro",
  22032. height: math.unit(4000, "solarradii")
  22033. },
  22034. {
  22035. name: "Universal",
  22036. height: math.unit(1.1, "universes")
  22037. }
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22042. {
  22043. side: {
  22044. height: math.unit(5 + 7 / 12, "feet"),
  22045. weight: math.unit(150, "lb"),
  22046. name: "Side",
  22047. image: {
  22048. source: "./media/characters/kassy/side.svg",
  22049. extra: 1280 / 1225,
  22050. bottom: 0.002
  22051. }
  22052. },
  22053. front: {
  22054. height: math.unit(5 + 7 / 12, "feet"),
  22055. weight: math.unit(150, "lb"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/kassy/front.svg",
  22059. extra: 1280 / 1225,
  22060. bottom: 0.025
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(5 + 7 / 12, "feet"),
  22065. weight: math.unit(150, "lb"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/kassy/back.svg",
  22069. extra: 1280 / 1225,
  22070. bottom: 0.002
  22071. }
  22072. },
  22073. foot: {
  22074. height: math.unit(1.266, "feet"),
  22075. name: "Foot",
  22076. image: {
  22077. source: "./media/characters/kassy/foot.svg"
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Normal",
  22084. height: math.unit(5 + 7 / 12, "feet")
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(137, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Megamacro",
  22093. height: math.unit(1, "mile")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(6 + 1 / 12, "feet"),
  22102. weight: math.unit(200, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/neil/front.svg",
  22106. extra: 1326 / 1250,
  22107. bottom: 0.023
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(6 + 1 / 12, "feet"),
  22115. default: true
  22116. },
  22117. {
  22118. name: "Macro",
  22119. height: math.unit(200, "feet")
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(5 + 9 / 12, "feet"),
  22128. weight: math.unit(190, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/atticus/front.svg",
  22132. extra: 2934 / 2785,
  22133. bottom: 0.025
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(5 + 9 / 12, "feet"),
  22141. default: true
  22142. },
  22143. {
  22144. name: "Macro",
  22145. height: math.unit(180, "feet")
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22151. {
  22152. side: {
  22153. height: math.unit(9, "feet"),
  22154. weight: math.unit(650, "lb"),
  22155. name: "Side",
  22156. image: {
  22157. source: "./media/characters/milo/side.svg",
  22158. extra: 2644 / 2310,
  22159. bottom: 0.032
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(9, "feet"),
  22167. default: true
  22168. },
  22169. {
  22170. name: "Macro",
  22171. height: math.unit(300, "feet")
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22177. {
  22178. side: {
  22179. height: math.unit(8, "meters"),
  22180. weight: math.unit(90000, "kg"),
  22181. name: "Side",
  22182. image: {
  22183. source: "./media/characters/ijzer/side.svg",
  22184. extra: 2756 / 1600,
  22185. bottom: 0.01
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Small",
  22192. height: math.unit(3, "meters")
  22193. },
  22194. {
  22195. name: "Normal",
  22196. height: math.unit(8, "meters"),
  22197. default: true
  22198. },
  22199. {
  22200. name: "Normal+",
  22201. height: math.unit(10, "meters")
  22202. },
  22203. {
  22204. name: "Bigger",
  22205. height: math.unit(24, "meters")
  22206. },
  22207. {
  22208. name: "Huge",
  22209. height: math.unit(80, "meters")
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(6 + 2 / 12, "feet"),
  22218. weight: math.unit(153, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/luca-cervicum/front.svg",
  22222. extra: 370 / 327,
  22223. bottom: 0.015
  22224. }
  22225. },
  22226. back: {
  22227. height: math.unit(6 + 2 / 12, "feet"),
  22228. weight: math.unit(153, "lb"),
  22229. name: "Back",
  22230. image: {
  22231. source: "./media/characters/luca-cervicum/back.svg",
  22232. extra: 367 / 333,
  22233. bottom: 0.005
  22234. }
  22235. },
  22236. frontGear: {
  22237. height: math.unit(6 + 2 / 12, "feet"),
  22238. weight: math.unit(173, "lb"),
  22239. name: "Front (Gear)",
  22240. image: {
  22241. source: "./media/characters/luca-cervicum/front-gear.svg",
  22242. extra: 377 / 333,
  22243. bottom: 0.006
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(6 + 2 / 12, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(6 + 1 / 12, "feet"),
  22260. weight: math.unit(304, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/oliver/front.svg",
  22264. extra: 157 / 143,
  22265. bottom: 0.08
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(6 + 1 / 12, "feet"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22279. {
  22280. front: {
  22281. height: math.unit(5 + 7 / 12, "feet"),
  22282. weight: math.unit(140, "lb"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/shane/front.svg",
  22286. extra: 304 / 289,
  22287. bottom: 0.005
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(5 + 7 / 12, "feet"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22301. {
  22302. front: {
  22303. height: math.unit(5 + 9 / 12, "feet"),
  22304. weight: math.unit(178, "lb"),
  22305. name: "Front",
  22306. image: {
  22307. source: "./media/characters/shin/front.svg",
  22308. extra: 159 / 151,
  22309. bottom: 0.015
  22310. }
  22311. },
  22312. },
  22313. [
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(5 + 9 / 12, "feet"),
  22317. default: true
  22318. },
  22319. ]
  22320. ))
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22323. {
  22324. front: {
  22325. height: math.unit(5 + 10 / 12, "feet"),
  22326. weight: math.unit(168, "lb"),
  22327. name: "Front",
  22328. image: {
  22329. source: "./media/characters/xerxes/front.svg",
  22330. extra: 282 / 260,
  22331. bottom: 0.045
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(5 + 10 / 12, "feet"),
  22339. default: true
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22345. {
  22346. front: {
  22347. height: math.unit(6 + 7 / 12, "feet"),
  22348. weight: math.unit(208, "lb"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/chaska/front.svg",
  22352. extra: 332 / 319,
  22353. bottom: 0.015
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(6 + 7 / 12, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(5 + 8 / 12, "feet"),
  22370. weight: math.unit(208, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/enuk/front.svg",
  22374. extra: 437 / 406,
  22375. bottom: 0.02
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(5 + 8 / 12, "feet"),
  22383. default: true
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(5 + 10 / 12, "feet"),
  22392. weight: math.unit(252, "lb"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/bruun/front.svg",
  22396. extra: 197 / 187,
  22397. bottom: 0.012
  22398. }
  22399. },
  22400. },
  22401. [
  22402. {
  22403. name: "Normal",
  22404. height: math.unit(5 + 10 / 12, "feet"),
  22405. default: true
  22406. },
  22407. ]
  22408. ))
  22409. characterMakers.push(() => makeCharacter(
  22410. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22411. {
  22412. front: {
  22413. height: math.unit(6 + 10 / 12, "feet"),
  22414. weight: math.unit(255, "lb"),
  22415. name: "Front",
  22416. image: {
  22417. source: "./media/characters/alexeev/front.svg",
  22418. extra: 213 / 200,
  22419. bottom: 0.05
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(6 + 10 / 12, "feet"),
  22427. default: true
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(2 + 8 / 12, "feet"),
  22436. weight: math.unit(22, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/evelyn/front.svg",
  22440. extra: 208 / 180
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(2 + 8 / 12, "feet"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22454. {
  22455. front: {
  22456. height: math.unit(5 + 9 / 12, "feet"),
  22457. weight: math.unit(139, "lb"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/inca/front.svg",
  22461. extra: 294 / 291,
  22462. bottom: 0.03
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(5 + 9 / 12, "feet"),
  22470. default: true
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22476. {
  22477. front: {
  22478. height: math.unit(6 + 3 / 12, "feet"),
  22479. weight: math.unit(185, "lb"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/mera/front.svg",
  22483. extra: 291 / 277,
  22484. bottom: 0.03
  22485. }
  22486. },
  22487. },
  22488. [
  22489. {
  22490. name: "Normal",
  22491. height: math.unit(6 + 3 / 12, "feet"),
  22492. default: true
  22493. },
  22494. ]
  22495. ))
  22496. characterMakers.push(() => makeCharacter(
  22497. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22498. {
  22499. front: {
  22500. height: math.unit(6 + 7 / 12, "feet"),
  22501. weight: math.unit(160, "lb"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/ceres/front.svg",
  22505. extra: 1023 / 950,
  22506. bottom: 0.027
  22507. }
  22508. },
  22509. back: {
  22510. height: math.unit(6 + 7 / 12, "feet"),
  22511. weight: math.unit(160, "lb"),
  22512. name: "Back",
  22513. image: {
  22514. source: "./media/characters/ceres/back.svg",
  22515. extra: 1023 / 950
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Normal",
  22522. height: math.unit(6 + 7 / 12, "feet"),
  22523. default: true
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(5 + 10 / 12, "feet"),
  22532. weight: math.unit(150, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/kris/front.svg",
  22536. extra: 885 / 803,
  22537. bottom: 0.03
  22538. }
  22539. },
  22540. },
  22541. [
  22542. {
  22543. name: "Normal",
  22544. height: math.unit(5 + 10 / 12, "feet"),
  22545. default: true
  22546. },
  22547. ]
  22548. ))
  22549. characterMakers.push(() => makeCharacter(
  22550. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22551. {
  22552. dragon_front: {
  22553. height: math.unit(5, "feet"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/taluthus/dragon-front.svg",
  22557. extra: 1203/1098,
  22558. bottom: 46/1249
  22559. },
  22560. form: "dragon",
  22561. default: true
  22562. },
  22563. dragon_maw: {
  22564. height: math.unit(2.35, "feet"),
  22565. name: "Maw",
  22566. image: {
  22567. source: "./media/characters/taluthus/dragon-maw.svg"
  22568. },
  22569. form: "dragon",
  22570. },
  22571. kitsune_front: {
  22572. height: math.unit(7, "feet"),
  22573. name: "Front",
  22574. image: {
  22575. source: "./media/characters/taluthus/kitsune-front.svg",
  22576. extra: 900/841,
  22577. bottom: 65/965
  22578. },
  22579. form: "kitsune",
  22580. default: true
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(5, "feet"),
  22587. form: "dragon",
  22588. default: true,
  22589. },
  22590. {
  22591. name: "Normal",
  22592. height: math.unit(7, "feet"),
  22593. form: "kitsune",
  22594. default: true
  22595. },
  22596. {
  22597. name: "Macro",
  22598. height: math.unit(300, "feet"),
  22599. allForms: true
  22600. },
  22601. ],
  22602. {
  22603. "dragon": {
  22604. name: "Dragon",
  22605. default: true
  22606. },
  22607. "kitsune": {
  22608. name: "Kitsune",
  22609. },
  22610. }
  22611. ))
  22612. characterMakers.push(() => makeCharacter(
  22613. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22614. {
  22615. front: {
  22616. height: math.unit(5 + 9 / 12, "feet"),
  22617. weight: math.unit(145, "lb"),
  22618. name: "Front",
  22619. image: {
  22620. source: "./media/characters/dawn/front.svg",
  22621. extra: 2094 / 2016,
  22622. bottom: 0.025
  22623. }
  22624. },
  22625. back: {
  22626. height: math.unit(5 + 9 / 12, "feet"),
  22627. weight: math.unit(160, "lb"),
  22628. name: "Back",
  22629. image: {
  22630. source: "./media/characters/dawn/back.svg",
  22631. extra: 2112 / 2080,
  22632. bottom: 0.005
  22633. }
  22634. },
  22635. },
  22636. [
  22637. {
  22638. name: "Normal",
  22639. height: math.unit(6 + 7 / 12, "feet"),
  22640. default: true
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22646. {
  22647. anthro: {
  22648. height: math.unit(8 + 3 / 12, "feet"),
  22649. weight: math.unit(450, "lb"),
  22650. name: "Anthro",
  22651. image: {
  22652. source: "./media/characters/arador/anthro.svg",
  22653. extra: 1835 / 1718,
  22654. bottom: 0.025
  22655. }
  22656. },
  22657. feral: {
  22658. height: math.unit(4, "feet"),
  22659. weight: math.unit(200, "lb"),
  22660. name: "Feral",
  22661. image: {
  22662. source: "./media/characters/arador/feral.svg",
  22663. extra: 1683 / 1514,
  22664. bottom: 0.07
  22665. }
  22666. },
  22667. },
  22668. [
  22669. {
  22670. name: "Normal",
  22671. height: math.unit(8 + 3 / 12, "feet")
  22672. },
  22673. {
  22674. name: "Macro",
  22675. height: math.unit(82.5, "feet"),
  22676. default: true
  22677. },
  22678. ]
  22679. ))
  22680. characterMakers.push(() => makeCharacter(
  22681. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22682. {
  22683. front: {
  22684. height: math.unit(5 + 10 / 12, "feet"),
  22685. weight: math.unit(125, "lb"),
  22686. name: "Front",
  22687. image: {
  22688. source: "./media/characters/dharsi/front.svg",
  22689. extra: 716 / 630,
  22690. bottom: 0.035
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Nano",
  22697. height: math.unit(100, "nm")
  22698. },
  22699. {
  22700. name: "Micro",
  22701. height: math.unit(2, "inches")
  22702. },
  22703. {
  22704. name: "Normal",
  22705. height: math.unit(5 + 10 / 12, "feet"),
  22706. default: true
  22707. },
  22708. {
  22709. name: "Macro",
  22710. height: math.unit(1000, "feet")
  22711. },
  22712. {
  22713. name: "Megamacro",
  22714. height: math.unit(10, "miles")
  22715. },
  22716. {
  22717. name: "Gigamacro",
  22718. height: math.unit(3000, "miles")
  22719. },
  22720. {
  22721. name: "Teramacro",
  22722. height: math.unit(500000, "miles")
  22723. },
  22724. {
  22725. name: "Teramacro+",
  22726. height: math.unit(30, "galaxies")
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(6, "feet"),
  22735. weight: math.unit(150, "lb"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/deathy/front.svg",
  22739. extra: 1552 / 1463,
  22740. bottom: 0.025
  22741. }
  22742. },
  22743. side: {
  22744. height: math.unit(6, "feet"),
  22745. weight: math.unit(150, "lb"),
  22746. name: "Side",
  22747. image: {
  22748. source: "./media/characters/deathy/side.svg",
  22749. extra: 1604 / 1455,
  22750. bottom: 0.025
  22751. }
  22752. },
  22753. back: {
  22754. height: math.unit(6, "feet"),
  22755. weight: math.unit(150, "lb"),
  22756. name: "Back",
  22757. image: {
  22758. source: "./media/characters/deathy/back.svg",
  22759. extra: 1580 / 1463,
  22760. bottom: 0.005
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Micro",
  22767. height: math.unit(5, "millimeters")
  22768. },
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(6 + 5 / 12, "feet"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22778. {
  22779. front: {
  22780. height: math.unit(16, "feet"),
  22781. weight: math.unit(4000, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/juniper/front.svg",
  22785. bottom: 0.04
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Normal",
  22792. height: math.unit(16, "feet"),
  22793. default: true
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(6, "feet"),
  22802. weight: math.unit(150, "lb"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/hipster/front.svg",
  22806. extra: 1312 / 1209,
  22807. bottom: 0.025
  22808. }
  22809. },
  22810. back: {
  22811. height: math.unit(6, "feet"),
  22812. weight: math.unit(150, "lb"),
  22813. name: "Back",
  22814. image: {
  22815. source: "./media/characters/hipster/back.svg",
  22816. extra: 1281 / 1196,
  22817. bottom: 0.01
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Micro",
  22824. height: math.unit(1, "mm")
  22825. },
  22826. {
  22827. name: "Normal",
  22828. height: math.unit(4, "inches"),
  22829. default: true
  22830. },
  22831. {
  22832. name: "Macro",
  22833. height: math.unit(500, "feet")
  22834. },
  22835. {
  22836. name: "Megamacro",
  22837. height: math.unit(1000, "miles")
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(6, "feet"),
  22846. weight: math.unit(150, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/tendirmuldr/front.svg",
  22850. extra: 1878 / 1772,
  22851. bottom: 0.015
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Megamacro",
  22858. height: math.unit(1500, "miles"),
  22859. default: true
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22865. {
  22866. front: {
  22867. height: math.unit(14, "feet"),
  22868. weight: math.unit(12000, "lb"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/mort/front.svg",
  22872. extra: 365 / 318,
  22873. bottom: 0.01
  22874. }
  22875. },
  22876. side: {
  22877. height: math.unit(14, "feet"),
  22878. weight: math.unit(12000, "lb"),
  22879. name: "Side",
  22880. image: {
  22881. source: "./media/characters/mort/side.svg",
  22882. extra: 365 / 318,
  22883. bottom: 0.052
  22884. },
  22885. default: true
  22886. },
  22887. back: {
  22888. height: math.unit(14, "feet"),
  22889. weight: math.unit(12000, "lb"),
  22890. name: "Back",
  22891. image: {
  22892. source: "./media/characters/mort/back.svg",
  22893. extra: 371 / 332,
  22894. bottom: 0.18
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(14, "feet"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22908. {
  22909. front: {
  22910. height: math.unit(8, "feet"),
  22911. weight: math.unit(1, "ton"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/lycoa/front.svg",
  22915. extra: 1836/1728,
  22916. bottom: 81/1917
  22917. }
  22918. },
  22919. back: {
  22920. height: math.unit(8, "feet"),
  22921. weight: math.unit(1, "ton"),
  22922. name: "Back",
  22923. image: {
  22924. source: "./media/characters/lycoa/back.svg",
  22925. extra: 1785/1720,
  22926. bottom: 91/1876
  22927. }
  22928. },
  22929. head: {
  22930. height: math.unit(1.6243, "feet"),
  22931. name: "Head",
  22932. image: {
  22933. source: "./media/characters/lycoa/head.svg",
  22934. extra: 1011/782,
  22935. bottom: 0/1011
  22936. }
  22937. },
  22938. tailmaw: {
  22939. height: math.unit(1.9, "feet"),
  22940. name: "Tailmaw",
  22941. image: {
  22942. source: "./media/characters/lycoa/tailmaw.svg"
  22943. }
  22944. },
  22945. tentacles: {
  22946. height: math.unit(2.1, "feet"),
  22947. name: "Tentacles",
  22948. image: {
  22949. source: "./media/characters/lycoa/tentacles.svg"
  22950. }
  22951. },
  22952. dick: {
  22953. height: math.unit(1.73, "feet"),
  22954. name: "Dick",
  22955. image: {
  22956. source: "./media/characters/lycoa/dick.svg"
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(8, "feet"),
  22964. default: true
  22965. },
  22966. {
  22967. name: "Macro",
  22968. height: math.unit(30, "feet")
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22974. {
  22975. front: {
  22976. height: math.unit(4 + 2 / 12, "feet"),
  22977. weight: math.unit(70, "lb"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/naldara/front.svg",
  22981. extra: 1664/1387,
  22982. bottom: 81/1745
  22983. },
  22984. form: "anthro",
  22985. default: true
  22986. },
  22987. naga: {
  22988. height: math.unit(20, "feet"),
  22989. weight: math.unit(15000, "kg"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/naldara/naga.svg",
  22993. extra: 1590/1396,
  22994. bottom: 285/1875
  22995. },
  22996. form: "naga",
  22997. default: true
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Normal",
  23003. height: math.unit(4 + 2 / 12, "feet"),
  23004. form: "anthro",
  23005. default: true
  23006. },
  23007. {
  23008. name: "Normal",
  23009. height: math.unit(20, "feet"),
  23010. form: "naga",
  23011. default: true
  23012. },
  23013. ],
  23014. {
  23015. "anthro": {
  23016. name: "Anthro",
  23017. default: true
  23018. },
  23019. "naga": {
  23020. name: "Naga"
  23021. }
  23022. }
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23026. {
  23027. front: {
  23028. height: math.unit(13 + 7 / 12, "feet"),
  23029. weight: math.unit(1500, "lb"),
  23030. name: "Front",
  23031. image: {
  23032. source: "./media/characters/briar/front.svg",
  23033. extra: 1223/1157,
  23034. bottom: 123/1346
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Normal",
  23041. height: math.unit(13 + 7 / 12, "feet"),
  23042. default: true
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23048. {
  23049. side: {
  23050. height: math.unit(16, "feet"),
  23051. weight: math.unit(500, "lb"),
  23052. name: "Side",
  23053. image: {
  23054. source: "./media/characters/vanguard/side.svg",
  23055. extra: 1022/914,
  23056. bottom: 30/1052
  23057. }
  23058. },
  23059. sideAlt: {
  23060. height: math.unit(10, "feet"),
  23061. weight: math.unit(500, "lb"),
  23062. name: "Side (Alt)",
  23063. image: {
  23064. source: "./media/characters/vanguard/side-alt.svg",
  23065. extra: 502 / 425,
  23066. bottom: 0.087
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Normal",
  23073. height: math.unit(17.71, "feet"),
  23074. default: true
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23080. {
  23081. front: {
  23082. height: math.unit(7.5, "feet"),
  23083. weight: math.unit(2, "lb"),
  23084. name: "Front",
  23085. image: {
  23086. source: "./media/characters/artemis/work-safe-front.svg",
  23087. extra: 1192 / 1075,
  23088. bottom: 0.07
  23089. },
  23090. form: "work-safe",
  23091. default: true
  23092. },
  23093. frontNsfw: {
  23094. height: math.unit(7.5, "feet"),
  23095. weight: math.unit(2, "lb"),
  23096. name: "Front",
  23097. image: {
  23098. source: "./media/characters/artemis/calibrating-front.svg",
  23099. extra: 1192 / 1075,
  23100. bottom: 0.07
  23101. },
  23102. form: "calibrating",
  23103. default: true
  23104. },
  23105. frontNsfwer: {
  23106. height: math.unit(7.5, "feet"),
  23107. weight: math.unit(2, "lb"),
  23108. name: "Front",
  23109. image: {
  23110. source: "./media/characters/artemis/oversize-load-front.svg",
  23111. extra: 1192 / 1075,
  23112. bottom: 0.07
  23113. },
  23114. form: "oversize-load",
  23115. default: true
  23116. },
  23117. side: {
  23118. height: math.unit(7.5, "feet"),
  23119. weight: math.unit(2, "lb"),
  23120. name: "Side",
  23121. image: {
  23122. source: "./media/characters/artemis/work-safe-side.svg",
  23123. extra: 1192 / 1075,
  23124. bottom: 0.07
  23125. },
  23126. form: "work-safe"
  23127. },
  23128. sideNsfw: {
  23129. height: math.unit(7.5, "feet"),
  23130. weight: math.unit(2, "lb"),
  23131. name: "Side",
  23132. image: {
  23133. source: "./media/characters/artemis/calibrating-side.svg",
  23134. extra: 1192 / 1075,
  23135. bottom: 0.07
  23136. },
  23137. form: "calibrating"
  23138. },
  23139. sideNsfwer: {
  23140. height: math.unit(7.5, "feet"),
  23141. weight: math.unit(2, "lb"),
  23142. name: "Side",
  23143. image: {
  23144. source: "./media/characters/artemis/oversize-load-side.svg",
  23145. extra: 1192 / 1075,
  23146. bottom: 0.07
  23147. },
  23148. form: "oversize-load"
  23149. },
  23150. maw: {
  23151. height: math.unit(1.1, "feet"),
  23152. name: "Maw",
  23153. image: {
  23154. source: "./media/characters/artemis/maw.svg"
  23155. },
  23156. form: "work-safe"
  23157. },
  23158. stomach: {
  23159. height: math.unit(0.95, "feet"),
  23160. name: "Stomach",
  23161. image: {
  23162. source: "./media/characters/artemis/stomach.svg"
  23163. },
  23164. form: "work-safe"
  23165. },
  23166. dickCanine: {
  23167. height: math.unit(1, "feet"),
  23168. name: "Dick (Canine)",
  23169. image: {
  23170. source: "./media/characters/artemis/dick-canine.svg"
  23171. },
  23172. form: "calibrating"
  23173. },
  23174. dickEquine: {
  23175. height: math.unit(0.85, "feet"),
  23176. name: "Dick (Equine)",
  23177. image: {
  23178. source: "./media/characters/artemis/dick-equine.svg"
  23179. },
  23180. form: "calibrating"
  23181. },
  23182. dickExotic: {
  23183. height: math.unit(0.85, "feet"),
  23184. name: "Dick (Exotic)",
  23185. image: {
  23186. source: "./media/characters/artemis/dick-exotic.svg"
  23187. },
  23188. form: "calibrating"
  23189. },
  23190. dickCanineBigger: {
  23191. height: math.unit(1 * 1.33, "feet"),
  23192. name: "Dick (Canine)",
  23193. image: {
  23194. source: "./media/characters/artemis/dick-canine.svg"
  23195. },
  23196. form: "oversize-load"
  23197. },
  23198. dickEquineBigger: {
  23199. height: math.unit(0.85 * 1.33, "feet"),
  23200. name: "Dick (Equine)",
  23201. image: {
  23202. source: "./media/characters/artemis/dick-equine.svg"
  23203. },
  23204. form: "oversize-load"
  23205. },
  23206. dickExoticBigger: {
  23207. height: math.unit(0.85 * 1.33, "feet"),
  23208. name: "Dick (Exotic)",
  23209. image: {
  23210. source: "./media/characters/artemis/dick-exotic.svg"
  23211. },
  23212. form: "oversize-load"
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Normal",
  23218. height: math.unit(7.5, "feet"),
  23219. form: "work-safe",
  23220. default: true
  23221. },
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(7.5, "feet"),
  23225. form: "calibrating",
  23226. default: true
  23227. },
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(7.5, "feet"),
  23231. form: "oversize-load",
  23232. default: true
  23233. },
  23234. {
  23235. name: "Enlarged",
  23236. height: math.unit(12, "feet"),
  23237. form: "work-safe",
  23238. },
  23239. {
  23240. name: "Enlarged",
  23241. height: math.unit(12, "feet"),
  23242. form: "calibrating",
  23243. },
  23244. {
  23245. name: "Enlarged",
  23246. height: math.unit(12, "feet"),
  23247. form: "oversize-load",
  23248. },
  23249. ],
  23250. {
  23251. "work-safe": {
  23252. name: "Work-Safe",
  23253. default: true
  23254. },
  23255. "calibrating": {
  23256. name: "Calibrating"
  23257. },
  23258. "oversize-load": {
  23259. name: "Oversize Load"
  23260. }
  23261. }
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(5 + 3 / 12, "feet"),
  23268. weight: math.unit(160, "lb"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/kira/front.svg",
  23272. extra: 906 / 786,
  23273. bottom: 0.01
  23274. }
  23275. },
  23276. back: {
  23277. height: math.unit(5 + 3 / 12, "feet"),
  23278. weight: math.unit(160, "lb"),
  23279. name: "Back",
  23280. image: {
  23281. source: "./media/characters/kira/back.svg",
  23282. extra: 882 / 757,
  23283. bottom: 0.005
  23284. }
  23285. },
  23286. frontDressed: {
  23287. height: math.unit(5 + 3 / 12, "feet"),
  23288. weight: math.unit(160, "lb"),
  23289. name: "Front (Dressed)",
  23290. image: {
  23291. source: "./media/characters/kira/front-dressed.svg",
  23292. extra: 906 / 786,
  23293. bottom: 0.01
  23294. }
  23295. },
  23296. beans: {
  23297. height: math.unit(0.92, "feet"),
  23298. name: "Beans",
  23299. image: {
  23300. source: "./media/characters/kira/beans.svg"
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Normal",
  23307. height: math.unit(5 + 3 / 12, "feet"),
  23308. default: true
  23309. },
  23310. ]
  23311. ))
  23312. characterMakers.push(() => makeCharacter(
  23313. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23314. {
  23315. front: {
  23316. height: math.unit(5 + 4 / 12, "feet"),
  23317. weight: math.unit(145, "lb"),
  23318. name: "Front",
  23319. image: {
  23320. source: "./media/characters/scramble/front.svg",
  23321. extra: 763 / 727,
  23322. bottom: 0.05
  23323. }
  23324. },
  23325. back: {
  23326. height: math.unit(5 + 4 / 12, "feet"),
  23327. weight: math.unit(145, "lb"),
  23328. name: "Back",
  23329. image: {
  23330. source: "./media/characters/scramble/back.svg",
  23331. extra: 826 / 737,
  23332. bottom: 0.002
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Normal",
  23339. height: math.unit(5 + 4 / 12, "feet"),
  23340. default: true
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23346. {
  23347. side: {
  23348. height: math.unit(6 + 2 / 12, "feet"),
  23349. weight: math.unit(190, "lb"),
  23350. name: "Side",
  23351. image: {
  23352. source: "./media/characters/biscuit/side.svg",
  23353. extra: 858 / 791,
  23354. bottom: 0.044
  23355. }
  23356. },
  23357. },
  23358. [
  23359. {
  23360. name: "Normal",
  23361. height: math.unit(6 + 2 / 12, "feet"),
  23362. default: true
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23368. {
  23369. front: {
  23370. height: math.unit(5 + 2 / 12, "feet"),
  23371. weight: math.unit(120, "lb"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/poffin/front.svg",
  23375. extra: 786 / 680,
  23376. bottom: 0.005
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Normal",
  23383. height: math.unit(5 + 2 / 12, "feet"),
  23384. default: true
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(6 + 3 / 12, "feet"),
  23393. weight: math.unit(519, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/dhari/front.svg",
  23397. extra: 1048 / 946,
  23398. bottom: 0.015
  23399. }
  23400. },
  23401. back: {
  23402. height: math.unit(6 + 3 / 12, "feet"),
  23403. weight: math.unit(519, "lb"),
  23404. name: "Back",
  23405. image: {
  23406. source: "./media/characters/dhari/back.svg",
  23407. extra: 1048 / 931,
  23408. bottom: 0.005
  23409. }
  23410. },
  23411. frontDressed: {
  23412. height: math.unit(6 + 3 / 12, "feet"),
  23413. weight: math.unit(519, "lb"),
  23414. name: "Front (Dressed)",
  23415. image: {
  23416. source: "./media/characters/dhari/front-dressed.svg",
  23417. extra: 1713 / 1546,
  23418. bottom: 0.02
  23419. }
  23420. },
  23421. backDressed: {
  23422. height: math.unit(6 + 3 / 12, "feet"),
  23423. weight: math.unit(519, "lb"),
  23424. name: "Back (Dressed)",
  23425. image: {
  23426. source: "./media/characters/dhari/back-dressed.svg",
  23427. extra: 1699 / 1537,
  23428. bottom: 0.01
  23429. }
  23430. },
  23431. maw: {
  23432. height: math.unit(0.95, "feet"),
  23433. name: "Maw",
  23434. image: {
  23435. source: "./media/characters/dhari/maw.svg"
  23436. }
  23437. },
  23438. wereFront: {
  23439. height: math.unit(12 + 8 / 12, "feet"),
  23440. weight: math.unit(4000, "lb"),
  23441. name: "Front (Were)",
  23442. image: {
  23443. source: "./media/characters/dhari/were-front.svg",
  23444. extra: 1065 / 969,
  23445. bottom: 0.015
  23446. }
  23447. },
  23448. wereBack: {
  23449. height: math.unit(12 + 8 / 12, "feet"),
  23450. weight: math.unit(4000, "lb"),
  23451. name: "Back (Were)",
  23452. image: {
  23453. source: "./media/characters/dhari/were-back.svg",
  23454. extra: 1065 / 969,
  23455. bottom: 0.012
  23456. }
  23457. },
  23458. wereMaw: {
  23459. height: math.unit(0.625, "meters"),
  23460. name: "Maw (Were)",
  23461. image: {
  23462. source: "./media/characters/dhari/were-maw.svg"
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Normal",
  23469. height: math.unit(6 + 3 / 12, "feet"),
  23470. default: true
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23476. {
  23477. anthro: {
  23478. height: math.unit(5 + 7 / 12, "feet"),
  23479. weight: math.unit(175, "lb"),
  23480. name: "Anthro",
  23481. image: {
  23482. source: "./media/characters/rena-dyne/anthro.svg",
  23483. extra: 1849 / 1785,
  23484. bottom: 0.005
  23485. }
  23486. },
  23487. taur: {
  23488. height: math.unit(15 + 6 / 12, "feet"),
  23489. weight: math.unit(8000, "lb"),
  23490. name: "Taur",
  23491. image: {
  23492. source: "./media/characters/rena-dyne/taur.svg",
  23493. extra: 2315 / 2234,
  23494. bottom: 0.033
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(5 + 7 / 12, "feet"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(8, "feet"),
  23511. weight: math.unit(600, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/weremeep/front.svg",
  23515. extra: 970/849,
  23516. bottom: 7/977
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Normal",
  23523. height: math.unit(8, "feet"),
  23524. default: true
  23525. },
  23526. {
  23527. name: "Lorg",
  23528. height: math.unit(12, "feet")
  23529. },
  23530. {
  23531. name: "Oh Lawd She Comin'",
  23532. height: math.unit(20, "feet")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23538. {
  23539. front: {
  23540. height: math.unit(4, "feet"),
  23541. weight: math.unit(90, "lb"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/reza/front.svg",
  23545. extra: 1183 / 1111,
  23546. bottom: 0.017
  23547. }
  23548. },
  23549. back: {
  23550. height: math.unit(4, "feet"),
  23551. weight: math.unit(90, "lb"),
  23552. name: "Back",
  23553. image: {
  23554. source: "./media/characters/reza/back.svg",
  23555. extra: 1183 / 1111,
  23556. bottom: 0.01
  23557. }
  23558. },
  23559. drake: {
  23560. height: math.unit(30, "feet"),
  23561. weight: math.unit(246960, "lb"),
  23562. name: "Drake",
  23563. image: {
  23564. source: "./media/characters/reza/drake.svg",
  23565. extra: 2350 / 2024,
  23566. bottom: 60.7 / 2403
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Normal",
  23573. height: math.unit(4, "feet"),
  23574. default: true
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23580. {
  23581. side: {
  23582. height: math.unit(15, "feet"),
  23583. weight: math.unit(14, "tons"),
  23584. name: "Side",
  23585. image: {
  23586. source: "./media/characters/athea/side.svg",
  23587. extra: 960 / 540,
  23588. bottom: 0.003
  23589. }
  23590. },
  23591. sitting: {
  23592. height: math.unit(6 * 2.85, "feet"),
  23593. weight: math.unit(14, "tons"),
  23594. name: "Sitting",
  23595. image: {
  23596. source: "./media/characters/athea/sitting.svg",
  23597. extra: 621 / 581,
  23598. bottom: 0.075
  23599. }
  23600. },
  23601. maw: {
  23602. height: math.unit(7.59498031496063, "feet"),
  23603. name: "Maw",
  23604. image: {
  23605. source: "./media/characters/athea/maw.svg"
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Lap Cat",
  23612. height: math.unit(2.5, "feet")
  23613. },
  23614. {
  23615. name: "Minimacro",
  23616. height: math.unit(15, "feet"),
  23617. default: true
  23618. },
  23619. {
  23620. name: "Macro",
  23621. height: math.unit(120, "feet")
  23622. },
  23623. {
  23624. name: "Macro+",
  23625. height: math.unit(640, "feet")
  23626. },
  23627. {
  23628. name: "Colossus",
  23629. height: math.unit(2.2, "miles")
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23635. {
  23636. front: {
  23637. height: math.unit(8 + 8 / 12, "feet"),
  23638. weight: math.unit(130, "kg"),
  23639. name: "Front",
  23640. image: {
  23641. source: "./media/characters/seroko/front.svg",
  23642. extra: 1385 / 1280,
  23643. bottom: 0.025
  23644. }
  23645. },
  23646. back: {
  23647. height: math.unit(8 + 8 / 12, "feet"),
  23648. weight: math.unit(130, "kg"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/seroko/back.svg",
  23652. extra: 1369 / 1238,
  23653. bottom: 0.018
  23654. }
  23655. },
  23656. frontDressed: {
  23657. height: math.unit(8 + 8 / 12, "feet"),
  23658. weight: math.unit(130, "kg"),
  23659. name: "Front (Dressed)",
  23660. image: {
  23661. source: "./media/characters/seroko/front-dressed.svg",
  23662. extra: 1366 / 1275,
  23663. bottom: 0.03
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(8 + 8 / 12, "feet"),
  23671. default: true
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(5.5, "feet"),
  23680. weight: math.unit(160, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/quatzi/front.svg",
  23684. extra: 2346 / 2242,
  23685. bottom: 0.015
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Normal",
  23692. height: math.unit(5.5, "feet"),
  23693. default: true
  23694. },
  23695. {
  23696. name: "Big",
  23697. height: math.unit(7.7, "feet")
  23698. },
  23699. ]
  23700. ))
  23701. characterMakers.push(() => makeCharacter(
  23702. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23703. {
  23704. front: {
  23705. height: math.unit(5 + 11 / 12, "feet"),
  23706. weight: math.unit(180, "lb"),
  23707. name: "Front",
  23708. image: {
  23709. source: "./media/characters/sen/front.svg",
  23710. extra: 1321 / 1254,
  23711. bottom: 0.015
  23712. }
  23713. },
  23714. side: {
  23715. height: math.unit(5 + 11 / 12, "feet"),
  23716. weight: math.unit(180, "lb"),
  23717. name: "Side",
  23718. image: {
  23719. source: "./media/characters/sen/side.svg",
  23720. extra: 1321 / 1254,
  23721. bottom: 0.007
  23722. }
  23723. },
  23724. back: {
  23725. height: math.unit(5 + 11 / 12, "feet"),
  23726. weight: math.unit(180, "lb"),
  23727. name: "Back",
  23728. image: {
  23729. source: "./media/characters/sen/back.svg",
  23730. extra: 1321 / 1254
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Normal",
  23737. height: math.unit(5 + 11 / 12, "feet"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(166.6, "cm"),
  23747. weight: math.unit(66.6, "kg"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/fruity/front.svg",
  23751. extra: 1510 / 1386,
  23752. bottom: 0.04
  23753. }
  23754. },
  23755. back: {
  23756. height: math.unit(166.6, "cm"),
  23757. weight: math.unit(66.6, "lb"),
  23758. name: "Back",
  23759. image: {
  23760. source: "./media/characters/fruity/back.svg",
  23761. extra: 1563 / 1435,
  23762. bottom: 0.005
  23763. }
  23764. },
  23765. },
  23766. [
  23767. {
  23768. name: "Normal",
  23769. height: math.unit(166.6, "cm"),
  23770. default: true
  23771. },
  23772. {
  23773. name: "Demonic",
  23774. height: math.unit(166.6, "feet")
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23780. {
  23781. side: {
  23782. height: math.unit(10, "feet"),
  23783. weight: math.unit(500, "lb"),
  23784. name: "Side",
  23785. image: {
  23786. source: "./media/characters/zost/side.svg",
  23787. extra: 2870/2533,
  23788. bottom: 252/3122
  23789. }
  23790. },
  23791. mawFront: {
  23792. height: math.unit(1.08, "meters"),
  23793. name: "Maw (Front)",
  23794. image: {
  23795. source: "./media/characters/zost/maw-front.svg"
  23796. }
  23797. },
  23798. mawSide: {
  23799. height: math.unit(2.66, "feet"),
  23800. name: "Maw (Side)",
  23801. image: {
  23802. source: "./media/characters/zost/maw-side.svg"
  23803. }
  23804. },
  23805. wingspan: {
  23806. height: math.unit(7.4, "feet"),
  23807. name: "Wingspan",
  23808. image: {
  23809. source: "./media/characters/zost/wingspan.svg"
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(10, "feet"),
  23817. default: true
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23823. {
  23824. front: {
  23825. height: math.unit(5 + 4 / 12, "feet"),
  23826. weight: math.unit(120, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/luci/front.svg",
  23830. extra: 1985 / 1884,
  23831. bottom: 0.04
  23832. }
  23833. },
  23834. back: {
  23835. height: math.unit(5 + 4 / 12, "feet"),
  23836. weight: math.unit(120, "lb"),
  23837. name: "Back",
  23838. image: {
  23839. source: "./media/characters/luci/back.svg",
  23840. extra: 1892 / 1791,
  23841. bottom: 0.002
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(5 + 4 / 12, "feet"),
  23849. default: true
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23855. {
  23856. front: {
  23857. height: math.unit(1500, "feet"),
  23858. weight: math.unit(3.8e6, "tons"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/2th/front.svg",
  23862. extra: 3489 / 3350,
  23863. bottom: 0.1
  23864. }
  23865. },
  23866. foot: {
  23867. height: math.unit(461, "feet"),
  23868. name: "Foot",
  23869. image: {
  23870. source: "./media/characters/2th/foot.svg"
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "\"Micro\"",
  23877. height: math.unit(15 + 7 / 12, "feet")
  23878. },
  23879. {
  23880. name: "Normal",
  23881. height: math.unit(1500, "feet"),
  23882. default: true
  23883. },
  23884. {
  23885. name: "Macro",
  23886. height: math.unit(5000, "feet")
  23887. },
  23888. {
  23889. name: "Megamacro",
  23890. height: math.unit(15, "miles")
  23891. },
  23892. {
  23893. name: "Gigamacro",
  23894. height: math.unit(4000, "miles")
  23895. },
  23896. {
  23897. name: "Galactic",
  23898. height: math.unit(50, "AU")
  23899. },
  23900. ]
  23901. ))
  23902. characterMakers.push(() => makeCharacter(
  23903. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23904. {
  23905. front: {
  23906. height: math.unit(5 + 6 / 12, "feet"),
  23907. weight: math.unit(220, "lb"),
  23908. name: "Front",
  23909. image: {
  23910. source: "./media/characters/amethyst/front.svg",
  23911. extra: 2078 / 2040,
  23912. bottom: 0.045
  23913. }
  23914. },
  23915. back: {
  23916. height: math.unit(5 + 6 / 12, "feet"),
  23917. weight: math.unit(220, "lb"),
  23918. name: "Back",
  23919. image: {
  23920. source: "./media/characters/amethyst/back.svg",
  23921. extra: 2021 / 1989,
  23922. bottom: 0.02
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(5 + 6 / 12, "feet"),
  23930. default: true
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(4 + 11 / 12, "feet"),
  23939. weight: math.unit(120, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/yumi-akiyama/front.svg",
  23943. extra: 2638/2432,
  23944. bottom: 70/2708
  23945. }
  23946. },
  23947. back: {
  23948. height: math.unit(4 + 11 / 12, "feet"),
  23949. weight: math.unit(120, "lb"),
  23950. name: "Back",
  23951. image: {
  23952. source: "./media/characters/yumi-akiyama/back.svg",
  23953. extra: 2502/2397,
  23954. bottom: 80/2582
  23955. }
  23956. },
  23957. casual: {
  23958. height: math.unit(4 + 11 / 12, "feet"),
  23959. weight: math.unit(120, "lb"),
  23960. name: "Casual",
  23961. image: {
  23962. source: "./media/characters/yumi-akiyama/casual.svg",
  23963. extra: 958/887,
  23964. bottom: 41/999
  23965. }
  23966. },
  23967. jammies: {
  23968. height: math.unit(4 + 11 / 12, "feet"),
  23969. weight: math.unit(120, "lb"),
  23970. name: "Jammies",
  23971. image: {
  23972. source: "./media/characters/yumi-akiyama/jammies.svg",
  23973. extra: 958/894,
  23974. bottom: 37/995
  23975. }
  23976. },
  23977. warmWeather: {
  23978. height: math.unit(4 + 11 / 12, "feet"),
  23979. weight: math.unit(120, "lb"),
  23980. name: "Warm Weather",
  23981. image: {
  23982. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23983. extra: 929/865,
  23984. bottom: 76/1005
  23985. }
  23986. },
  23987. mouth: {
  23988. height: math.unit(0.35, "feet"),
  23989. name: "Mouth",
  23990. image: {
  23991. source: "./media/characters/yumi-akiyama/mouth.svg"
  23992. }
  23993. },
  23994. paws: {
  23995. height: math.unit(1.05, "feet"),
  23996. name: "Paws",
  23997. image: {
  23998. source: "./media/characters/yumi-akiyama/paws.svg"
  23999. }
  24000. },
  24001. cockRing: {
  24002. height: math.unit(0.225, "feet"),
  24003. name: "Cock Ring",
  24004. image: {
  24005. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Galactic",
  24012. height: math.unit(50, "galaxies"),
  24013. default: true
  24014. },
  24015. {
  24016. name: "Universal",
  24017. height: math.unit(100, "universes")
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24023. {
  24024. front: {
  24025. height: math.unit(8, "feet"),
  24026. weight: math.unit(500, "lb"),
  24027. name: "Front",
  24028. image: {
  24029. source: "./media/characters/rifter-yrmori/front.svg",
  24030. extra: 1180 / 1125,
  24031. bottom: 0.02
  24032. }
  24033. },
  24034. back: {
  24035. height: math.unit(8, "feet"),
  24036. weight: math.unit(500, "lb"),
  24037. name: "Back",
  24038. image: {
  24039. source: "./media/characters/rifter-yrmori/back.svg",
  24040. extra: 1190 / 1145,
  24041. bottom: 0.001
  24042. }
  24043. },
  24044. wings: {
  24045. height: math.unit(7.75, "feet"),
  24046. weight: math.unit(500, "lb"),
  24047. name: "Wings",
  24048. image: {
  24049. source: "./media/characters/rifter-yrmori/wings.svg",
  24050. extra: 1357 / 1285
  24051. }
  24052. },
  24053. maw: {
  24054. height: math.unit(0.8, "feet"),
  24055. name: "Maw",
  24056. image: {
  24057. source: "./media/characters/rifter-yrmori/maw.svg"
  24058. }
  24059. },
  24060. mawfront: {
  24061. height: math.unit(1.45, "feet"),
  24062. name: "Maw (Front)",
  24063. image: {
  24064. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(8, "feet"),
  24072. default: true
  24073. },
  24074. {
  24075. name: "Macro",
  24076. height: math.unit(42, "meters")
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24082. {
  24083. were: {
  24084. height: math.unit(25 + 6 / 12, "feet"),
  24085. weight: math.unit(10000, "lb"),
  24086. name: "Were",
  24087. image: {
  24088. source: "./media/characters/tahajin/were.svg",
  24089. extra: 801 / 770,
  24090. bottom: 0.042
  24091. }
  24092. },
  24093. aquatic: {
  24094. height: math.unit(6 + 4 / 12, "feet"),
  24095. weight: math.unit(160, "lb"),
  24096. name: "Aquatic",
  24097. image: {
  24098. source: "./media/characters/tahajin/aquatic.svg",
  24099. extra: 572 / 542,
  24100. bottom: 0.04
  24101. }
  24102. },
  24103. chow: {
  24104. height: math.unit(8 + 11 / 12, "feet"),
  24105. weight: math.unit(450, "lb"),
  24106. name: "Chow",
  24107. image: {
  24108. source: "./media/characters/tahajin/chow.svg",
  24109. extra: 660 / 640,
  24110. bottom: 0.015
  24111. }
  24112. },
  24113. demiNaga: {
  24114. height: math.unit(6 + 8 / 12, "feet"),
  24115. weight: math.unit(300, "lb"),
  24116. name: "Demi Naga",
  24117. image: {
  24118. source: "./media/characters/tahajin/demi-naga.svg",
  24119. extra: 643 / 615,
  24120. bottom: 0.1
  24121. }
  24122. },
  24123. data: {
  24124. height: math.unit(5, "inches"),
  24125. weight: math.unit(0.1, "lb"),
  24126. name: "Data",
  24127. image: {
  24128. source: "./media/characters/tahajin/data.svg"
  24129. }
  24130. },
  24131. fluu: {
  24132. height: math.unit(5 + 7 / 12, "feet"),
  24133. weight: math.unit(140, "lb"),
  24134. name: "Fluu",
  24135. image: {
  24136. source: "./media/characters/tahajin/fluu.svg",
  24137. extra: 628 / 592,
  24138. bottom: 0.02
  24139. }
  24140. },
  24141. starWarrior: {
  24142. height: math.unit(4 + 5 / 12, "feet"),
  24143. weight: math.unit(50, "lb"),
  24144. name: "Star Warrior",
  24145. image: {
  24146. source: "./media/characters/tahajin/star-warrior.svg"
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Normal",
  24153. height: math.unit(25 + 6 / 12, "feet"),
  24154. default: true
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(8, "feet"),
  24163. weight: math.unit(350, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/gabira/front.svg",
  24167. extra: 1261/1154,
  24168. bottom: 51/1312
  24169. }
  24170. },
  24171. back: {
  24172. height: math.unit(8, "feet"),
  24173. weight: math.unit(350, "lb"),
  24174. name: "Back",
  24175. image: {
  24176. source: "./media/characters/gabira/back.svg",
  24177. extra: 1265/1163,
  24178. bottom: 46/1311
  24179. }
  24180. },
  24181. head: {
  24182. height: math.unit(2.85, "feet"),
  24183. name: "Head",
  24184. image: {
  24185. source: "./media/characters/gabira/head.svg"
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Normal",
  24192. height: math.unit(8, "feet"),
  24193. default: true
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(5 + 3 / 12, "feet"),
  24202. weight: math.unit(137, "lb"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/sasha-katraine/front.svg",
  24206. extra: 1745/1694,
  24207. bottom: 37/1782
  24208. }
  24209. },
  24210. back: {
  24211. height: math.unit(5 + 3 / 12, "feet"),
  24212. weight: math.unit(137, "lb"),
  24213. name: "Back",
  24214. image: {
  24215. source: "./media/characters/sasha-katraine/back.svg",
  24216. extra: 1776/1699,
  24217. bottom: 26/1802
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Micro",
  24224. height: math.unit(5, "inches")
  24225. },
  24226. {
  24227. name: "Normal",
  24228. height: math.unit(5 + 3 / 12, "feet"),
  24229. default: true
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24235. {
  24236. side: {
  24237. height: math.unit(4, "inches"),
  24238. weight: math.unit(200, "grams"),
  24239. name: "Side",
  24240. image: {
  24241. source: "./media/characters/der/side.svg",
  24242. extra: 719 / 400,
  24243. bottom: 30.6 / 749.9187
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "Micro",
  24250. height: math.unit(4, "inches"),
  24251. default: true
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24257. {
  24258. side: {
  24259. height: math.unit(30, "meters"),
  24260. weight: math.unit(700, "tonnes"),
  24261. name: "Side",
  24262. image: {
  24263. source: "./media/characters/fixerdragon/side.svg",
  24264. extra: (1293.0514 - 116.03) / 1106.86,
  24265. bottom: 116.03 / 1293.0514
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Planck",
  24272. height: math.unit(1.6e-35, "meters")
  24273. },
  24274. {
  24275. name: "Micro",
  24276. height: math.unit(0.4, "meters")
  24277. },
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(30, "meters"),
  24281. default: true
  24282. },
  24283. {
  24284. name: "Megamacro",
  24285. height: math.unit(1.2, "megameters")
  24286. },
  24287. {
  24288. name: "Teramacro",
  24289. height: math.unit(130, "terameters")
  24290. },
  24291. {
  24292. name: "Yottamacro",
  24293. height: math.unit(6200, "yottameters")
  24294. },
  24295. ]
  24296. ));
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24299. {
  24300. front: {
  24301. height: math.unit(8, "feet"),
  24302. weight: math.unit(250, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/kite/front.svg",
  24306. extra: 2796 / 2659,
  24307. bottom: 0.002
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(8, "feet"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(360, "feet")
  24320. },
  24321. {
  24322. name: "Megamacro",
  24323. height: math.unit(1500, "feet")
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24329. {
  24330. anthro_front: {
  24331. height: math.unit(5 + 11/12, "feet"),
  24332. weight: math.unit(170, "lb"),
  24333. name: "Front",
  24334. image: {
  24335. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24336. extra: 1735/1585,
  24337. bottom: 96/1831
  24338. },
  24339. form: "anthro",
  24340. default: true
  24341. },
  24342. anthro_back: {
  24343. height: math.unit(5 + 11/12, "feet"),
  24344. weight: math.unit(170, "lb"),
  24345. name: "Back",
  24346. image: {
  24347. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24348. extra: 1749/1607,
  24349. bottom: 28/1777
  24350. },
  24351. form: "anthro"
  24352. },
  24353. anthro_male: {
  24354. height: math.unit(5 + 11/12, "feet"),
  24355. weight: math.unit(170, "lb"),
  24356. name: "Male",
  24357. image: {
  24358. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24359. extra: 1855/1713,
  24360. bottom: 63/1918
  24361. },
  24362. form: "anthro"
  24363. },
  24364. taur_front: {
  24365. height: math.unit(5 + 7/12, "feet"),
  24366. weight: math.unit(170, "lb"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24370. extra: 1151/1059,
  24371. bottom: 356/1507
  24372. },
  24373. form: "taur",
  24374. default: true
  24375. },
  24376. anthro_frontDressed: {
  24377. height: math.unit(5 + 11/12, "feet"),
  24378. weight: math.unit(170, "lb"),
  24379. name: "Front (Dressed)",
  24380. image: {
  24381. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24382. extra: 1735/1585,
  24383. bottom: 96/1831
  24384. },
  24385. form: "anthro"
  24386. },
  24387. anthro_backDressed: {
  24388. height: math.unit(5 + 11/12, "feet"),
  24389. weight: math.unit(170, "lb"),
  24390. name: "Back (Dressed)",
  24391. image: {
  24392. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24393. extra: 1749/1607,
  24394. bottom: 28/1777
  24395. },
  24396. form: "anthro"
  24397. },
  24398. anthro_maleDressed: {
  24399. height: math.unit(5 + 11/12, "feet"),
  24400. weight: math.unit(170, "lb"),
  24401. name: "Male (Dressed)",
  24402. image: {
  24403. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24404. extra: 1855/1713,
  24405. bottom: 63/1918
  24406. },
  24407. form: "anthro"
  24408. },
  24409. taur_frontDressed: {
  24410. height: math.unit(5 + 7/12, "feet"),
  24411. weight: math.unit(170, "lb"),
  24412. name: "Front (Dressed)",
  24413. image: {
  24414. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24415. extra: 1151/1059,
  24416. bottom: 356/1507
  24417. },
  24418. form: "taur"
  24419. },
  24420. maw: {
  24421. height: math.unit(1.46, "feet"),
  24422. name: "Maw",
  24423. image: {
  24424. source: "./media/characters/poojawa-vynar/maw.svg"
  24425. },
  24426. allForms: true
  24427. },
  24428. head: {
  24429. height: math.unit(2.34, "feet"),
  24430. name: "Head",
  24431. image: {
  24432. source: "./media/characters/poojawa-vynar/head.svg"
  24433. },
  24434. allForms: true
  24435. },
  24436. leftPaw: {
  24437. height: math.unit(1.72, "feet"),
  24438. name: "Left Paw",
  24439. image: {
  24440. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24441. },
  24442. allForms: true
  24443. },
  24444. rightPaw: {
  24445. height: math.unit(1.61, "feet"),
  24446. name: "Right Paw",
  24447. image: {
  24448. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24449. },
  24450. allForms: true
  24451. },
  24452. toering: {
  24453. height: math.unit(2.9, "inches"),
  24454. name: "Toering",
  24455. image: {
  24456. source: "./media/characters/poojawa-vynar/toering.svg"
  24457. },
  24458. allForms: true
  24459. },
  24460. shaft: {
  24461. height: math.unit(0.625, "feet"),
  24462. name: "Shaft",
  24463. image: {
  24464. source: "./media/characters/poojawa-vynar/shaft.svg"
  24465. },
  24466. allForms: true
  24467. },
  24468. spade: {
  24469. height: math.unit(0.42, "feet"),
  24470. name: "Spade",
  24471. image: {
  24472. source: "./media/characters/poojawa-vynar/spade.svg"
  24473. },
  24474. allForms: true
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Shortstack",
  24480. height: math.unit(4, "feet"),
  24481. form: "anthro"
  24482. },
  24483. {
  24484. name: "Normal",
  24485. height: math.unit(5 + 11 / 12, "feet"),
  24486. form: "anthro",
  24487. default: true
  24488. },
  24489. {
  24490. name: "Tauric",
  24491. height: math.unit(4, "meters"),
  24492. form: "taur",
  24493. default: true
  24494. },
  24495. ],
  24496. {
  24497. "anthro": {
  24498. name: "Anthro",
  24499. default: true
  24500. },
  24501. "taur": {
  24502. name: "Taur",
  24503. },
  24504. }
  24505. ))
  24506. characterMakers.push(() => makeCharacter(
  24507. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24508. {
  24509. front: {
  24510. height: math.unit(293, "meters"),
  24511. weight: math.unit(70400, "tons"),
  24512. name: "Front",
  24513. image: {
  24514. source: "./media/characters/violette/front.svg",
  24515. extra: 1227 / 1180,
  24516. bottom: 0.005
  24517. }
  24518. },
  24519. back: {
  24520. height: math.unit(293, "meters"),
  24521. weight: math.unit(70400, "tons"),
  24522. name: "Back",
  24523. image: {
  24524. source: "./media/characters/violette/back.svg",
  24525. extra: 1227 / 1180,
  24526. bottom: 0.005
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Macro",
  24533. height: math.unit(293, "meters"),
  24534. default: true
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(1050, "feet"),
  24543. weight: math.unit(200000, "tons"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/alessandra/front.svg",
  24547. extra: 960 / 912,
  24548. bottom: 0.06
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Macro",
  24555. height: math.unit(1050, "feet")
  24556. },
  24557. {
  24558. name: "Macro+",
  24559. height: math.unit(900, "meters"),
  24560. default: true
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24566. {
  24567. front: {
  24568. height: math.unit(5, "feet"),
  24569. weight: math.unit(187, "lb"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/person/front.svg",
  24573. extra: 3087 / 2945,
  24574. bottom: 91 / 3181
  24575. }
  24576. },
  24577. },
  24578. [
  24579. {
  24580. name: "Micro",
  24581. height: math.unit(3, "inches")
  24582. },
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(5, "feet"),
  24586. default: true
  24587. },
  24588. {
  24589. name: "Macro",
  24590. height: math.unit(90, "feet")
  24591. },
  24592. {
  24593. name: "Max Size",
  24594. height: math.unit(280, "feet")
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24600. {
  24601. front: {
  24602. height: math.unit(4.5, "meters"),
  24603. weight: math.unit(3200, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/ty/front.svg",
  24607. extra: 1038 / 960,
  24608. bottom: 31.156 / 1068
  24609. }
  24610. },
  24611. back: {
  24612. height: math.unit(4.5, "meters"),
  24613. weight: math.unit(3200, "lb"),
  24614. name: "Back",
  24615. image: {
  24616. source: "./media/characters/ty/back.svg",
  24617. extra: 1044 / 966,
  24618. bottom: 7.48 / 1049
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Normal",
  24625. height: math.unit(4.5, "meters"),
  24626. default: true
  24627. },
  24628. ]
  24629. ))
  24630. characterMakers.push(() => makeCharacter(
  24631. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24632. {
  24633. front: {
  24634. height: math.unit(5 + 4 / 12, "feet"),
  24635. weight: math.unit(115, "lb"),
  24636. name: "Front",
  24637. image: {
  24638. source: "./media/characters/rocky/front.svg",
  24639. extra: 1012 / 975,
  24640. bottom: 54 / 1066
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(5 + 4 / 12, "feet"),
  24648. default: true
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24654. {
  24655. upright: {
  24656. height: math.unit(6, "meters"),
  24657. weight: math.unit(4000, "kg"),
  24658. name: "Upright",
  24659. image: {
  24660. source: "./media/characters/ruin/upright.svg",
  24661. extra: 668 / 661,
  24662. bottom: 42 / 799.8396
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(6, "meters"),
  24670. default: true
  24671. },
  24672. ]
  24673. ))
  24674. characterMakers.push(() => makeCharacter(
  24675. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24676. {
  24677. front: {
  24678. height: math.unit(5, "feet"),
  24679. weight: math.unit(106, "lb"),
  24680. name: "Front",
  24681. image: {
  24682. source: "./media/characters/robin/front.svg",
  24683. extra: 862 / 799,
  24684. bottom: 42.4 / 914.8856
  24685. }
  24686. },
  24687. },
  24688. [
  24689. {
  24690. name: "Normal",
  24691. height: math.unit(5, "feet"),
  24692. default: true
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24698. {
  24699. side: {
  24700. height: math.unit(3, "feet"),
  24701. weight: math.unit(225, "lb"),
  24702. name: "Side",
  24703. image: {
  24704. source: "./media/characters/saian/side.svg",
  24705. extra: 566 / 356,
  24706. bottom: 79.7 / 643
  24707. }
  24708. },
  24709. maw: {
  24710. height: math.unit(2.85, "feet"),
  24711. name: "Maw",
  24712. image: {
  24713. source: "./media/characters/saian/maw.svg"
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Normal",
  24720. height: math.unit(3, "feet"),
  24721. default: true
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24727. {
  24728. side: {
  24729. height: math.unit(8, "feet"),
  24730. weight: math.unit(300, "lb"),
  24731. name: "Side",
  24732. image: {
  24733. source: "./media/characters/equus-silvermane/side.svg",
  24734. extra: 2176 / 2050,
  24735. bottom: 65.7 / 2245
  24736. }
  24737. },
  24738. front: {
  24739. height: math.unit(8, "feet"),
  24740. weight: math.unit(300, "lb"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/equus-silvermane/front.svg",
  24744. extra: 4633 / 4400,
  24745. bottom: 71.3 / 4706.915
  24746. }
  24747. },
  24748. sideStepping: {
  24749. height: math.unit(8, "feet"),
  24750. weight: math.unit(300, "lb"),
  24751. name: "Side (Stepping)",
  24752. image: {
  24753. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24754. extra: 1968 / 1860,
  24755. bottom: 16.4 / 1989
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Normal",
  24762. height: math.unit(8, "feet")
  24763. },
  24764. {
  24765. name: "Minimacro",
  24766. height: math.unit(75, "feet"),
  24767. default: true
  24768. },
  24769. {
  24770. name: "Macro",
  24771. height: math.unit(150, "feet")
  24772. },
  24773. {
  24774. name: "Macro+",
  24775. height: math.unit(1000, "feet")
  24776. },
  24777. {
  24778. name: "Megamacro",
  24779. height: math.unit(1, "mile")
  24780. },
  24781. ]
  24782. ))
  24783. characterMakers.push(() => makeCharacter(
  24784. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24785. {
  24786. side: {
  24787. height: math.unit(20, "feet"),
  24788. weight: math.unit(30000, "kg"),
  24789. name: "Side",
  24790. image: {
  24791. source: "./media/characters/windar/side.svg",
  24792. extra: 1491 / 1248,
  24793. bottom: 82.56 / 1568
  24794. }
  24795. },
  24796. },
  24797. [
  24798. {
  24799. name: "Normal",
  24800. height: math.unit(20, "feet"),
  24801. default: true
  24802. },
  24803. ]
  24804. ))
  24805. characterMakers.push(() => makeCharacter(
  24806. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24807. {
  24808. side: {
  24809. height: math.unit(15.66, "feet"),
  24810. weight: math.unit(150, "lb"),
  24811. name: "Side",
  24812. image: {
  24813. source: "./media/characters/melody/side.svg",
  24814. extra: 1097 / 944,
  24815. bottom: 11.8 / 1109
  24816. }
  24817. },
  24818. sideOutfit: {
  24819. height: math.unit(15.66, "feet"),
  24820. weight: math.unit(150, "lb"),
  24821. name: "Side (Outfit)",
  24822. image: {
  24823. source: "./media/characters/melody/side-outfit.svg",
  24824. extra: 1097 / 944,
  24825. bottom: 11.8 / 1109
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Normal",
  24832. height: math.unit(15.66, "feet"),
  24833. default: true
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24839. {
  24840. armoredFront: {
  24841. height: math.unit(8, "feet"),
  24842. weight: math.unit(325, "lb"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/windera/armored-front.svg",
  24846. extra: 1830/1598,
  24847. bottom: 151/1981
  24848. },
  24849. form: "armored",
  24850. default: true
  24851. },
  24852. macroFront: {
  24853. height: math.unit(70, "feet"),
  24854. weight: math.unit(315453, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/windera/macro-front.svg",
  24858. extra: 963/883,
  24859. bottom: 23/986
  24860. },
  24861. form: "macro",
  24862. default: true
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(8, "feet"),
  24869. default: true,
  24870. form: "armored"
  24871. },
  24872. {
  24873. name: "Normal",
  24874. height: math.unit(70, "feet"),
  24875. default: true,
  24876. form: "macro"
  24877. },
  24878. ],
  24879. {
  24880. "armored": {
  24881. name: "Armored",
  24882. default: true
  24883. },
  24884. "macro": {
  24885. name: "Macro",
  24886. },
  24887. }
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24891. {
  24892. front: {
  24893. height: math.unit(28.75, "feet"),
  24894. weight: math.unit(2000, "kg"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/sonear/front.svg",
  24898. extra: 1041.1 / 964.9,
  24899. bottom: 53.7 / 1096.6
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Normal",
  24906. height: math.unit(28.75, "feet"),
  24907. default: true
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24913. {
  24914. side: {
  24915. height: math.unit(25.5, "feet"),
  24916. weight: math.unit(23000, "kg"),
  24917. name: "Side",
  24918. image: {
  24919. source: "./media/characters/kanara/side.svg"
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Normal",
  24926. height: math.unit(25.5, "feet"),
  24927. default: true
  24928. },
  24929. ]
  24930. ))
  24931. characterMakers.push(() => makeCharacter(
  24932. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24933. {
  24934. side: {
  24935. height: math.unit(10, "feet"),
  24936. weight: math.unit(1000, "kg"),
  24937. name: "Side",
  24938. image: {
  24939. source: "./media/characters/ereus/side.svg",
  24940. extra: 1157 / 959,
  24941. bottom: 153 / 1312.5
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Normal",
  24948. height: math.unit(10, "feet"),
  24949. default: true
  24950. },
  24951. ]
  24952. ))
  24953. characterMakers.push(() => makeCharacter(
  24954. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24955. {
  24956. side: {
  24957. height: math.unit(4.5, "feet"),
  24958. weight: math.unit(500, "lb"),
  24959. name: "Side",
  24960. image: {
  24961. source: "./media/characters/e-ter/side.svg",
  24962. extra: 1550 / 1248,
  24963. bottom: 146 / 1694
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(4.5, "feet"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24977. {
  24978. side: {
  24979. height: math.unit(9.7, "feet"),
  24980. weight: math.unit(4000, "kg"),
  24981. name: "Side",
  24982. image: {
  24983. source: "./media/characters/yamie/side.svg"
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(9.7, "feet"),
  24991. default: true
  24992. },
  24993. ]
  24994. ))
  24995. characterMakers.push(() => makeCharacter(
  24996. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24997. {
  24998. front: {
  24999. height: math.unit(50, "feet"),
  25000. weight: math.unit(50000, "kg"),
  25001. name: "Front",
  25002. image: {
  25003. source: "./media/characters/anders/front.svg",
  25004. extra: 570 / 539,
  25005. bottom: 14.7 / 586.7
  25006. }
  25007. },
  25008. },
  25009. [
  25010. {
  25011. name: "Large",
  25012. height: math.unit(50, "feet")
  25013. },
  25014. {
  25015. name: "Macro",
  25016. height: math.unit(2000, "feet"),
  25017. default: true
  25018. },
  25019. {
  25020. name: "Megamacro",
  25021. height: math.unit(12, "miles")
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25027. {
  25028. front: {
  25029. height: math.unit(7 + 2 / 12, "feet"),
  25030. weight: math.unit(300, "lb"),
  25031. name: "Front",
  25032. image: {
  25033. source: "./media/characters/reban/front.svg",
  25034. extra: 1287/1212,
  25035. bottom: 148/1435
  25036. }
  25037. },
  25038. head: {
  25039. height: math.unit(1.95, "feet"),
  25040. name: "Head",
  25041. image: {
  25042. source: "./media/characters/reban/head.svg"
  25043. }
  25044. },
  25045. maw: {
  25046. height: math.unit(0.95, "feet"),
  25047. name: "Maw",
  25048. image: {
  25049. source: "./media/characters/reban/maw.svg"
  25050. }
  25051. },
  25052. foot: {
  25053. height: math.unit(1.65, "feet"),
  25054. name: "Foot",
  25055. image: {
  25056. source: "./media/characters/reban/foot.svg"
  25057. }
  25058. },
  25059. dick: {
  25060. height: math.unit(7 / 5, "feet"),
  25061. name: "Dick",
  25062. image: {
  25063. source: "./media/characters/reban/dick.svg"
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Natural Height",
  25070. height: math.unit(7 + 2 / 12, "feet")
  25071. },
  25072. {
  25073. name: "Macro",
  25074. height: math.unit(500, "feet"),
  25075. default: true
  25076. },
  25077. {
  25078. name: "Canon Height",
  25079. height: math.unit(50, "AU")
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(6, "feet"),
  25088. weight: math.unit(150, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/terrance-keayes/front.svg",
  25092. extra: 1.005,
  25093. bottom: 151 / 1615
  25094. }
  25095. },
  25096. side: {
  25097. height: math.unit(6, "feet"),
  25098. weight: math.unit(150, "lb"),
  25099. name: "Side",
  25100. image: {
  25101. source: "./media/characters/terrance-keayes/side.svg",
  25102. extra: 1.005,
  25103. bottom: 129.4 / 1544
  25104. }
  25105. },
  25106. back: {
  25107. height: math.unit(6, "feet"),
  25108. weight: math.unit(150, "lb"),
  25109. name: "Back",
  25110. image: {
  25111. source: "./media/characters/terrance-keayes/back.svg",
  25112. extra: 1.005,
  25113. bottom: 58.4 / 1557.3
  25114. }
  25115. },
  25116. dick: {
  25117. height: math.unit(6 * 0.208, "feet"),
  25118. name: "Dick",
  25119. image: {
  25120. source: "./media/characters/terrance-keayes/dick.svg"
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Canon Height",
  25127. height: math.unit(35, "miles"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(6, "feet"),
  25137. weight: math.unit(150, "lb"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/ofelia/front.svg",
  25141. extra: 1130/1117,
  25142. bottom: 91/1221
  25143. }
  25144. },
  25145. back: {
  25146. height: math.unit(6, "feet"),
  25147. weight: math.unit(150, "lb"),
  25148. name: "Back",
  25149. image: {
  25150. source: "./media/characters/ofelia/back.svg",
  25151. extra: 1172/1159,
  25152. bottom: 28/1200
  25153. }
  25154. },
  25155. maw: {
  25156. height: math.unit(1, "feet"),
  25157. name: "Maw",
  25158. image: {
  25159. source: "./media/characters/ofelia/maw.svg"
  25160. }
  25161. },
  25162. foot: {
  25163. height: math.unit(1.949, "feet"),
  25164. name: "Foot",
  25165. image: {
  25166. source: "./media/characters/ofelia/foot.svg"
  25167. }
  25168. },
  25169. },
  25170. [
  25171. {
  25172. name: "Canon Height",
  25173. height: math.unit(2000, "miles"),
  25174. default: true
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(6, "feet"),
  25183. weight: math.unit(150, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/samuel/front.svg",
  25187. extra: 265 / 258,
  25188. bottom: 2 / 266.1566
  25189. }
  25190. },
  25191. },
  25192. [
  25193. {
  25194. name: "Macro",
  25195. height: math.unit(100, "feet"),
  25196. default: true
  25197. },
  25198. {
  25199. name: "Full Size",
  25200. height: math.unit(1000, "miles")
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25206. {
  25207. front: {
  25208. height: math.unit(6, "feet"),
  25209. weight: math.unit(300, "lb"),
  25210. name: "Front",
  25211. image: {
  25212. source: "./media/characters/beishir-kiel/front.svg",
  25213. extra: 569 / 547,
  25214. bottom: 41.9 / 609
  25215. }
  25216. },
  25217. maw: {
  25218. height: math.unit(6 * 0.202, "feet"),
  25219. name: "Maw",
  25220. image: {
  25221. source: "./media/characters/beishir-kiel/maw.svg"
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Macro",
  25228. height: math.unit(300, "feet"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(5 + 7/12, "feet"),
  25238. weight: math.unit(120, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/logan-grey/front.svg",
  25242. extra: 1836/1738,
  25243. bottom: 108/1944
  25244. }
  25245. },
  25246. back: {
  25247. height: math.unit(5 + 7/12, "feet"),
  25248. weight: math.unit(120, "lb"),
  25249. name: "Back",
  25250. image: {
  25251. source: "./media/characters/logan-grey/back.svg",
  25252. extra: 1880/1794,
  25253. bottom: 24/1904
  25254. }
  25255. },
  25256. frontSfw: {
  25257. height: math.unit(5 + 7/12, "feet"),
  25258. weight: math.unit(120, "lb"),
  25259. name: "Front (SFW)",
  25260. image: {
  25261. source: "./media/characters/logan-grey/front-sfw.svg",
  25262. extra: 1836/1738,
  25263. bottom: 108/1944
  25264. }
  25265. },
  25266. backSfw: {
  25267. height: math.unit(5 + 7/12, "feet"),
  25268. weight: math.unit(120, "lb"),
  25269. name: "Back (SFW)",
  25270. image: {
  25271. source: "./media/characters/logan-grey/back-sfw.svg",
  25272. extra: 1880/1794,
  25273. bottom: 24/1904
  25274. }
  25275. },
  25276. hands: {
  25277. height: math.unit(0.84, "feet"),
  25278. name: "Hands",
  25279. image: {
  25280. source: "./media/characters/logan-grey/hands.svg"
  25281. }
  25282. },
  25283. paws: {
  25284. height: math.unit(0.72, "feet"),
  25285. name: "Paws",
  25286. image: {
  25287. source: "./media/characters/logan-grey/paws.svg"
  25288. }
  25289. },
  25290. cock: {
  25291. height: math.unit(1.45, "feet"),
  25292. name: "Cock",
  25293. image: {
  25294. source: "./media/characters/logan-grey/cock.svg"
  25295. }
  25296. },
  25297. cockAlt: {
  25298. height: math.unit(1.437, "feet"),
  25299. name: "Cock (alt)",
  25300. image: {
  25301. source: "./media/characters/logan-grey/cock-alt.svg"
  25302. }
  25303. },
  25304. },
  25305. [
  25306. {
  25307. name: "Normal",
  25308. height: math.unit(5 + 8 / 12, "feet")
  25309. },
  25310. {
  25311. name: "The 500 Foot Femboy",
  25312. height: math.unit(500, "feet"),
  25313. default: true
  25314. },
  25315. {
  25316. name: "Megmacro",
  25317. height: math.unit(20, "miles")
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(8 + 2 / 12, "feet"),
  25326. weight: math.unit(275, "lb"),
  25327. name: "Front",
  25328. image: {
  25329. source: "./media/characters/draganta/front.svg",
  25330. extra: 1177 / 1135,
  25331. bottom: 33.46 / 1212.1
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(8 + 6 / 12, "feet"),
  25339. default: true
  25340. },
  25341. {
  25342. name: "Macro",
  25343. height: math.unit(150, "feet")
  25344. },
  25345. {
  25346. name: "Megamacro",
  25347. height: math.unit(1000, "miles")
  25348. },
  25349. ]
  25350. ))
  25351. characterMakers.push(() => makeCharacter(
  25352. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25353. {
  25354. front: {
  25355. height: math.unit(1.72, "m"),
  25356. weight: math.unit(80, "lb"),
  25357. name: "Front",
  25358. image: {
  25359. source: "./media/characters/voski/front.svg",
  25360. extra: 2076.22 / 2022.4,
  25361. bottom: 102.7 / 2177.3866
  25362. }
  25363. },
  25364. frontFlaccid: {
  25365. height: math.unit(1.72, "m"),
  25366. weight: math.unit(80, "lb"),
  25367. name: "Front (Flaccid)",
  25368. image: {
  25369. source: "./media/characters/voski/front-flaccid.svg",
  25370. extra: 2076.22 / 2022.4,
  25371. bottom: 102.7 / 2177.3866
  25372. }
  25373. },
  25374. frontErect: {
  25375. height: math.unit(1.72, "m"),
  25376. weight: math.unit(80, "lb"),
  25377. name: "Front (Erect)",
  25378. image: {
  25379. source: "./media/characters/voski/front-erect.svg",
  25380. extra: 2076.22 / 2022.4,
  25381. bottom: 102.7 / 2177.3866
  25382. }
  25383. },
  25384. back: {
  25385. height: math.unit(1.72, "m"),
  25386. weight: math.unit(80, "lb"),
  25387. name: "Back",
  25388. image: {
  25389. source: "./media/characters/voski/back.svg",
  25390. extra: 2104 / 2051,
  25391. bottom: 10.45 / 2113.63
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(1.72, "m")
  25399. },
  25400. {
  25401. name: "Macro",
  25402. height: math.unit(55, "m"),
  25403. default: true
  25404. },
  25405. {
  25406. name: "Macro+",
  25407. height: math.unit(300, "m")
  25408. },
  25409. {
  25410. name: "Macro++",
  25411. height: math.unit(700, "m")
  25412. },
  25413. {
  25414. name: "Macro+++",
  25415. height: math.unit(4500, "m")
  25416. },
  25417. {
  25418. name: "Macro++++",
  25419. height: math.unit(45, "km")
  25420. },
  25421. {
  25422. name: "Macro+++++",
  25423. height: math.unit(1220, "km")
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(2.3, "m"),
  25432. weight: math.unit(304, "kg"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/icowom-lee/front.svg",
  25436. extra: 985 / 955,
  25437. bottom: 25.4 / 1012
  25438. }
  25439. },
  25440. fronttentacles: {
  25441. height: math.unit(2.3, "m"),
  25442. weight: math.unit(304, "kg"),
  25443. name: "Front-tentacles",
  25444. image: {
  25445. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25446. extra: 985 / 955,
  25447. bottom: 25.4 / 1012
  25448. }
  25449. },
  25450. back: {
  25451. height: math.unit(2.3, "m"),
  25452. weight: math.unit(304, "kg"),
  25453. name: "Back",
  25454. image: {
  25455. source: "./media/characters/icowom-lee/back.svg",
  25456. extra: 975 / 954,
  25457. bottom: 9.5 / 985
  25458. }
  25459. },
  25460. backtentacles: {
  25461. height: math.unit(2.3, "m"),
  25462. weight: math.unit(304, "kg"),
  25463. name: "Back-tentacles",
  25464. image: {
  25465. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25466. extra: 975 / 954,
  25467. bottom: 9.5 / 985
  25468. }
  25469. },
  25470. frontDressed: {
  25471. height: math.unit(2.3, "m"),
  25472. weight: math.unit(304, "kg"),
  25473. name: "Front (Dressed)",
  25474. image: {
  25475. source: "./media/characters/icowom-lee/front-dressed.svg",
  25476. extra: 3076 / 2933,
  25477. bottom: 51.4 / 3125.1889
  25478. }
  25479. },
  25480. rump: {
  25481. height: math.unit(0.776, "meters"),
  25482. name: "Rump",
  25483. image: {
  25484. source: "./media/characters/icowom-lee/rump.svg"
  25485. }
  25486. },
  25487. genitals: {
  25488. height: math.unit(0.78, "meters"),
  25489. name: "Genitals",
  25490. image: {
  25491. source: "./media/characters/icowom-lee/genitals.svg"
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Normal",
  25498. height: math.unit(2.3, "meters"),
  25499. default: true
  25500. },
  25501. {
  25502. name: "Macro",
  25503. height: math.unit(94, "meters"),
  25504. default: true
  25505. },
  25506. ]
  25507. ))
  25508. characterMakers.push(() => makeCharacter(
  25509. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25510. {
  25511. front: {
  25512. height: math.unit(22, "meters"),
  25513. weight: math.unit(21000, "kg"),
  25514. name: "Front",
  25515. image: {
  25516. source: "./media/characters/shock-diamond/front.svg",
  25517. extra: 2204 / 2053,
  25518. bottom: 65 / 2239.47
  25519. }
  25520. },
  25521. frontNude: {
  25522. height: math.unit(22, "meters"),
  25523. weight: math.unit(21000, "kg"),
  25524. name: "Front (Nude)",
  25525. image: {
  25526. source: "./media/characters/shock-diamond/front-nude.svg",
  25527. extra: 2514 / 2285,
  25528. bottom: 13 / 2527.56
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(3, "meters")
  25536. },
  25537. {
  25538. name: "Macro",
  25539. height: math.unit(22, "meters"),
  25540. default: true
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25546. {
  25547. front: {
  25548. height: math.unit(5 + 4/12, "feet"),
  25549. weight: math.unit(125, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/rory/front.svg",
  25553. extra: 1790/1681,
  25554. bottom: 66/1856
  25555. },
  25556. form: "normal",
  25557. default: true
  25558. },
  25559. back: {
  25560. height: math.unit(5 + 4/12, "feet"),
  25561. weight: math.unit(125, "lb"),
  25562. name: "Back",
  25563. image: {
  25564. source: "./media/characters/rory/back.svg",
  25565. extra: 1805/1690,
  25566. bottom: 56/1861
  25567. },
  25568. form: "normal"
  25569. },
  25570. frontDressed: {
  25571. height: math.unit(5 + 4/12, "feet"),
  25572. weight: math.unit(125, "lb"),
  25573. name: "Front (Dressed)",
  25574. image: {
  25575. source: "./media/characters/rory/front-dressed.svg",
  25576. extra: 1790/1681,
  25577. bottom: 66/1856
  25578. },
  25579. form: "normal"
  25580. },
  25581. backDressed: {
  25582. height: math.unit(5 + 4/12, "feet"),
  25583. weight: math.unit(125, "lb"),
  25584. name: "Back (Dressed)",
  25585. image: {
  25586. source: "./media/characters/rory/back-dressed.svg",
  25587. extra: 1805/1690,
  25588. bottom: 56/1861
  25589. },
  25590. form: "normal"
  25591. },
  25592. frontNsfw: {
  25593. height: math.unit(5 + 4/12, "feet"),
  25594. weight: math.unit(125, "lb"),
  25595. name: "Front (NSFW)",
  25596. image: {
  25597. source: "./media/characters/rory/front-nsfw.svg",
  25598. extra: 1790/1681,
  25599. bottom: 66/1856
  25600. },
  25601. form: "normal"
  25602. },
  25603. backNsfw: {
  25604. height: math.unit(5 + 4/12, "feet"),
  25605. weight: math.unit(125, "lb"),
  25606. name: "Back (NSFW)",
  25607. image: {
  25608. source: "./media/characters/rory/back-nsfw.svg",
  25609. extra: 1805/1690,
  25610. bottom: 56/1861
  25611. },
  25612. form: "normal"
  25613. },
  25614. dick: {
  25615. height: math.unit(0.8, "feet"),
  25616. name: "Dick",
  25617. image: {
  25618. source: "./media/characters/rory/dick.svg"
  25619. },
  25620. form: "normal"
  25621. },
  25622. thicc_front: {
  25623. height: math.unit(5 + 4/12, "feet"),
  25624. weight: math.unit(195, "lb"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/rory/thicc-front.svg",
  25628. extra: 1220/1100,
  25629. bottom: 103/1323
  25630. },
  25631. form: "thicc",
  25632. default: true
  25633. },
  25634. thicc_back: {
  25635. height: math.unit(5 + 4/12, "feet"),
  25636. weight: math.unit(195, "lb"),
  25637. name: "Back",
  25638. image: {
  25639. source: "./media/characters/rory/thicc-back.svg",
  25640. extra: 1166/1086,
  25641. bottom: 35/1201
  25642. },
  25643. form: "thicc"
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Micro",
  25649. height: math.unit(3, "inches"),
  25650. allForms: true
  25651. },
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(5 + 4/12, "feet"),
  25655. allForms: true,
  25656. default: true
  25657. },
  25658. {
  25659. name: "Macro",
  25660. height: math.unit(90, "feet"),
  25661. allForms: true
  25662. },
  25663. {
  25664. name: "Supercharged",
  25665. height: math.unit(270, "feet"),
  25666. allForms: true
  25667. },
  25668. ],
  25669. {
  25670. "normal": {
  25671. name: "Normal",
  25672. default: true
  25673. },
  25674. "thicc": {
  25675. name: "Thicc",
  25676. },
  25677. }
  25678. ))
  25679. characterMakers.push(() => makeCharacter(
  25680. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25681. {
  25682. front: {
  25683. height: math.unit(5 + 9 / 12, "feet"),
  25684. weight: math.unit(190, "lb"),
  25685. name: "Front",
  25686. image: {
  25687. source: "./media/characters/sprisk/front.svg",
  25688. extra: 1225 / 1180,
  25689. bottom: 42.7 / 1266.4
  25690. }
  25691. },
  25692. frontNsfw: {
  25693. height: math.unit(5 + 9 / 12, "feet"),
  25694. weight: math.unit(190, "lb"),
  25695. name: "Front (NSFW)",
  25696. image: {
  25697. source: "./media/characters/sprisk/front-nsfw.svg",
  25698. extra: 1225 / 1180,
  25699. bottom: 42.7 / 1266.4
  25700. }
  25701. },
  25702. back: {
  25703. height: math.unit(5 + 9 / 12, "feet"),
  25704. weight: math.unit(190, "lb"),
  25705. name: "Back",
  25706. image: {
  25707. source: "./media/characters/sprisk/back.svg",
  25708. extra: 1247 / 1200,
  25709. bottom: 5.6 / 1253.04
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Tiny",
  25716. height: math.unit(2, "inches")
  25717. },
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(5 + 9 / 12, "feet"),
  25721. default: true
  25722. },
  25723. {
  25724. name: "Mini Macro",
  25725. height: math.unit(18, "feet")
  25726. },
  25727. {
  25728. name: "Macro",
  25729. height: math.unit(100, "feet")
  25730. },
  25731. {
  25732. name: "MACRO",
  25733. height: math.unit(50, "miles")
  25734. },
  25735. {
  25736. name: "M A C R O",
  25737. height: math.unit(300, "miles")
  25738. },
  25739. ]
  25740. ))
  25741. characterMakers.push(() => makeCharacter(
  25742. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25743. {
  25744. side: {
  25745. height: math.unit(15.6, "meters"),
  25746. weight: math.unit(700000, "kg"),
  25747. name: "Side",
  25748. image: {
  25749. source: "./media/characters/bunsen/side.svg",
  25750. extra: 1644 / 358
  25751. }
  25752. },
  25753. foot: {
  25754. height: math.unit(1.611 * 1644 / 358, "meter"),
  25755. name: "Foot",
  25756. image: {
  25757. source: "./media/characters/bunsen/foot.svg"
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Small",
  25764. height: math.unit(10, "feet")
  25765. },
  25766. {
  25767. name: "Normal",
  25768. height: math.unit(15.6, "meters"),
  25769. default: true
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25775. {
  25776. front: {
  25777. height: math.unit(4 + 11 / 12, "feet"),
  25778. weight: math.unit(140, "lb"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/sesh/front.svg",
  25782. extra: 3420 / 3231,
  25783. bottom: 72 / 3949.5
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Normal",
  25790. height: math.unit(4 + 11 / 12, "feet")
  25791. },
  25792. {
  25793. name: "Grown",
  25794. height: math.unit(15, "feet"),
  25795. default: true
  25796. },
  25797. {
  25798. name: "Macro",
  25799. height: math.unit(1500, "feet")
  25800. },
  25801. {
  25802. name: "Megamacro",
  25803. height: math.unit(30, "miles")
  25804. },
  25805. {
  25806. name: "Continental",
  25807. height: math.unit(3000, "miles")
  25808. },
  25809. {
  25810. name: "Gravity Mass",
  25811. height: math.unit(300000, "miles")
  25812. },
  25813. {
  25814. name: "Planet Buster",
  25815. height: math.unit(30000000, "miles")
  25816. },
  25817. {
  25818. name: "Big",
  25819. height: math.unit(3000000000, "miles")
  25820. },
  25821. ]
  25822. ))
  25823. characterMakers.push(() => makeCharacter(
  25824. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25825. {
  25826. front: {
  25827. height: math.unit(9, "feet"),
  25828. weight: math.unit(350, "lb"),
  25829. name: "Front",
  25830. image: {
  25831. source: "./media/characters/pepper/front.svg",
  25832. extra: 1448 / 1312,
  25833. bottom: 9.4 / 1457.88
  25834. }
  25835. },
  25836. back: {
  25837. height: math.unit(9, "feet"),
  25838. weight: math.unit(350, "lb"),
  25839. name: "Back",
  25840. image: {
  25841. source: "./media/characters/pepper/back.svg",
  25842. extra: 1423 / 1300,
  25843. bottom: 4.6 / 1429
  25844. }
  25845. },
  25846. maw: {
  25847. height: math.unit(0.932, "feet"),
  25848. name: "Maw",
  25849. image: {
  25850. source: "./media/characters/pepper/maw.svg"
  25851. }
  25852. },
  25853. },
  25854. [
  25855. {
  25856. name: "Normal",
  25857. height: math.unit(9, "feet"),
  25858. default: true
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25864. {
  25865. front: {
  25866. height: math.unit(6, "feet"),
  25867. weight: math.unit(150, "lb"),
  25868. name: "Front",
  25869. image: {
  25870. source: "./media/characters/maelstrom/front.svg",
  25871. extra: 2100 / 1883,
  25872. bottom: 94 / 2196.7
  25873. }
  25874. },
  25875. },
  25876. [
  25877. {
  25878. name: "Less Kaiju",
  25879. height: math.unit(200, "feet")
  25880. },
  25881. {
  25882. name: "Kaiju",
  25883. height: math.unit(400, "feet"),
  25884. default: true
  25885. },
  25886. {
  25887. name: "Kaiju-er",
  25888. height: math.unit(600, "feet")
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25894. {
  25895. front: {
  25896. height: math.unit(6 + 5 / 12, "feet"),
  25897. weight: math.unit(180, "lb"),
  25898. name: "Front",
  25899. image: {
  25900. source: "./media/characters/lexir/front.svg",
  25901. extra: 180 / 172,
  25902. bottom: 12 / 192
  25903. }
  25904. },
  25905. back: {
  25906. height: math.unit(6 + 5 / 12, "feet"),
  25907. weight: math.unit(180, "lb"),
  25908. name: "Back",
  25909. image: {
  25910. source: "./media/characters/lexir/back.svg",
  25911. extra: 1273/1201,
  25912. bottom: 39/1312
  25913. }
  25914. },
  25915. },
  25916. [
  25917. {
  25918. name: "Very Smal",
  25919. height: math.unit(1, "nm")
  25920. },
  25921. {
  25922. name: "Normal",
  25923. height: math.unit(6 + 5 / 12, "feet"),
  25924. default: true
  25925. },
  25926. {
  25927. name: "Macro",
  25928. height: math.unit(1, "mile")
  25929. },
  25930. {
  25931. name: "Megamacro",
  25932. height: math.unit(50, "miles")
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25938. {
  25939. front: {
  25940. height: math.unit(1.5, "meters"),
  25941. weight: math.unit(100, "lb"),
  25942. name: "Front",
  25943. image: {
  25944. source: "./media/characters/maksio/front.svg",
  25945. extra: 1549 / 1531,
  25946. bottom: 123.7 / 1674.5429
  25947. }
  25948. },
  25949. back: {
  25950. height: math.unit(1.5, "meters"),
  25951. weight: math.unit(100, "lb"),
  25952. name: "Back",
  25953. image: {
  25954. source: "./media/characters/maksio/back.svg",
  25955. extra: 1541 / 1509,
  25956. bottom: 97 / 1639
  25957. }
  25958. },
  25959. hand: {
  25960. height: math.unit(0.621, "feet"),
  25961. name: "Hand",
  25962. image: {
  25963. source: "./media/characters/maksio/hand.svg"
  25964. }
  25965. },
  25966. foot: {
  25967. height: math.unit(1.611, "feet"),
  25968. name: "Foot",
  25969. image: {
  25970. source: "./media/characters/maksio/foot.svg"
  25971. }
  25972. },
  25973. },
  25974. [
  25975. {
  25976. name: "Shrunken",
  25977. height: math.unit(10, "cm")
  25978. },
  25979. {
  25980. name: "Normal",
  25981. height: math.unit(150, "cm"),
  25982. default: true
  25983. },
  25984. ]
  25985. ))
  25986. characterMakers.push(() => makeCharacter(
  25987. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25988. {
  25989. front: {
  25990. height: math.unit(100, "feet"),
  25991. name: "Front",
  25992. image: {
  25993. source: "./media/characters/erza-bear/front.svg",
  25994. extra: 2449 / 2390,
  25995. bottom: 46 / 2494
  25996. }
  25997. },
  25998. back: {
  25999. height: math.unit(100, "feet"),
  26000. name: "Back",
  26001. image: {
  26002. source: "./media/characters/erza-bear/back.svg",
  26003. extra: 2489 / 2430,
  26004. bottom: 85.4 / 2480
  26005. }
  26006. },
  26007. tail: {
  26008. height: math.unit(42, "feet"),
  26009. name: "Tail",
  26010. image: {
  26011. source: "./media/characters/erza-bear/tail.svg"
  26012. }
  26013. },
  26014. tongue: {
  26015. height: math.unit(8, "feet"),
  26016. name: "Tongue",
  26017. image: {
  26018. source: "./media/characters/erza-bear/tongue.svg"
  26019. }
  26020. },
  26021. dick: {
  26022. height: math.unit(10.5, "feet"),
  26023. name: "Dick",
  26024. image: {
  26025. source: "./media/characters/erza-bear/dick.svg"
  26026. }
  26027. },
  26028. dickVertical: {
  26029. height: math.unit(16.9, "feet"),
  26030. name: "Dick (Vertical)",
  26031. image: {
  26032. source: "./media/characters/erza-bear/dick-vertical.svg"
  26033. }
  26034. },
  26035. },
  26036. [
  26037. {
  26038. name: "Macro",
  26039. height: math.unit(100, "feet"),
  26040. default: true
  26041. },
  26042. ]
  26043. ))
  26044. characterMakers.push(() => makeCharacter(
  26045. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26046. {
  26047. front: {
  26048. height: math.unit(172, "cm"),
  26049. weight: math.unit(73, "kg"),
  26050. name: "Front",
  26051. image: {
  26052. source: "./media/characters/violet-flor/front.svg",
  26053. extra: 1474/1379,
  26054. bottom: 113/1587
  26055. }
  26056. },
  26057. back: {
  26058. height: math.unit(180, "cm"),
  26059. weight: math.unit(73, "kg"),
  26060. name: "Back",
  26061. image: {
  26062. source: "./media/characters/violet-flor/back.svg",
  26063. extra: 1660/1567,
  26064. bottom: 49/1709
  26065. }
  26066. },
  26067. },
  26068. [
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(172, "cm"),
  26072. default: true
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26078. {
  26079. front: {
  26080. height: math.unit(6, "feet"),
  26081. weight: math.unit(220, "lb"),
  26082. name: "Front",
  26083. image: {
  26084. source: "./media/characters/lynn-rhea/front.svg",
  26085. extra: 310 / 273
  26086. }
  26087. },
  26088. back: {
  26089. height: math.unit(6, "feet"),
  26090. weight: math.unit(220, "lb"),
  26091. name: "Back",
  26092. image: {
  26093. source: "./media/characters/lynn-rhea/back.svg",
  26094. extra: 310 / 273
  26095. }
  26096. },
  26097. dicks: {
  26098. height: math.unit(0.9, "feet"),
  26099. name: "Dicks",
  26100. image: {
  26101. source: "./media/characters/lynn-rhea/dicks.svg"
  26102. }
  26103. },
  26104. slit: {
  26105. height: math.unit(0.4, "feet"),
  26106. name: "Slit",
  26107. image: {
  26108. source: "./media/characters/lynn-rhea/slit.svg"
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Micro",
  26115. height: math.unit(1, "inch")
  26116. },
  26117. {
  26118. name: "Macro",
  26119. height: math.unit(60, "feet"),
  26120. default: true
  26121. },
  26122. {
  26123. name: "Megamacro",
  26124. height: math.unit(2, "miles")
  26125. },
  26126. {
  26127. name: "Gigamacro",
  26128. height: math.unit(3, "earths")
  26129. },
  26130. {
  26131. name: "Galactic",
  26132. height: math.unit(0.8, "galaxies")
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26138. {
  26139. front: {
  26140. height: math.unit(1600, "feet"),
  26141. weight: math.unit(85758785169, "kg"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/valathos/front.svg",
  26145. extra: 1451 / 1339
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(1600, "feet"),
  26153. default: true
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26159. {
  26160. front: {
  26161. height: math.unit(7 + 5 / 12, "feet"),
  26162. weight: math.unit(300, "lb"),
  26163. name: "Front",
  26164. image: {
  26165. source: "./media/characters/azula/front.svg",
  26166. extra: 3208 / 2880,
  26167. bottom: 80.2 / 3277
  26168. }
  26169. },
  26170. back: {
  26171. height: math.unit(7 + 5 / 12, "feet"),
  26172. weight: math.unit(300, "lb"),
  26173. name: "Back",
  26174. image: {
  26175. source: "./media/characters/azula/back.svg",
  26176. extra: 3169 / 2822,
  26177. bottom: 150.6 / 3321
  26178. }
  26179. },
  26180. },
  26181. [
  26182. {
  26183. name: "Normal",
  26184. height: math.unit(7 + 5 / 12, "feet"),
  26185. default: true
  26186. },
  26187. {
  26188. name: "Big",
  26189. height: math.unit(20, "feet")
  26190. },
  26191. ]
  26192. ))
  26193. characterMakers.push(() => makeCharacter(
  26194. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26195. {
  26196. front: {
  26197. height: math.unit(5 + 1 / 12, "feet"),
  26198. weight: math.unit(110, "lb"),
  26199. name: "Front",
  26200. image: {
  26201. source: "./media/characters/rupert/front.svg",
  26202. extra: 1549 / 1495,
  26203. bottom: 54.2 / 1604.4
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Normal",
  26210. height: math.unit(5 + 1 / 12, "feet"),
  26211. default: true
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26217. {
  26218. front: {
  26219. height: math.unit(8 + 4 / 12, "feet"),
  26220. weight: math.unit(350, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/sheera-castellar/front.svg",
  26224. extra: 1957 / 1894,
  26225. bottom: 26.97 / 1975.017
  26226. }
  26227. },
  26228. side: {
  26229. height: math.unit(8 + 4 / 12, "feet"),
  26230. weight: math.unit(350, "lb"),
  26231. name: "Side",
  26232. image: {
  26233. source: "./media/characters/sheera-castellar/side.svg",
  26234. extra: 1957 / 1894
  26235. }
  26236. },
  26237. back: {
  26238. height: math.unit(8 + 4 / 12, "feet"),
  26239. weight: math.unit(350, "lb"),
  26240. name: "Back",
  26241. image: {
  26242. source: "./media/characters/sheera-castellar/back.svg",
  26243. extra: 1957 / 1894
  26244. }
  26245. },
  26246. angled: {
  26247. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26248. weight: math.unit(350, "lb"),
  26249. name: "Angled",
  26250. image: {
  26251. source: "./media/characters/sheera-castellar/angled.svg",
  26252. extra: 1807 / 1707,
  26253. bottom: 68 / 1875
  26254. }
  26255. },
  26256. genitals: {
  26257. height: math.unit(2.2, "feet"),
  26258. name: "Genitals",
  26259. image: {
  26260. source: "./media/characters/sheera-castellar/genitals.svg"
  26261. }
  26262. },
  26263. taur: {
  26264. height: math.unit(10 + 6/12, "feet"),
  26265. name: "Taur",
  26266. image: {
  26267. source: "./media/characters/sheera-castellar/taur.svg",
  26268. extra: 2017/1909,
  26269. bottom: 185/2202
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(8 + 4 / 12, "feet")
  26277. },
  26278. {
  26279. name: "Macro",
  26280. height: math.unit(150, "feet"),
  26281. default: true
  26282. },
  26283. {
  26284. name: "Macro+",
  26285. height: math.unit(800, "feet")
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(6, "feet"),
  26294. weight: math.unit(150, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/jaipur/front.svg",
  26298. extra: 3860 / 3731,
  26299. bottom: 287 / 4140
  26300. }
  26301. },
  26302. back: {
  26303. height: math.unit(6, "feet"),
  26304. weight: math.unit(150, "lb"),
  26305. name: "Back",
  26306. image: {
  26307. source: "./media/characters/jaipur/back.svg",
  26308. extra: 1637/1561,
  26309. bottom: 154/1791
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Normal",
  26316. height: math.unit(1.85, "meters"),
  26317. default: true
  26318. },
  26319. {
  26320. name: "Macro",
  26321. height: math.unit(150, "meters")
  26322. },
  26323. {
  26324. name: "Macro+",
  26325. height: math.unit(0.5, "miles")
  26326. },
  26327. {
  26328. name: "Macro++",
  26329. height: math.unit(2.5, "miles")
  26330. },
  26331. {
  26332. name: "Macro+++",
  26333. height: math.unit(12, "miles")
  26334. },
  26335. {
  26336. name: "Macro++++",
  26337. height: math.unit(120, "miles")
  26338. },
  26339. {
  26340. name: "Macro+++++",
  26341. height: math.unit(1200, "miles")
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(6, "feet"),
  26350. weight: math.unit(150, "lb"),
  26351. name: "Front",
  26352. image: {
  26353. source: "./media/characters/sheila-wolf/front.svg",
  26354. extra: 1931 / 1808,
  26355. bottom: 29.5 / 1960
  26356. }
  26357. },
  26358. dick: {
  26359. height: math.unit(1.464, "feet"),
  26360. name: "Dick",
  26361. image: {
  26362. source: "./media/characters/sheila-wolf/dick.svg"
  26363. }
  26364. },
  26365. muzzle: {
  26366. height: math.unit(0.513, "feet"),
  26367. name: "Muzzle",
  26368. image: {
  26369. source: "./media/characters/sheila-wolf/muzzle.svg"
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Macro",
  26376. height: math.unit(70, "feet"),
  26377. default: true
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26383. {
  26384. front: {
  26385. height: math.unit(32, "meters"),
  26386. weight: math.unit(300000, "kg"),
  26387. name: "Front",
  26388. image: {
  26389. source: "./media/characters/almor/front.svg",
  26390. extra: 1408 / 1322,
  26391. bottom: 94.6 / 1506.5
  26392. }
  26393. },
  26394. },
  26395. [
  26396. {
  26397. name: "Macro",
  26398. height: math.unit(32, "meters"),
  26399. default: true
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26405. {
  26406. front: {
  26407. height: math.unit(7, "feet"),
  26408. weight: math.unit(200, "lb"),
  26409. name: "Front",
  26410. image: {
  26411. source: "./media/characters/silver/front.svg",
  26412. extra: 472.1 / 450.5,
  26413. bottom: 26.5 / 499.424
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(7, "feet"),
  26421. default: true
  26422. },
  26423. {
  26424. name: "Macro",
  26425. height: math.unit(800, "feet")
  26426. },
  26427. {
  26428. name: "Megamacro",
  26429. height: math.unit(250, "miles")
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(6, "feet"),
  26438. weight: math.unit(150, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/pliskin/front.svg",
  26442. extra: 1469 / 1359,
  26443. bottom: 70 / 1540
  26444. }
  26445. },
  26446. },
  26447. [
  26448. {
  26449. name: "Micro",
  26450. height: math.unit(3, "inches")
  26451. },
  26452. {
  26453. name: "Normal",
  26454. height: math.unit(5 + 11 / 12, "feet"),
  26455. default: true
  26456. },
  26457. {
  26458. name: "Macro",
  26459. height: math.unit(120, "feet")
  26460. },
  26461. ]
  26462. ))
  26463. characterMakers.push(() => makeCharacter(
  26464. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26465. {
  26466. front: {
  26467. height: math.unit(6, "feet"),
  26468. weight: math.unit(150, "lb"),
  26469. name: "Front",
  26470. image: {
  26471. source: "./media/characters/sammy/front.svg",
  26472. extra: 1193 / 1089,
  26473. bottom: 30.5 / 1226
  26474. }
  26475. },
  26476. },
  26477. [
  26478. {
  26479. name: "Macro",
  26480. height: math.unit(1700, "feet"),
  26481. default: true
  26482. },
  26483. {
  26484. name: "Examacro",
  26485. height: math.unit(2.5e9, "lightyears")
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(21, "meters"),
  26494. weight: math.unit(12, "tonnes"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/kuru/front.svg",
  26498. extra: 4301 / 3785,
  26499. bottom: 371.3 / 4691
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Macro",
  26506. height: math.unit(21, "meters"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(23, "meters"),
  26516. weight: math.unit(12.2, "tonnes"),
  26517. name: "Front",
  26518. image: {
  26519. source: "./media/characters/rakka/front.svg",
  26520. extra: 4670 / 4169,
  26521. bottom: 301 / 4968.7
  26522. }
  26523. },
  26524. },
  26525. [
  26526. {
  26527. name: "Macro",
  26528. height: math.unit(23, "meters"),
  26529. default: true
  26530. },
  26531. ]
  26532. ))
  26533. characterMakers.push(() => makeCharacter(
  26534. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26535. {
  26536. front: {
  26537. height: math.unit(6, "feet"),
  26538. weight: math.unit(150, "lb"),
  26539. name: "Front",
  26540. image: {
  26541. source: "./media/characters/rhys-feline/front.svg",
  26542. extra: 2488 / 2308,
  26543. bottom: 35.67 / 2519.19
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Really Small",
  26550. height: math.unit(1, "nm")
  26551. },
  26552. {
  26553. name: "Micro",
  26554. height: math.unit(4, "inches")
  26555. },
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(4 + 10 / 12, "feet"),
  26559. default: true
  26560. },
  26561. {
  26562. name: "Macro",
  26563. height: math.unit(100, "feet")
  26564. },
  26565. {
  26566. name: "Megamacto",
  26567. height: math.unit(50, "miles")
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26573. {
  26574. side: {
  26575. height: math.unit(30, "feet"),
  26576. weight: math.unit(35000, "kg"),
  26577. name: "Side",
  26578. image: {
  26579. source: "./media/characters/alydar/side.svg",
  26580. extra: 234 / 222,
  26581. bottom: 6.5 / 241
  26582. }
  26583. },
  26584. front: {
  26585. height: math.unit(30, "feet"),
  26586. weight: math.unit(35000, "kg"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/alydar/front.svg",
  26590. extra: 223.37 / 210.2,
  26591. bottom: 22.3 / 246.76
  26592. }
  26593. },
  26594. top: {
  26595. height: math.unit(64.54, "feet"),
  26596. weight: math.unit(35000, "kg"),
  26597. name: "Top",
  26598. image: {
  26599. source: "./media/characters/alydar/top.svg"
  26600. }
  26601. },
  26602. anthro: {
  26603. height: math.unit(30, "feet"),
  26604. weight: math.unit(9000, "kg"),
  26605. name: "Anthro",
  26606. image: {
  26607. source: "./media/characters/alydar/anthro.svg",
  26608. extra: 432 / 421,
  26609. bottom: 7.18 / 440
  26610. }
  26611. },
  26612. maw: {
  26613. height: math.unit(11.693, "feet"),
  26614. name: "Maw",
  26615. image: {
  26616. source: "./media/characters/alydar/maw.svg"
  26617. }
  26618. },
  26619. head: {
  26620. height: math.unit(11.693, "feet"),
  26621. name: "Head",
  26622. image: {
  26623. source: "./media/characters/alydar/head.svg"
  26624. }
  26625. },
  26626. headAlt: {
  26627. height: math.unit(12.861, "feet"),
  26628. name: "Head (Alt)",
  26629. image: {
  26630. source: "./media/characters/alydar/head-alt.svg"
  26631. }
  26632. },
  26633. wing: {
  26634. height: math.unit(20.712, "feet"),
  26635. name: "Wing",
  26636. image: {
  26637. source: "./media/characters/alydar/wing.svg"
  26638. }
  26639. },
  26640. wingFeather: {
  26641. height: math.unit(9.662, "feet"),
  26642. name: "Wing Feather",
  26643. image: {
  26644. source: "./media/characters/alydar/wing-feather.svg"
  26645. }
  26646. },
  26647. countourFeather: {
  26648. height: math.unit(4.154, "feet"),
  26649. name: "Contour Feather",
  26650. image: {
  26651. source: "./media/characters/alydar/contour-feather.svg"
  26652. }
  26653. },
  26654. },
  26655. [
  26656. {
  26657. name: "Diplomatic",
  26658. height: math.unit(13, "feet"),
  26659. default: true
  26660. },
  26661. {
  26662. name: "Small",
  26663. height: math.unit(30, "feet")
  26664. },
  26665. {
  26666. name: "Normal",
  26667. height: math.unit(95, "feet"),
  26668. default: true
  26669. },
  26670. {
  26671. name: "Large",
  26672. height: math.unit(285, "feet")
  26673. },
  26674. {
  26675. name: "Incomprehensible",
  26676. height: math.unit(450, "megameters")
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26682. {
  26683. side: {
  26684. height: math.unit(11, "feet"),
  26685. weight: math.unit(1750, "kg"),
  26686. name: "Side",
  26687. image: {
  26688. source: "./media/characters/selicia/side.svg",
  26689. extra: 440 / 396,
  26690. bottom: 24.8 / 465.979
  26691. }
  26692. },
  26693. maw: {
  26694. height: math.unit(4.665, "feet"),
  26695. name: "Maw",
  26696. image: {
  26697. source: "./media/characters/selicia/maw.svg"
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(11, "feet"),
  26705. default: true
  26706. },
  26707. ]
  26708. ))
  26709. characterMakers.push(() => makeCharacter(
  26710. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26711. {
  26712. side: {
  26713. height: math.unit(2 + 6 / 12, "feet"),
  26714. weight: math.unit(30, "lb"),
  26715. name: "Side",
  26716. image: {
  26717. source: "./media/characters/layla/side.svg",
  26718. extra: 244 / 188,
  26719. bottom: 18.2 / 262.1
  26720. }
  26721. },
  26722. back: {
  26723. height: math.unit(2 + 6 / 12, "feet"),
  26724. weight: math.unit(30, "lb"),
  26725. name: "Back",
  26726. image: {
  26727. source: "./media/characters/layla/back.svg",
  26728. extra: 308 / 241.5,
  26729. bottom: 8.9 / 316.8
  26730. }
  26731. },
  26732. cumming: {
  26733. height: math.unit(2 + 6 / 12, "feet"),
  26734. weight: math.unit(30, "lb"),
  26735. name: "Cumming",
  26736. image: {
  26737. source: "./media/characters/layla/cumming.svg",
  26738. extra: 342 / 279,
  26739. bottom: 595 / 938
  26740. }
  26741. },
  26742. dickFlaccid: {
  26743. height: math.unit(2.595, "feet"),
  26744. name: "Flaccid Genitals",
  26745. image: {
  26746. source: "./media/characters/layla/dick-flaccid.svg"
  26747. }
  26748. },
  26749. dickErect: {
  26750. height: math.unit(2.359, "feet"),
  26751. name: "Erect Genitals",
  26752. image: {
  26753. source: "./media/characters/layla/dick-erect.svg"
  26754. }
  26755. },
  26756. dragon: {
  26757. height: math.unit(40, "feet"),
  26758. name: "Dragon",
  26759. image: {
  26760. source: "./media/characters/layla/dragon.svg",
  26761. extra: 610/535,
  26762. bottom: 367/977
  26763. }
  26764. },
  26765. taur: {
  26766. height: math.unit(30, "feet"),
  26767. name: "Taur",
  26768. image: {
  26769. source: "./media/characters/layla/taur.svg",
  26770. extra: 1268/1199,
  26771. bottom: 112/1380
  26772. }
  26773. },
  26774. },
  26775. [
  26776. {
  26777. name: "Micro",
  26778. height: math.unit(1, "inch")
  26779. },
  26780. {
  26781. name: "Small",
  26782. height: math.unit(1, "foot")
  26783. },
  26784. {
  26785. name: "Normal",
  26786. height: math.unit(2 + 6 / 12, "feet"),
  26787. default: true
  26788. },
  26789. {
  26790. name: "Macro",
  26791. height: math.unit(200, "feet")
  26792. },
  26793. {
  26794. name: "Megamacro",
  26795. height: math.unit(1000, "miles")
  26796. },
  26797. {
  26798. name: "Planetary",
  26799. height: math.unit(8000, "miles")
  26800. },
  26801. {
  26802. name: "True Layla",
  26803. height: math.unit(200000 * 7, "multiverses")
  26804. },
  26805. ]
  26806. ))
  26807. characterMakers.push(() => makeCharacter(
  26808. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26809. {
  26810. back: {
  26811. height: math.unit(10.5, "feet"),
  26812. weight: math.unit(800, "lb"),
  26813. name: "Back",
  26814. image: {
  26815. source: "./media/characters/knox/back.svg",
  26816. extra: 1486 / 1089,
  26817. bottom: 107 / 1601.4
  26818. }
  26819. },
  26820. side: {
  26821. height: math.unit(10.5, "feet"),
  26822. weight: math.unit(800, "lb"),
  26823. name: "Side",
  26824. image: {
  26825. source: "./media/characters/knox/side.svg",
  26826. extra: 244 / 218,
  26827. bottom: 14 / 260
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Compact",
  26834. height: math.unit(10.5, "feet"),
  26835. default: true
  26836. },
  26837. {
  26838. name: "Dynamax",
  26839. height: math.unit(210, "feet")
  26840. },
  26841. {
  26842. name: "Full Macro",
  26843. height: math.unit(850, "feet")
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(28, "feet"),
  26852. weight: math.unit(10500, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/kayda/front.svg",
  26856. extra: 1536 / 1428,
  26857. bottom: 68.7 / 1603
  26858. }
  26859. },
  26860. back: {
  26861. height: math.unit(28, "feet"),
  26862. weight: math.unit(10500, "lb"),
  26863. name: "Back",
  26864. image: {
  26865. source: "./media/characters/kayda/back.svg",
  26866. extra: 1557 / 1464,
  26867. bottom: 39.5 / 1597.49
  26868. }
  26869. },
  26870. dick: {
  26871. height: math.unit(3.858, "feet"),
  26872. name: "Dick",
  26873. image: {
  26874. source: "./media/characters/kayda/dick.svg"
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Macro",
  26881. height: math.unit(28, "feet"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(10 + 11 / 12, "feet"),
  26891. weight: math.unit(1400, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/brian/front.svg",
  26895. extra: 737 / 692,
  26896. bottom: 55.4 / 785
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(10 + 11 / 12, "feet"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(5 + 8 / 12, "feet"),
  26913. weight: math.unit(140, "lb"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/khemri/front.svg",
  26917. extra: 4780 / 4059,
  26918. bottom: 80.1 / 4859.25
  26919. }
  26920. },
  26921. },
  26922. [
  26923. {
  26924. name: "Micro",
  26925. height: math.unit(6, "inches")
  26926. },
  26927. {
  26928. name: "Normal",
  26929. height: math.unit(5 + 8 / 12, "feet"),
  26930. default: true
  26931. },
  26932. ]
  26933. ))
  26934. characterMakers.push(() => makeCharacter(
  26935. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26936. {
  26937. front: {
  26938. height: math.unit(13, "feet"),
  26939. weight: math.unit(1700, "lb"),
  26940. name: "Front",
  26941. image: {
  26942. source: "./media/characters/felix-braveheart/front.svg",
  26943. extra: 1222 / 1157,
  26944. bottom: 53.2 / 1280
  26945. }
  26946. },
  26947. back: {
  26948. height: math.unit(13, "feet"),
  26949. weight: math.unit(1700, "lb"),
  26950. name: "Back",
  26951. image: {
  26952. source: "./media/characters/felix-braveheart/back.svg",
  26953. extra: 1277 / 1203,
  26954. bottom: 50.2 / 1327
  26955. }
  26956. },
  26957. feral: {
  26958. height: math.unit(6, "feet"),
  26959. weight: math.unit(400, "lb"),
  26960. name: "Feral",
  26961. image: {
  26962. source: "./media/characters/felix-braveheart/feral.svg",
  26963. extra: 682 / 625,
  26964. bottom: 6.9 / 688
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(13, "feet"),
  26972. default: true
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26978. {
  26979. side: {
  26980. height: math.unit(5 + 11 / 12, "feet"),
  26981. weight: math.unit(1400, "lb"),
  26982. name: "Side",
  26983. image: {
  26984. source: "./media/characters/shadow-blade/side.svg",
  26985. extra: 1726 / 1267,
  26986. bottom: 58.4 / 1785
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Normal",
  26993. height: math.unit(5 + 11 / 12, "feet"),
  26994. default: true
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(1 + 6 / 12, "feet"),
  27003. weight: math.unit(25, "lb"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/karla-halldor/front.svg",
  27007. extra: 1459 / 1383,
  27008. bottom: 12 / 1472
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(1 + 6 / 12, "feet"),
  27016. default: true
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(6 + 2 / 12, "feet"),
  27025. weight: math.unit(160, "lb"),
  27026. name: "Front",
  27027. image: {
  27028. source: "./media/characters/ariam/front.svg",
  27029. extra: 1073/976,
  27030. bottom: 52/1125
  27031. }
  27032. },
  27033. back: {
  27034. height: math.unit(6 + 2/12, "feet"),
  27035. weight: math.unit(160, "lb"),
  27036. name: "Back",
  27037. image: {
  27038. source: "./media/characters/ariam/back.svg",
  27039. extra: 1103/1023,
  27040. bottom: 9/1112
  27041. }
  27042. },
  27043. dressed: {
  27044. height: math.unit(6 + 2/12, "feet"),
  27045. weight: math.unit(160, "lb"),
  27046. name: "Dressed",
  27047. image: {
  27048. source: "./media/characters/ariam/dressed.svg",
  27049. extra: 1099/1009,
  27050. bottom: 25/1124
  27051. }
  27052. },
  27053. squatting: {
  27054. height: math.unit(4.1, "feet"),
  27055. weight: math.unit(160, "lb"),
  27056. name: "Squatting",
  27057. image: {
  27058. source: "./media/characters/ariam/squatting.svg",
  27059. extra: 2617 / 2112,
  27060. bottom: 61.2 / 2681,
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Normal",
  27067. height: math.unit(6 + 2 / 12, "feet"),
  27068. default: true
  27069. },
  27070. {
  27071. name: "Normal+",
  27072. height: math.unit(4, "meters")
  27073. },
  27074. {
  27075. name: "Macro",
  27076. height: math.unit(50, "meters")
  27077. },
  27078. {
  27079. name: "Macro+",
  27080. height: math.unit(100, "meters")
  27081. },
  27082. {
  27083. name: "Megamacro",
  27084. height: math.unit(20, "km")
  27085. },
  27086. {
  27087. name: "Caretaker",
  27088. height: math.unit(444, "megameters")
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(1.67, "meters"),
  27097. weight: math.unit(140, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27101. extra: 438 / 410,
  27102. bottom: 0.75 / 439
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Shrunken",
  27109. height: math.unit(7.6, "cm")
  27110. },
  27111. {
  27112. name: "Human Scale",
  27113. height: math.unit(1.67, "meters")
  27114. },
  27115. {
  27116. name: "Wolxi Scale",
  27117. height: math.unit(36.7, "meters"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(1.73, "meters"),
  27127. weight: math.unit(240, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/izue-two-mothers/front.svg",
  27131. extra: 469 / 437,
  27132. bottom: 1.24 / 470.6
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Shrunken",
  27139. height: math.unit(7.86, "cm")
  27140. },
  27141. {
  27142. name: "Human Scale",
  27143. height: math.unit(1.73, "meters")
  27144. },
  27145. {
  27146. name: "Wolxi Scale",
  27147. height: math.unit(38, "meters"),
  27148. default: true
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(1.55, "meters"),
  27157. weight: math.unit(120, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/teeku-love-shack/front.svg",
  27161. extra: 387 / 362,
  27162. bottom: 1.51 / 388
  27163. }
  27164. },
  27165. },
  27166. [
  27167. {
  27168. name: "Shrunken",
  27169. height: math.unit(7, "cm")
  27170. },
  27171. {
  27172. name: "Human Scale",
  27173. height: math.unit(1.55, "meters")
  27174. },
  27175. {
  27176. name: "Wolxi Scale",
  27177. height: math.unit(34.1, "meters"),
  27178. default: true
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(1.83, "meters"),
  27187. weight: math.unit(135, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/dejma-the-red/front.svg",
  27191. extra: 480 / 458,
  27192. bottom: 1.8 / 482
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Shrunken",
  27199. height: math.unit(8.3, "cm")
  27200. },
  27201. {
  27202. name: "Human Scale",
  27203. height: math.unit(1.83, "meters")
  27204. },
  27205. {
  27206. name: "Wolxi Scale",
  27207. height: math.unit(40, "meters"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(1.78, "meters"),
  27217. weight: math.unit(65, "kg"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/aki/front.svg",
  27221. extra: 452 / 415
  27222. }
  27223. },
  27224. frontNsfw: {
  27225. height: math.unit(1.78, "meters"),
  27226. weight: math.unit(65, "kg"),
  27227. name: "Front (NSFW)",
  27228. image: {
  27229. source: "./media/characters/aki/front-nsfw.svg",
  27230. extra: 452 / 415
  27231. }
  27232. },
  27233. back: {
  27234. height: math.unit(1.78, "meters"),
  27235. weight: math.unit(65, "kg"),
  27236. name: "Back",
  27237. image: {
  27238. source: "./media/characters/aki/back.svg",
  27239. extra: 452 / 415
  27240. }
  27241. },
  27242. rump: {
  27243. height: math.unit(2.05, "feet"),
  27244. name: "Rump",
  27245. image: {
  27246. source: "./media/characters/aki/rump.svg"
  27247. }
  27248. },
  27249. dick: {
  27250. height: math.unit(0.95, "feet"),
  27251. name: "Dick",
  27252. image: {
  27253. source: "./media/characters/aki/dick.svg"
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Micro",
  27260. height: math.unit(15, "cm")
  27261. },
  27262. {
  27263. name: "Normal",
  27264. height: math.unit(178, "cm"),
  27265. default: true
  27266. },
  27267. {
  27268. name: "Macro",
  27269. height: math.unit(214, "m")
  27270. },
  27271. {
  27272. name: "Macro+",
  27273. height: math.unit(534, "m")
  27274. },
  27275. ]
  27276. ))
  27277. characterMakers.push(() => makeCharacter(
  27278. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27279. {
  27280. front: {
  27281. height: math.unit(5 + 5 / 12, "feet"),
  27282. weight: math.unit(120, "lb"),
  27283. name: "Front",
  27284. image: {
  27285. source: "./media/characters/ari/front.svg",
  27286. extra: 1550/1471,
  27287. bottom: 39/1589
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Normal",
  27294. height: math.unit(5 + 5 / 12, "feet")
  27295. },
  27296. {
  27297. name: "Macro",
  27298. height: math.unit(100, "feet"),
  27299. default: true
  27300. },
  27301. {
  27302. name: "Megamacro",
  27303. height: math.unit(100, "miles")
  27304. },
  27305. {
  27306. name: "Gigamacro",
  27307. height: math.unit(80000, "miles")
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27313. {
  27314. side: {
  27315. height: math.unit(9, "feet"),
  27316. weight: math.unit(400, "kg"),
  27317. name: "Side",
  27318. image: {
  27319. source: "./media/characters/bolt/side.svg",
  27320. extra: 1126 / 896,
  27321. bottom: 60 / 1187.3,
  27322. }
  27323. },
  27324. },
  27325. [
  27326. {
  27327. name: "Micro",
  27328. height: math.unit(5, "inches")
  27329. },
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(9, "feet"),
  27333. default: true
  27334. },
  27335. {
  27336. name: "Macro",
  27337. height: math.unit(700, "feet")
  27338. },
  27339. {
  27340. name: "Max Size",
  27341. height: math.unit(1.52e22, "yottameters")
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27347. {
  27348. front: {
  27349. height: math.unit(4.3, "meters"),
  27350. weight: math.unit(3, "tons"),
  27351. name: "Front",
  27352. image: {
  27353. source: "./media/characters/draekon-sylviar/front.svg",
  27354. extra: 2072/1512,
  27355. bottom: 74/2146
  27356. }
  27357. },
  27358. back: {
  27359. height: math.unit(4.3, "meters"),
  27360. weight: math.unit(3, "tons"),
  27361. name: "Back",
  27362. image: {
  27363. source: "./media/characters/draekon-sylviar/back.svg",
  27364. extra: 1639/1483,
  27365. bottom: 41/1680
  27366. }
  27367. },
  27368. feral: {
  27369. height: math.unit(1.15, "meters"),
  27370. weight: math.unit(3, "tons"),
  27371. name: "Feral",
  27372. image: {
  27373. source: "./media/characters/draekon-sylviar/feral.svg",
  27374. extra: 1033/395,
  27375. bottom: 130/1163
  27376. }
  27377. },
  27378. maw: {
  27379. height: math.unit(1.3, "meters"),
  27380. name: "Maw",
  27381. image: {
  27382. source: "./media/characters/draekon-sylviar/maw.svg"
  27383. }
  27384. },
  27385. mawSeparated: {
  27386. height: math.unit(1.53, "meters"),
  27387. name: "Separated Maw",
  27388. image: {
  27389. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27390. }
  27391. },
  27392. tail: {
  27393. height: math.unit(1.15, "meters"),
  27394. name: "Tail",
  27395. image: {
  27396. source: "./media/characters/draekon-sylviar/tail.svg"
  27397. }
  27398. },
  27399. tailDick: {
  27400. height: math.unit(1.15, "meters"),
  27401. name: "Tail (Dick)",
  27402. image: {
  27403. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27404. }
  27405. },
  27406. tailDickSeparated: {
  27407. height: math.unit(1.19, "meters"),
  27408. name: "Tail (Separated Dick)",
  27409. image: {
  27410. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27411. }
  27412. },
  27413. slit: {
  27414. height: math.unit(1, "meters"),
  27415. name: "Slit",
  27416. image: {
  27417. source: "./media/characters/draekon-sylviar/slit.svg"
  27418. }
  27419. },
  27420. dick: {
  27421. height: math.unit(1.15, "meters"),
  27422. name: "Dick",
  27423. image: {
  27424. source: "./media/characters/draekon-sylviar/dick.svg"
  27425. }
  27426. },
  27427. dickSeparated: {
  27428. height: math.unit(1.1, "meters"),
  27429. name: "Separated Dick",
  27430. image: {
  27431. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27432. }
  27433. },
  27434. sheath: {
  27435. height: math.unit(1.15, "meters"),
  27436. name: "Sheath",
  27437. image: {
  27438. source: "./media/characters/draekon-sylviar/sheath.svg"
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Small",
  27445. height: math.unit(4.53 / 2, "meters"),
  27446. default: true
  27447. },
  27448. {
  27449. name: "Normal",
  27450. height: math.unit(4.53, "meters"),
  27451. default: true
  27452. },
  27453. {
  27454. name: "Large",
  27455. height: math.unit(4.53 * 2, "meters"),
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(6 + 2 / 12, "feet"),
  27464. weight: math.unit(180, "lb"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/brawler/front.svg",
  27468. extra: 3301 / 3027,
  27469. bottom: 138 / 3439
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(6 + 2 / 12, "feet"),
  27477. default: true
  27478. },
  27479. ]
  27480. ))
  27481. characterMakers.push(() => makeCharacter(
  27482. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27483. {
  27484. front: {
  27485. height: math.unit(11, "feet"),
  27486. weight: math.unit(1000, "lb"),
  27487. name: "Front",
  27488. image: {
  27489. source: "./media/characters/alex/front.svg",
  27490. bottom: 44.5 / 620
  27491. }
  27492. },
  27493. },
  27494. [
  27495. {
  27496. name: "Micro",
  27497. height: math.unit(5, "inches")
  27498. },
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(11, "feet"),
  27502. default: true
  27503. },
  27504. {
  27505. name: "Macro",
  27506. height: math.unit(9.5e9, "feet")
  27507. },
  27508. {
  27509. name: "Max Size",
  27510. height: math.unit(1.4e283, "yottameters")
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27516. {
  27517. female: {
  27518. height: math.unit(29.9, "m"),
  27519. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27520. name: "Female",
  27521. image: {
  27522. source: "./media/characters/zenari/female.svg",
  27523. extra: 3281.6 / 3217,
  27524. bottom: 72.2 / 3353
  27525. }
  27526. },
  27527. male: {
  27528. height: math.unit(27.7, "m"),
  27529. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27530. name: "Male",
  27531. image: {
  27532. source: "./media/characters/zenari/male.svg",
  27533. extra: 3008 / 2991,
  27534. bottom: 54.6 / 3069
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Macro",
  27541. height: math.unit(29.7, "meters"),
  27542. default: true
  27543. },
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27548. {
  27549. female: {
  27550. height: math.unit(23.8, "m"),
  27551. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27552. name: "Female",
  27553. image: {
  27554. source: "./media/characters/mactarian/female.svg",
  27555. extra: 2662 / 2569,
  27556. bottom: 73 / 2736
  27557. }
  27558. },
  27559. male: {
  27560. height: math.unit(23.8, "m"),
  27561. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27562. name: "Male",
  27563. image: {
  27564. source: "./media/characters/mactarian/male.svg",
  27565. extra: 2673 / 2600,
  27566. bottom: 76 / 2750
  27567. }
  27568. },
  27569. },
  27570. [
  27571. {
  27572. name: "Macro",
  27573. height: math.unit(23.8, "meters"),
  27574. default: true
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27580. {
  27581. female: {
  27582. height: math.unit(19.3, "m"),
  27583. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27584. name: "Female",
  27585. image: {
  27586. source: "./media/characters/umok/female.svg",
  27587. extra: 2186 / 2078,
  27588. bottom: 87 / 2277
  27589. }
  27590. },
  27591. male: {
  27592. height: math.unit(19.5, "m"),
  27593. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27594. name: "Male",
  27595. image: {
  27596. source: "./media/characters/umok/male.svg",
  27597. extra: 2233 / 2140,
  27598. bottom: 24.4 / 2258
  27599. }
  27600. },
  27601. },
  27602. [
  27603. {
  27604. name: "Macro",
  27605. height: math.unit(19.3, "meters"),
  27606. default: true
  27607. },
  27608. ]
  27609. ))
  27610. characterMakers.push(() => makeCharacter(
  27611. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27612. {
  27613. female: {
  27614. height: math.unit(26.15, "m"),
  27615. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27616. name: "Female",
  27617. image: {
  27618. source: "./media/characters/joraxian/female.svg",
  27619. extra: 2912 / 2824,
  27620. bottom: 36 / 2956
  27621. }
  27622. },
  27623. male: {
  27624. height: math.unit(25.4, "m"),
  27625. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27626. name: "Male",
  27627. image: {
  27628. source: "./media/characters/joraxian/male.svg",
  27629. extra: 2877 / 2721,
  27630. bottom: 82 / 2967
  27631. }
  27632. },
  27633. },
  27634. [
  27635. {
  27636. name: "Macro",
  27637. height: math.unit(26.15, "meters"),
  27638. default: true
  27639. },
  27640. ]
  27641. ))
  27642. characterMakers.push(() => makeCharacter(
  27643. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27644. {
  27645. female: {
  27646. height: math.unit(21.6, "m"),
  27647. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27648. name: "Female",
  27649. image: {
  27650. source: "./media/characters/sthara/female.svg",
  27651. extra: 2516 / 2347,
  27652. bottom: 21.5 / 2537
  27653. }
  27654. },
  27655. male: {
  27656. height: math.unit(24, "m"),
  27657. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27658. name: "Male",
  27659. image: {
  27660. source: "./media/characters/sthara/male.svg",
  27661. extra: 2732 / 2607,
  27662. bottom: 23 / 2732
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Macro",
  27669. height: math.unit(21.6, "meters"),
  27670. default: true
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27676. {
  27677. front: {
  27678. height: math.unit(6 + 4 / 12, "feet"),
  27679. weight: math.unit(175, "lb"),
  27680. name: "Front",
  27681. image: {
  27682. source: "./media/characters/luka-bryzant/front.svg",
  27683. extra: 311 / 289,
  27684. bottom: 4 / 315
  27685. }
  27686. },
  27687. back: {
  27688. height: math.unit(6 + 4 / 12, "feet"),
  27689. weight: math.unit(175, "lb"),
  27690. name: "Back",
  27691. image: {
  27692. source: "./media/characters/luka-bryzant/back.svg",
  27693. extra: 311 / 289,
  27694. bottom: 3.8 / 313.7
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Micro",
  27701. height: math.unit(10, "inches")
  27702. },
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(6 + 4 / 12, "feet"),
  27706. default: true
  27707. },
  27708. {
  27709. name: "Large",
  27710. height: math.unit(12, "feet")
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27716. {
  27717. front: {
  27718. height: math.unit(5 + 7 / 12, "feet"),
  27719. weight: math.unit(185, "lb"),
  27720. name: "Front",
  27721. image: {
  27722. source: "./media/characters/aman-aquila/front.svg",
  27723. extra: 1013 / 976,
  27724. bottom: 45.6 / 1057
  27725. }
  27726. },
  27727. side: {
  27728. height: math.unit(5 + 7 / 12, "feet"),
  27729. weight: math.unit(185, "lb"),
  27730. name: "Side",
  27731. image: {
  27732. source: "./media/characters/aman-aquila/side.svg",
  27733. extra: 1054 / 1011,
  27734. bottom: 15 / 1070
  27735. }
  27736. },
  27737. back: {
  27738. height: math.unit(5 + 7 / 12, "feet"),
  27739. weight: math.unit(185, "lb"),
  27740. name: "Back",
  27741. image: {
  27742. source: "./media/characters/aman-aquila/back.svg",
  27743. extra: 1026 / 970,
  27744. bottom: 12 / 1039
  27745. }
  27746. },
  27747. head: {
  27748. height: math.unit(1.211, "feet"),
  27749. name: "Head",
  27750. image: {
  27751. source: "./media/characters/aman-aquila/head.svg",
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Minimicro",
  27758. height: math.unit(0.057, "inches")
  27759. },
  27760. {
  27761. name: "Micro",
  27762. height: math.unit(7, "inches")
  27763. },
  27764. {
  27765. name: "Mini",
  27766. height: math.unit(3 + 7 / 12, "feet")
  27767. },
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(5 + 7 / 12, "feet"),
  27771. default: true
  27772. },
  27773. {
  27774. name: "Macro",
  27775. height: math.unit(157 + 7 / 12, "feet")
  27776. },
  27777. {
  27778. name: "Megamacro",
  27779. height: math.unit(1557 + 7 / 12, "feet")
  27780. },
  27781. {
  27782. name: "Gigamacro",
  27783. height: math.unit(15557 + 7 / 12, "feet")
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27789. {
  27790. front: {
  27791. height: math.unit(3 + 2 / 12, "inches"),
  27792. weight: math.unit(0.3, "ounces"),
  27793. name: "Front",
  27794. image: {
  27795. source: "./media/characters/hiphae/front.svg",
  27796. extra: 1931 / 1683,
  27797. bottom: 24 / 1955
  27798. }
  27799. },
  27800. },
  27801. [
  27802. {
  27803. name: "Normal",
  27804. height: math.unit(3 + 1 / 2, "inches"),
  27805. default: true
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27811. {
  27812. front: {
  27813. height: math.unit(5 + 10 / 12, "feet"),
  27814. weight: math.unit(165, "lb"),
  27815. name: "Front",
  27816. image: {
  27817. source: "./media/characters/nicky/front.svg",
  27818. extra: 3144 / 2886,
  27819. bottom: 45.6 / 3192
  27820. }
  27821. },
  27822. back: {
  27823. height: math.unit(5 + 10 / 12, "feet"),
  27824. weight: math.unit(165, "lb"),
  27825. name: "Back",
  27826. image: {
  27827. source: "./media/characters/nicky/back.svg",
  27828. extra: 3055 / 2804,
  27829. bottom: 28.4 / 3087
  27830. }
  27831. },
  27832. frontclothed: {
  27833. height: math.unit(5 + 10 / 12, "feet"),
  27834. weight: math.unit(165, "lb"),
  27835. name: "Front-clothed",
  27836. image: {
  27837. source: "./media/characters/nicky/front-clothed.svg",
  27838. extra: 3184.9 / 2926.9,
  27839. bottom: 86.5 / 3239.9
  27840. }
  27841. },
  27842. foot: {
  27843. height: math.unit(1.16, "feet"),
  27844. name: "Foot",
  27845. image: {
  27846. source: "./media/characters/nicky/foot.svg"
  27847. }
  27848. },
  27849. feet: {
  27850. height: math.unit(1.34, "feet"),
  27851. name: "Feet",
  27852. image: {
  27853. source: "./media/characters/nicky/feet.svg"
  27854. }
  27855. },
  27856. maw: {
  27857. height: math.unit(0.9, "feet"),
  27858. name: "Maw",
  27859. image: {
  27860. source: "./media/characters/nicky/maw.svg"
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(5 + 10 / 12, "feet"),
  27868. default: true
  27869. },
  27870. {
  27871. name: "Macro",
  27872. height: math.unit(60, "feet")
  27873. },
  27874. {
  27875. name: "Megamacro",
  27876. height: math.unit(1, "mile")
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27882. {
  27883. side: {
  27884. height: math.unit(10, "feet"),
  27885. weight: math.unit(600, "lb"),
  27886. name: "Side",
  27887. image: {
  27888. source: "./media/characters/blair/side.svg",
  27889. bottom: 16.6 / 475,
  27890. extra: 458 / 431
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Micro",
  27897. height: math.unit(8, "inches")
  27898. },
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(10, "feet"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Macro",
  27906. height: math.unit(180, "feet")
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(5 + 4 / 12, "feet"),
  27915. weight: math.unit(125, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/fisher/front.svg",
  27919. extra: 444 / 390,
  27920. bottom: 2 / 444.8
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Micro",
  27927. height: math.unit(4, "inches")
  27928. },
  27929. {
  27930. name: "Normal",
  27931. height: math.unit(5 + 4 / 12, "feet"),
  27932. default: true
  27933. },
  27934. {
  27935. name: "Macro",
  27936. height: math.unit(100, "feet")
  27937. },
  27938. ]
  27939. ))
  27940. characterMakers.push(() => makeCharacter(
  27941. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27942. {
  27943. front: {
  27944. height: math.unit(6.71, "feet"),
  27945. weight: math.unit(200, "lb"),
  27946. preyCapacity: math.unit(1000000, "people"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/gliss/front.svg",
  27950. extra: 2347 / 2231,
  27951. bottom: 113 / 2462
  27952. }
  27953. },
  27954. hammerspaceSize: {
  27955. height: math.unit(6.71 * 717, "feet"),
  27956. weight: math.unit(200, "lb"),
  27957. preyCapacity: math.unit(1000000, "people"),
  27958. name: "Hammerspace Size",
  27959. image: {
  27960. source: "./media/characters/gliss/front.svg",
  27961. extra: 2347 / 2231,
  27962. bottom: 113 / 2462
  27963. }
  27964. },
  27965. },
  27966. [
  27967. {
  27968. name: "Normal",
  27969. height: math.unit(6.71, "feet"),
  27970. default: true
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27976. {
  27977. side: {
  27978. height: math.unit(1.44, "m"),
  27979. weight: math.unit(80, "kg"),
  27980. name: "Side",
  27981. image: {
  27982. source: "./media/characters/dune-anderson/side.svg",
  27983. bottom: 49 / 1426
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Wolf-sized",
  27990. height: math.unit(1.44, "meters")
  27991. },
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(5.05, "meters"),
  27995. default: true
  27996. },
  27997. {
  27998. name: "Big",
  27999. height: math.unit(14.4, "meters")
  28000. },
  28001. {
  28002. name: "Huge",
  28003. height: math.unit(144, "meters")
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(6, "feet"),
  28012. weight: math.unit(220, "lb"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/hind/front.svg",
  28016. extra: 1912/1787,
  28017. bottom: 52/1964
  28018. }
  28019. },
  28020. back: {
  28021. height: math.unit(6, "feet"),
  28022. weight: math.unit(220, "lb"),
  28023. name: "Back",
  28024. image: {
  28025. source: "./media/characters/hind/back.svg",
  28026. extra: 1901/1794,
  28027. bottom: 26/1927
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Normal",
  28034. height: math.unit(6, "feet"),
  28035. default: true
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28041. {
  28042. front: {
  28043. height: math.unit(2.1, "meters"),
  28044. weight: math.unit(150, "lb"),
  28045. name: "Front",
  28046. image: {
  28047. source: "./media/characters/tharquench-sizestealer/front.svg",
  28048. extra: 1605/1470,
  28049. bottom: 36/1641
  28050. }
  28051. },
  28052. frontAlt: {
  28053. height: math.unit(2.1, "meters"),
  28054. weight: math.unit(150, "lb"),
  28055. name: "Front (Alt)",
  28056. image: {
  28057. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28058. extra: 2318 / 2063,
  28059. bottom: 93.4 / 2410
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Nano",
  28066. height: math.unit(1, "mm")
  28067. },
  28068. {
  28069. name: "Micro",
  28070. height: math.unit(1, "cm")
  28071. },
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(2.1, "meters"),
  28075. default: true
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(7 + 5 / 12, "feet"),
  28084. weight: math.unit(357, "lb"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/solex-draconov/front.svg",
  28088. extra: 1993 / 1865,
  28089. bottom: 117 / 2111
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Natural Height",
  28096. height: math.unit(7 + 5 / 12, "feet"),
  28097. default: true
  28098. },
  28099. {
  28100. name: "Macro",
  28101. height: math.unit(350, "feet")
  28102. },
  28103. {
  28104. name: "Macro+",
  28105. height: math.unit(1000, "feet")
  28106. },
  28107. {
  28108. name: "Megamacro",
  28109. height: math.unit(20, "km")
  28110. },
  28111. {
  28112. name: "Megamacro+",
  28113. height: math.unit(1000, "km")
  28114. },
  28115. {
  28116. name: "Gigamacro",
  28117. height: math.unit(2.5, "Gm")
  28118. },
  28119. {
  28120. name: "Teramacro",
  28121. height: math.unit(15, "Tm")
  28122. },
  28123. {
  28124. name: "Galactic",
  28125. height: math.unit(30, "Zm")
  28126. },
  28127. {
  28128. name: "Universal",
  28129. height: math.unit(21000, "Ym")
  28130. },
  28131. {
  28132. name: "Omniversal",
  28133. height: math.unit(9.861e50, "Ym")
  28134. },
  28135. {
  28136. name: "Existential",
  28137. height: math.unit(1e300, "meters")
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28143. {
  28144. side: {
  28145. height: math.unit(25, "feet"),
  28146. weight: math.unit(90000, "lb"),
  28147. name: "Side",
  28148. image: {
  28149. source: "./media/characters/mandarax/side.svg",
  28150. extra: 614 / 332,
  28151. bottom: 55 / 630
  28152. }
  28153. },
  28154. lounging: {
  28155. height: math.unit(15.4, "feet"),
  28156. weight: math.unit(90000, "lb"),
  28157. name: "Lounging",
  28158. image: {
  28159. source: "./media/characters/mandarax/lounging.svg",
  28160. extra: 817/609,
  28161. bottom: 685/1502
  28162. }
  28163. },
  28164. head: {
  28165. height: math.unit(11.4, "feet"),
  28166. name: "Head",
  28167. image: {
  28168. source: "./media/characters/mandarax/head.svg"
  28169. }
  28170. },
  28171. belly: {
  28172. height: math.unit(33, "feet"),
  28173. name: "Belly",
  28174. preyCapacity: math.unit(500, "people"),
  28175. image: {
  28176. source: "./media/characters/mandarax/belly.svg"
  28177. }
  28178. },
  28179. dick: {
  28180. height: math.unit(8.46, "feet"),
  28181. name: "Dick",
  28182. image: {
  28183. source: "./media/characters/mandarax/dick.svg"
  28184. }
  28185. },
  28186. top: {
  28187. height: math.unit(28, "meters"),
  28188. name: "Top",
  28189. image: {
  28190. source: "./media/characters/mandarax/top.svg"
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(25, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(5, "feet"),
  28207. weight: math.unit(90, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/pixil/front.svg",
  28211. extra: 2000 / 1618,
  28212. bottom: 12.3 / 2011
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(5, "feet"),
  28220. default: true
  28221. },
  28222. {
  28223. name: "Megamacro",
  28224. height: math.unit(10, "miles"),
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28230. {
  28231. front: {
  28232. height: math.unit(7 + 2 / 12, "feet"),
  28233. weight: math.unit(200, "lb"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/angel/front.svg",
  28237. extra: 1946/1840,
  28238. bottom: 30/1976
  28239. }
  28240. },
  28241. },
  28242. [
  28243. {
  28244. name: "Normal",
  28245. height: math.unit(7 + 2 / 12, "feet"),
  28246. default: true
  28247. },
  28248. {
  28249. name: "Macro",
  28250. height: math.unit(1000, "feet")
  28251. },
  28252. {
  28253. name: "Megamacro",
  28254. height: math.unit(2, "miles")
  28255. },
  28256. {
  28257. name: "Gigamacro",
  28258. height: math.unit(20, "earths")
  28259. },
  28260. ]
  28261. ))
  28262. characterMakers.push(() => makeCharacter(
  28263. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28264. {
  28265. front: {
  28266. height: math.unit(5, "feet"),
  28267. weight: math.unit(180, "lb"),
  28268. name: "Front",
  28269. image: {
  28270. source: "./media/characters/mekana/front.svg",
  28271. extra: 1671 / 1605,
  28272. bottom: 3.5 / 1691
  28273. }
  28274. },
  28275. side: {
  28276. height: math.unit(5, "feet"),
  28277. weight: math.unit(180, "lb"),
  28278. name: "Side",
  28279. image: {
  28280. source: "./media/characters/mekana/side.svg",
  28281. extra: 1671 / 1605,
  28282. bottom: 3.5 / 1691
  28283. }
  28284. },
  28285. back: {
  28286. height: math.unit(5, "feet"),
  28287. weight: math.unit(180, "lb"),
  28288. name: "Back",
  28289. image: {
  28290. source: "./media/characters/mekana/back.svg",
  28291. extra: 1671 / 1605,
  28292. bottom: 3.5 / 1691
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(5, "feet"),
  28300. default: true
  28301. },
  28302. ]
  28303. ))
  28304. characterMakers.push(() => makeCharacter(
  28305. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28306. {
  28307. front: {
  28308. height: math.unit(4 + 6 / 12, "feet"),
  28309. weight: math.unit(80, "lb"),
  28310. name: "Front",
  28311. image: {
  28312. source: "./media/characters/pixie/front.svg",
  28313. extra: 1924 / 1825,
  28314. bottom: 22.4 / 1946
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(4 + 6 / 12, "feet"),
  28322. default: true
  28323. },
  28324. {
  28325. name: "Macro",
  28326. height: math.unit(40, "feet")
  28327. },
  28328. ]
  28329. ))
  28330. characterMakers.push(() => makeCharacter(
  28331. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28332. {
  28333. front: {
  28334. height: math.unit(2.1, "meters"),
  28335. weight: math.unit(200, "lb"),
  28336. name: "Front",
  28337. image: {
  28338. source: "./media/characters/the-lascivious/front.svg",
  28339. extra: 1 / 0.893,
  28340. bottom: 3.5 / 573.7
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Human Scale",
  28347. height: math.unit(2.1, "meters")
  28348. },
  28349. {
  28350. name: "Wolxi Scale",
  28351. height: math.unit(46.2, "m"),
  28352. default: true
  28353. },
  28354. {
  28355. name: "Boinker of Buildings",
  28356. height: math.unit(10, "km")
  28357. },
  28358. {
  28359. name: "Shagger of Skyscrapers",
  28360. height: math.unit(40, "km")
  28361. },
  28362. {
  28363. name: "Banger of Boroughs",
  28364. height: math.unit(4000, "km")
  28365. },
  28366. {
  28367. name: "Screwer of States",
  28368. height: math.unit(100000, "km")
  28369. },
  28370. {
  28371. name: "Pounder of Planets",
  28372. height: math.unit(2000000, "km")
  28373. },
  28374. ]
  28375. ))
  28376. characterMakers.push(() => makeCharacter(
  28377. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28378. {
  28379. front: {
  28380. height: math.unit(6, "feet"),
  28381. weight: math.unit(150, "lb"),
  28382. name: "Front",
  28383. image: {
  28384. source: "./media/characters/aj/front.svg",
  28385. extra: 2039 / 1562,
  28386. bottom: 40 / 2079
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(11 + 6 / 12, "feet"),
  28394. default: true
  28395. },
  28396. {
  28397. name: "Megamacro",
  28398. height: math.unit(60, "megameters")
  28399. },
  28400. ]
  28401. ))
  28402. characterMakers.push(() => makeCharacter(
  28403. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28404. {
  28405. side: {
  28406. height: math.unit(31 + 8 / 12, "feet"),
  28407. weight: math.unit(75000, "kg"),
  28408. name: "Side",
  28409. image: {
  28410. source: "./media/characters/koros/side.svg",
  28411. extra: 1442 / 1297,
  28412. bottom: 122.7 / 1562
  28413. }
  28414. },
  28415. dicksKingsCrown: {
  28416. height: math.unit(6, "feet"),
  28417. name: "Dicks (King's Crown)",
  28418. image: {
  28419. source: "./media/characters/koros/dicks-kings-crown.svg"
  28420. }
  28421. },
  28422. dicksTailSet: {
  28423. height: math.unit(3, "feet"),
  28424. name: "Dicks (Tail Set)",
  28425. image: {
  28426. source: "./media/characters/koros/dicks-tail-set.svg"
  28427. }
  28428. },
  28429. dickCumming: {
  28430. height: math.unit(7.98, "feet"),
  28431. name: "Dick (Cumming)",
  28432. image: {
  28433. source: "./media/characters/koros/dick-cumming.svg"
  28434. }
  28435. },
  28436. dicksBack: {
  28437. height: math.unit(5.9, "feet"),
  28438. name: "Dicks (Back)",
  28439. image: {
  28440. source: "./media/characters/koros/dicks-back.svg"
  28441. }
  28442. },
  28443. dicksFront: {
  28444. height: math.unit(3.72, "feet"),
  28445. name: "Dicks (Front)",
  28446. image: {
  28447. source: "./media/characters/koros/dicks-front.svg"
  28448. }
  28449. },
  28450. dicksPeeking: {
  28451. height: math.unit(3.0, "feet"),
  28452. name: "Dicks (Peeking)",
  28453. image: {
  28454. source: "./media/characters/koros/dicks-peeking.svg"
  28455. }
  28456. },
  28457. eye: {
  28458. height: math.unit(1.7, "feet"),
  28459. name: "Eye",
  28460. image: {
  28461. source: "./media/characters/koros/eye.svg"
  28462. }
  28463. },
  28464. headFront: {
  28465. height: math.unit(11.69, "feet"),
  28466. name: "Head (Front)",
  28467. image: {
  28468. source: "./media/characters/koros/head-front.svg"
  28469. }
  28470. },
  28471. headSide: {
  28472. height: math.unit(14, "feet"),
  28473. name: "Head (Side)",
  28474. image: {
  28475. source: "./media/characters/koros/head-side.svg"
  28476. }
  28477. },
  28478. leg: {
  28479. height: math.unit(17, "feet"),
  28480. name: "Leg",
  28481. image: {
  28482. source: "./media/characters/koros/leg.svg"
  28483. }
  28484. },
  28485. mawSide: {
  28486. height: math.unit(12.8, "feet"),
  28487. name: "Maw (Side)",
  28488. image: {
  28489. source: "./media/characters/koros/maw-side.svg"
  28490. }
  28491. },
  28492. mawSpitting: {
  28493. height: math.unit(17, "feet"),
  28494. name: "Maw (Spitting)",
  28495. image: {
  28496. source: "./media/characters/koros/maw-spitting.svg"
  28497. }
  28498. },
  28499. slit: {
  28500. height: math.unit(2.8, "feet"),
  28501. name: "Slit",
  28502. image: {
  28503. source: "./media/characters/koros/slit.svg"
  28504. }
  28505. },
  28506. stomach: {
  28507. height: math.unit(6.8, "feet"),
  28508. preyCapacity: math.unit(20, "people"),
  28509. name: "Stomach",
  28510. image: {
  28511. source: "./media/characters/koros/stomach.svg"
  28512. }
  28513. },
  28514. wingspanBottom: {
  28515. height: math.unit(114, "feet"),
  28516. name: "Wingspan (Bottom)",
  28517. image: {
  28518. source: "./media/characters/koros/wingspan-bottom.svg"
  28519. }
  28520. },
  28521. wingspanTop: {
  28522. height: math.unit(104, "feet"),
  28523. name: "Wingspan (Top)",
  28524. image: {
  28525. source: "./media/characters/koros/wingspan-top.svg"
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Normal",
  28532. height: math.unit(31 + 8 / 12, "feet"),
  28533. default: true
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(18 + 5 / 12, "feet"),
  28542. weight: math.unit(3750, "kg"),
  28543. name: "Front",
  28544. image: {
  28545. source: "./media/characters/vexx/front.svg",
  28546. extra: 426 / 396,
  28547. bottom: 31.5 / 458
  28548. }
  28549. },
  28550. maw: {
  28551. height: math.unit(6, "feet"),
  28552. name: "Maw",
  28553. image: {
  28554. source: "./media/characters/vexx/maw.svg"
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(18 + 5 / 12, "feet"),
  28562. default: true
  28563. },
  28564. ]
  28565. ))
  28566. characterMakers.push(() => makeCharacter(
  28567. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28568. {
  28569. front: {
  28570. height: math.unit(17 + 6 / 12, "feet"),
  28571. weight: math.unit(150, "lb"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/baadra/front.svg",
  28575. extra: 1694/1553,
  28576. bottom: 179/1873
  28577. }
  28578. },
  28579. frontAlt: {
  28580. height: math.unit(17 + 6 / 12, "feet"),
  28581. weight: math.unit(150, "lb"),
  28582. name: "Front (Alt)",
  28583. image: {
  28584. source: "./media/characters/baadra/front-alt.svg",
  28585. extra: 3137 / 2890,
  28586. bottom: 168.4 / 3305
  28587. }
  28588. },
  28589. back: {
  28590. height: math.unit(17 + 6 / 12, "feet"),
  28591. weight: math.unit(150, "lb"),
  28592. name: "Back",
  28593. image: {
  28594. source: "./media/characters/baadra/back.svg",
  28595. extra: 3142 / 2890,
  28596. bottom: 220 / 3371
  28597. }
  28598. },
  28599. head: {
  28600. height: math.unit(5.45, "feet"),
  28601. name: "Head",
  28602. image: {
  28603. source: "./media/characters/baadra/head.svg"
  28604. }
  28605. },
  28606. headAngry: {
  28607. height: math.unit(4.95, "feet"),
  28608. name: "Head (Angry)",
  28609. image: {
  28610. source: "./media/characters/baadra/head-angry.svg"
  28611. }
  28612. },
  28613. headOpen: {
  28614. height: math.unit(6, "feet"),
  28615. name: "Head (Open)",
  28616. image: {
  28617. source: "./media/characters/baadra/head-open.svg"
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Normal",
  28624. height: math.unit(17 + 6 / 12, "feet"),
  28625. default: true
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(7 + 3 / 12, "feet"),
  28634. weight: math.unit(180, "lb"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/juri/front.svg",
  28638. extra: 1401 / 1237,
  28639. bottom: 18.5 / 1418
  28640. }
  28641. },
  28642. side: {
  28643. height: math.unit(7 + 3 / 12, "feet"),
  28644. weight: math.unit(180, "lb"),
  28645. name: "Side",
  28646. image: {
  28647. source: "./media/characters/juri/side.svg",
  28648. extra: 1424 / 1242,
  28649. bottom: 18.5 / 1447
  28650. }
  28651. },
  28652. sitting: {
  28653. height: math.unit(6, "feet"),
  28654. weight: math.unit(180, "lb"),
  28655. name: "Sitting",
  28656. image: {
  28657. source: "./media/characters/juri/sitting.svg",
  28658. extra: 1270 / 1143,
  28659. bottom: 100 / 1343
  28660. }
  28661. },
  28662. back: {
  28663. height: math.unit(7 + 3 / 12, "feet"),
  28664. weight: math.unit(180, "lb"),
  28665. name: "Back",
  28666. image: {
  28667. source: "./media/characters/juri/back.svg",
  28668. extra: 1377 / 1240,
  28669. bottom: 23.7 / 1405
  28670. }
  28671. },
  28672. maw: {
  28673. height: math.unit(2.8, "feet"),
  28674. name: "Maw",
  28675. image: {
  28676. source: "./media/characters/juri/maw.svg"
  28677. }
  28678. },
  28679. stomach: {
  28680. height: math.unit(0.89, "feet"),
  28681. preyCapacity: math.unit(4, "liters"),
  28682. name: "Stomach",
  28683. image: {
  28684. source: "./media/characters/juri/stomach.svg"
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Normal",
  28691. height: math.unit(7 + 3 / 12, "feet"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28698. {
  28699. fox: {
  28700. height: math.unit(5 + 6 / 12, "feet"),
  28701. weight: math.unit(140, "lb"),
  28702. name: "Fox",
  28703. image: {
  28704. source: "./media/characters/maxene-sita/fox.svg",
  28705. extra: 146 / 138,
  28706. bottom: 2.1 / 148.19
  28707. }
  28708. },
  28709. foxLaying: {
  28710. height: math.unit(1.70, "feet"),
  28711. weight: math.unit(140, "lb"),
  28712. name: "Fox (Laying)",
  28713. image: {
  28714. source: "./media/characters/maxene-sita/fox-laying.svg",
  28715. extra: 910 / 572,
  28716. bottom: 71 / 981
  28717. }
  28718. },
  28719. kitsune: {
  28720. height: math.unit(10, "feet"),
  28721. weight: math.unit(800, "lb"),
  28722. name: "Kitsune",
  28723. image: {
  28724. source: "./media/characters/maxene-sita/kitsune.svg",
  28725. extra: 185 / 176,
  28726. bottom: 4.7 / 189.9
  28727. }
  28728. },
  28729. hellhound: {
  28730. height: math.unit(10, "feet"),
  28731. weight: math.unit(700, "lb"),
  28732. name: "Hellhound",
  28733. image: {
  28734. source: "./media/characters/maxene-sita/hellhound.svg",
  28735. extra: 1600 / 1545,
  28736. bottom: 81 / 1681
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(5 + 6 / 12, "feet"),
  28744. default: true
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28750. {
  28751. front: {
  28752. height: math.unit(3 + 4 / 12, "feet"),
  28753. weight: math.unit(70, "lb"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/maia/front.svg",
  28757. extra: 227 / 219.5,
  28758. bottom: 40 / 267
  28759. }
  28760. },
  28761. back: {
  28762. height: math.unit(3 + 4 / 12, "feet"),
  28763. weight: math.unit(70, "lb"),
  28764. name: "Back",
  28765. image: {
  28766. source: "./media/characters/maia/back.svg",
  28767. extra: 237 / 225
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Normal",
  28774. height: math.unit(3 + 4 / 12, "feet"),
  28775. default: true
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(5 + 10 / 12, "feet"),
  28784. weight: math.unit(197, "lb"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/jabaro/front.svg",
  28788. extra: 225 / 216,
  28789. bottom: 5.06 / 230
  28790. }
  28791. },
  28792. back: {
  28793. height: math.unit(5 + 10 / 12, "feet"),
  28794. weight: math.unit(197, "lb"),
  28795. name: "Back",
  28796. image: {
  28797. source: "./media/characters/jabaro/back.svg",
  28798. extra: 225 / 219,
  28799. bottom: 1.9 / 227
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Normal",
  28806. height: math.unit(5 + 10 / 12, "feet"),
  28807. default: true
  28808. },
  28809. ]
  28810. ))
  28811. characterMakers.push(() => makeCharacter(
  28812. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28813. {
  28814. front: {
  28815. height: math.unit(5 + 8 / 12, "feet"),
  28816. weight: math.unit(139, "lb"),
  28817. name: "Front",
  28818. image: {
  28819. source: "./media/characters/risa/front.svg",
  28820. extra: 270 / 260,
  28821. bottom: 11.2 / 282
  28822. }
  28823. },
  28824. back: {
  28825. height: math.unit(5 + 8 / 12, "feet"),
  28826. weight: math.unit(139, "lb"),
  28827. name: "Back",
  28828. image: {
  28829. source: "./media/characters/risa/back.svg",
  28830. extra: 264 / 255,
  28831. bottom: 4 / 268
  28832. }
  28833. },
  28834. },
  28835. [
  28836. {
  28837. name: "Normal",
  28838. height: math.unit(5 + 8 / 12, "feet"),
  28839. default: true
  28840. },
  28841. ]
  28842. ))
  28843. characterMakers.push(() => makeCharacter(
  28844. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28845. {
  28846. front: {
  28847. height: math.unit(2 + 11 / 12, "feet"),
  28848. weight: math.unit(30, "lb"),
  28849. name: "Front",
  28850. image: {
  28851. source: "./media/characters/weatley/front.svg",
  28852. bottom: 10.7 / 414,
  28853. extra: 403.5 / 362
  28854. }
  28855. },
  28856. back: {
  28857. height: math.unit(2 + 11 / 12, "feet"),
  28858. weight: math.unit(30, "lb"),
  28859. name: "Back",
  28860. image: {
  28861. source: "./media/characters/weatley/back.svg",
  28862. bottom: 10.7 / 414,
  28863. extra: 403.5 / 362
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(2 + 11 / 12, "feet"),
  28871. default: true
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(5 + 2 / 12, "feet"),
  28880. weight: math.unit(50, "kg"),
  28881. name: "Front",
  28882. image: {
  28883. source: "./media/characters/mercury-crescent/front.svg",
  28884. extra: 1088 / 1033,
  28885. bottom: 18.9 / 1109
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(5 + 2 / 12, "feet"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28899. {
  28900. front: {
  28901. height: math.unit(2, "feet"),
  28902. weight: math.unit(15, "kg"),
  28903. name: "Front",
  28904. image: {
  28905. source: "./media/characters/diamond-jones/front.svg",
  28906. extra: 727/723,
  28907. bottom: 46/773
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(2, "feet"),
  28915. default: true
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28921. {
  28922. front: {
  28923. height: math.unit(3, "feet"),
  28924. weight: math.unit(30, "kg"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/sweet-bit/front.svg",
  28928. extra: 675 / 567,
  28929. bottom: 27.7 / 703
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(3, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28943. {
  28944. side: {
  28945. height: math.unit(9.178, "feet"),
  28946. weight: math.unit(500, "lb"),
  28947. name: "Side",
  28948. image: {
  28949. source: "./media/characters/umbrazen/side.svg",
  28950. extra: 1730 / 1473,
  28951. bottom: 34.6 / 1765
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Normal",
  28958. height: math.unit(9.178, "feet"),
  28959. default: true
  28960. },
  28961. ]
  28962. ))
  28963. characterMakers.push(() => makeCharacter(
  28964. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28965. {
  28966. front: {
  28967. height: math.unit(10, "feet"),
  28968. weight: math.unit(750, "lb"),
  28969. name: "Front",
  28970. image: {
  28971. source: "./media/characters/arlist/front.svg",
  28972. extra: 961 / 778,
  28973. bottom: 6.2 / 986
  28974. }
  28975. },
  28976. },
  28977. [
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(10, "feet"),
  28981. default: true
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(5 + 1 / 12, "feet"),
  28990. weight: math.unit(110, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/aradel/front.svg",
  28994. extra: 324 / 303,
  28995. bottom: 3.6 / 329.4
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Normal",
  29002. height: math.unit(5 + 1 / 12, "feet"),
  29003. default: true
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29009. {
  29010. dressed: {
  29011. height: math.unit(3 + 8 / 12, "feet"),
  29012. weight: math.unit(50, "lb"),
  29013. name: "Dressed",
  29014. image: {
  29015. source: "./media/characters/serryn/dressed.svg",
  29016. extra: 1792 / 1656,
  29017. bottom: 43.5 / 1840
  29018. }
  29019. },
  29020. nude: {
  29021. height: math.unit(3 + 8 / 12, "feet"),
  29022. weight: math.unit(50, "lb"),
  29023. name: "Nude",
  29024. image: {
  29025. source: "./media/characters/serryn/nude.svg",
  29026. extra: 1792 / 1656,
  29027. bottom: 43.5 / 1840
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(3 + 8 / 12, "feet"),
  29035. default: true
  29036. },
  29037. ]
  29038. ))
  29039. characterMakers.push(() => makeCharacter(
  29040. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29041. {
  29042. front: {
  29043. height: math.unit(7 + 10 / 12, "feet"),
  29044. weight: math.unit(255, "lb"),
  29045. name: "Front",
  29046. image: {
  29047. source: "./media/characters/xavier-thyme/front.svg",
  29048. extra: 3733 / 3642,
  29049. bottom: 131 / 3869
  29050. }
  29051. },
  29052. frontRaven: {
  29053. height: math.unit(7 + 10 / 12, "feet"),
  29054. weight: math.unit(255, "lb"),
  29055. name: "Front (Raven)",
  29056. image: {
  29057. source: "./media/characters/xavier-thyme/front-raven.svg",
  29058. extra: 4385 / 3642,
  29059. bottom: 131 / 4517
  29060. }
  29061. },
  29062. },
  29063. [
  29064. {
  29065. name: "Normal",
  29066. height: math.unit(7 + 10 / 12, "feet"),
  29067. default: true
  29068. },
  29069. ]
  29070. ))
  29071. characterMakers.push(() => makeCharacter(
  29072. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29073. {
  29074. front: {
  29075. height: math.unit(1.6, "m"),
  29076. weight: math.unit(50, "kg"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/kiki/front.svg",
  29080. extra: 4682 / 3610,
  29081. bottom: 115 / 4777
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(1.6, "meters"),
  29089. default: true
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29095. {
  29096. front: {
  29097. height: math.unit(50, "m"),
  29098. weight: math.unit(500, "tonnes"),
  29099. name: "Front",
  29100. image: {
  29101. source: "./media/characters/ryoko/front.svg",
  29102. extra: 4632 / 3926,
  29103. bottom: 193 / 4823
  29104. }
  29105. },
  29106. },
  29107. [
  29108. {
  29109. name: "Normal",
  29110. height: math.unit(50, "meters"),
  29111. default: true
  29112. },
  29113. ]
  29114. ))
  29115. characterMakers.push(() => makeCharacter(
  29116. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29117. {
  29118. front: {
  29119. height: math.unit(30, "m"),
  29120. weight: math.unit(22, "tonnes"),
  29121. name: "Front",
  29122. image: {
  29123. source: "./media/characters/elio/front.svg",
  29124. extra: 4582 / 3720,
  29125. bottom: 236 / 4828
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Normal",
  29132. height: math.unit(30, "meters"),
  29133. default: true
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(6 + 3 / 12, "feet"),
  29142. weight: math.unit(120, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/azura/front.svg",
  29146. extra: 1149 / 1135,
  29147. bottom: 45 / 1194
  29148. }
  29149. },
  29150. frontClothed: {
  29151. height: math.unit(6 + 3 / 12, "feet"),
  29152. weight: math.unit(120, "lb"),
  29153. name: "Front (Clothed)",
  29154. image: {
  29155. source: "./media/characters/azura/front-clothed.svg",
  29156. extra: 1149 / 1135,
  29157. bottom: 45 / 1194
  29158. }
  29159. },
  29160. },
  29161. [
  29162. {
  29163. name: "Normal",
  29164. height: math.unit(6 + 3 / 12, "feet"),
  29165. default: true
  29166. },
  29167. {
  29168. name: "Macro",
  29169. height: math.unit(20 + 6 / 12, "feet")
  29170. },
  29171. {
  29172. name: "Megamacro",
  29173. height: math.unit(12, "miles")
  29174. },
  29175. {
  29176. name: "Gigamacro",
  29177. height: math.unit(10000, "miles")
  29178. },
  29179. {
  29180. name: "Teramacro",
  29181. height: math.unit(900000, "miles")
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(12, "feet"),
  29190. weight: math.unit(1, "ton"),
  29191. capacity: math.unit(660000, "gallons"),
  29192. name: "Front",
  29193. image: {
  29194. source: "./media/characters/zeus/front.svg",
  29195. extra: 5005 / 4717,
  29196. bottom: 363 / 5388
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Normal",
  29203. height: math.unit(12, "feet")
  29204. },
  29205. {
  29206. name: "Preferred Size",
  29207. height: math.unit(0.5, "miles"),
  29208. default: true
  29209. },
  29210. {
  29211. name: "Giga Horse",
  29212. height: math.unit(300, "miles")
  29213. },
  29214. {
  29215. name: "Riding Planets",
  29216. height: math.unit(30, "megameters")
  29217. },
  29218. {
  29219. name: "Cosmic Giant",
  29220. height: math.unit(3, "zettameters")
  29221. },
  29222. {
  29223. name: "Breeding God",
  29224. height: math.unit(9.92e22, "yottameters")
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29230. {
  29231. side: {
  29232. height: math.unit(9, "feet"),
  29233. weight: math.unit(1500, "kg"),
  29234. name: "Side",
  29235. image: {
  29236. source: "./media/characters/fang/side.svg",
  29237. extra: 924 / 866,
  29238. bottom: 47.5 / 972.3
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Normal",
  29245. height: math.unit(9, "feet"),
  29246. default: true
  29247. },
  29248. {
  29249. name: "Macro",
  29250. height: math.unit(75 + 6 / 12, "feet")
  29251. },
  29252. {
  29253. name: "Teramacro",
  29254. height: math.unit(50000, "miles")
  29255. },
  29256. ]
  29257. ))
  29258. characterMakers.push(() => makeCharacter(
  29259. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29260. {
  29261. front: {
  29262. height: math.unit(10, "feet"),
  29263. weight: math.unit(2, "tons"),
  29264. name: "Front",
  29265. image: {
  29266. source: "./media/characters/rekhit/front.svg",
  29267. extra: 2796 / 2590,
  29268. bottom: 225 / 3022
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(10, "feet"),
  29276. default: true
  29277. },
  29278. {
  29279. name: "Macro",
  29280. height: math.unit(500, "feet")
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29286. {
  29287. front: {
  29288. height: math.unit(7 + 6.451 / 12, "feet"),
  29289. weight: math.unit(310, "lb"),
  29290. name: "Front",
  29291. image: {
  29292. source: "./media/characters/dahlia-verrick/front.svg",
  29293. extra: 1488 / 1365,
  29294. bottom: 6.2 / 1495
  29295. }
  29296. },
  29297. back: {
  29298. height: math.unit(7 + 6.451 / 12, "feet"),
  29299. weight: math.unit(310, "lb"),
  29300. name: "Back",
  29301. image: {
  29302. source: "./media/characters/dahlia-verrick/back.svg",
  29303. extra: 1472 / 1351,
  29304. bottom: 5.28 / 1477
  29305. }
  29306. },
  29307. frontBusiness: {
  29308. height: math.unit(7 + 6.451 / 12, "feet"),
  29309. weight: math.unit(200, "lb"),
  29310. name: "Front (Business)",
  29311. image: {
  29312. source: "./media/characters/dahlia-verrick/front-business.svg",
  29313. extra: 1478 / 1381,
  29314. bottom: 5.5 / 1484
  29315. }
  29316. },
  29317. frontCasual: {
  29318. height: math.unit(7 + 6.451 / 12, "feet"),
  29319. weight: math.unit(200, "lb"),
  29320. name: "Front (Casual)",
  29321. image: {
  29322. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29323. extra: 1478 / 1381,
  29324. bottom: 5.5 / 1484
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Travel-Sized",
  29331. height: math.unit(7.45, "inches")
  29332. },
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(7 + 6.451 / 12, "feet"),
  29336. default: true
  29337. },
  29338. {
  29339. name: "Hitting the Town",
  29340. height: math.unit(37 + 8 / 12, "feet")
  29341. },
  29342. {
  29343. name: "Stomp in the Suburbs",
  29344. height: math.unit(964 + 9.728 / 12, "feet")
  29345. },
  29346. {
  29347. name: "Sit on the City",
  29348. height: math.unit(61747 + 10.592 / 12, "feet")
  29349. },
  29350. {
  29351. name: "Glomp the Globe",
  29352. height: math.unit(252919327 + 4.832 / 12, "feet")
  29353. },
  29354. ]
  29355. ))
  29356. characterMakers.push(() => makeCharacter(
  29357. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29358. {
  29359. front: {
  29360. height: math.unit(6 + 4 / 12, "feet"),
  29361. weight: math.unit(320, "lb"),
  29362. name: "Front",
  29363. image: {
  29364. source: "./media/characters/balina-mahigan/front.svg",
  29365. extra: 447 / 428,
  29366. bottom: 18 / 466
  29367. }
  29368. },
  29369. back: {
  29370. height: math.unit(6 + 4 / 12, "feet"),
  29371. weight: math.unit(320, "lb"),
  29372. name: "Back",
  29373. image: {
  29374. source: "./media/characters/balina-mahigan/back.svg",
  29375. extra: 445 / 428,
  29376. bottom: 4.07 / 448
  29377. }
  29378. },
  29379. arm: {
  29380. height: math.unit(1.88, "feet"),
  29381. name: "Arm",
  29382. image: {
  29383. source: "./media/characters/balina-mahigan/arm.svg"
  29384. }
  29385. },
  29386. backPort: {
  29387. height: math.unit(0.685, "feet"),
  29388. name: "Back Port",
  29389. image: {
  29390. source: "./media/characters/balina-mahigan/back-port.svg"
  29391. }
  29392. },
  29393. hoofpaw: {
  29394. height: math.unit(1.41, "feet"),
  29395. name: "Hoofpaw",
  29396. image: {
  29397. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29398. }
  29399. },
  29400. leftHandBack: {
  29401. height: math.unit(0.938, "feet"),
  29402. name: "Left Hand (Back)",
  29403. image: {
  29404. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29405. }
  29406. },
  29407. leftHandFront: {
  29408. height: math.unit(0.938, "feet"),
  29409. name: "Left Hand (Front)",
  29410. image: {
  29411. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29412. }
  29413. },
  29414. rightHandBack: {
  29415. height: math.unit(0.95, "feet"),
  29416. name: "Right Hand (Back)",
  29417. image: {
  29418. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29419. }
  29420. },
  29421. rightHandFront: {
  29422. height: math.unit(0.95, "feet"),
  29423. name: "Right Hand (Front)",
  29424. image: {
  29425. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29426. }
  29427. },
  29428. },
  29429. [
  29430. {
  29431. name: "Normal",
  29432. height: math.unit(6 + 4 / 12, "feet"),
  29433. default: true
  29434. },
  29435. ]
  29436. ))
  29437. characterMakers.push(() => makeCharacter(
  29438. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29439. {
  29440. front: {
  29441. height: math.unit(6, "feet"),
  29442. weight: math.unit(320, "lb"),
  29443. name: "Front",
  29444. image: {
  29445. source: "./media/characters/balina-mejeri/front.svg",
  29446. extra: 517 / 488,
  29447. bottom: 44.2 / 561
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(6 + 4 / 12, "feet")
  29455. },
  29456. {
  29457. name: "Business",
  29458. height: math.unit(155, "feet"),
  29459. default: true
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29465. {
  29466. kneeling: {
  29467. height: math.unit(6 + 4 / 12, "feet"),
  29468. weight: math.unit(300 * 20, "lb"),
  29469. name: "Kneeling",
  29470. image: {
  29471. source: "./media/characters/balbarian/kneeling.svg",
  29472. extra: 922 / 862,
  29473. bottom: 42.4 / 965
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(6 + 4 / 12, "feet")
  29481. },
  29482. {
  29483. name: "Treasured",
  29484. height: math.unit(18 + 9 / 12, "feet"),
  29485. default: true
  29486. },
  29487. {
  29488. name: "Macro",
  29489. height: math.unit(900, "feet")
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(6 + 4 / 12, "feet"),
  29498. weight: math.unit(325, "lb"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/balina-amarini/front.svg",
  29502. extra: 415 / 403,
  29503. bottom: 19 / 433.4
  29504. }
  29505. },
  29506. back: {
  29507. height: math.unit(6 + 4 / 12, "feet"),
  29508. weight: math.unit(325, "lb"),
  29509. name: "Back",
  29510. image: {
  29511. source: "./media/characters/balina-amarini/back.svg",
  29512. extra: 415 / 403,
  29513. bottom: 13.5 / 432
  29514. }
  29515. },
  29516. overdrive: {
  29517. height: math.unit(6 + 4 / 12, "feet"),
  29518. weight: math.unit(400, "lb"),
  29519. name: "Overdrive",
  29520. image: {
  29521. source: "./media/characters/balina-amarini/overdrive.svg",
  29522. extra: 269 / 259,
  29523. bottom: 12 / 282
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Boom",
  29530. height: math.unit(9 + 10 / 12, "feet"),
  29531. default: true
  29532. },
  29533. {
  29534. name: "Macro",
  29535. height: math.unit(280, "feet")
  29536. },
  29537. ]
  29538. ))
  29539. characterMakers.push(() => makeCharacter(
  29540. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29541. {
  29542. goddess: {
  29543. height: math.unit(600, "feet"),
  29544. weight: math.unit(2000000, "tons"),
  29545. name: "Goddess",
  29546. image: {
  29547. source: "./media/characters/lady-kubwa/goddess.svg",
  29548. extra: 1240.5 / 1223,
  29549. bottom: 22 / 1263
  29550. }
  29551. },
  29552. goddesser: {
  29553. height: math.unit(900, "feet"),
  29554. weight: math.unit(20000000, "lb"),
  29555. name: "Goddess-er",
  29556. image: {
  29557. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29558. extra: 899 / 888,
  29559. bottom: 12.6 / 912
  29560. }
  29561. },
  29562. },
  29563. [
  29564. {
  29565. name: "Macro",
  29566. height: math.unit(600, "feet"),
  29567. default: true
  29568. },
  29569. {
  29570. name: "Megamacro",
  29571. height: math.unit(250, "miles")
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(7 + 7 / 12, "feet"),
  29580. weight: math.unit(250, "lb"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/tala-grovehorn/front.svg",
  29584. extra: 2636 / 2525,
  29585. bottom: 147 / 2781
  29586. }
  29587. },
  29588. back: {
  29589. height: math.unit(7 + 7 / 12, "feet"),
  29590. weight: math.unit(250, "lb"),
  29591. name: "Back",
  29592. image: {
  29593. source: "./media/characters/tala-grovehorn/back.svg",
  29594. extra: 2635 / 2539,
  29595. bottom: 100 / 2732.8
  29596. }
  29597. },
  29598. mouth: {
  29599. height: math.unit(1.15, "feet"),
  29600. name: "Mouth",
  29601. image: {
  29602. source: "./media/characters/tala-grovehorn/mouth.svg"
  29603. }
  29604. },
  29605. dick: {
  29606. height: math.unit(2.36, "feet"),
  29607. name: "Dick",
  29608. image: {
  29609. source: "./media/characters/tala-grovehorn/dick.svg"
  29610. }
  29611. },
  29612. slit: {
  29613. height: math.unit(0.61, "feet"),
  29614. name: "Slit",
  29615. image: {
  29616. source: "./media/characters/tala-grovehorn/slit.svg"
  29617. }
  29618. },
  29619. },
  29620. [
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29625. {
  29626. front: {
  29627. height: math.unit(7 + 7 / 12, "feet"),
  29628. weight: math.unit(225, "lb"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/epona/front.svg",
  29632. extra: 2445 / 2290,
  29633. bottom: 251 / 2696
  29634. }
  29635. },
  29636. back: {
  29637. height: math.unit(7 + 7 / 12, "feet"),
  29638. weight: math.unit(225, "lb"),
  29639. name: "Back",
  29640. image: {
  29641. source: "./media/characters/epona/back.svg",
  29642. extra: 2546 / 2408,
  29643. bottom: 44 / 2589
  29644. }
  29645. },
  29646. genitals: {
  29647. height: math.unit(1.5, "feet"),
  29648. name: "Genitals",
  29649. image: {
  29650. source: "./media/characters/epona/genitals.svg"
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Normal",
  29657. height: math.unit(7 + 7 / 12, "feet"),
  29658. default: true
  29659. },
  29660. ]
  29661. ))
  29662. characterMakers.push(() => makeCharacter(
  29663. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29664. {
  29665. front: {
  29666. height: math.unit(7, "feet"),
  29667. weight: math.unit(518, "lb"),
  29668. name: "Front",
  29669. image: {
  29670. source: "./media/characters/avia-bloodbourn/front.svg",
  29671. extra: 1466 / 1350,
  29672. bottom: 65 / 1527
  29673. }
  29674. },
  29675. },
  29676. [
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29681. {
  29682. front: {
  29683. height: math.unit(9.35, "feet"),
  29684. weight: math.unit(600, "lb"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/amera/front.svg",
  29688. extra: 891 / 818,
  29689. bottom: 30 / 922.7
  29690. }
  29691. },
  29692. back: {
  29693. height: math.unit(9.35, "feet"),
  29694. weight: math.unit(600, "lb"),
  29695. name: "Back",
  29696. image: {
  29697. source: "./media/characters/amera/back.svg",
  29698. extra: 876 / 824,
  29699. bottom: 6.8 / 884
  29700. }
  29701. },
  29702. dick: {
  29703. height: math.unit(2.14, "feet"),
  29704. name: "Dick",
  29705. image: {
  29706. source: "./media/characters/amera/dick.svg"
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Normal",
  29713. height: math.unit(9.35, "feet"),
  29714. default: true
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29720. {
  29721. kneeling: {
  29722. height: math.unit(3 + 4 / 12, "feet"),
  29723. weight: math.unit(90, "lb"),
  29724. name: "Kneeling",
  29725. image: {
  29726. source: "./media/characters/rosewen/kneeling.svg",
  29727. extra: 1835 / 1571,
  29728. bottom: 27.7 / 1862
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(3 + 4 / 12, "feet"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(5 + 10 / 12, "feet"),
  29745. weight: math.unit(200, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/sabah/front.svg",
  29749. extra: 849 / 763,
  29750. bottom: 33.9 / 881
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Normal",
  29757. height: math.unit(5 + 10 / 12, "feet"),
  29758. default: true
  29759. },
  29760. ]
  29761. ))
  29762. characterMakers.push(() => makeCharacter(
  29763. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29764. {
  29765. front: {
  29766. height: math.unit(3 + 5 / 12, "feet"),
  29767. weight: math.unit(40, "kg"),
  29768. name: "Front",
  29769. image: {
  29770. source: "./media/characters/purple-flame/front.svg",
  29771. extra: 1577 / 1412,
  29772. bottom: 97 / 1694
  29773. }
  29774. },
  29775. frontDressed: {
  29776. height: math.unit(3 + 5 / 12, "feet"),
  29777. weight: math.unit(40, "kg"),
  29778. name: "Front (Dressed)",
  29779. image: {
  29780. source: "./media/characters/purple-flame/front-dressed.svg",
  29781. extra: 1577 / 1412,
  29782. bottom: 97 / 1694
  29783. }
  29784. },
  29785. headphones: {
  29786. height: math.unit(0.85, "feet"),
  29787. name: "Headphones",
  29788. image: {
  29789. source: "./media/characters/purple-flame/headphones.svg"
  29790. }
  29791. },
  29792. },
  29793. [
  29794. {
  29795. name: "Really Small",
  29796. height: math.unit(5, "cm")
  29797. },
  29798. {
  29799. name: "Micro",
  29800. height: math.unit(1 + 5 / 12, "feet")
  29801. },
  29802. {
  29803. name: "Normal",
  29804. height: math.unit(3 + 5 / 12, "feet"),
  29805. default: true
  29806. },
  29807. {
  29808. name: "Minimacro",
  29809. height: math.unit(125, "feet")
  29810. },
  29811. {
  29812. name: "Macro",
  29813. height: math.unit(0.5, "miles")
  29814. },
  29815. {
  29816. name: "Megamacro",
  29817. height: math.unit(50, "miles")
  29818. },
  29819. {
  29820. name: "Gigantic",
  29821. height: math.unit(750, "miles")
  29822. },
  29823. {
  29824. name: "Planetary",
  29825. height: math.unit(15000, "miles")
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29831. {
  29832. front: {
  29833. height: math.unit(14, "feet"),
  29834. weight: math.unit(959, "lb"),
  29835. name: "Front",
  29836. image: {
  29837. source: "./media/characters/arsenal/front.svg",
  29838. extra: 2357 / 2157,
  29839. bottom: 93 / 2458
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(14, "feet"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29853. {
  29854. front: {
  29855. height: math.unit(6, "feet"),
  29856. weight: math.unit(150, "lb"),
  29857. name: "Front",
  29858. image: {
  29859. source: "./media/characters/adira/front.svg",
  29860. extra: 2121/2013,
  29861. bottom: 206/2327
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Micro",
  29868. height: math.unit(4, "inches"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Macro",
  29873. height: math.unit(50, "feet")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(16, "feet"),
  29882. weight: math.unit(1000, "lb"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/grim/front.svg",
  29886. extra: 622 / 614,
  29887. bottom: 18.1 / 642
  29888. }
  29889. },
  29890. back: {
  29891. height: math.unit(16, "feet"),
  29892. weight: math.unit(1000, "lb"),
  29893. name: "Back",
  29894. image: {
  29895. source: "./media/characters/grim/back.svg",
  29896. extra: 610.6 / 602,
  29897. bottom: 40.8 / 652
  29898. }
  29899. },
  29900. hunched: {
  29901. height: math.unit(9.75, "feet"),
  29902. weight: math.unit(1000, "lb"),
  29903. name: "Hunched",
  29904. image: {
  29905. source: "./media/characters/grim/hunched.svg",
  29906. extra: 304 / 297,
  29907. bottom: 35.4 / 394
  29908. }
  29909. },
  29910. },
  29911. [
  29912. {
  29913. name: "Normal",
  29914. height: math.unit(16, "feet"),
  29915. default: true
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(2.3, "meters"),
  29924. weight: math.unit(300, "lb"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/sinja/front-sfw.svg",
  29928. extra: 1393 / 1294,
  29929. bottom: 70 / 1463
  29930. }
  29931. },
  29932. frontNsfw: {
  29933. height: math.unit(2.3, "meters"),
  29934. weight: math.unit(300, "lb"),
  29935. name: "Front (NSFW)",
  29936. image: {
  29937. source: "./media/characters/sinja/front-nsfw.svg",
  29938. extra: 1393 / 1294,
  29939. bottom: 70 / 1463
  29940. }
  29941. },
  29942. back: {
  29943. height: math.unit(2.3, "meters"),
  29944. weight: math.unit(300, "lb"),
  29945. name: "Back",
  29946. image: {
  29947. source: "./media/characters/sinja/back.svg",
  29948. extra: 1393 / 1294,
  29949. bottom: 70 / 1463
  29950. }
  29951. },
  29952. head: {
  29953. height: math.unit(1.771, "feet"),
  29954. name: "Head",
  29955. image: {
  29956. source: "./media/characters/sinja/head.svg"
  29957. }
  29958. },
  29959. slit: {
  29960. height: math.unit(0.8, "feet"),
  29961. name: "Slit",
  29962. image: {
  29963. source: "./media/characters/sinja/slit.svg"
  29964. }
  29965. },
  29966. },
  29967. [
  29968. {
  29969. name: "Normal",
  29970. height: math.unit(2.3, "meters")
  29971. },
  29972. {
  29973. name: "Macro",
  29974. height: math.unit(91, "meters"),
  29975. default: true
  29976. },
  29977. {
  29978. name: "Megamacro",
  29979. height: math.unit(91440, "meters")
  29980. },
  29981. {
  29982. name: "Gigamacro",
  29983. height: math.unit(60960000, "meters")
  29984. },
  29985. {
  29986. name: "Teramacro",
  29987. height: math.unit(9144000000, "meters")
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29993. {
  29994. front: {
  29995. height: math.unit(1.7, "meters"),
  29996. weight: math.unit(130, "lb"),
  29997. name: "Front",
  29998. image: {
  29999. source: "./media/characters/kyu/front.svg",
  30000. extra: 415 / 395,
  30001. bottom: 5 / 420
  30002. }
  30003. },
  30004. head: {
  30005. height: math.unit(1.75, "feet"),
  30006. name: "Head",
  30007. image: {
  30008. source: "./media/characters/kyu/head.svg"
  30009. }
  30010. },
  30011. foot: {
  30012. height: math.unit(0.81, "feet"),
  30013. name: "Foot",
  30014. image: {
  30015. source: "./media/characters/kyu/foot.svg"
  30016. }
  30017. },
  30018. },
  30019. [
  30020. {
  30021. name: "Normal",
  30022. height: math.unit(1.7, "meters")
  30023. },
  30024. {
  30025. name: "Macro",
  30026. height: math.unit(131, "feet"),
  30027. default: true
  30028. },
  30029. {
  30030. name: "Megamacro",
  30031. height: math.unit(91440, "meters")
  30032. },
  30033. {
  30034. name: "Gigamacro",
  30035. height: math.unit(60960000, "meters")
  30036. },
  30037. {
  30038. name: "Teramacro",
  30039. height: math.unit(9144000000, "meters")
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(7 + 1 / 12, "feet"),
  30048. weight: math.unit(250, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/joey/front.svg",
  30052. extra: 1791 / 1537,
  30053. bottom: 28 / 1816
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Micro",
  30060. height: math.unit(3, "inches")
  30061. },
  30062. {
  30063. name: "Normal",
  30064. height: math.unit(7 + 1 / 12, "feet"),
  30065. default: true
  30066. },
  30067. ]
  30068. ))
  30069. characterMakers.push(() => makeCharacter(
  30070. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30071. {
  30072. front: {
  30073. height: math.unit(165, "cm"),
  30074. weight: math.unit(140, "lb"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/sam-evans/front.svg",
  30078. extra: 3417 / 3230,
  30079. bottom: 41.3 / 3417
  30080. }
  30081. },
  30082. frontSixTails: {
  30083. height: math.unit(165, "cm"),
  30084. weight: math.unit(140, "lb"),
  30085. name: "Front-six-tails",
  30086. image: {
  30087. source: "./media/characters/sam-evans/front-six-tails.svg",
  30088. extra: 3417 / 3230,
  30089. bottom: 41.3 / 3417
  30090. }
  30091. },
  30092. back: {
  30093. height: math.unit(165, "cm"),
  30094. weight: math.unit(140, "lb"),
  30095. name: "Back",
  30096. image: {
  30097. source: "./media/characters/sam-evans/back.svg",
  30098. extra: 3227 / 3032,
  30099. bottom: 6.8 / 3234
  30100. }
  30101. },
  30102. face: {
  30103. height: math.unit(0.68, "feet"),
  30104. name: "Face",
  30105. image: {
  30106. source: "./media/characters/sam-evans/face.svg"
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(165, "cm"),
  30114. default: true
  30115. },
  30116. {
  30117. name: "Macro",
  30118. height: math.unit(100, "meters")
  30119. },
  30120. {
  30121. name: "Macro+",
  30122. height: math.unit(800, "meters")
  30123. },
  30124. {
  30125. name: "Macro++",
  30126. height: math.unit(3, "km")
  30127. },
  30128. {
  30129. name: "Macro+++",
  30130. height: math.unit(30, "km")
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30136. {
  30137. front: {
  30138. height: math.unit(10, "feet"),
  30139. weight: math.unit(750, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/juliet-a/front.svg",
  30143. extra: 1766 / 1720,
  30144. bottom: 43 / 1809
  30145. }
  30146. },
  30147. back: {
  30148. height: math.unit(10, "feet"),
  30149. weight: math.unit(750, "lb"),
  30150. name: "Back",
  30151. image: {
  30152. source: "./media/characters/juliet-a/back.svg",
  30153. extra: 1781 / 1734,
  30154. bottom: 35 / 1810,
  30155. }
  30156. },
  30157. },
  30158. [
  30159. {
  30160. name: "Normal",
  30161. height: math.unit(10, "feet"),
  30162. default: true
  30163. },
  30164. {
  30165. name: "Dragon Form",
  30166. height: math.unit(250, "feet")
  30167. },
  30168. {
  30169. name: "Macro",
  30170. height: math.unit(1000, "feet")
  30171. },
  30172. {
  30173. name: "Megamacro",
  30174. height: math.unit(10000, "feet")
  30175. }
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30180. {
  30181. regular: {
  30182. height: math.unit(7 + 3 / 12, "feet"),
  30183. weight: math.unit(260, "lb"),
  30184. name: "Regular",
  30185. image: {
  30186. source: "./media/characters/wild/regular.svg",
  30187. extra: 97.45 / 92,
  30188. bottom: 6.8 / 104.3
  30189. }
  30190. },
  30191. biggums: {
  30192. height: math.unit(8 + 6 / 12, "feet"),
  30193. weight: math.unit(425, "lb"),
  30194. name: "Biggums",
  30195. image: {
  30196. source: "./media/characters/wild/biggums.svg",
  30197. extra: 97.45 / 92,
  30198. bottom: 7.5 / 132.34
  30199. }
  30200. },
  30201. mawRegular: {
  30202. height: math.unit(1.24, "feet"),
  30203. name: "Maw (Regular)",
  30204. image: {
  30205. source: "./media/characters/wild/maw.svg"
  30206. }
  30207. },
  30208. mawBiggums: {
  30209. height: math.unit(1.47, "feet"),
  30210. name: "Maw (Biggums)",
  30211. image: {
  30212. source: "./media/characters/wild/maw.svg"
  30213. }
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Normal",
  30219. height: math.unit(7 + 3 / 12, "feet"),
  30220. default: true
  30221. },
  30222. ]
  30223. ))
  30224. characterMakers.push(() => makeCharacter(
  30225. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30226. {
  30227. front: {
  30228. height: math.unit(2.5, "meters"),
  30229. weight: math.unit(200, "kg"),
  30230. name: "Front",
  30231. image: {
  30232. source: "./media/characters/vidar/front.svg",
  30233. extra: 2994 / 2795,
  30234. bottom: 56 / 3061
  30235. }
  30236. },
  30237. back: {
  30238. height: math.unit(2.5, "meters"),
  30239. weight: math.unit(200, "kg"),
  30240. name: "Back",
  30241. image: {
  30242. source: "./media/characters/vidar/back.svg",
  30243. extra: 3131 / 2928,
  30244. bottom: 13.5 / 3141.5
  30245. }
  30246. },
  30247. feral: {
  30248. height: math.unit(2.5, "meters"),
  30249. weight: math.unit(2000, "kg"),
  30250. name: "Feral",
  30251. image: {
  30252. source: "./media/characters/vidar/feral.svg",
  30253. extra: 2790 / 1765,
  30254. bottom: 6 / 2796
  30255. }
  30256. },
  30257. },
  30258. [
  30259. {
  30260. name: "Normal",
  30261. height: math.unit(2.5, "meters"),
  30262. default: true
  30263. },
  30264. {
  30265. name: "Macro",
  30266. height: math.unit(100, "meters")
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30272. {
  30273. front: {
  30274. height: math.unit(5 + 9 / 12, "feet"),
  30275. weight: math.unit(120, "lb"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/ash/front.svg",
  30279. extra: 2189 / 1961,
  30280. bottom: 5.2 / 2194
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(5 + 9 / 12, "feet"),
  30288. default: true
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(9, "feet"),
  30297. weight: math.unit(10000, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/gygabite/front.svg",
  30301. bottom: 31.7 / 537.8,
  30302. extra: 505 / 370
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(9, "feet"),
  30310. default: true
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(12, "feet"),
  30319. weight: math.unit(4000, "lb"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/p0tat0/front.svg",
  30323. extra: 1065 / 921,
  30324. bottom: 55.7 / 1121.25
  30325. }
  30326. },
  30327. },
  30328. [
  30329. {
  30330. name: "Normal",
  30331. height: math.unit(12, "feet"),
  30332. default: true
  30333. },
  30334. ]
  30335. ))
  30336. characterMakers.push(() => makeCharacter(
  30337. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30338. {
  30339. side: {
  30340. height: math.unit(6.5, "feet"),
  30341. weight: math.unit(800, "lb"),
  30342. name: "Side",
  30343. image: {
  30344. source: "./media/characters/dusk/side.svg",
  30345. extra: 615 / 373,
  30346. bottom: 53 / 664
  30347. }
  30348. },
  30349. sitting: {
  30350. height: math.unit(7, "feet"),
  30351. weight: math.unit(800, "lb"),
  30352. name: "Sitting",
  30353. image: {
  30354. source: "./media/characters/dusk/sitting.svg",
  30355. extra: 753 / 425,
  30356. bottom: 33 / 774
  30357. }
  30358. },
  30359. head: {
  30360. height: math.unit(6.1, "feet"),
  30361. name: "Head",
  30362. image: {
  30363. source: "./media/characters/dusk/head.svg"
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(7, "feet"),
  30371. default: true
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30377. {
  30378. front: {
  30379. height: math.unit(15, "feet"),
  30380. weight: math.unit(7000, "lb"),
  30381. name: "Front",
  30382. image: {
  30383. source: "./media/characters/jay-direwolf/front.svg",
  30384. extra: 1810 / 1732,
  30385. bottom: 66 / 1892
  30386. }
  30387. },
  30388. },
  30389. [
  30390. {
  30391. name: "Normal",
  30392. height: math.unit(15, "feet"),
  30393. default: true
  30394. },
  30395. ]
  30396. ))
  30397. characterMakers.push(() => makeCharacter(
  30398. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30399. {
  30400. front: {
  30401. height: math.unit(4 + 9 / 12, "feet"),
  30402. weight: math.unit(130, "lb"),
  30403. name: "Front",
  30404. image: {
  30405. source: "./media/characters/anchovie/front.svg",
  30406. extra: 382 / 350,
  30407. bottom: 25 / 409
  30408. }
  30409. },
  30410. back: {
  30411. height: math.unit(4 + 9 / 12, "feet"),
  30412. weight: math.unit(130, "lb"),
  30413. name: "Back",
  30414. image: {
  30415. source: "./media/characters/anchovie/back.svg",
  30416. extra: 385 / 352,
  30417. bottom: 16.6 / 402
  30418. }
  30419. },
  30420. frontDressed: {
  30421. height: math.unit(4 + 9 / 12, "feet"),
  30422. weight: math.unit(130, "lb"),
  30423. name: "Front (Dressed)",
  30424. image: {
  30425. source: "./media/characters/anchovie/front-dressed.svg",
  30426. extra: 382 / 350,
  30427. bottom: 25 / 409
  30428. }
  30429. },
  30430. backDressed: {
  30431. height: math.unit(4 + 9 / 12, "feet"),
  30432. weight: math.unit(130, "lb"),
  30433. name: "Back (Dressed)",
  30434. image: {
  30435. source: "./media/characters/anchovie/back-dressed.svg",
  30436. extra: 385 / 352,
  30437. bottom: 16.6 / 402
  30438. }
  30439. },
  30440. },
  30441. [
  30442. {
  30443. name: "Micro",
  30444. height: math.unit(6.4, "inches")
  30445. },
  30446. {
  30447. name: "Normal",
  30448. height: math.unit(4 + 9 / 12, "feet"),
  30449. default: true
  30450. },
  30451. ]
  30452. ))
  30453. characterMakers.push(() => makeCharacter(
  30454. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30455. {
  30456. front: {
  30457. height: math.unit(2, "meters"),
  30458. weight: math.unit(180, "lb"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/acidrenamon/front.svg",
  30462. extra: 987 / 890,
  30463. bottom: 22.8 / 1009
  30464. }
  30465. },
  30466. back: {
  30467. height: math.unit(2, "meters"),
  30468. weight: math.unit(180, "lb"),
  30469. name: "Back",
  30470. image: {
  30471. source: "./media/characters/acidrenamon/back.svg",
  30472. extra: 983 / 891,
  30473. bottom: 8.4 / 992
  30474. }
  30475. },
  30476. head: {
  30477. height: math.unit(1.92, "feet"),
  30478. name: "Head",
  30479. image: {
  30480. source: "./media/characters/acidrenamon/head.svg"
  30481. }
  30482. },
  30483. rump: {
  30484. height: math.unit(1.72, "feet"),
  30485. name: "Rump",
  30486. image: {
  30487. source: "./media/characters/acidrenamon/rump.svg"
  30488. }
  30489. },
  30490. tail: {
  30491. height: math.unit(4.2, "feet"),
  30492. name: "Tail",
  30493. image: {
  30494. source: "./media/characters/acidrenamon/tail.svg"
  30495. }
  30496. },
  30497. },
  30498. [
  30499. {
  30500. name: "Normal",
  30501. height: math.unit(2, "meters"),
  30502. default: true
  30503. },
  30504. {
  30505. name: "Minimacro",
  30506. height: math.unit(7, "meters")
  30507. },
  30508. {
  30509. name: "Macro",
  30510. height: math.unit(200, "meters")
  30511. },
  30512. {
  30513. name: "Gigamacro",
  30514. height: math.unit(0.2, "earths")
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30520. {
  30521. front: {
  30522. height: math.unit(152, "feet"),
  30523. name: "Front",
  30524. image: {
  30525. source: "./media/characters/kenzie-lee/front.svg",
  30526. extra: 1869/1774,
  30527. bottom: 128/1997
  30528. }
  30529. },
  30530. side: {
  30531. height: math.unit(86, "feet"),
  30532. name: "Side",
  30533. image: {
  30534. source: "./media/characters/kenzie-lee/side.svg",
  30535. extra: 930/815,
  30536. bottom: 177/1107
  30537. }
  30538. },
  30539. paw: {
  30540. height: math.unit(15, "feet"),
  30541. name: "Paw",
  30542. image: {
  30543. source: "./media/characters/kenzie-lee/paw.svg"
  30544. }
  30545. },
  30546. },
  30547. [
  30548. {
  30549. name: "Kenzie Flea",
  30550. height: math.unit(2, "mm"),
  30551. default: true
  30552. },
  30553. {
  30554. name: "Micro",
  30555. height: math.unit(2, "inches")
  30556. },
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(152, "feet")
  30560. },
  30561. {
  30562. name: "Megamacro",
  30563. height: math.unit(7, "miles")
  30564. },
  30565. {
  30566. name: "Gigamacro",
  30567. height: math.unit(8000, "miles")
  30568. },
  30569. ]
  30570. ))
  30571. characterMakers.push(() => makeCharacter(
  30572. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30573. {
  30574. front: {
  30575. height: math.unit(6, "feet"),
  30576. name: "Front",
  30577. image: {
  30578. source: "./media/characters/withers/front.svg",
  30579. extra: 1935/1760,
  30580. bottom: 72/2007
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(6, "feet"),
  30585. name: "Back",
  30586. image: {
  30587. source: "./media/characters/withers/back.svg",
  30588. extra: 1944/1792,
  30589. bottom: 12/1956
  30590. }
  30591. },
  30592. dressed: {
  30593. height: math.unit(6, "feet"),
  30594. name: "Dressed",
  30595. image: {
  30596. source: "./media/characters/withers/dressed.svg",
  30597. extra: 1937/1765,
  30598. bottom: 73/2010
  30599. }
  30600. },
  30601. phase1: {
  30602. height: math.unit(1.1, "feet"),
  30603. name: "Phase 1",
  30604. image: {
  30605. source: "./media/characters/withers/phase-1.svg",
  30606. extra: 1885/1232,
  30607. bottom: 0/1885
  30608. }
  30609. },
  30610. phase2: {
  30611. height: math.unit(1.05, "feet"),
  30612. name: "Phase 2",
  30613. image: {
  30614. source: "./media/characters/withers/phase-2.svg",
  30615. extra: 1792/1090,
  30616. bottom: 0/1792
  30617. }
  30618. },
  30619. partyWipe: {
  30620. height: math.unit(1.1, "feet"),
  30621. name: "Party Wipe",
  30622. image: {
  30623. source: "./media/characters/withers/party-wipe.svg",
  30624. extra: 1864/1207,
  30625. bottom: 0/1864
  30626. }
  30627. },
  30628. },
  30629. [
  30630. {
  30631. name: "Macro",
  30632. height: math.unit(167, "feet"),
  30633. default: true
  30634. },
  30635. {
  30636. name: "Megamacro",
  30637. height: math.unit(15, "miles")
  30638. }
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(6 + 7 / 12, "feet"),
  30646. weight: math.unit(250, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/nemoskii/front.svg",
  30650. extra: 2270 / 1734,
  30651. bottom: 86 / 2354
  30652. }
  30653. },
  30654. back: {
  30655. height: math.unit(6 + 7 / 12, "feet"),
  30656. weight: math.unit(250, "lb"),
  30657. name: "Back",
  30658. image: {
  30659. source: "./media/characters/nemoskii/back.svg",
  30660. extra: 1845 / 1788,
  30661. bottom: 10.5 / 1852
  30662. }
  30663. },
  30664. head: {
  30665. height: math.unit(1.31, "feet"),
  30666. name: "Head",
  30667. image: {
  30668. source: "./media/characters/nemoskii/head.svg"
  30669. }
  30670. },
  30671. },
  30672. [
  30673. {
  30674. name: "Micro",
  30675. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30676. },
  30677. {
  30678. name: "Normal",
  30679. height: math.unit(6 + 7 / 12, "feet"),
  30680. default: true
  30681. },
  30682. {
  30683. name: "Macro",
  30684. height: math.unit((6 + 7 / 12) * 150, "feet")
  30685. },
  30686. {
  30687. name: "Macro+",
  30688. height: math.unit((6 + 7 / 12) * 500, "feet")
  30689. },
  30690. {
  30691. name: "Megamacro",
  30692. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30698. {
  30699. front: {
  30700. height: math.unit(1, "mile"),
  30701. weight: math.unit(265261.9, "lb"),
  30702. name: "Front",
  30703. image: {
  30704. source: "./media/characters/shui/front.svg",
  30705. extra: 1633 / 1564,
  30706. bottom: 91.5 / 1726
  30707. }
  30708. },
  30709. },
  30710. [
  30711. {
  30712. name: "Macro",
  30713. height: math.unit(1, "mile"),
  30714. default: true
  30715. },
  30716. ]
  30717. ))
  30718. characterMakers.push(() => makeCharacter(
  30719. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30720. {
  30721. front: {
  30722. height: math.unit(12 + 6 / 12, "feet"),
  30723. weight: math.unit(1342, "lb"),
  30724. name: "Front",
  30725. image: {
  30726. source: "./media/characters/arokh-takakura/front.svg",
  30727. extra: 1089 / 1043,
  30728. bottom: 77.4 / 1176.7
  30729. }
  30730. },
  30731. back: {
  30732. height: math.unit(12 + 6 / 12, "feet"),
  30733. weight: math.unit(1342, "lb"),
  30734. name: "Back",
  30735. image: {
  30736. source: "./media/characters/arokh-takakura/back.svg",
  30737. extra: 1046 / 1019,
  30738. bottom: 102 / 1150
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Big",
  30745. height: math.unit(12 + 6 / 12, "feet"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(5 + 6 / 12, "feet"),
  30755. weight: math.unit(150, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/theo/front.svg",
  30759. extra: 1184 / 1131,
  30760. bottom: 7.4 / 1191
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "Micro",
  30767. height: math.unit(5, "inches")
  30768. },
  30769. {
  30770. name: "Normal",
  30771. height: math.unit(5 + 6 / 12, "feet"),
  30772. default: true
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30778. {
  30779. front: {
  30780. height: math.unit(5 + 9 / 12, "feet"),
  30781. weight: math.unit(130, "lb"),
  30782. name: "Front",
  30783. image: {
  30784. source: "./media/characters/cecelia-swift/front.svg",
  30785. extra: 502 / 484,
  30786. bottom: 23 / 523
  30787. }
  30788. },
  30789. back: {
  30790. height: math.unit(5 + 9 / 12, "feet"),
  30791. weight: math.unit(130, "lb"),
  30792. name: "Back",
  30793. image: {
  30794. source: "./media/characters/cecelia-swift/back.svg",
  30795. extra: 499 / 485,
  30796. bottom: 12 / 511
  30797. }
  30798. },
  30799. head: {
  30800. height: math.unit(0.90, "feet"),
  30801. name: "Head",
  30802. image: {
  30803. source: "./media/characters/cecelia-swift/head.svg"
  30804. }
  30805. },
  30806. rump: {
  30807. height: math.unit(1.75, "feet"),
  30808. name: "Rump",
  30809. image: {
  30810. source: "./media/characters/cecelia-swift/rump.svg"
  30811. }
  30812. },
  30813. },
  30814. [
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(5 + 9 / 12, "feet"),
  30818. default: true
  30819. },
  30820. {
  30821. name: "Big",
  30822. height: math.unit(50, "feet")
  30823. },
  30824. {
  30825. name: "Macro",
  30826. height: math.unit(100, "feet")
  30827. },
  30828. {
  30829. name: "Macro+",
  30830. height: math.unit(500, "feet")
  30831. },
  30832. {
  30833. name: "Macro++",
  30834. height: math.unit(1000, "feet")
  30835. },
  30836. ]
  30837. ))
  30838. characterMakers.push(() => makeCharacter(
  30839. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30840. {
  30841. front: {
  30842. height: math.unit(6, "feet"),
  30843. weight: math.unit(150, "lb"),
  30844. name: "Front",
  30845. image: {
  30846. source: "./media/characters/kaunan/front.svg",
  30847. extra: 2890 / 2523,
  30848. bottom: 49 / 2939
  30849. }
  30850. },
  30851. },
  30852. [
  30853. {
  30854. name: "Macro",
  30855. height: math.unit(150, "feet"),
  30856. default: true
  30857. },
  30858. ]
  30859. ))
  30860. characterMakers.push(() => makeCharacter(
  30861. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30862. {
  30863. dressed: {
  30864. height: math.unit(175, "cm"),
  30865. weight: math.unit(60, "kg"),
  30866. name: "Dressed",
  30867. image: {
  30868. source: "./media/characters/fei/dressed.svg",
  30869. extra: 1402/1278,
  30870. bottom: 27/1429
  30871. }
  30872. },
  30873. nude: {
  30874. height: math.unit(175, "cm"),
  30875. weight: math.unit(60, "kg"),
  30876. name: "Nude",
  30877. image: {
  30878. source: "./media/characters/fei/nude.svg",
  30879. extra: 1402/1278,
  30880. bottom: 27/1429
  30881. }
  30882. },
  30883. heels: {
  30884. height: math.unit(0.466, "feet"),
  30885. name: "Heels",
  30886. image: {
  30887. source: "./media/characters/fei/heels.svg",
  30888. extra: 156/152,
  30889. bottom: 28/184
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Mortal",
  30896. height: math.unit(175, "cm")
  30897. },
  30898. {
  30899. name: "Normal",
  30900. height: math.unit(3500, "m")
  30901. },
  30902. {
  30903. name: "Stroll",
  30904. height: math.unit(18.4, "km"),
  30905. default: true
  30906. },
  30907. {
  30908. name: "Showoff",
  30909. height: math.unit(175, "km")
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(7, "feet"),
  30918. weight: math.unit(1000, "kg"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/edrax/front.svg",
  30922. extra: 2838 / 2550,
  30923. bottom: 130 / 2968
  30924. }
  30925. },
  30926. },
  30927. [
  30928. {
  30929. name: "Small",
  30930. height: math.unit(7, "feet")
  30931. },
  30932. {
  30933. name: "Normal",
  30934. height: math.unit(1500, "meters")
  30935. },
  30936. {
  30937. name: "Mega",
  30938. height: math.unit(12000000, "km"),
  30939. default: true
  30940. },
  30941. {
  30942. name: "Megamacro",
  30943. height: math.unit(10600000, "lightyears")
  30944. },
  30945. {
  30946. name: "Hypermacro",
  30947. height: math.unit(256, "yottameters")
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(10, "feet"),
  30956. weight: math.unit(750, "lb"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/clove/front.svg",
  30960. extra: 1918/1751,
  30961. bottom: 52/1970
  30962. }
  30963. },
  30964. back: {
  30965. height: math.unit(10, "feet"),
  30966. weight: math.unit(750, "lb"),
  30967. name: "Back",
  30968. image: {
  30969. source: "./media/characters/clove/back.svg",
  30970. extra: 1912/1747,
  30971. bottom: 50/1962
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Normal",
  30978. height: math.unit(10, "feet"),
  30979. default: true
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30985. {
  30986. front: {
  30987. height: math.unit(4, "feet"),
  30988. weight: math.unit(50, "lb"),
  30989. name: "Front",
  30990. image: {
  30991. source: "./media/characters/alex-rabbit/front.svg",
  30992. extra: 507 / 458,
  30993. bottom: 18.5 / 527
  30994. }
  30995. },
  30996. back: {
  30997. height: math.unit(4, "feet"),
  30998. weight: math.unit(50, "lb"),
  30999. name: "Back",
  31000. image: {
  31001. source: "./media/characters/alex-rabbit/back.svg",
  31002. extra: 502 / 460,
  31003. bottom: 18.9 / 521
  31004. }
  31005. },
  31006. },
  31007. [
  31008. {
  31009. name: "Normal",
  31010. height: math.unit(4, "feet"),
  31011. default: true
  31012. },
  31013. ]
  31014. ))
  31015. characterMakers.push(() => makeCharacter(
  31016. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31017. {
  31018. front: {
  31019. height: math.unit(1 + 3 / 12, "feet"),
  31020. weight: math.unit(80, "lb"),
  31021. name: "Front",
  31022. image: {
  31023. source: "./media/characters/zander-rose/front.svg",
  31024. extra: 916 / 797,
  31025. bottom: 17 / 933
  31026. }
  31027. },
  31028. back: {
  31029. height: math.unit(1 + 3 / 12, "feet"),
  31030. weight: math.unit(80, "lb"),
  31031. name: "Back",
  31032. image: {
  31033. source: "./media/characters/zander-rose/back.svg",
  31034. extra: 903 / 779,
  31035. bottom: 31 / 934
  31036. }
  31037. },
  31038. },
  31039. [
  31040. {
  31041. name: "Normal",
  31042. height: math.unit(1 + 3 / 12, "feet"),
  31043. default: true
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31049. {
  31050. anthro: {
  31051. height: math.unit(6, "feet"),
  31052. weight: math.unit(150, "lb"),
  31053. name: "Anthro",
  31054. image: {
  31055. source: "./media/characters/razz/anthro.svg",
  31056. extra: 1437 / 1343,
  31057. bottom: 48 / 1485
  31058. }
  31059. },
  31060. feral: {
  31061. height: math.unit(6, "feet"),
  31062. weight: math.unit(150, "lb"),
  31063. name: "Feral",
  31064. image: {
  31065. source: "./media/characters/razz/feral.svg",
  31066. extra: 2569 / 1385,
  31067. bottom: 95 / 2664
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "Normal",
  31074. height: math.unit(6, "feet"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31081. {
  31082. front: {
  31083. height: math.unit(9 + 4 / 12, "feet"),
  31084. weight: math.unit(500, "lb"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/morrigan/front.svg",
  31088. extra: 2707 / 2579,
  31089. bottom: 156 / 2863
  31090. }
  31091. },
  31092. },
  31093. [
  31094. {
  31095. name: "Normal",
  31096. height: math.unit(9 + 4 / 12, "feet"),
  31097. default: true
  31098. },
  31099. ]
  31100. ))
  31101. characterMakers.push(() => makeCharacter(
  31102. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31103. {
  31104. front: {
  31105. height: math.unit(5, "stories"),
  31106. weight: math.unit(4000, "lb"),
  31107. name: "Front",
  31108. image: {
  31109. source: "./media/characters/jenene/front.svg",
  31110. extra: 1780 / 1710,
  31111. bottom: 57 / 1837
  31112. }
  31113. },
  31114. },
  31115. [
  31116. {
  31117. name: "Normal",
  31118. height: math.unit(5, "stories"),
  31119. default: true
  31120. },
  31121. ]
  31122. ))
  31123. characterMakers.push(() => makeCharacter(
  31124. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31125. {
  31126. taurSfw: {
  31127. height: math.unit(10, "meters"),
  31128. weight: math.unit(17500, "kg"),
  31129. name: "Taur",
  31130. image: {
  31131. source: "./media/characters/faey/taur-sfw.svg",
  31132. extra: 1200 / 968,
  31133. bottom: 41 / 1241
  31134. }
  31135. },
  31136. chestmaw: {
  31137. height: math.unit(2.01, "meters"),
  31138. name: "Chestmaw",
  31139. image: {
  31140. source: "./media/characters/faey/chestmaw.svg"
  31141. }
  31142. },
  31143. foot: {
  31144. height: math.unit(2.43, "meters"),
  31145. name: "Foot",
  31146. image: {
  31147. source: "./media/characters/faey/foot.svg"
  31148. }
  31149. },
  31150. jaws: {
  31151. height: math.unit(1.66, "meters"),
  31152. name: "Jaws",
  31153. image: {
  31154. source: "./media/characters/faey/jaws.svg"
  31155. }
  31156. },
  31157. tongues: {
  31158. height: math.unit(2.01, "meters"),
  31159. name: "Tongues",
  31160. image: {
  31161. source: "./media/characters/faey/tongues.svg"
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Small",
  31168. height: math.unit(10, "meters"),
  31169. default: true
  31170. },
  31171. {
  31172. name: "Big",
  31173. height: math.unit(500000, "km")
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(7, "feet"),
  31182. weight: math.unit(275, "lb"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/roku/front.svg",
  31186. extra: 903 / 878,
  31187. bottom: 37 / 940
  31188. }
  31189. },
  31190. },
  31191. [
  31192. {
  31193. name: "Normal",
  31194. height: math.unit(7, "feet"),
  31195. default: true
  31196. },
  31197. {
  31198. name: "Macro",
  31199. height: math.unit(500, "feet")
  31200. },
  31201. {
  31202. name: "Megamacro",
  31203. height: math.unit(200, "miles")
  31204. },
  31205. ]
  31206. ))
  31207. characterMakers.push(() => makeCharacter(
  31208. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31209. {
  31210. front: {
  31211. height: math.unit(6 + 2 / 12, "feet"),
  31212. weight: math.unit(150, "lb"),
  31213. name: "Front",
  31214. image: {
  31215. source: "./media/characters/lira/front.svg",
  31216. extra: 1727 / 1605,
  31217. bottom: 26 / 1753
  31218. }
  31219. },
  31220. back: {
  31221. height: math.unit(6 + 2 / 12, "feet"),
  31222. weight: math.unit(150, "lb"),
  31223. name: "Back",
  31224. image: {
  31225. source: "./media/characters/lira/back.svg",
  31226. extra: 1713/1621,
  31227. bottom: 20/1733
  31228. }
  31229. },
  31230. hand: {
  31231. height: math.unit(0.75, "feet"),
  31232. name: "Hand",
  31233. image: {
  31234. source: "./media/characters/lira/hand.svg"
  31235. }
  31236. },
  31237. maw: {
  31238. height: math.unit(0.65, "feet"),
  31239. name: "Maw",
  31240. image: {
  31241. source: "./media/characters/lira/maw.svg"
  31242. }
  31243. },
  31244. pawDigi: {
  31245. height: math.unit(1.6, "feet"),
  31246. name: "Paw Digi",
  31247. image: {
  31248. source: "./media/characters/lira/paw-digi.svg"
  31249. }
  31250. },
  31251. pawPlanti: {
  31252. height: math.unit(1.4, "feet"),
  31253. name: "Paw Planti",
  31254. image: {
  31255. source: "./media/characters/lira/paw-planti.svg"
  31256. }
  31257. },
  31258. },
  31259. [
  31260. {
  31261. name: "Normal",
  31262. height: math.unit(6 + 2 / 12, "feet"),
  31263. default: true
  31264. },
  31265. {
  31266. name: "Macro",
  31267. height: math.unit(100, "feet")
  31268. },
  31269. {
  31270. name: "Macro²",
  31271. height: math.unit(1600, "feet")
  31272. },
  31273. {
  31274. name: "Planetary",
  31275. height: math.unit(20, "earths")
  31276. },
  31277. ]
  31278. ))
  31279. characterMakers.push(() => makeCharacter(
  31280. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31281. {
  31282. front: {
  31283. height: math.unit(6, "feet"),
  31284. weight: math.unit(150, "lb"),
  31285. name: "Front",
  31286. image: {
  31287. source: "./media/characters/hadjet/front.svg",
  31288. extra: 1480 / 1346,
  31289. bottom: 26 / 1506
  31290. }
  31291. },
  31292. frontNsfw: {
  31293. height: math.unit(6, "feet"),
  31294. weight: math.unit(150, "lb"),
  31295. name: "Front (NSFW)",
  31296. image: {
  31297. source: "./media/characters/hadjet/front-nsfw.svg",
  31298. extra: 1440 / 1358,
  31299. bottom: 52 / 1492
  31300. }
  31301. },
  31302. },
  31303. [
  31304. {
  31305. name: "Macro",
  31306. height: math.unit(10, "stories"),
  31307. default: true
  31308. },
  31309. {
  31310. name: "Megamacro",
  31311. height: math.unit(1.5, "miles")
  31312. },
  31313. {
  31314. name: "Megamacro+",
  31315. height: math.unit(5, "miles")
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31321. {
  31322. side: {
  31323. height: math.unit(106, "feet"),
  31324. weight: math.unit(500, "tonnes"),
  31325. name: "Side",
  31326. image: {
  31327. source: "./media/characters/kodran/side.svg",
  31328. extra: 553 / 480,
  31329. bottom: 33 / 586
  31330. }
  31331. },
  31332. front: {
  31333. height: math.unit(132, "feet"),
  31334. weight: math.unit(500, "tonnes"),
  31335. name: "Front",
  31336. image: {
  31337. source: "./media/characters/kodran/front.svg",
  31338. extra: 667 / 643,
  31339. bottom: 42 / 709
  31340. }
  31341. },
  31342. flying: {
  31343. height: math.unit(350, "feet"),
  31344. weight: math.unit(500, "tonnes"),
  31345. name: "Flying",
  31346. image: {
  31347. source: "./media/characters/kodran/flying.svg"
  31348. }
  31349. },
  31350. foot: {
  31351. height: math.unit(33, "feet"),
  31352. name: "Foot",
  31353. image: {
  31354. source: "./media/characters/kodran/foot.svg"
  31355. }
  31356. },
  31357. footFront: {
  31358. height: math.unit(19, "feet"),
  31359. name: "Foot (Front)",
  31360. image: {
  31361. source: "./media/characters/kodran/foot-front.svg",
  31362. extra: 261 / 261,
  31363. bottom: 91 / 352
  31364. }
  31365. },
  31366. headFront: {
  31367. height: math.unit(53, "feet"),
  31368. name: "Head (Front)",
  31369. image: {
  31370. source: "./media/characters/kodran/head-front.svg"
  31371. }
  31372. },
  31373. headSide: {
  31374. height: math.unit(65, "feet"),
  31375. name: "Head (Side)",
  31376. image: {
  31377. source: "./media/characters/kodran/head-side.svg"
  31378. }
  31379. },
  31380. throat: {
  31381. height: math.unit(79, "feet"),
  31382. name: "Throat",
  31383. image: {
  31384. source: "./media/characters/kodran/throat.svg"
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Large",
  31391. height: math.unit(106, "feet"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31398. {
  31399. side: {
  31400. height: math.unit(11, "feet"),
  31401. weight: math.unit(150, "lb"),
  31402. name: "Side",
  31403. image: {
  31404. source: "./media/characters/pyxaron/side.svg",
  31405. extra: 305 / 195,
  31406. bottom: 17 / 322
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Normal",
  31413. height: math.unit(11, "feet"),
  31414. default: true
  31415. },
  31416. ]
  31417. ))
  31418. characterMakers.push(() => makeCharacter(
  31419. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31420. {
  31421. front: {
  31422. height: math.unit(6, "feet"),
  31423. weight: math.unit(150, "lb"),
  31424. name: "Front",
  31425. image: {
  31426. source: "./media/characters/meep/front.svg",
  31427. extra: 88 / 80,
  31428. bottom: 6 / 94
  31429. }
  31430. },
  31431. },
  31432. [
  31433. {
  31434. name: "Fun Sized",
  31435. height: math.unit(2, "inches"),
  31436. default: true
  31437. },
  31438. {
  31439. name: "Friend Sized",
  31440. height: math.unit(8, "inches")
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31446. {
  31447. front: {
  31448. height: math.unit(15, "feet"),
  31449. weight: math.unit(2500, "lb"),
  31450. name: "Front",
  31451. image: {
  31452. source: "./media/characters/holly-rabbit/front.svg",
  31453. extra: 1433 / 1233,
  31454. bottom: 125 / 1558
  31455. }
  31456. },
  31457. dick: {
  31458. height: math.unit(4.6, "feet"),
  31459. name: "Dick",
  31460. image: {
  31461. source: "./media/characters/holly-rabbit/dick.svg"
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Normal",
  31468. height: math.unit(15, "feet"),
  31469. default: true
  31470. },
  31471. {
  31472. name: "Macro",
  31473. height: math.unit(250, "feet")
  31474. },
  31475. {
  31476. name: "Macro+",
  31477. height: math.unit(2500, "feet")
  31478. },
  31479. ]
  31480. ))
  31481. characterMakers.push(() => makeCharacter(
  31482. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31483. {
  31484. front: {
  31485. height: math.unit(3.02, "meters"),
  31486. weight: math.unit(500, "kg"),
  31487. name: "Front",
  31488. image: {
  31489. source: "./media/characters/drena/front.svg",
  31490. extra: 282 / 243,
  31491. bottom: 8 / 290
  31492. }
  31493. },
  31494. side: {
  31495. height: math.unit(3.02, "meters"),
  31496. weight: math.unit(500, "kg"),
  31497. name: "Side",
  31498. image: {
  31499. source: "./media/characters/drena/side.svg",
  31500. extra: 280 / 245,
  31501. bottom: 10 / 290
  31502. }
  31503. },
  31504. back: {
  31505. height: math.unit(3.02, "meters"),
  31506. weight: math.unit(500, "kg"),
  31507. name: "Back",
  31508. image: {
  31509. source: "./media/characters/drena/back.svg",
  31510. extra: 278 / 243,
  31511. bottom: 2 / 280
  31512. }
  31513. },
  31514. foot: {
  31515. height: math.unit(0.75, "meters"),
  31516. name: "Foot",
  31517. image: {
  31518. source: "./media/characters/drena/foot.svg"
  31519. }
  31520. },
  31521. maw: {
  31522. height: math.unit(0.82, "meters"),
  31523. name: "Maw",
  31524. image: {
  31525. source: "./media/characters/drena/maw.svg"
  31526. }
  31527. },
  31528. eating: {
  31529. height: math.unit(0.75, "meters"),
  31530. name: "Eating",
  31531. image: {
  31532. source: "./media/characters/drena/eating.svg"
  31533. }
  31534. },
  31535. rump: {
  31536. height: math.unit(0.93, "meters"),
  31537. name: "Rump",
  31538. image: {
  31539. source: "./media/characters/drena/rump.svg"
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(3.02, "meters"),
  31547. default: true
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31553. {
  31554. front: {
  31555. height: math.unit(6 + 4 / 12, "feet"),
  31556. weight: math.unit(250, "lb"),
  31557. name: "Front",
  31558. image: {
  31559. source: "./media/characters/remmyzilla/front.svg",
  31560. extra: 4033 / 3588,
  31561. bottom: 123 / 4156
  31562. }
  31563. },
  31564. back: {
  31565. height: math.unit(6 + 4 / 12, "feet"),
  31566. weight: math.unit(250, "lb"),
  31567. name: "Back",
  31568. image: {
  31569. source: "./media/characters/remmyzilla/back.svg",
  31570. extra: 1696/1602,
  31571. bottom: 63/1759
  31572. }
  31573. },
  31574. paw: {
  31575. height: math.unit(1.73, "feet"),
  31576. name: "Paw",
  31577. image: {
  31578. source: "./media/characters/remmyzilla/paw.svg"
  31579. },
  31580. extraAttributes: {
  31581. "toeSize": {
  31582. name: "Toe Size",
  31583. power: 2,
  31584. type: "area",
  31585. base: math.unit(0.0035, "m^2")
  31586. },
  31587. "padSize": {
  31588. name: "Pad Size",
  31589. power: 2,
  31590. type: "area",
  31591. base: math.unit(0.015, "m^2")
  31592. },
  31593. "pawsize": {
  31594. name: "Paw Size",
  31595. power: 2,
  31596. type: "area",
  31597. base: math.unit(0.072, "m^2")
  31598. },
  31599. }
  31600. },
  31601. maw: {
  31602. height: math.unit(1.73, "feet"),
  31603. name: "Maw",
  31604. image: {
  31605. source: "./media/characters/remmyzilla/maw.svg"
  31606. }
  31607. },
  31608. },
  31609. [
  31610. {
  31611. name: "Normal",
  31612. height: math.unit(6 + 4 / 12, "feet")
  31613. },
  31614. {
  31615. name: "Minimacro",
  31616. height: math.unit(12 + 8 / 12, "feet")
  31617. },
  31618. {
  31619. name: "Normal",
  31620. height: math.unit(640, "feet"),
  31621. default: true
  31622. },
  31623. {
  31624. name: "Megamacro",
  31625. height: math.unit(6400, "feet")
  31626. },
  31627. {
  31628. name: "Gigamacro",
  31629. height: math.unit(64000, "miles")
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31635. {
  31636. front: {
  31637. height: math.unit(2.5, "meters"),
  31638. weight: math.unit(300, "lb"),
  31639. name: "Front",
  31640. image: {
  31641. source: "./media/characters/lawrence/front.svg",
  31642. extra: 357 / 335,
  31643. bottom: 30 / 387
  31644. }
  31645. },
  31646. back: {
  31647. height: math.unit(2.5, "meters"),
  31648. weight: math.unit(300, "lb"),
  31649. name: "Back",
  31650. image: {
  31651. source: "./media/characters/lawrence/back.svg",
  31652. extra: 357 / 338,
  31653. bottom: 16 / 373
  31654. }
  31655. },
  31656. head: {
  31657. height: math.unit(0.9, "meter"),
  31658. name: "Head",
  31659. image: {
  31660. source: "./media/characters/lawrence/head.svg"
  31661. }
  31662. },
  31663. maw: {
  31664. height: math.unit(0.7, "meter"),
  31665. name: "Maw",
  31666. image: {
  31667. source: "./media/characters/lawrence/maw.svg"
  31668. }
  31669. },
  31670. footBottom: {
  31671. height: math.unit(0.5, "meter"),
  31672. name: "Foot (Bottom)",
  31673. image: {
  31674. source: "./media/characters/lawrence/foot-bottom.svg"
  31675. }
  31676. },
  31677. footTop: {
  31678. height: math.unit(0.5, "meter"),
  31679. name: "Foot (Top)",
  31680. image: {
  31681. source: "./media/characters/lawrence/foot-top.svg"
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(2.5, "meters"),
  31689. default: true
  31690. },
  31691. {
  31692. name: "Macro",
  31693. height: math.unit(95, "meters")
  31694. },
  31695. {
  31696. name: "Megamacro",
  31697. height: math.unit(150, "km")
  31698. },
  31699. ]
  31700. ))
  31701. characterMakers.push(() => makeCharacter(
  31702. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31703. {
  31704. front: {
  31705. height: math.unit(4.2, "meters"),
  31706. preyCapacity: math.unit(50, "m^3"),
  31707. weight: math.unit(30, "tonnes"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/sydney/front.svg",
  31711. extra: 1177/1129,
  31712. bottom: 197/1374
  31713. },
  31714. extraAttributes: {
  31715. "length": {
  31716. name: "Length",
  31717. power: 1,
  31718. type: "length",
  31719. base: math.unit(21, "meters")
  31720. },
  31721. }
  31722. },
  31723. },
  31724. [
  31725. {
  31726. name: "Normal",
  31727. height: math.unit(4.2, "meters"),
  31728. default: true
  31729. },
  31730. ]
  31731. ))
  31732. characterMakers.push(() => makeCharacter(
  31733. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31734. {
  31735. back: {
  31736. height: math.unit(201, "feet"),
  31737. name: "Back",
  31738. image: {
  31739. source: "./media/characters/jessica/back.svg",
  31740. extra: 273 / 259,
  31741. bottom: 7 / 280
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(201, "feet"),
  31749. default: true
  31750. },
  31751. {
  31752. name: "Megamacro",
  31753. height: math.unit(8, "miles")
  31754. },
  31755. ]
  31756. ))
  31757. characterMakers.push(() => makeCharacter(
  31758. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31759. {
  31760. side: {
  31761. height: math.unit(5.6, "m"),
  31762. weight: math.unit(8000, "kg"),
  31763. name: "Side",
  31764. image: {
  31765. source: "./media/characters/victoria/side.svg",
  31766. extra: 1542/1229,
  31767. bottom: 124/1666
  31768. }
  31769. },
  31770. maw: {
  31771. height: math.unit(7.14, "feet"),
  31772. name: "Maw",
  31773. image: {
  31774. source: "./media/characters/victoria/maw.svg"
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(5.6, "m"),
  31782. default: true
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31788. {
  31789. front: {
  31790. height: math.unit(5 + 6 / 12, "feet"),
  31791. name: "Front",
  31792. image: {
  31793. source: "./media/characters/cat/cat-front.svg",
  31794. extra: 1422/1262,
  31795. bottom: 61/1483
  31796. },
  31797. form: "cat",
  31798. default: true
  31799. },
  31800. back: {
  31801. height: math.unit(5 + 6 / 12, "feet"),
  31802. name: "Back",
  31803. image: {
  31804. source: "./media/characters/cat/cat-back.svg",
  31805. extra: 1466/1301,
  31806. bottom: 19/1485
  31807. },
  31808. form: "cat"
  31809. },
  31810. taur: {
  31811. height: math.unit(7, "feet"),
  31812. name: "Side",
  31813. image: {
  31814. source: "./media/characters/cat/taur-side.svg",
  31815. extra: 1389/1233,
  31816. bottom: 83/1472
  31817. },
  31818. form: "taur",
  31819. default: true
  31820. },
  31821. lucarioFront: {
  31822. height: math.unit(4, "feet"),
  31823. name: "Front",
  31824. image: {
  31825. source: "./media/characters/cat/lucario-front.svg",
  31826. extra: 1149/1019,
  31827. bottom: 84/1233
  31828. },
  31829. form: "lucario",
  31830. default: true
  31831. },
  31832. lucarioBack: {
  31833. height: math.unit(4, "feet"),
  31834. name: "Back",
  31835. image: {
  31836. source: "./media/characters/cat/lucario-back.svg",
  31837. extra: 1190/1059,
  31838. bottom: 33/1223
  31839. },
  31840. form: "lucario"
  31841. },
  31842. riolu_front: {
  31843. height: math.unit(2 + 4/12, "feet"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/cat/riolu-front.svg",
  31847. extra: 1104/956,
  31848. bottom: 70/1174
  31849. },
  31850. form: "riolu",
  31851. default: true
  31852. },
  31853. nickit: {
  31854. height: math.unit(2, "feet"),
  31855. name: "Side",
  31856. image: {
  31857. source: "./media/characters/cat/nickit-side.svg",
  31858. extra: 1087/852,
  31859. bottom: 67/1154
  31860. },
  31861. form: "nickit",
  31862. default: true
  31863. },
  31864. lopunnyFront: {
  31865. height: math.unit(5, "feet"),
  31866. name: "Front",
  31867. image: {
  31868. source: "./media/characters/cat/lopunny-front.svg",
  31869. extra: 1217/1078,
  31870. bottom: 23/1240
  31871. },
  31872. form: "lopunny",
  31873. default: true
  31874. },
  31875. lopunnyBack: {
  31876. height: math.unit(5, "feet"),
  31877. name: "Back",
  31878. image: {
  31879. source: "./media/characters/cat/lopunny-back.svg",
  31880. extra: 1205/1057,
  31881. bottom: 33/1238
  31882. },
  31883. form: "lopunny"
  31884. },
  31885. dog_front: {
  31886. height: math.unit(5 + 9/12, "feet"),
  31887. name: "Front",
  31888. image: {
  31889. source: "./media/characters/cat/dog-front.svg",
  31890. extra: 1403/1309,
  31891. bottom: 31/1434
  31892. },
  31893. form: "dog",
  31894. default: true
  31895. },
  31896. dog_back: {
  31897. height: math.unit(5 + 9/12, "feet"),
  31898. name: "Back",
  31899. image: {
  31900. source: "./media/characters/cat/dog-back.svg",
  31901. extra: 1393/1297,
  31902. bottom: 38/1431
  31903. },
  31904. form: "dog",
  31905. },
  31906. pikachu_front: {
  31907. height: math.unit(2.64, "feet"),
  31908. name: "Front",
  31909. image: {
  31910. source: "./media/characters/cat/pikachu-front.svg",
  31911. extra: 1224/958,
  31912. bottom: 34/1258
  31913. },
  31914. form: "pikachu",
  31915. default: true
  31916. },
  31917. pikachu_back: {
  31918. height: math.unit(2.64, "feet"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/cat/pikachu-back.svg",
  31922. extra: 1228/958,
  31923. bottom: 16/1244
  31924. },
  31925. form: "pikachu",
  31926. },
  31927. gigachuFront: {
  31928. height: math.unit(75, "feet"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/cat/gigachu-front.svg",
  31932. extra: 1239/1027,
  31933. bottom: 32/1271
  31934. },
  31935. form: "gigachu",
  31936. default: true
  31937. },
  31938. gigachuBack: {
  31939. height: math.unit(75, "feet"),
  31940. name: "Back",
  31941. image: {
  31942. source: "./media/characters/cat/gigachu-back.svg",
  31943. extra: 1229/1030,
  31944. bottom: 9/1238
  31945. },
  31946. form: "gigachu"
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Really small",
  31952. height: math.unit(1, "nm"),
  31953. allForms: true
  31954. },
  31955. {
  31956. name: "Micro",
  31957. height: math.unit(5, "inches"),
  31958. allForms: true
  31959. },
  31960. {
  31961. name: "Normal",
  31962. height: math.unit(5 + 6 / 12, "feet"),
  31963. default: true,
  31964. form: "cat"
  31965. },
  31966. {
  31967. name: "Normal",
  31968. height: math.unit(7, "feet"),
  31969. default: true,
  31970. form: "taur"
  31971. },
  31972. {
  31973. name: "Normal",
  31974. height: math.unit(4, "feet"),
  31975. default: true,
  31976. form: "lucario"
  31977. },
  31978. {
  31979. name: "Normal",
  31980. height: math.unit(2, "feet"),
  31981. default: true,
  31982. form: "nickit"
  31983. },
  31984. {
  31985. name: "Normal",
  31986. height: math.unit(5, "feet"),
  31987. default: true,
  31988. form: "lopunny"
  31989. },
  31990. {
  31991. name: "Normal",
  31992. height: math.unit(2 + 4/12, "feet"),
  31993. default: true,
  31994. form: "riolu"
  31995. },
  31996. {
  31997. name: "Normal",
  31998. height: math.unit(5 + 6 / 12, "feet"),
  31999. default: true,
  32000. form: "dog"
  32001. },
  32002. {
  32003. name: "Macro",
  32004. height: math.unit(50, "feet"),
  32005. allForms: true
  32006. },
  32007. {
  32008. name: "Normal",
  32009. height: math.unit(2.64, "feet"),
  32010. default: true,
  32011. form: "pikachu"
  32012. },
  32013. {
  32014. name: "Dynamax",
  32015. height: math.unit(75, "feet"),
  32016. form: "gigachu",
  32017. default: true
  32018. },
  32019. {
  32020. name: "Macro+",
  32021. height: math.unit(150, "feet"),
  32022. allForms: true
  32023. },
  32024. {
  32025. name: "Megamacro",
  32026. height: math.unit(100, "miles"),
  32027. allForms: true
  32028. },
  32029. ],
  32030. {
  32031. "cat": {
  32032. name: "Cat",
  32033. default: true
  32034. },
  32035. "taur": {
  32036. name: "Taur",
  32037. },
  32038. "lucario": {
  32039. name: "Lucario",
  32040. },
  32041. "riolu": {
  32042. name: "Riolu",
  32043. },
  32044. "nickit": {
  32045. name: "Nickit",
  32046. },
  32047. "lopunny": {
  32048. name: "Lopunny",
  32049. },
  32050. "dog": {
  32051. name: "Dog",
  32052. },
  32053. "pikachu": {
  32054. name: "Pikachu",
  32055. },
  32056. "gigachu": {
  32057. name: "Gigachu",
  32058. ignoreAllFormSizes: true
  32059. }
  32060. }
  32061. ))
  32062. characterMakers.push(() => makeCharacter(
  32063. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32064. {
  32065. front: {
  32066. height: math.unit(63.4, "meters"),
  32067. weight: math.unit(3.28349e+6, "kilograms"),
  32068. name: "Front",
  32069. image: {
  32070. source: "./media/characters/kirina-violet/front.svg",
  32071. extra: 2812 / 2725,
  32072. bottom: 0 / 2812
  32073. }
  32074. },
  32075. back: {
  32076. height: math.unit(63.4, "meters"),
  32077. weight: math.unit(3.28349e+6, "kilograms"),
  32078. name: "Back",
  32079. image: {
  32080. source: "./media/characters/kirina-violet/back.svg",
  32081. extra: 2812 / 2725,
  32082. bottom: 0 / 2812
  32083. }
  32084. },
  32085. mouth: {
  32086. height: math.unit(4.35, "meters"),
  32087. name: "Mouth",
  32088. image: {
  32089. source: "./media/characters/kirina-violet/mouth.svg"
  32090. }
  32091. },
  32092. paw: {
  32093. height: math.unit(5.6, "meters"),
  32094. name: "Paw",
  32095. image: {
  32096. source: "./media/characters/kirina-violet/paw.svg"
  32097. }
  32098. },
  32099. tail: {
  32100. height: math.unit(18, "meters"),
  32101. name: "Tail",
  32102. image: {
  32103. source: "./media/characters/kirina-violet/tail.svg"
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Macro",
  32110. height: math.unit(63.4, "meters"),
  32111. default: true
  32112. },
  32113. ]
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32117. {
  32118. front: {
  32119. height: math.unit(6, "feet"),
  32120. weight: math.unit(150, "lb"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/sfaiyan/front.svg",
  32124. extra: 999 / 978,
  32125. bottom: 5 / 1004
  32126. }
  32127. },
  32128. },
  32129. [
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(1.82, "meters")
  32133. },
  32134. {
  32135. name: "Giant",
  32136. height: math.unit(2.27, "km"),
  32137. default: true
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32143. {
  32144. front: {
  32145. height: math.unit(179, "cm"),
  32146. weight: math.unit(100, "kg"),
  32147. name: "Front",
  32148. image: {
  32149. source: "./media/characters/raunehkeli/front.svg",
  32150. extra: 1934 / 1926,
  32151. bottom: 0 / 1934
  32152. }
  32153. },
  32154. },
  32155. [
  32156. {
  32157. name: "Normal",
  32158. height: math.unit(179, "cm")
  32159. },
  32160. {
  32161. name: "Maximum",
  32162. height: math.unit(575, "meters"),
  32163. default: true
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32169. {
  32170. dressed: {
  32171. height: math.unit(6 + 2/12, "feet"),
  32172. weight: math.unit(150, "lb"),
  32173. name: "Dressed",
  32174. image: {
  32175. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32176. extra: 2620/2496,
  32177. bottom: 66/2686
  32178. }
  32179. },
  32180. nude: {
  32181. height: math.unit(6 + 2/12, "feet"),
  32182. weight: math.unit(150, "lb"),
  32183. name: "Nude",
  32184. image: {
  32185. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32186. extra: 2620/2496,
  32187. bottom: 66/2686
  32188. }
  32189. },
  32190. },
  32191. [
  32192. {
  32193. name: "Normal",
  32194. height: math.unit(6 + 2 / 12, "feet")
  32195. },
  32196. {
  32197. name: "Max Height",
  32198. height: math.unit(1181, "feet"),
  32199. default: true
  32200. },
  32201. ]
  32202. ))
  32203. characterMakers.push(() => makeCharacter(
  32204. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32205. {
  32206. front: {
  32207. height: math.unit(5 + 6 / 12, "feet"),
  32208. weight: math.unit(108, "lb"),
  32209. name: "Front",
  32210. image: {
  32211. source: "./media/characters/lilith-zott/front.svg",
  32212. extra: 2415/2133,
  32213. bottom: 193/2608
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Base Height",
  32220. height: math.unit(5 + 6 / 12, "feet")
  32221. },
  32222. {
  32223. name: "Preferred Height",
  32224. height: math.unit(200, "feet")
  32225. },
  32226. {
  32227. name: "Max Height",
  32228. height: math.unit(1030, "feet"),
  32229. default: true
  32230. },
  32231. ]
  32232. ))
  32233. characterMakers.push(() => makeCharacter(
  32234. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32235. {
  32236. super: {
  32237. height: math.unit(6 + 2/12, "feet"),
  32238. weight: math.unit(150, "lb"),
  32239. name: "Super",
  32240. image: {
  32241. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32242. extra: 2555/2387,
  32243. bottom: 50/2605
  32244. }
  32245. },
  32246. casual: {
  32247. height: math.unit(6 + 2/12, "feet"),
  32248. weight: math.unit(150, "lb"),
  32249. name: "Casual",
  32250. image: {
  32251. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32252. extra: 2555/2387,
  32253. bottom: 50/2605
  32254. }
  32255. },
  32256. hand: {
  32257. height: math.unit(1.08, "feet"),
  32258. name: "Hand",
  32259. image: {
  32260. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32261. }
  32262. },
  32263. paw: {
  32264. height: math.unit(1.33, "feet"),
  32265. name: "Paw",
  32266. image: {
  32267. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Normal",
  32274. height: math.unit(6 + 2/12, "feet")
  32275. },
  32276. {
  32277. name: "Preferred Height",
  32278. height: math.unit(220, "feet")
  32279. },
  32280. {
  32281. name: "Max Height",
  32282. height: math.unit(1100, "feet"),
  32283. default: true
  32284. },
  32285. ]
  32286. ))
  32287. characterMakers.push(() => makeCharacter(
  32288. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32289. {
  32290. front: {
  32291. height: math.unit(100, "miles"),
  32292. name: "Front",
  32293. image: {
  32294. source: "./media/characters/sona/front.svg",
  32295. extra: 2433 / 2201,
  32296. bottom: 53 / 2486
  32297. }
  32298. },
  32299. foot: {
  32300. height: math.unit(16.1, "miles"),
  32301. name: "Foot",
  32302. image: {
  32303. source: "./media/characters/sona/foot.svg"
  32304. }
  32305. },
  32306. },
  32307. [
  32308. {
  32309. name: "Macro",
  32310. height: math.unit(100, "miles"),
  32311. default: true
  32312. },
  32313. ]
  32314. ))
  32315. characterMakers.push(() => makeCharacter(
  32316. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32317. {
  32318. front: {
  32319. height: math.unit(6, "feet"),
  32320. weight: math.unit(150, "lb"),
  32321. name: "Front",
  32322. image: {
  32323. source: "./media/characters/bailey/front.svg",
  32324. extra: 1778 / 1724,
  32325. bottom: 30 / 1808
  32326. }
  32327. },
  32328. },
  32329. [
  32330. {
  32331. name: "Micro",
  32332. height: math.unit(4, "inches")
  32333. },
  32334. {
  32335. name: "Normal",
  32336. height: math.unit(5 + 5 / 12, "feet"),
  32337. default: true
  32338. },
  32339. {
  32340. name: "Macro",
  32341. height: math.unit(250, "feet")
  32342. },
  32343. {
  32344. name: "Megamacro",
  32345. height: math.unit(100, "miles")
  32346. },
  32347. ]
  32348. ))
  32349. characterMakers.push(() => makeCharacter(
  32350. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32351. {
  32352. front: {
  32353. height: math.unit(5 + 2 / 12, "feet"),
  32354. weight: math.unit(120, "lb"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/snaps/front.svg",
  32358. extra: 2370 / 2177,
  32359. bottom: 48 / 2418
  32360. }
  32361. },
  32362. back: {
  32363. height: math.unit(5 + 2 / 12, "feet"),
  32364. weight: math.unit(120, "lb"),
  32365. name: "Back",
  32366. image: {
  32367. source: "./media/characters/snaps/back.svg",
  32368. extra: 2408 / 2258,
  32369. bottom: 15 / 2423
  32370. }
  32371. },
  32372. },
  32373. [
  32374. {
  32375. name: "Micro",
  32376. height: math.unit(9, "inches")
  32377. },
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(5 + 2 / 12, "feet"),
  32381. default: true
  32382. },
  32383. {
  32384. name: "Mini Macro",
  32385. height: math.unit(10, "feet")
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(1.8, "meters"),
  32394. weight: math.unit(85, "kg"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/azteck/front.svg",
  32398. extra: 2815 / 2625,
  32399. bottom: 89 / 2904
  32400. }
  32401. },
  32402. back: {
  32403. height: math.unit(1.8, "meters"),
  32404. weight: math.unit(85, "kg"),
  32405. name: "Back",
  32406. image: {
  32407. source: "./media/characters/azteck/back.svg",
  32408. extra: 2856 / 2648,
  32409. bottom: 85 / 2941
  32410. }
  32411. },
  32412. frontDressed: {
  32413. height: math.unit(1.8, "meters"),
  32414. weight: math.unit(85, "kg"),
  32415. name: "Front (Dressed)",
  32416. image: {
  32417. source: "./media/characters/azteck/front-dressed.svg",
  32418. extra: 2147 / 2003,
  32419. bottom: 68 / 2215
  32420. }
  32421. },
  32422. head: {
  32423. height: math.unit(0.47, "meters"),
  32424. weight: math.unit(85, "kg"),
  32425. name: "Head",
  32426. image: {
  32427. source: "./media/characters/azteck/head.svg"
  32428. }
  32429. },
  32430. },
  32431. [
  32432. {
  32433. name: "Bite sized",
  32434. height: math.unit(16, "cm")
  32435. },
  32436. {
  32437. name: "Normal",
  32438. height: math.unit(1.8, "meters"),
  32439. default: true
  32440. },
  32441. ]
  32442. ))
  32443. characterMakers.push(() => makeCharacter(
  32444. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32445. {
  32446. front: {
  32447. height: math.unit(6, "feet"),
  32448. weight: math.unit(150, "lb"),
  32449. name: "Front",
  32450. image: {
  32451. source: "./media/characters/pidge/front.svg",
  32452. extra: 1936/1820,
  32453. bottom: 0/1936
  32454. }
  32455. },
  32456. back: {
  32457. height: math.unit(6, "feet"),
  32458. weight: math.unit(150, "lb"),
  32459. name: "Back",
  32460. image: {
  32461. source: "./media/characters/pidge/back.svg",
  32462. extra: 1938/1843,
  32463. bottom: 0/1938
  32464. }
  32465. },
  32466. casual: {
  32467. height: math.unit(6, "feet"),
  32468. weight: math.unit(150, "lb"),
  32469. name: "Casual",
  32470. image: {
  32471. source: "./media/characters/pidge/casual.svg",
  32472. extra: 1936/1820,
  32473. bottom: 0/1936
  32474. }
  32475. },
  32476. tech: {
  32477. height: math.unit(6, "feet"),
  32478. weight: math.unit(150, "lb"),
  32479. name: "Tech",
  32480. image: {
  32481. source: "./media/characters/pidge/tech.svg",
  32482. extra: 1802/1682,
  32483. bottom: 0/1802
  32484. }
  32485. },
  32486. head: {
  32487. height: math.unit(1.61, "feet"),
  32488. name: "Head",
  32489. image: {
  32490. source: "./media/characters/pidge/head.svg"
  32491. }
  32492. },
  32493. collar: {
  32494. height: math.unit(0.82, "feet"),
  32495. name: "Collar",
  32496. image: {
  32497. source: "./media/characters/pidge/collar.svg"
  32498. }
  32499. },
  32500. },
  32501. [
  32502. {
  32503. name: "Macro",
  32504. height: math.unit(2, "mile"),
  32505. default: true
  32506. },
  32507. {
  32508. name: "PUPPY",
  32509. height: math.unit(20, "miles")
  32510. },
  32511. ]
  32512. ))
  32513. characterMakers.push(() => makeCharacter(
  32514. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32515. {
  32516. front: {
  32517. height: math.unit(6, "feet"),
  32518. weight: math.unit(150, "lb"),
  32519. name: "Front",
  32520. image: {
  32521. source: "./media/characters/en/front.svg",
  32522. extra: 1697 / 1563,
  32523. bottom: 103 / 1800
  32524. }
  32525. },
  32526. back: {
  32527. height: math.unit(6, "feet"),
  32528. weight: math.unit(150, "lb"),
  32529. name: "Back",
  32530. image: {
  32531. source: "./media/characters/en/back.svg",
  32532. extra: 1700 / 1570,
  32533. bottom: 51 / 1751
  32534. }
  32535. },
  32536. frontDressed: {
  32537. height: math.unit(6, "feet"),
  32538. weight: math.unit(150, "lb"),
  32539. name: "Front (Dressed)",
  32540. image: {
  32541. source: "./media/characters/en/front-dressed.svg",
  32542. extra: 1697 / 1563,
  32543. bottom: 103 / 1800
  32544. }
  32545. },
  32546. backDressed: {
  32547. height: math.unit(6, "feet"),
  32548. weight: math.unit(150, "lb"),
  32549. name: "Back (Dressed)",
  32550. image: {
  32551. source: "./media/characters/en/back-dressed.svg",
  32552. extra: 1700 / 1570,
  32553. bottom: 51 / 1751
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Macro",
  32560. height: math.unit(210, "feet"),
  32561. default: true
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(6, "feet"),
  32570. weight: math.unit(150, "lb"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/haze-orris/front.svg",
  32574. extra: 3975 / 3525,
  32575. bottom: 137 / 4112
  32576. }
  32577. },
  32578. },
  32579. [
  32580. {
  32581. name: "Micro",
  32582. height: math.unit(150, "mm"),
  32583. default: true
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32589. {
  32590. front: {
  32591. height: math.unit(6, "feet"),
  32592. weight: math.unit(150, "lb"),
  32593. name: "Front",
  32594. image: {
  32595. source: "./media/characters/casselene-yaro/front.svg",
  32596. extra: 4721 / 4541,
  32597. bottom: 82 / 4803
  32598. }
  32599. },
  32600. back: {
  32601. height: math.unit(6, "feet"),
  32602. weight: math.unit(150, "lb"),
  32603. name: "Back",
  32604. image: {
  32605. source: "./media/characters/casselene-yaro/back.svg",
  32606. extra: 4569 / 4377,
  32607. bottom: 69 / 4638
  32608. }
  32609. },
  32610. dressed: {
  32611. height: math.unit(6, "feet"),
  32612. weight: math.unit(150, "lb"),
  32613. name: "Dressed",
  32614. image: {
  32615. source: "./media/characters/casselene-yaro/dressed.svg",
  32616. extra: 4721 / 4541,
  32617. bottom: 82 / 4803
  32618. }
  32619. },
  32620. maw: {
  32621. height: math.unit(1, "feet"),
  32622. name: "Maw",
  32623. image: {
  32624. source: "./media/characters/casselene-yaro/maw.svg"
  32625. }
  32626. },
  32627. },
  32628. [
  32629. {
  32630. name: "Macro",
  32631. height: math.unit(190, "feet"),
  32632. default: true
  32633. },
  32634. ]
  32635. ))
  32636. characterMakers.push(() => makeCharacter(
  32637. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32638. {
  32639. front: {
  32640. height: math.unit(10, "feet"),
  32641. weight: math.unit(15015, "lb"),
  32642. name: "Front",
  32643. image: {
  32644. source: "./media/characters/platine/front.svg",
  32645. extra: 1741/1650,
  32646. bottom: 84/1825
  32647. }
  32648. },
  32649. side: {
  32650. height: math.unit(10, "feet"),
  32651. weight: math.unit(15015, "lb"),
  32652. name: "Side",
  32653. image: {
  32654. source: "./media/characters/platine/side.svg",
  32655. extra: 1790/1705,
  32656. bottom: 29/1819
  32657. }
  32658. },
  32659. },
  32660. [
  32661. {
  32662. name: "Normal",
  32663. height: math.unit(10, "feet"),
  32664. default: true
  32665. },
  32666. {
  32667. name: "Macro",
  32668. height: math.unit(100, "feet")
  32669. },
  32670. {
  32671. name: "Megamacro",
  32672. height: math.unit(1000, "feet")
  32673. },
  32674. ]
  32675. ))
  32676. characterMakers.push(() => makeCharacter(
  32677. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32678. {
  32679. front: {
  32680. height: math.unit(15 + 5 / 12, "feet"),
  32681. weight: math.unit(4600, "lb"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/neapolitan-ananassa/front.svg",
  32685. extra: 2903 / 2736,
  32686. bottom: 0 / 2903
  32687. }
  32688. },
  32689. side: {
  32690. height: math.unit(15 + 5 / 12, "feet"),
  32691. weight: math.unit(4600, "lb"),
  32692. name: "Side",
  32693. image: {
  32694. source: "./media/characters/neapolitan-ananassa/side.svg",
  32695. extra: 2925 / 2719,
  32696. bottom: 0 / 2925
  32697. }
  32698. },
  32699. back: {
  32700. height: math.unit(15 + 5 / 12, "feet"),
  32701. weight: math.unit(4600, "lb"),
  32702. name: "Back",
  32703. image: {
  32704. source: "./media/characters/neapolitan-ananassa/back.svg",
  32705. extra: 2903 / 2736,
  32706. bottom: 0 / 2903
  32707. }
  32708. },
  32709. },
  32710. [
  32711. {
  32712. name: "Normal",
  32713. height: math.unit(15 + 5 / 12, "feet"),
  32714. default: true
  32715. },
  32716. {
  32717. name: "Post-Millenium",
  32718. height: math.unit(35 + 5 / 12, "feet")
  32719. },
  32720. {
  32721. name: "Post-Era",
  32722. height: math.unit(450 + 5 / 12, "feet")
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(300, "meters"),
  32731. weight: math.unit(125000, "tonnes"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/pazuzu/front.svg",
  32735. extra: 877 / 794,
  32736. bottom: 47 / 924
  32737. }
  32738. },
  32739. },
  32740. [
  32741. {
  32742. name: "Macro",
  32743. height: math.unit(300, "meters"),
  32744. default: true
  32745. },
  32746. ]
  32747. ))
  32748. characterMakers.push(() => makeCharacter(
  32749. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32750. {
  32751. side: {
  32752. height: math.unit(10 + 7 / 12, "feet"),
  32753. weight: math.unit(2.5, "tons"),
  32754. name: "Side",
  32755. image: {
  32756. source: "./media/characters/aasha/side.svg",
  32757. extra: 1345 / 1245,
  32758. bottom: 111 / 1456
  32759. }
  32760. },
  32761. back: {
  32762. height: math.unit(10 + 7 / 12, "feet"),
  32763. weight: math.unit(2.5, "tons"),
  32764. name: "Back",
  32765. image: {
  32766. source: "./media/characters/aasha/back.svg",
  32767. extra: 1133 / 1057,
  32768. bottom: 257 / 1390
  32769. }
  32770. },
  32771. },
  32772. [
  32773. {
  32774. name: "Normal",
  32775. height: math.unit(10 + 7 / 12, "feet"),
  32776. default: true
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(6 + 3 / 12, "feet"),
  32785. name: "Front",
  32786. image: {
  32787. source: "./media/characters/nevan/front.svg",
  32788. extra: 704 / 704,
  32789. bottom: 28 / 732
  32790. }
  32791. },
  32792. back: {
  32793. height: math.unit(6 + 3 / 12, "feet"),
  32794. name: "Back",
  32795. image: {
  32796. source: "./media/characters/nevan/back.svg",
  32797. extra: 714 / 714,
  32798. bottom: 21 / 735
  32799. }
  32800. },
  32801. frontFlaccid: {
  32802. height: math.unit(6 + 3 / 12, "feet"),
  32803. name: "Front (Flaccid)",
  32804. image: {
  32805. source: "./media/characters/nevan/front-flaccid.svg",
  32806. extra: 704 / 704,
  32807. bottom: 28 / 732
  32808. }
  32809. },
  32810. frontErect: {
  32811. height: math.unit(6 + 3 / 12, "feet"),
  32812. name: "Front (Erect)",
  32813. image: {
  32814. source: "./media/characters/nevan/front-erect.svg",
  32815. extra: 704 / 704,
  32816. bottom: 28 / 732
  32817. }
  32818. },
  32819. backFlaccid: {
  32820. height: math.unit(6 + 3 / 12, "feet"),
  32821. name: "Back (Flaccid)",
  32822. image: {
  32823. source: "./media/characters/nevan/back-flaccid.svg",
  32824. extra: 714 / 714,
  32825. bottom: 21 / 735
  32826. }
  32827. },
  32828. },
  32829. [
  32830. {
  32831. name: "Normal",
  32832. height: math.unit(6 + 3 / 12, "feet"),
  32833. default: true
  32834. },
  32835. ]
  32836. ))
  32837. characterMakers.push(() => makeCharacter(
  32838. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32839. {
  32840. front: {
  32841. height: math.unit(4, "feet"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/arhan/front.svg",
  32845. extra: 3368 / 3133,
  32846. bottom: 0 / 3368
  32847. }
  32848. },
  32849. side: {
  32850. height: math.unit(4, "feet"),
  32851. name: "Side",
  32852. image: {
  32853. source: "./media/characters/arhan/side.svg",
  32854. extra: 3347 / 3105,
  32855. bottom: 0 / 3347
  32856. }
  32857. },
  32858. tongue: {
  32859. height: math.unit(1.42, "feet"),
  32860. name: "Tongue",
  32861. image: {
  32862. source: "./media/characters/arhan/tongue.svg"
  32863. }
  32864. },
  32865. head: {
  32866. height: math.unit(0.85, "feet"),
  32867. name: "Head",
  32868. image: {
  32869. source: "./media/characters/arhan/head.svg"
  32870. }
  32871. },
  32872. },
  32873. [
  32874. {
  32875. name: "Normal",
  32876. height: math.unit(4, "feet"),
  32877. default: true
  32878. },
  32879. ]
  32880. ))
  32881. characterMakers.push(() => makeCharacter(
  32882. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32883. {
  32884. front: {
  32885. height: math.unit(5 + 7.5 / 12, "feet"),
  32886. weight: math.unit(120, "lb"),
  32887. name: "Front",
  32888. image: {
  32889. source: "./media/characters/digi-duncan/front.svg",
  32890. extra: 330 / 326,
  32891. bottom: 16 / 346
  32892. }
  32893. },
  32894. side: {
  32895. height: math.unit(5 + 7.5 / 12, "feet"),
  32896. weight: math.unit(120, "lb"),
  32897. name: "Side",
  32898. image: {
  32899. source: "./media/characters/digi-duncan/side.svg",
  32900. extra: 341 / 337,
  32901. bottom: 1 / 342
  32902. }
  32903. },
  32904. back: {
  32905. height: math.unit(5 + 7.5 / 12, "feet"),
  32906. weight: math.unit(120, "lb"),
  32907. name: "Back",
  32908. image: {
  32909. source: "./media/characters/digi-duncan/back.svg",
  32910. extra: 330 / 326,
  32911. bottom: 12 / 342
  32912. }
  32913. },
  32914. },
  32915. [
  32916. {
  32917. name: "Speck",
  32918. height: math.unit(0.25, "mm")
  32919. },
  32920. {
  32921. name: "Micro",
  32922. height: math.unit(5, "mm")
  32923. },
  32924. {
  32925. name: "Tiny",
  32926. height: math.unit(0.5, "inches"),
  32927. default: true
  32928. },
  32929. {
  32930. name: "Human",
  32931. height: math.unit(5 + 7.5 / 12, "feet")
  32932. },
  32933. {
  32934. name: "Minigiant",
  32935. height: math.unit(8 + 5.25, "feet")
  32936. },
  32937. {
  32938. name: "Giant",
  32939. height: math.unit(2000, "feet")
  32940. },
  32941. {
  32942. name: "Mega",
  32943. height: math.unit(371.1, "miles")
  32944. },
  32945. ]
  32946. ))
  32947. characterMakers.push(() => makeCharacter(
  32948. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32949. {
  32950. front: {
  32951. height: math.unit(2, "meters"),
  32952. weight: math.unit(350, "kg"),
  32953. name: "Front",
  32954. image: {
  32955. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32956. extra: 898 / 838,
  32957. bottom: 9 / 907
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Micro",
  32964. height: math.unit(8, "meters")
  32965. },
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(50, "meters"),
  32969. default: true
  32970. },
  32971. {
  32972. name: "Macro",
  32973. height: math.unit(500, "meters")
  32974. },
  32975. ]
  32976. ))
  32977. characterMakers.push(() => makeCharacter(
  32978. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32979. {
  32980. front: {
  32981. height: math.unit(6 + 6 / 12, "feet"),
  32982. name: "Front",
  32983. image: {
  32984. source: "./media/characters/khardesh/front.svg",
  32985. extra: 1788/1596,
  32986. bottom: 66/1854
  32987. }
  32988. },
  32989. back: {
  32990. height: math.unit(6 + 6 / 12, "feet"),
  32991. name: "Back",
  32992. image: {
  32993. source: "./media/characters/khardesh/back.svg",
  32994. extra: 1781/1584,
  32995. bottom: 68/1849
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(6 + 6 / 12, "feet"),
  33003. default: true
  33004. },
  33005. {
  33006. name: "Normal+",
  33007. height: math.unit(4, "meters")
  33008. },
  33009. {
  33010. name: "Macro",
  33011. height: math.unit(50, "meters")
  33012. },
  33013. {
  33014. name: "Macro+",
  33015. height: math.unit(100, "meters")
  33016. },
  33017. {
  33018. name: "Megamacro",
  33019. height: math.unit(20, "km")
  33020. },
  33021. ]
  33022. ))
  33023. characterMakers.push(() => makeCharacter(
  33024. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33025. {
  33026. front: {
  33027. height: math.unit(6, "feet"),
  33028. weight: math.unit(150, "lb"),
  33029. name: "Front",
  33030. image: {
  33031. source: "./media/characters/kosho/front.svg",
  33032. extra: 1847 / 1847,
  33033. bottom: 86 / 1933
  33034. }
  33035. },
  33036. },
  33037. [
  33038. {
  33039. name: "Second-stage micro",
  33040. height: math.unit(0.5, "inches")
  33041. },
  33042. {
  33043. name: "First-stage micro",
  33044. height: math.unit(6, "inches")
  33045. },
  33046. {
  33047. name: "Normal",
  33048. height: math.unit(6, "feet"),
  33049. default: true
  33050. },
  33051. {
  33052. name: "First-stage macro",
  33053. height: math.unit(72, "feet")
  33054. },
  33055. {
  33056. name: "Second-stage macro",
  33057. height: math.unit(864, "feet")
  33058. },
  33059. ]
  33060. ))
  33061. characterMakers.push(() => makeCharacter(
  33062. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33063. {
  33064. normal: {
  33065. height: math.unit(4 + 6 / 12, "feet"),
  33066. name: "Normal",
  33067. image: {
  33068. source: "./media/characters/hydra/normal.svg",
  33069. extra: 2833 / 2634,
  33070. bottom: 68 / 2901
  33071. }
  33072. },
  33073. smol: {
  33074. height: math.unit(0.705, "inches"),
  33075. name: "Smol",
  33076. image: {
  33077. source: "./media/characters/hydra/smol.svg",
  33078. extra: 2715 / 2540,
  33079. bottom: 0 / 2715
  33080. }
  33081. },
  33082. },
  33083. [
  33084. {
  33085. name: "Normal",
  33086. height: math.unit(4 + 6 / 12, "feet"),
  33087. default: true
  33088. }
  33089. ]
  33090. ))
  33091. characterMakers.push(() => makeCharacter(
  33092. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33093. {
  33094. front: {
  33095. height: math.unit(0.6, "cm"),
  33096. name: "Front",
  33097. image: {
  33098. source: "./media/characters/daz/front.svg",
  33099. extra: 1682 / 1164,
  33100. bottom: 42 / 1724
  33101. }
  33102. },
  33103. },
  33104. [
  33105. {
  33106. name: "Normal",
  33107. height: math.unit(0.6, "cm"),
  33108. default: true
  33109. },
  33110. ]
  33111. ))
  33112. characterMakers.push(() => makeCharacter(
  33113. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33114. {
  33115. front: {
  33116. height: math.unit(6, "feet"),
  33117. weight: math.unit(235, "lb"),
  33118. name: "Front",
  33119. image: {
  33120. source: "./media/characters/theo-pangolin/front.svg",
  33121. extra: 1996 / 1969,
  33122. bottom: 115 / 2111
  33123. }
  33124. },
  33125. back: {
  33126. height: math.unit(6, "feet"),
  33127. weight: math.unit(235, "lb"),
  33128. name: "Back",
  33129. image: {
  33130. source: "./media/characters/theo-pangolin/back.svg",
  33131. extra: 1979 / 1979,
  33132. bottom: 40 / 2019
  33133. }
  33134. },
  33135. feral: {
  33136. height: math.unit(2, "feet"),
  33137. weight: math.unit(30, "lb"),
  33138. name: "Feral",
  33139. image: {
  33140. source: "./media/characters/theo-pangolin/feral.svg",
  33141. extra: 803 / 791,
  33142. bottom: 181 / 984
  33143. }
  33144. },
  33145. footFive: {
  33146. height: math.unit(1.43, "feet"),
  33147. name: "Foot (Five Toes)",
  33148. image: {
  33149. source: "./media/characters/theo-pangolin/foot-five.svg"
  33150. }
  33151. },
  33152. footFour: {
  33153. height: math.unit(1.43, "feet"),
  33154. name: "Foot (Four Toes)",
  33155. image: {
  33156. source: "./media/characters/theo-pangolin/foot-four.svg"
  33157. }
  33158. },
  33159. handFour: {
  33160. height: math.unit(0.81, "feet"),
  33161. name: "Hand (Four Fingers)",
  33162. image: {
  33163. source: "./media/characters/theo-pangolin/hand-four.svg"
  33164. }
  33165. },
  33166. handThree: {
  33167. height: math.unit(0.81, "feet"),
  33168. name: "Hand (Three Fingers)",
  33169. image: {
  33170. source: "./media/characters/theo-pangolin/hand-three.svg"
  33171. }
  33172. },
  33173. headFront: {
  33174. height: math.unit(1.37, "feet"),
  33175. name: "Head (Front)",
  33176. image: {
  33177. source: "./media/characters/theo-pangolin/head-front.svg"
  33178. }
  33179. },
  33180. headSide: {
  33181. height: math.unit(1.43, "feet"),
  33182. name: "Head (Side)",
  33183. image: {
  33184. source: "./media/characters/theo-pangolin/head-side.svg"
  33185. }
  33186. },
  33187. tongue: {
  33188. height: math.unit(2.29, "feet"),
  33189. name: "Tongue",
  33190. image: {
  33191. source: "./media/characters/theo-pangolin/tongue.svg"
  33192. }
  33193. },
  33194. },
  33195. [
  33196. {
  33197. name: "Normal",
  33198. height: math.unit(6, "feet")
  33199. },
  33200. {
  33201. name: "Macro",
  33202. height: math.unit(400, "feet"),
  33203. default: true
  33204. },
  33205. ]
  33206. ))
  33207. characterMakers.push(() => makeCharacter(
  33208. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33209. {
  33210. front: {
  33211. height: math.unit(6, "inches"),
  33212. weight: math.unit(0.036, "kg"),
  33213. name: "Front",
  33214. image: {
  33215. source: "./media/characters/renée/front.svg",
  33216. extra: 900 / 886,
  33217. bottom: 8 / 908
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Nano",
  33224. height: math.unit(1, "nm")
  33225. },
  33226. {
  33227. name: "Micro",
  33228. height: math.unit(1, "mm")
  33229. },
  33230. {
  33231. name: "Normal",
  33232. height: math.unit(6, "inches")
  33233. },
  33234. {
  33235. name: "Macro",
  33236. height: math.unit(2000, "feet"),
  33237. default: true
  33238. },
  33239. {
  33240. name: "Megamacro",
  33241. height: math.unit(2, "km")
  33242. },
  33243. {
  33244. name: "Gigamacro",
  33245. height: math.unit(2000, "km")
  33246. },
  33247. {
  33248. name: "Teramacro",
  33249. height: math.unit(250000, "km")
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(4, "meters"),
  33258. weight: math.unit(150, "kg"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/caledvwlch/front.svg",
  33262. extra: 1757/1537,
  33263. bottom: 31/1788
  33264. }
  33265. },
  33266. side: {
  33267. height: math.unit(4, "meters"),
  33268. weight: math.unit(150, "kg"),
  33269. name: "Side",
  33270. image: {
  33271. source: "./media/characters/caledvwlch/side.svg",
  33272. extra: 1605 / 1536,
  33273. bottom: 31 / 1636
  33274. }
  33275. },
  33276. back: {
  33277. height: math.unit(4, "meters"),
  33278. weight: math.unit(150, "kg"),
  33279. name: "Back",
  33280. image: {
  33281. source: "./media/characters/caledvwlch/back.svg",
  33282. extra: 1635 / 1565,
  33283. bottom: 27 / 1662
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "\"Incognito\"",
  33290. height: math.unit(4, "meters")
  33291. },
  33292. {
  33293. name: "Small rampage",
  33294. height: math.unit(600, "meters")
  33295. },
  33296. {
  33297. name: "Mega",
  33298. height: math.unit(30, "km")
  33299. },
  33300. {
  33301. name: "Home-size",
  33302. height: math.unit(50, "km"),
  33303. default: true
  33304. },
  33305. {
  33306. name: "Giga",
  33307. height: math.unit(300, "km")
  33308. },
  33309. {
  33310. name: "Lounging",
  33311. height: math.unit(11000, "km")
  33312. },
  33313. {
  33314. name: "Planet snacking",
  33315. height: math.unit(2000000, "km")
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(6, "feet"),
  33324. weight: math.unit(215, "lb"),
  33325. name: "Front",
  33326. image: {
  33327. source: "./media/characters/sapphire-svell/front.svg",
  33328. extra: 495 / 455,
  33329. bottom: 20 / 515
  33330. }
  33331. },
  33332. back: {
  33333. height: math.unit(6, "feet"),
  33334. weight: math.unit(216, "lb"),
  33335. name: "Back",
  33336. image: {
  33337. source: "./media/characters/sapphire-svell/back.svg",
  33338. extra: 497 / 477,
  33339. bottom: 7 / 504
  33340. }
  33341. },
  33342. maw: {
  33343. height: math.unit(1.57, "feet"),
  33344. name: "Maw",
  33345. image: {
  33346. source: "./media/characters/sapphire-svell/maw.svg"
  33347. }
  33348. },
  33349. foot: {
  33350. height: math.unit(1.07, "feet"),
  33351. name: "Foot",
  33352. image: {
  33353. source: "./media/characters/sapphire-svell/foot.svg"
  33354. }
  33355. },
  33356. toering: {
  33357. height: math.unit(1.7, "inch"),
  33358. name: "Toering",
  33359. image: {
  33360. source: "./media/characters/sapphire-svell/toering.svg"
  33361. }
  33362. },
  33363. },
  33364. [
  33365. {
  33366. name: "Normal",
  33367. height: math.unit(300, "feet"),
  33368. default: true
  33369. },
  33370. {
  33371. name: "Augmented",
  33372. height: math.unit(1250, "feet")
  33373. },
  33374. {
  33375. name: "Unleashed",
  33376. height: math.unit(3000, "feet")
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33382. {
  33383. side: {
  33384. height: math.unit(2 + 3 / 12, "feet"),
  33385. weight: math.unit(110, "lb"),
  33386. name: "Side",
  33387. image: {
  33388. source: "./media/characters/glitch-flux/side.svg",
  33389. extra: 997 / 805,
  33390. bottom: 20 / 1017
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(2 + 3 / 12, "feet"),
  33398. default: true
  33399. },
  33400. ]
  33401. ))
  33402. characterMakers.push(() => makeCharacter(
  33403. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33404. {
  33405. front: {
  33406. height: math.unit(4, "meters"),
  33407. name: "Front",
  33408. image: {
  33409. source: "./media/characters/mid/front.svg",
  33410. extra: 507 / 476,
  33411. bottom: 17 / 524
  33412. }
  33413. },
  33414. back: {
  33415. height: math.unit(4, "meters"),
  33416. name: "Back",
  33417. image: {
  33418. source: "./media/characters/mid/back.svg",
  33419. extra: 519 / 487,
  33420. bottom: 7 / 526
  33421. }
  33422. },
  33423. stuck: {
  33424. height: math.unit(2.2, "meters"),
  33425. name: "Stuck",
  33426. image: {
  33427. source: "./media/characters/mid/stuck.svg",
  33428. extra: 1951 / 1869,
  33429. bottom: 88 / 2039
  33430. }
  33431. }
  33432. },
  33433. [
  33434. {
  33435. name: "Normal",
  33436. height: math.unit(4, "meters"),
  33437. default: true
  33438. },
  33439. {
  33440. name: "Big",
  33441. height: math.unit(10, "meters")
  33442. },
  33443. {
  33444. name: "Macro",
  33445. height: math.unit(800, "meters")
  33446. },
  33447. {
  33448. name: "Megamacro",
  33449. height: math.unit(100, "km")
  33450. },
  33451. {
  33452. name: "Overgrown",
  33453. height: math.unit(1, "parsec")
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(2.5, "meters"),
  33462. weight: math.unit(225, "kg"),
  33463. name: "Front",
  33464. image: {
  33465. source: "./media/characters/iris/front.svg",
  33466. extra: 3348 / 3251,
  33467. bottom: 205 / 3553
  33468. }
  33469. },
  33470. maw: {
  33471. height: math.unit(0.56, "meter"),
  33472. name: "Maw",
  33473. image: {
  33474. source: "./media/characters/iris/maw.svg"
  33475. }
  33476. },
  33477. },
  33478. [
  33479. {
  33480. name: "Mewter cat",
  33481. height: math.unit(1.2, "meters")
  33482. },
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(2.5, "meters"),
  33486. default: true
  33487. },
  33488. {
  33489. name: "Minimacro",
  33490. height: math.unit(18, "feet")
  33491. },
  33492. {
  33493. name: "Macro",
  33494. height: math.unit(140, "feet")
  33495. },
  33496. {
  33497. name: "Macro+",
  33498. height: math.unit(180, "meters")
  33499. },
  33500. {
  33501. name: "Megamacro",
  33502. height: math.unit(2746, "meters")
  33503. },
  33504. ]
  33505. ))
  33506. characterMakers.push(() => makeCharacter(
  33507. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33508. {
  33509. front: {
  33510. height: math.unit(6, "feet"),
  33511. weight: math.unit(135, "lb"),
  33512. name: "Front",
  33513. image: {
  33514. source: "./media/characters/axel/front.svg",
  33515. extra: 908 / 908,
  33516. bottom: 58 / 966
  33517. }
  33518. },
  33519. side: {
  33520. height: math.unit(6, "feet"),
  33521. weight: math.unit(135, "lb"),
  33522. name: "Side",
  33523. image: {
  33524. source: "./media/characters/axel/side.svg",
  33525. extra: 958 / 958,
  33526. bottom: 11 / 969
  33527. }
  33528. },
  33529. back: {
  33530. height: math.unit(6, "feet"),
  33531. weight: math.unit(135, "lb"),
  33532. name: "Back",
  33533. image: {
  33534. source: "./media/characters/axel/back.svg",
  33535. extra: 887 / 887,
  33536. bottom: 34 / 921
  33537. }
  33538. },
  33539. head: {
  33540. height: math.unit(1.07, "feet"),
  33541. name: "Head",
  33542. image: {
  33543. source: "./media/characters/axel/head.svg"
  33544. }
  33545. },
  33546. beak: {
  33547. height: math.unit(1.4, "feet"),
  33548. name: "Beak",
  33549. image: {
  33550. source: "./media/characters/axel/beak.svg"
  33551. }
  33552. },
  33553. beakSide: {
  33554. height: math.unit(1.4, "feet"),
  33555. name: "Beak Side",
  33556. image: {
  33557. source: "./media/characters/axel/beak-side.svg"
  33558. }
  33559. },
  33560. sheath: {
  33561. height: math.unit(0.5, "feet"),
  33562. name: "Sheath",
  33563. image: {
  33564. source: "./media/characters/axel/sheath.svg"
  33565. }
  33566. },
  33567. dick: {
  33568. height: math.unit(0.98, "feet"),
  33569. name: "Dick",
  33570. image: {
  33571. source: "./media/characters/axel/dick.svg"
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Macro",
  33578. height: math.unit(68, "meters"),
  33579. default: true
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33585. {
  33586. front: {
  33587. height: math.unit(3.5, "meters"),
  33588. weight: math.unit(1200, "kg"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/joanna/front.svg",
  33592. extra: 1596 / 1488,
  33593. bottom: 29 / 1625
  33594. }
  33595. },
  33596. back: {
  33597. height: math.unit(3.5, "meters"),
  33598. weight: math.unit(1200, "kg"),
  33599. name: "Back",
  33600. image: {
  33601. source: "./media/characters/joanna/back.svg",
  33602. extra: 1594 / 1495,
  33603. bottom: 26 / 1620
  33604. }
  33605. },
  33606. frontShorts: {
  33607. height: math.unit(3.5, "meters"),
  33608. weight: math.unit(1200, "kg"),
  33609. name: "Front (Shorts)",
  33610. image: {
  33611. source: "./media/characters/joanna/front-shorts.svg",
  33612. extra: 1596 / 1488,
  33613. bottom: 29 / 1625
  33614. }
  33615. },
  33616. frontBiker: {
  33617. height: math.unit(3.5, "meters"),
  33618. weight: math.unit(1200, "kg"),
  33619. name: "Front (Biker)",
  33620. image: {
  33621. source: "./media/characters/joanna/front-biker.svg",
  33622. extra: 1596 / 1488,
  33623. bottom: 29 / 1625
  33624. }
  33625. },
  33626. backBiker: {
  33627. height: math.unit(3.5, "meters"),
  33628. weight: math.unit(1200, "kg"),
  33629. name: "Back (Biker)",
  33630. image: {
  33631. source: "./media/characters/joanna/back-biker.svg",
  33632. extra: 1594 / 1495,
  33633. bottom: 88 / 1682
  33634. }
  33635. },
  33636. bikeLeft: {
  33637. height: math.unit(2.4, "meters"),
  33638. weight: math.unit(1600, "kg"),
  33639. name: "Bike (Left)",
  33640. image: {
  33641. source: "./media/characters/joanna/bike-left.svg",
  33642. extra: 720 / 720,
  33643. bottom: 8 / 728
  33644. }
  33645. },
  33646. bikeRight: {
  33647. height: math.unit(2.4, "meters"),
  33648. weight: math.unit(1600, "kg"),
  33649. name: "Bike (Right)",
  33650. image: {
  33651. source: "./media/characters/joanna/bike-right.svg",
  33652. extra: 720 / 720,
  33653. bottom: 8 / 728
  33654. }
  33655. },
  33656. },
  33657. [
  33658. {
  33659. name: "Incognito",
  33660. height: math.unit(3.5, "meters")
  33661. },
  33662. {
  33663. name: "Casual Big",
  33664. height: math.unit(200, "meters")
  33665. },
  33666. {
  33667. name: "Macro",
  33668. height: math.unit(600, "meters")
  33669. },
  33670. {
  33671. name: "Original",
  33672. height: math.unit(20, "km"),
  33673. default: true
  33674. },
  33675. {
  33676. name: "Giga",
  33677. height: math.unit(400, "km")
  33678. },
  33679. {
  33680. name: "Lounging",
  33681. height: math.unit(1500, "km")
  33682. },
  33683. {
  33684. name: "Planetary",
  33685. height: math.unit(200000, "km")
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(6, "feet"),
  33694. weight: math.unit(150, "lb"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/hugo-sigil/front.svg",
  33698. extra: 522 / 500,
  33699. bottom: 2 / 524
  33700. }
  33701. },
  33702. back: {
  33703. height: math.unit(6, "feet"),
  33704. weight: math.unit(150, "lb"),
  33705. name: "Back",
  33706. image: {
  33707. source: "./media/characters/hugo-sigil/back.svg",
  33708. extra: 519 / 495,
  33709. bottom: 5 / 524
  33710. }
  33711. },
  33712. maw: {
  33713. height: math.unit(1.4, "feet"),
  33714. weight: math.unit(150, "lb"),
  33715. name: "Maw",
  33716. image: {
  33717. source: "./media/characters/hugo-sigil/maw.svg"
  33718. }
  33719. },
  33720. feet: {
  33721. height: math.unit(1.56, "feet"),
  33722. weight: math.unit(150, "lb"),
  33723. name: "Feet",
  33724. image: {
  33725. source: "./media/characters/hugo-sigil/feet.svg",
  33726. extra: 177 / 177,
  33727. bottom: 12 / 189
  33728. }
  33729. },
  33730. },
  33731. [
  33732. {
  33733. name: "Normal",
  33734. height: math.unit(6, "feet")
  33735. },
  33736. {
  33737. name: "Macro",
  33738. height: math.unit(200, "feet"),
  33739. default: true
  33740. },
  33741. ]
  33742. ))
  33743. characterMakers.push(() => makeCharacter(
  33744. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33745. {
  33746. front: {
  33747. height: math.unit(6, "feet"),
  33748. weight: math.unit(150, "lb"),
  33749. name: "Front",
  33750. image: {
  33751. source: "./media/characters/peri/front.svg",
  33752. extra: 2354 / 2233,
  33753. bottom: 49 / 2403
  33754. }
  33755. },
  33756. },
  33757. [
  33758. {
  33759. name: "Really Small",
  33760. height: math.unit(1, "nm")
  33761. },
  33762. {
  33763. name: "Micro",
  33764. height: math.unit(4, "inches")
  33765. },
  33766. {
  33767. name: "Normal",
  33768. height: math.unit(7, "inches"),
  33769. default: true
  33770. },
  33771. {
  33772. name: "Macro",
  33773. height: math.unit(400, "feet")
  33774. },
  33775. {
  33776. name: "Megamacro",
  33777. height: math.unit(100, "miles")
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33783. {
  33784. frontSlim: {
  33785. height: math.unit(7, "feet"),
  33786. name: "Front (Slim)",
  33787. image: {
  33788. source: "./media/characters/issilora/front-slim.svg",
  33789. extra: 529 / 449,
  33790. bottom: 53 / 582
  33791. }
  33792. },
  33793. sideSlim: {
  33794. height: math.unit(7, "feet"),
  33795. name: "Side (Slim)",
  33796. image: {
  33797. source: "./media/characters/issilora/side-slim.svg",
  33798. extra: 570 / 480,
  33799. bottom: 30 / 600
  33800. }
  33801. },
  33802. backSlim: {
  33803. height: math.unit(7, "feet"),
  33804. name: "Back (Slim)",
  33805. image: {
  33806. source: "./media/characters/issilora/back-slim.svg",
  33807. extra: 537 / 455,
  33808. bottom: 46 / 583
  33809. }
  33810. },
  33811. frontBuff: {
  33812. height: math.unit(7, "feet"),
  33813. name: "Front (Buff)",
  33814. image: {
  33815. source: "./media/characters/issilora/front-buff.svg",
  33816. extra: 2310 / 2035,
  33817. bottom: 335 / 2645
  33818. }
  33819. },
  33820. head: {
  33821. height: math.unit(1.94, "feet"),
  33822. name: "Head",
  33823. image: {
  33824. source: "./media/characters/issilora/head.svg"
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Minimum",
  33831. height: math.unit(7, "feet")
  33832. },
  33833. {
  33834. name: "Comfortable",
  33835. height: math.unit(17, "feet")
  33836. },
  33837. {
  33838. name: "Fun Size",
  33839. height: math.unit(47, "feet")
  33840. },
  33841. {
  33842. name: "Natural Macro",
  33843. height: math.unit(137, "feet"),
  33844. default: true
  33845. },
  33846. {
  33847. name: "Maximum Kaiju",
  33848. height: math.unit(397, "feet")
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33854. {
  33855. front: {
  33856. height: math.unit(50 + 9/12, "feet"),
  33857. weight: math.unit(32.8, "tons"),
  33858. name: "Front",
  33859. image: {
  33860. source: "./media/characters/irb'iiritaahn/front.svg",
  33861. extra: 1878/1826,
  33862. bottom: 326/2204
  33863. }
  33864. },
  33865. back: {
  33866. height: math.unit(50 + 9/12, "feet"),
  33867. weight: math.unit(32.8, "tons"),
  33868. name: "Back",
  33869. image: {
  33870. source: "./media/characters/irb'iiritaahn/back.svg",
  33871. extra: 2052/2018,
  33872. bottom: 152/2204
  33873. }
  33874. },
  33875. head: {
  33876. height: math.unit(12.86, "feet"),
  33877. name: "Head",
  33878. image: {
  33879. source: "./media/characters/irb'iiritaahn/head.svg"
  33880. }
  33881. },
  33882. maw: {
  33883. height: math.unit(9.66, "feet"),
  33884. name: "Maw",
  33885. image: {
  33886. source: "./media/characters/irb'iiritaahn/maw.svg"
  33887. }
  33888. },
  33889. frontDick: {
  33890. height: math.unit(8.78461, "feet"),
  33891. name: "Front Dick",
  33892. image: {
  33893. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33894. }
  33895. },
  33896. rearDick: {
  33897. height: math.unit(8.78461, "feet"),
  33898. name: "Rear Dick",
  33899. image: {
  33900. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33901. }
  33902. },
  33903. rearDickUnfolded: {
  33904. height: math.unit(8.78, "feet"),
  33905. name: "Rear Dick (Unfolded)",
  33906. image: {
  33907. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33908. }
  33909. },
  33910. wings: {
  33911. height: math.unit(43, "feet"),
  33912. name: "Wings",
  33913. image: {
  33914. source: "./media/characters/irb'iiritaahn/wings.svg"
  33915. }
  33916. },
  33917. },
  33918. [
  33919. {
  33920. name: "Macro",
  33921. height: math.unit(50 + 9/12, "feet"),
  33922. default: true
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33928. {
  33929. front: {
  33930. height: math.unit(205, "cm"),
  33931. weight: math.unit(102, "kg"),
  33932. name: "Front",
  33933. image: {
  33934. source: "./media/characters/irbisgreif/front.svg",
  33935. extra: 785/706,
  33936. bottom: 13/798
  33937. }
  33938. },
  33939. back: {
  33940. height: math.unit(205, "cm"),
  33941. weight: math.unit(102, "kg"),
  33942. name: "Back",
  33943. image: {
  33944. source: "./media/characters/irbisgreif/back.svg",
  33945. extra: 713/701,
  33946. bottom: 26/739
  33947. }
  33948. },
  33949. frontDressed: {
  33950. height: math.unit(216, "cm"),
  33951. weight: math.unit(102, "kg"),
  33952. name: "Front-dressed",
  33953. image: {
  33954. source: "./media/characters/irbisgreif/front-dressed.svg",
  33955. extra: 902/776,
  33956. bottom: 14/916
  33957. }
  33958. },
  33959. sideDressed: {
  33960. height: math.unit(195, "cm"),
  33961. weight: math.unit(102, "kg"),
  33962. name: "Side-dressed",
  33963. image: {
  33964. source: "./media/characters/irbisgreif/side-dressed.svg",
  33965. extra: 788/688,
  33966. bottom: 21/809
  33967. }
  33968. },
  33969. backDressed: {
  33970. height: math.unit(216, "cm"),
  33971. weight: math.unit(102, "kg"),
  33972. name: "Back-dressed",
  33973. image: {
  33974. source: "./media/characters/irbisgreif/back-dressed.svg",
  33975. extra: 901/783,
  33976. bottom: 10/911
  33977. }
  33978. },
  33979. dick: {
  33980. height: math.unit(0.49, "feet"),
  33981. name: "Dick",
  33982. image: {
  33983. source: "./media/characters/irbisgreif/dick.svg"
  33984. }
  33985. },
  33986. wingTop: {
  33987. height: math.unit(1.93 , "feet"),
  33988. name: "Wing-top",
  33989. image: {
  33990. source: "./media/characters/irbisgreif/wing-top.svg"
  33991. }
  33992. },
  33993. wingBottom: {
  33994. height: math.unit(1.93 , "feet"),
  33995. name: "Wing-bottom",
  33996. image: {
  33997. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33998. }
  33999. },
  34000. },
  34001. [
  34002. {
  34003. name: "Normal",
  34004. height: math.unit(216, "cm"),
  34005. default: true
  34006. },
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34011. {
  34012. front: {
  34013. height: math.unit(6, "feet"),
  34014. weight: math.unit(150, "lb"),
  34015. name: "Front",
  34016. image: {
  34017. source: "./media/characters/pride/front.svg",
  34018. extra: 1299/1230,
  34019. bottom: 18/1317
  34020. }
  34021. },
  34022. },
  34023. [
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(7, "feet")
  34027. },
  34028. {
  34029. name: "Mini-macro",
  34030. height: math.unit(11, "feet")
  34031. },
  34032. {
  34033. name: "Macro",
  34034. height: math.unit(15, "meters"),
  34035. default: true
  34036. },
  34037. {
  34038. name: "Macro+",
  34039. height: math.unit(40, "meters")
  34040. },
  34041. ]
  34042. ))
  34043. characterMakers.push(() => makeCharacter(
  34044. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34045. {
  34046. front: {
  34047. height: math.unit(4 + 2 / 12, "feet"),
  34048. weight: math.unit(95, "lb"),
  34049. name: "Front",
  34050. image: {
  34051. source: "./media/characters/vaelophis-nyx/front.svg",
  34052. extra: 2532/2330,
  34053. bottom: 0/2532
  34054. }
  34055. },
  34056. back: {
  34057. height: math.unit(4 + 2 / 12, "feet"),
  34058. weight: math.unit(95, "lb"),
  34059. name: "Back",
  34060. image: {
  34061. source: "./media/characters/vaelophis-nyx/back.svg",
  34062. extra: 2484/2361,
  34063. bottom: 0/2484
  34064. }
  34065. },
  34066. feralSide: {
  34067. height: math.unit(2 + 1/12, "feet"),
  34068. weight: math.unit(20, "lb"),
  34069. name: "Feral (Side)",
  34070. image: {
  34071. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34072. extra: 1721/1581,
  34073. bottom: 70/1791
  34074. }
  34075. },
  34076. feralLazing: {
  34077. height: math.unit(1.08, "feet"),
  34078. weight: math.unit(20, "lb"),
  34079. name: "Feral (Lazing)",
  34080. image: {
  34081. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34082. extra: 822/822,
  34083. bottom: 248/1070
  34084. }
  34085. },
  34086. ear: {
  34087. height: math.unit(0.416, "feet"),
  34088. name: "Ear",
  34089. image: {
  34090. source: "./media/characters/vaelophis-nyx/ear.svg"
  34091. }
  34092. },
  34093. eye: {
  34094. height: math.unit(0.0748, "feet"),
  34095. name: "Eye",
  34096. image: {
  34097. source: "./media/characters/vaelophis-nyx/eye.svg"
  34098. }
  34099. },
  34100. mouth: {
  34101. height: math.unit(0.378, "feet"),
  34102. name: "Mouth",
  34103. image: {
  34104. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34105. }
  34106. },
  34107. spade: {
  34108. height: math.unit(0.55, "feet"),
  34109. name: "Spade",
  34110. image: {
  34111. source: "./media/characters/vaelophis-nyx/spade.svg"
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(4 + 2/12, "feet"),
  34119. default: true
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34125. {
  34126. front: {
  34127. height: math.unit(7, "feet"),
  34128. weight: math.unit(231, "lb"),
  34129. name: "Front",
  34130. image: {
  34131. source: "./media/characters/flux/front.svg",
  34132. extra: 919/871,
  34133. bottom: 0/919
  34134. }
  34135. },
  34136. back: {
  34137. height: math.unit(7, "feet"),
  34138. weight: math.unit(231, "lb"),
  34139. name: "Back",
  34140. image: {
  34141. source: "./media/characters/flux/back.svg",
  34142. extra: 1040/992,
  34143. bottom: 0/1040
  34144. }
  34145. },
  34146. frontDressed: {
  34147. height: math.unit(7, "feet"),
  34148. weight: math.unit(231, "lb"),
  34149. name: "Front (Dressed)",
  34150. image: {
  34151. source: "./media/characters/flux/front-dressed.svg",
  34152. extra: 919/871,
  34153. bottom: 0/919
  34154. }
  34155. },
  34156. feralSide: {
  34157. height: math.unit(5, "feet"),
  34158. weight: math.unit(150, "lb"),
  34159. name: "Feral (Side)",
  34160. image: {
  34161. source: "./media/characters/flux/feral-side.svg",
  34162. extra: 598/528,
  34163. bottom: 28/626
  34164. }
  34165. },
  34166. head: {
  34167. height: math.unit(1.585, "feet"),
  34168. name: "Head",
  34169. image: {
  34170. source: "./media/characters/flux/head.svg"
  34171. }
  34172. },
  34173. headSide: {
  34174. height: math.unit(1.74, "feet"),
  34175. name: "Head (Side)",
  34176. image: {
  34177. source: "./media/characters/flux/head-side.svg"
  34178. }
  34179. },
  34180. headSideFire: {
  34181. height: math.unit(1.76, "feet"),
  34182. name: "Head (Side, Fire)",
  34183. image: {
  34184. source: "./media/characters/flux/head-side-fire.svg"
  34185. }
  34186. },
  34187. },
  34188. [
  34189. {
  34190. name: "Normal",
  34191. height: math.unit(7, "feet"),
  34192. default: true
  34193. },
  34194. ]
  34195. ))
  34196. characterMakers.push(() => makeCharacter(
  34197. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34198. {
  34199. front: {
  34200. height: math.unit(9, "feet"),
  34201. weight: math.unit(1012, "lb"),
  34202. name: "Front",
  34203. image: {
  34204. source: "./media/characters/ulfra-lupae/front.svg",
  34205. extra: 1083/1011,
  34206. bottom: 67/1150
  34207. }
  34208. },
  34209. },
  34210. [
  34211. {
  34212. name: "Micro",
  34213. height: math.unit(6, "inches")
  34214. },
  34215. {
  34216. name: "Socializing",
  34217. height: math.unit(6 + 5/12, "feet")
  34218. },
  34219. {
  34220. name: "Normal",
  34221. height: math.unit(9, "feet"),
  34222. default: true
  34223. },
  34224. {
  34225. name: "Macro",
  34226. height: math.unit(150, "feet")
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34232. {
  34233. front: {
  34234. height: math.unit(5 + 2/12, "feet"),
  34235. weight: math.unit(120, "lb"),
  34236. name: "Front",
  34237. image: {
  34238. source: "./media/characters/timber/front.svg",
  34239. extra: 2814/2705,
  34240. bottom: 181/2995
  34241. }
  34242. },
  34243. },
  34244. [
  34245. {
  34246. name: "Normal",
  34247. height: math.unit(5 + 2/12, "feet"),
  34248. default: true
  34249. },
  34250. ]
  34251. ))
  34252. characterMakers.push(() => makeCharacter(
  34253. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34254. {
  34255. front: {
  34256. height: math.unit(9, "feet"),
  34257. name: "Front",
  34258. image: {
  34259. source: "./media/characters/nicki/front.svg",
  34260. extra: 1240/990,
  34261. bottom: 45/1285
  34262. },
  34263. form: "anthro",
  34264. default: true
  34265. },
  34266. side: {
  34267. height: math.unit(9, "feet"),
  34268. name: "Side",
  34269. image: {
  34270. source: "./media/characters/nicki/side.svg",
  34271. extra: 1047/973,
  34272. bottom: 61/1108
  34273. },
  34274. form: "anthro"
  34275. },
  34276. back: {
  34277. height: math.unit(9, "feet"),
  34278. name: "Back",
  34279. image: {
  34280. source: "./media/characters/nicki/back.svg",
  34281. extra: 1006/965,
  34282. bottom: 39/1045
  34283. },
  34284. form: "anthro"
  34285. },
  34286. taur: {
  34287. height: math.unit(15, "feet"),
  34288. name: "Taur",
  34289. image: {
  34290. source: "./media/characters/nicki/taur.svg",
  34291. extra: 1592/1347,
  34292. bottom: 0/1592
  34293. },
  34294. form: "taur",
  34295. default: true
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(9, "feet"),
  34302. form: "anthro",
  34303. default: true
  34304. },
  34305. {
  34306. name: "Normal",
  34307. height: math.unit(15, "feet"),
  34308. form: "taur",
  34309. default: true
  34310. }
  34311. ],
  34312. {
  34313. "anthro": {
  34314. name: "Anthro",
  34315. default: true
  34316. },
  34317. "taur": {
  34318. name: "Taur"
  34319. }
  34320. }
  34321. ))
  34322. characterMakers.push(() => makeCharacter(
  34323. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34324. {
  34325. front: {
  34326. height: math.unit(7 + 10/12, "feet"),
  34327. weight: math.unit(3.5, "tons"),
  34328. name: "Front",
  34329. image: {
  34330. source: "./media/characters/lee/front.svg",
  34331. extra: 1773/1615,
  34332. bottom: 86/1859
  34333. }
  34334. },
  34335. hand: {
  34336. height: math.unit(1.78, "feet"),
  34337. name: "Hand",
  34338. image: {
  34339. source: "./media/characters/lee/hand.svg"
  34340. }
  34341. },
  34342. maw: {
  34343. height: math.unit(1.18, "feet"),
  34344. name: "Maw",
  34345. image: {
  34346. source: "./media/characters/lee/maw.svg"
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(7 + 10/12, "feet"),
  34354. default: true
  34355. },
  34356. ]
  34357. ))
  34358. characterMakers.push(() => makeCharacter(
  34359. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34360. {
  34361. front: {
  34362. height: math.unit(9, "feet"),
  34363. name: "Front",
  34364. image: {
  34365. source: "./media/characters/guti/front.svg",
  34366. extra: 4551/4355,
  34367. bottom: 123/4674
  34368. }
  34369. },
  34370. tongue: {
  34371. height: math.unit(1, "feet"),
  34372. name: "Tongue",
  34373. image: {
  34374. source: "./media/characters/guti/tongue.svg"
  34375. }
  34376. },
  34377. paw: {
  34378. height: math.unit(1.18, "feet"),
  34379. name: "Paw",
  34380. image: {
  34381. source: "./media/characters/guti/paw.svg"
  34382. }
  34383. },
  34384. },
  34385. [
  34386. {
  34387. name: "Normal",
  34388. height: math.unit(9, "feet"),
  34389. default: true
  34390. },
  34391. ]
  34392. ))
  34393. characterMakers.push(() => makeCharacter(
  34394. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34395. {
  34396. side: {
  34397. height: math.unit(5, "meters"),
  34398. name: "Side",
  34399. image: {
  34400. source: "./media/characters/vesper/side.svg",
  34401. extra: 1605/1518,
  34402. bottom: 0/1605
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Small",
  34409. height: math.unit(5, "meters")
  34410. },
  34411. {
  34412. name: "Sage",
  34413. height: math.unit(100, "meters"),
  34414. default: true
  34415. },
  34416. {
  34417. name: "Fun Size",
  34418. height: math.unit(600, "meters")
  34419. },
  34420. {
  34421. name: "Goddess",
  34422. height: math.unit(20000, "km")
  34423. },
  34424. {
  34425. name: "Maximum",
  34426. height: math.unit(5, "galaxies")
  34427. },
  34428. ]
  34429. ))
  34430. characterMakers.push(() => makeCharacter(
  34431. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34432. {
  34433. front: {
  34434. height: math.unit(6 + 3/12, "feet"),
  34435. weight: math.unit(190, "lb"),
  34436. name: "Front",
  34437. image: {
  34438. source: "./media/characters/gawain/front.svg",
  34439. extra: 2222/2139,
  34440. bottom: 90/2312
  34441. }
  34442. },
  34443. back: {
  34444. height: math.unit(6 + 3/12, "feet"),
  34445. weight: math.unit(190, "lb"),
  34446. name: "Back",
  34447. image: {
  34448. source: "./media/characters/gawain/back.svg",
  34449. extra: 2199/2111,
  34450. bottom: 73/2272
  34451. }
  34452. },
  34453. },
  34454. [
  34455. {
  34456. name: "Normal",
  34457. height: math.unit(6 + 3/12, "feet"),
  34458. default: true
  34459. },
  34460. ]
  34461. ))
  34462. characterMakers.push(() => makeCharacter(
  34463. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34464. {
  34465. side: {
  34466. height: math.unit(3.5, "meters"),
  34467. weight: math.unit(16000, "lb"),
  34468. name: "Side",
  34469. image: {
  34470. source: "./media/characters/dascalti/side.svg",
  34471. extra: 392/273,
  34472. bottom: 47/439
  34473. }
  34474. },
  34475. breath: {
  34476. height: math.unit(7.4, "feet"),
  34477. name: "Breath",
  34478. image: {
  34479. source: "./media/characters/dascalti/breath.svg"
  34480. }
  34481. },
  34482. fed: {
  34483. height: math.unit(3.6, "meters"),
  34484. weight: math.unit(16000, "lb"),
  34485. name: "Fed",
  34486. image: {
  34487. source: "./media/characters/dascalti/fed.svg",
  34488. extra: 1419/820,
  34489. bottom: 95/1514
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(3.5, "meters"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(3 + 5/12, "feet"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/mauve/front.svg",
  34509. extra: 1126/1033,
  34510. bottom: 65/1191
  34511. }
  34512. },
  34513. side: {
  34514. height: math.unit(3 + 5/12, "feet"),
  34515. name: "Side",
  34516. image: {
  34517. source: "./media/characters/mauve/side.svg",
  34518. extra: 1089/1001,
  34519. bottom: 29/1118
  34520. }
  34521. },
  34522. back: {
  34523. height: math.unit(3 + 5/12, "feet"),
  34524. name: "Back",
  34525. image: {
  34526. source: "./media/characters/mauve/back.svg",
  34527. extra: 1173/1053,
  34528. bottom: 109/1282
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(3 + 5/12, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34542. {
  34543. front: {
  34544. height: math.unit(6 + 3/12, "feet"),
  34545. weight: math.unit(430, "lb"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/carlos/front.svg",
  34549. extra: 1964/1913,
  34550. bottom: 70/2034
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(6 + 3/12, "feet"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34564. {
  34565. back: {
  34566. height: math.unit(5 + 10/12, "feet"),
  34567. weight: math.unit(200, "lb"),
  34568. name: "Back",
  34569. image: {
  34570. source: "./media/characters/jax/back.svg",
  34571. extra: 764/739,
  34572. bottom: 25/789
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(5 + 10/12, "feet"),
  34580. default: true
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34586. {
  34587. front: {
  34588. height: math.unit(8, "feet"),
  34589. weight: math.unit(250, "lb"),
  34590. name: "Front",
  34591. image: {
  34592. source: "./media/characters/eikthynir/front.svg",
  34593. extra: 1332/1166,
  34594. bottom: 82/1414
  34595. }
  34596. },
  34597. back: {
  34598. height: math.unit(8, "feet"),
  34599. weight: math.unit(250, "lb"),
  34600. name: "Back",
  34601. image: {
  34602. source: "./media/characters/eikthynir/back.svg",
  34603. extra: 1342/1190,
  34604. bottom: 19/1361
  34605. }
  34606. },
  34607. dick: {
  34608. height: math.unit(2.35, "feet"),
  34609. name: "Dick",
  34610. image: {
  34611. source: "./media/characters/eikthynir/dick.svg"
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Normal",
  34618. height: math.unit(8, "feet"),
  34619. default: true
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34625. {
  34626. front: {
  34627. height: math.unit(99, "meters"),
  34628. weight: math.unit(13000, "tons"),
  34629. name: "Front",
  34630. image: {
  34631. source: "./media/characters/zlmos/front.svg",
  34632. extra: 2202/1992,
  34633. bottom: 315/2517
  34634. }
  34635. },
  34636. },
  34637. [
  34638. {
  34639. name: "Macro",
  34640. height: math.unit(99, "meters"),
  34641. default: true
  34642. },
  34643. ]
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34647. {
  34648. front: {
  34649. height: math.unit(6 + 5/12, "feet"),
  34650. name: "Front",
  34651. image: {
  34652. source: "./media/characters/purri/front.svg",
  34653. extra: 1698/1610,
  34654. bottom: 32/1730
  34655. }
  34656. },
  34657. frontAlt: {
  34658. height: math.unit(6 + 5/12, "feet"),
  34659. name: "Front (Alt)",
  34660. image: {
  34661. source: "./media/characters/purri/front-alt.svg",
  34662. extra: 450/420,
  34663. bottom: 26/476
  34664. }
  34665. },
  34666. boots: {
  34667. height: math.unit(5.5, "feet"),
  34668. name: "Boots",
  34669. image: {
  34670. source: "./media/characters/purri/boots.svg",
  34671. extra: 905/853,
  34672. bottom: 18/923
  34673. },
  34674. extraAttributes: {
  34675. "shoeSize": {
  34676. name: "Shoe Size",
  34677. power: 1,
  34678. type: "length",
  34679. base: math.unit(12, "ShoeSizeMensUS")
  34680. },
  34681. "platformHeight": {
  34682. name: "Platform Height",
  34683. power: 1,
  34684. type: "length",
  34685. base: math.unit(2, "inches")
  34686. },
  34687. }
  34688. },
  34689. lying: {
  34690. height: math.unit(2, "feet"),
  34691. name: "Lying",
  34692. image: {
  34693. source: "./media/characters/purri/lying.svg",
  34694. extra: 940/843,
  34695. bottom: 146/1086
  34696. }
  34697. },
  34698. devious: {
  34699. height: math.unit(1.77, "feet"),
  34700. name: "Devious",
  34701. image: {
  34702. source: "./media/characters/purri/devious.svg",
  34703. extra: 1440/1155,
  34704. bottom: 147/1587
  34705. }
  34706. },
  34707. bean: {
  34708. height: math.unit(1.94, "feet"),
  34709. name: "Bean",
  34710. image: {
  34711. source: "./media/characters/purri/bean.svg"
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Micro",
  34718. height: math.unit(1, "mm")
  34719. },
  34720. {
  34721. name: "Normal",
  34722. height: math.unit(6 + 5/12, "feet"),
  34723. default: true
  34724. },
  34725. {
  34726. name: "Macro :3c",
  34727. height: math.unit(2, "miles")
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34733. {
  34734. front: {
  34735. height: math.unit(6 + 2/12, "feet"),
  34736. weight: math.unit(250, "lb"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/moonlight/front.svg",
  34740. extra: 1044/908,
  34741. bottom: 56/1100
  34742. }
  34743. },
  34744. feral: {
  34745. height: math.unit(3 + 1/12, "feet"),
  34746. weight: math.unit(50, "kg"),
  34747. name: "Feral",
  34748. image: {
  34749. source: "./media/characters/moonlight/feral.svg",
  34750. extra: 3705/2791,
  34751. bottom: 145/3850
  34752. }
  34753. },
  34754. paw: {
  34755. height: math.unit(1, "feet"),
  34756. name: "Paw",
  34757. image: {
  34758. source: "./media/characters/moonlight/paw.svg"
  34759. }
  34760. },
  34761. paws: {
  34762. height: math.unit(0.98, "feet"),
  34763. name: "Paws",
  34764. image: {
  34765. source: "./media/characters/moonlight/paws.svg",
  34766. extra: 939/939,
  34767. bottom: 50/989
  34768. }
  34769. },
  34770. mouth: {
  34771. height: math.unit(0.48, "feet"),
  34772. name: "Mouth",
  34773. image: {
  34774. source: "./media/characters/moonlight/mouth.svg"
  34775. }
  34776. },
  34777. dick: {
  34778. height: math.unit(1.46, "feet"),
  34779. name: "Dick",
  34780. image: {
  34781. source: "./media/characters/moonlight/dick.svg"
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(6 + 2/12, "feet"),
  34789. default: true
  34790. },
  34791. {
  34792. name: "Macro",
  34793. height: math.unit(300, "feet")
  34794. },
  34795. {
  34796. name: "Macro+",
  34797. height: math.unit(1, "mile")
  34798. },
  34799. {
  34800. name: "Mt. Moon",
  34801. height: math.unit(5, "miles")
  34802. },
  34803. {
  34804. name: "Megamacro",
  34805. height: math.unit(15, "miles")
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34811. {
  34812. back: {
  34813. height: math.unit(6, "feet"),
  34814. weight: math.unit(150, "lb"),
  34815. name: "Back",
  34816. image: {
  34817. source: "./media/characters/sylen/back.svg",
  34818. extra: 1335/1273,
  34819. bottom: 107/1442
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(5 + 5/12, "feet")
  34827. },
  34828. {
  34829. name: "Megamacro",
  34830. height: math.unit(3, "miles"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(6, "feet"),
  34840. weight: math.unit(190, "lb"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/huttser/front.svg",
  34844. extra: 1152/1058,
  34845. bottom: 23/1175
  34846. }
  34847. },
  34848. side: {
  34849. height: math.unit(6, "feet"),
  34850. weight: math.unit(190, "lb"),
  34851. name: "Side",
  34852. image: {
  34853. source: "./media/characters/huttser/side.svg",
  34854. extra: 1174/1065,
  34855. bottom: 18/1192
  34856. }
  34857. },
  34858. back: {
  34859. height: math.unit(6, "feet"),
  34860. weight: math.unit(190, "lb"),
  34861. name: "Back",
  34862. image: {
  34863. source: "./media/characters/huttser/back.svg",
  34864. extra: 1158/1056,
  34865. bottom: 12/1170
  34866. }
  34867. },
  34868. },
  34869. [
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34874. {
  34875. side: {
  34876. height: math.unit(12 + 9/12, "feet"),
  34877. weight: math.unit(15000, "lb"),
  34878. name: "Side",
  34879. image: {
  34880. source: "./media/characters/faan/side.svg",
  34881. extra: 2747/2697,
  34882. bottom: 0/2747
  34883. }
  34884. },
  34885. front: {
  34886. height: math.unit(12 + 9/12, "feet"),
  34887. weight: math.unit(15000, "lb"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/faan/front.svg",
  34891. extra: 607/571,
  34892. bottom: 24/631
  34893. }
  34894. },
  34895. head: {
  34896. height: math.unit(2.85, "feet"),
  34897. name: "Head",
  34898. image: {
  34899. source: "./media/characters/faan/head.svg"
  34900. }
  34901. },
  34902. headAlt: {
  34903. height: math.unit(3.13, "feet"),
  34904. name: "Head-alt",
  34905. image: {
  34906. source: "./media/characters/faan/head-alt.svg"
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(12 + 9/12, "feet"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34920. {
  34921. front: {
  34922. height: math.unit(6, "feet"),
  34923. weight: math.unit(300, "lb"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/tanio/front.svg",
  34927. extra: 711/673,
  34928. bottom: 25/736
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(6, "feet"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34942. {
  34943. front: {
  34944. height: math.unit(3, "inches"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/noboru/front.svg",
  34948. extra: 1039/932,
  34949. bottom: 18/1057
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Micro",
  34956. height: math.unit(3, "inches"),
  34957. default: true
  34958. },
  34959. ]
  34960. ))
  34961. characterMakers.push(() => makeCharacter(
  34962. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34963. {
  34964. front: {
  34965. height: math.unit(1.85, "meters"),
  34966. weight: math.unit(80, "kg"),
  34967. name: "Front",
  34968. image: {
  34969. source: "./media/characters/daniel-barrett/front.svg",
  34970. extra: 355/337,
  34971. bottom: 9/364
  34972. }
  34973. },
  34974. },
  34975. [
  34976. {
  34977. name: "Pico",
  34978. height: math.unit(0.0433, "mm")
  34979. },
  34980. {
  34981. name: "Nano",
  34982. height: math.unit(1.5, "mm")
  34983. },
  34984. {
  34985. name: "Micro",
  34986. height: math.unit(5.3, "cm"),
  34987. default: true
  34988. },
  34989. {
  34990. name: "Normal",
  34991. height: math.unit(1.85, "meters")
  34992. },
  34993. {
  34994. name: "Macro",
  34995. height: math.unit(64.7, "meters")
  34996. },
  34997. {
  34998. name: "Megamacro",
  34999. height: math.unit(2.26, "km")
  35000. },
  35001. {
  35002. name: "Gigamacro",
  35003. height: math.unit(79, "km")
  35004. },
  35005. {
  35006. name: "Teramacro",
  35007. height: math.unit(2765, "km")
  35008. },
  35009. {
  35010. name: "Petamacro",
  35011. height: math.unit(96678, "km")
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35017. {
  35018. front: {
  35019. height: math.unit(30, "meters"),
  35020. weight: math.unit(400, "tons"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/zeel/front.svg",
  35024. extra: 2599/2599,
  35025. bottom: 226/2825
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Macro",
  35032. height: math.unit(30, "meters"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35039. {
  35040. front: {
  35041. height: math.unit(6 + 7/12, "feet"),
  35042. weight: math.unit(210, "lb"),
  35043. name: "Front",
  35044. image: {
  35045. source: "./media/characters/tarn/front.svg",
  35046. extra: 3517/3220,
  35047. bottom: 91/3608
  35048. }
  35049. },
  35050. back: {
  35051. height: math.unit(6 + 7/12, "feet"),
  35052. weight: math.unit(210, "lb"),
  35053. name: "Back",
  35054. image: {
  35055. source: "./media/characters/tarn/back.svg",
  35056. extra: 3566/3241,
  35057. bottom: 34/3600
  35058. }
  35059. },
  35060. dick: {
  35061. height: math.unit(1.65, "feet"),
  35062. name: "Dick",
  35063. image: {
  35064. source: "./media/characters/tarn/dick.svg"
  35065. }
  35066. },
  35067. paw: {
  35068. height: math.unit(1.80, "feet"),
  35069. name: "Paw",
  35070. image: {
  35071. source: "./media/characters/tarn/paw.svg"
  35072. }
  35073. },
  35074. tongue: {
  35075. height: math.unit(0.97, "feet"),
  35076. name: "Tongue",
  35077. image: {
  35078. source: "./media/characters/tarn/tongue.svg"
  35079. }
  35080. },
  35081. },
  35082. [
  35083. {
  35084. name: "Micro",
  35085. height: math.unit(4, "inches")
  35086. },
  35087. {
  35088. name: "Normal",
  35089. height: math.unit(6 + 7/12, "feet"),
  35090. default: true
  35091. },
  35092. {
  35093. name: "Macro",
  35094. height: math.unit(300, "feet")
  35095. },
  35096. ]
  35097. ))
  35098. characterMakers.push(() => makeCharacter(
  35099. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35100. {
  35101. front: {
  35102. height: math.unit(5 + 7/12, "feet"),
  35103. weight: math.unit(80, "kg"),
  35104. name: "Front",
  35105. image: {
  35106. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35107. extra: 3023/2865,
  35108. bottom: 33/3056
  35109. }
  35110. },
  35111. back: {
  35112. height: math.unit(5 + 7/12, "feet"),
  35113. weight: math.unit(80, "kg"),
  35114. name: "Back",
  35115. image: {
  35116. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35117. extra: 3020/2886,
  35118. bottom: 30/3050
  35119. }
  35120. },
  35121. dick: {
  35122. height: math.unit(0.98, "feet"),
  35123. name: "Dick",
  35124. image: {
  35125. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35126. }
  35127. },
  35128. anatomy: {
  35129. height: math.unit(2.86, "feet"),
  35130. name: "Anatomy",
  35131. image: {
  35132. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35133. }
  35134. },
  35135. },
  35136. [
  35137. {
  35138. name: "Really Small",
  35139. height: math.unit(2, "inches")
  35140. },
  35141. {
  35142. name: "Micro",
  35143. height: math.unit(5.583, "inches")
  35144. },
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(5 + 7/12, "feet"),
  35148. default: true
  35149. },
  35150. {
  35151. name: "Macro",
  35152. height: math.unit(67, "feet")
  35153. },
  35154. {
  35155. name: "Megamacro",
  35156. height: math.unit(134, "feet")
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35162. {
  35163. front: {
  35164. height: math.unit(9, "feet"),
  35165. weight: math.unit(120, "lb"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/sally/front.svg",
  35169. extra: 1506/1349,
  35170. bottom: 66/1572
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Normal",
  35177. height: math.unit(9, "feet"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35184. {
  35185. front: {
  35186. height: math.unit(8, "feet"),
  35187. weight: math.unit(900, "lb"),
  35188. name: "Front",
  35189. image: {
  35190. source: "./media/characters/owen/front.svg",
  35191. extra: 1761/1657,
  35192. bottom: 74/1835
  35193. }
  35194. },
  35195. side: {
  35196. height: math.unit(8, "feet"),
  35197. weight: math.unit(900, "lb"),
  35198. name: "Side",
  35199. image: {
  35200. source: "./media/characters/owen/side.svg",
  35201. extra: 1797/1734,
  35202. bottom: 30/1827
  35203. }
  35204. },
  35205. back: {
  35206. height: math.unit(8, "feet"),
  35207. weight: math.unit(900, "lb"),
  35208. name: "Back",
  35209. image: {
  35210. source: "./media/characters/owen/back.svg",
  35211. extra: 1796/1706,
  35212. bottom: 59/1855
  35213. }
  35214. },
  35215. maw: {
  35216. height: math.unit(1.76, "feet"),
  35217. name: "Maw",
  35218. image: {
  35219. source: "./media/characters/owen/maw.svg"
  35220. }
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "Normal",
  35226. height: math.unit(8, "feet"),
  35227. default: true
  35228. },
  35229. ]
  35230. ))
  35231. characterMakers.push(() => makeCharacter(
  35232. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35233. {
  35234. front: {
  35235. height: math.unit(4, "feet"),
  35236. weight: math.unit(400, "lb"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/ryth/front.svg",
  35240. extra: 1920/1748,
  35241. bottom: 42/1962
  35242. }
  35243. },
  35244. back: {
  35245. height: math.unit(4, "feet"),
  35246. weight: math.unit(400, "lb"),
  35247. name: "Back",
  35248. image: {
  35249. source: "./media/characters/ryth/back.svg",
  35250. extra: 1897/1690,
  35251. bottom: 89/1986
  35252. }
  35253. },
  35254. mouth: {
  35255. height: math.unit(1.39, "feet"),
  35256. name: "Mouth",
  35257. image: {
  35258. source: "./media/characters/ryth/mouth.svg"
  35259. }
  35260. },
  35261. tailmaw: {
  35262. height: math.unit(1.23, "feet"),
  35263. name: "Tailmaw",
  35264. image: {
  35265. source: "./media/characters/ryth/tailmaw.svg"
  35266. }
  35267. },
  35268. goia: {
  35269. height: math.unit(4, "meters"),
  35270. weight: math.unit(10800, "lb"),
  35271. name: "Goia",
  35272. image: {
  35273. source: "./media/characters/ryth/goia.svg",
  35274. extra: 745/640,
  35275. bottom: 107/852
  35276. }
  35277. },
  35278. goiaFront: {
  35279. height: math.unit(4, "meters"),
  35280. weight: math.unit(10800, "lb"),
  35281. name: "Goia (Front)",
  35282. image: {
  35283. source: "./media/characters/ryth/goia-front.svg",
  35284. extra: 750/586,
  35285. bottom: 114/864
  35286. }
  35287. },
  35288. goiaMaw: {
  35289. height: math.unit(5.55, "feet"),
  35290. name: "Goia Maw",
  35291. image: {
  35292. source: "./media/characters/ryth/goia-maw.svg"
  35293. }
  35294. },
  35295. goiaForepaw: {
  35296. height: math.unit(3.5, "feet"),
  35297. name: "Goia Forepaw",
  35298. image: {
  35299. source: "./media/characters/ryth/goia-forepaw.svg"
  35300. }
  35301. },
  35302. goiaHindpaw: {
  35303. height: math.unit(5.55, "feet"),
  35304. name: "Goia Hindpaw",
  35305. image: {
  35306. source: "./media/characters/ryth/goia-hindpaw.svg"
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(4, "feet"),
  35314. default: true
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(7, "feet"),
  35323. weight: math.unit(180, "lb"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/necrolance/front.svg",
  35327. extra: 1062/947,
  35328. bottom: 41/1103
  35329. }
  35330. },
  35331. back: {
  35332. height: math.unit(7, "feet"),
  35333. weight: math.unit(180, "lb"),
  35334. name: "Back",
  35335. image: {
  35336. source: "./media/characters/necrolance/back.svg",
  35337. extra: 1045/984,
  35338. bottom: 14/1059
  35339. }
  35340. },
  35341. wing: {
  35342. height: math.unit(2.67, "feet"),
  35343. name: "Wing",
  35344. image: {
  35345. source: "./media/characters/necrolance/wing.svg"
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(7, "feet"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35359. {
  35360. front: {
  35361. height: math.unit(76, "meters"),
  35362. weight: math.unit(30000, "tons"),
  35363. name: "Front",
  35364. image: {
  35365. source: "./media/characters/tyler/front.svg",
  35366. extra: 1640/1640,
  35367. bottom: 114/1754
  35368. }
  35369. },
  35370. },
  35371. [
  35372. {
  35373. name: "Macro",
  35374. height: math.unit(76, "meters"),
  35375. default: true
  35376. },
  35377. ]
  35378. ))
  35379. characterMakers.push(() => makeCharacter(
  35380. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35381. {
  35382. front: {
  35383. height: math.unit(4 + 11/12, "feet"),
  35384. weight: math.unit(132, "lb"),
  35385. name: "Front",
  35386. image: {
  35387. source: "./media/characters/icey/front.svg",
  35388. extra: 2750/2550,
  35389. bottom: 33/2783
  35390. }
  35391. },
  35392. back: {
  35393. height: math.unit(4 + 11/12, "feet"),
  35394. weight: math.unit(132, "lb"),
  35395. name: "Back",
  35396. image: {
  35397. source: "./media/characters/icey/back.svg",
  35398. extra: 2624/2481,
  35399. bottom: 35/2659
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(4 + 11/12, "feet"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35413. {
  35414. front: {
  35415. height: math.unit(100, "feet"),
  35416. weight: math.unit(0, "lb"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/smile/front.svg",
  35420. extra: 2983/2912,
  35421. bottom: 162/3145
  35422. }
  35423. },
  35424. back: {
  35425. height: math.unit(100, "feet"),
  35426. weight: math.unit(0, "lb"),
  35427. name: "Back",
  35428. image: {
  35429. source: "./media/characters/smile/back.svg",
  35430. extra: 3143/3031,
  35431. bottom: 91/3234
  35432. }
  35433. },
  35434. head: {
  35435. height: math.unit(26.3, "feet"),
  35436. weight: math.unit(0, "lb"),
  35437. name: "Head",
  35438. image: {
  35439. source: "./media/characters/smile/head.svg"
  35440. }
  35441. },
  35442. collar: {
  35443. height: math.unit(5.3, "feet"),
  35444. weight: math.unit(0, "lb"),
  35445. name: "Collar",
  35446. image: {
  35447. source: "./media/characters/smile/collar.svg"
  35448. }
  35449. },
  35450. },
  35451. [
  35452. {
  35453. name: "Macro",
  35454. height: math.unit(100, "feet"),
  35455. default: true
  35456. },
  35457. ]
  35458. ))
  35459. characterMakers.push(() => makeCharacter(
  35460. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35461. {
  35462. dragon: {
  35463. height: math.unit(26, "feet"),
  35464. weight: math.unit(36, "tons"),
  35465. name: "Dragon",
  35466. image: {
  35467. source: "./media/characters/arimphae/dragon.svg",
  35468. extra: 1574/983,
  35469. bottom: 357/1931
  35470. }
  35471. },
  35472. drake: {
  35473. height: math.unit(9, "feet"),
  35474. weight: math.unit(1.5, "tons"),
  35475. name: "Drake",
  35476. image: {
  35477. source: "./media/characters/arimphae/drake.svg",
  35478. extra: 1120/925,
  35479. bottom: 435/1555
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Small",
  35486. height: math.unit(26*5/9, "feet")
  35487. },
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(26, "feet"),
  35491. default: true
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(8 + 9/12, "feet"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/xander/front.svg",
  35503. extra: 1237/974,
  35504. bottom: 94/1331
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(8 + 9/12, "feet"),
  35512. default: true
  35513. },
  35514. {
  35515. name: "Gaze Grabber",
  35516. height: math.unit(13 + 8/12, "feet")
  35517. },
  35518. {
  35519. name: "Jaw Dropper",
  35520. height: math.unit(27, "feet")
  35521. },
  35522. {
  35523. name: "Show Stopper",
  35524. height: math.unit(136, "feet")
  35525. },
  35526. {
  35527. name: "Superstar",
  35528. height: math.unit(1.9e6, "miles")
  35529. },
  35530. ]
  35531. ))
  35532. characterMakers.push(() => makeCharacter(
  35533. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35534. {
  35535. side: {
  35536. height: math.unit(2100, "feet"),
  35537. name: "Side",
  35538. image: {
  35539. source: "./media/characters/osiris/side.svg",
  35540. extra: 1105/939,
  35541. bottom: 167/1272
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Macro",
  35548. height: math.unit(2100, "feet"),
  35549. default: true
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35555. {
  35556. front: {
  35557. height: math.unit(6 + 8/12, "feet"),
  35558. weight: math.unit(225, "lb"),
  35559. name: "Front",
  35560. image: {
  35561. source: "./media/characters/rhys-londe/front.svg",
  35562. extra: 2258/2141,
  35563. bottom: 188/2446
  35564. }
  35565. },
  35566. back: {
  35567. height: math.unit(6 + 8/12, "feet"),
  35568. weight: math.unit(225, "lb"),
  35569. name: "Back",
  35570. image: {
  35571. source: "./media/characters/rhys-londe/back.svg",
  35572. extra: 2237/2137,
  35573. bottom: 63/2300
  35574. }
  35575. },
  35576. frontNsfw: {
  35577. height: math.unit(6 + 8/12, "feet"),
  35578. weight: math.unit(225, "lb"),
  35579. name: "Front (NSFW)",
  35580. image: {
  35581. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35582. extra: 2258/2141,
  35583. bottom: 188/2446
  35584. }
  35585. },
  35586. backNsfw: {
  35587. height: math.unit(6 + 8/12, "feet"),
  35588. weight: math.unit(225, "lb"),
  35589. name: "Back (NSFW)",
  35590. image: {
  35591. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35592. extra: 2237/2137,
  35593. bottom: 63/2300
  35594. }
  35595. },
  35596. dick: {
  35597. height: math.unit(30, "inches"),
  35598. name: "Dick",
  35599. image: {
  35600. source: "./media/characters/rhys-londe/dick.svg"
  35601. }
  35602. },
  35603. maw: {
  35604. height: math.unit(1.6, "feet"),
  35605. name: "Maw",
  35606. image: {
  35607. source: "./media/characters/rhys-londe/maw.svg"
  35608. }
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(6 + 8/12, "feet"),
  35615. default: true
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35621. {
  35622. front: {
  35623. height: math.unit(3 + 10/12, "feet"),
  35624. weight: math.unit(90, "lb"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/taivas-ensim/front.svg",
  35628. extra: 1327/1216,
  35629. bottom: 96/1423
  35630. }
  35631. },
  35632. back: {
  35633. height: math.unit(3 + 10/12, "feet"),
  35634. weight: math.unit(90, "lb"),
  35635. name: "Back",
  35636. image: {
  35637. source: "./media/characters/taivas-ensim/back.svg",
  35638. extra: 1355/1247,
  35639. bottom: 11/1366
  35640. }
  35641. },
  35642. frontNsfw: {
  35643. height: math.unit(3 + 10/12, "feet"),
  35644. weight: math.unit(90, "lb"),
  35645. name: "Front (NSFW)",
  35646. image: {
  35647. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35648. extra: 1327/1216,
  35649. bottom: 96/1423
  35650. }
  35651. },
  35652. backNsfw: {
  35653. height: math.unit(3 + 10/12, "feet"),
  35654. weight: math.unit(90, "lb"),
  35655. name: "Back (NSFW)",
  35656. image: {
  35657. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35658. extra: 1355/1247,
  35659. bottom: 11/1366
  35660. }
  35661. },
  35662. },
  35663. [
  35664. {
  35665. name: "Normal",
  35666. height: math.unit(3 + 10/12, "feet"),
  35667. default: true
  35668. },
  35669. ]
  35670. ))
  35671. characterMakers.push(() => makeCharacter(
  35672. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35673. {
  35674. front: {
  35675. height: math.unit(9 + 6/12, "feet"),
  35676. weight: math.unit(940, "lb"),
  35677. name: "Front",
  35678. image: {
  35679. source: "./media/characters/byliss/front.svg",
  35680. extra: 1327/1290,
  35681. bottom: 82/1409
  35682. }
  35683. },
  35684. back: {
  35685. height: math.unit(9 + 6/12, "feet"),
  35686. weight: math.unit(940, "lb"),
  35687. name: "Back",
  35688. image: {
  35689. source: "./media/characters/byliss/back.svg",
  35690. extra: 1376/1349,
  35691. bottom: 9/1385
  35692. }
  35693. },
  35694. frontNsfw: {
  35695. height: math.unit(9 + 6/12, "feet"),
  35696. weight: math.unit(940, "lb"),
  35697. name: "Front (NSFW)",
  35698. image: {
  35699. source: "./media/characters/byliss/front-nsfw.svg",
  35700. extra: 1327/1290,
  35701. bottom: 82/1409
  35702. }
  35703. },
  35704. backNsfw: {
  35705. height: math.unit(9 + 6/12, "feet"),
  35706. weight: math.unit(940, "lb"),
  35707. name: "Back (NSFW)",
  35708. image: {
  35709. source: "./media/characters/byliss/back-nsfw.svg",
  35710. extra: 1376/1349,
  35711. bottom: 9/1385
  35712. }
  35713. },
  35714. },
  35715. [
  35716. {
  35717. name: "Normal",
  35718. height: math.unit(9 + 6/12, "feet"),
  35719. default: true
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35725. {
  35726. front: {
  35727. height: math.unit(5 + 2/12, "feet"),
  35728. weight: math.unit(200, "lb"),
  35729. name: "Front",
  35730. image: {
  35731. source: "./media/characters/noraly/front.svg",
  35732. extra: 4985/4773,
  35733. bottom: 150/5135
  35734. }
  35735. },
  35736. full: {
  35737. height: math.unit(5 + 2/12, "feet"),
  35738. weight: math.unit(164, "lb"),
  35739. name: "Full",
  35740. image: {
  35741. source: "./media/characters/noraly/full.svg",
  35742. extra: 1114/1059,
  35743. bottom: 35/1149
  35744. }
  35745. },
  35746. fuller: {
  35747. height: math.unit(5 + 2/12, "feet"),
  35748. weight: math.unit(230, "lb"),
  35749. name: "Fuller",
  35750. image: {
  35751. source: "./media/characters/noraly/fuller.svg",
  35752. extra: 1114/1059,
  35753. bottom: 35/1149
  35754. }
  35755. },
  35756. fullest: {
  35757. height: math.unit(5 + 2/12, "feet"),
  35758. weight: math.unit(300, "lb"),
  35759. name: "Fullest",
  35760. image: {
  35761. source: "./media/characters/noraly/fullest.svg",
  35762. extra: 1114/1059,
  35763. bottom: 35/1149
  35764. }
  35765. },
  35766. },
  35767. [
  35768. {
  35769. name: "Normal",
  35770. height: math.unit(5 + 2/12, "feet"),
  35771. default: true
  35772. },
  35773. ]
  35774. ))
  35775. characterMakers.push(() => makeCharacter(
  35776. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35777. {
  35778. front: {
  35779. height: math.unit(5 + 2/12, "feet"),
  35780. weight: math.unit(210, "lb"),
  35781. name: "Front",
  35782. image: {
  35783. source: "./media/characters/pera/front.svg",
  35784. extra: 1560/1531,
  35785. bottom: 165/1725
  35786. }
  35787. },
  35788. back: {
  35789. height: math.unit(5 + 2/12, "feet"),
  35790. weight: math.unit(210, "lb"),
  35791. name: "Back",
  35792. image: {
  35793. source: "./media/characters/pera/back.svg",
  35794. extra: 1523/1493,
  35795. bottom: 152/1675
  35796. }
  35797. },
  35798. dick: {
  35799. height: math.unit(2.4, "feet"),
  35800. name: "Dick",
  35801. image: {
  35802. source: "./media/characters/pera/dick.svg"
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(5 + 2/12, "feet"),
  35810. default: true
  35811. },
  35812. ]
  35813. ))
  35814. characterMakers.push(() => makeCharacter(
  35815. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35816. {
  35817. front: {
  35818. height: math.unit(12, "feet"),
  35819. weight: math.unit(3200, "lb"),
  35820. name: "Front",
  35821. image: {
  35822. source: "./media/characters/julian/front.svg",
  35823. extra: 2962/2701,
  35824. bottom: 184/3146
  35825. }
  35826. },
  35827. maw: {
  35828. height: math.unit(5.35, "feet"),
  35829. name: "Maw",
  35830. image: {
  35831. source: "./media/characters/julian/maw.svg"
  35832. }
  35833. },
  35834. paw: {
  35835. height: math.unit(3.07, "feet"),
  35836. name: "Paw",
  35837. image: {
  35838. source: "./media/characters/julian/paw.svg"
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Default",
  35845. height: math.unit(12, "feet"),
  35846. default: true
  35847. },
  35848. {
  35849. name: "Big",
  35850. height: math.unit(50, "feet")
  35851. },
  35852. {
  35853. name: "Really Big",
  35854. height: math.unit(1, "mile")
  35855. },
  35856. {
  35857. name: "Extremely Big",
  35858. height: math.unit(100, "miles")
  35859. },
  35860. {
  35861. name: "Planet Hugger",
  35862. height: math.unit(200, "megameters")
  35863. },
  35864. {
  35865. name: "Unreasonably Big",
  35866. height: math.unit(1e300, "meters")
  35867. },
  35868. ]
  35869. ))
  35870. characterMakers.push(() => makeCharacter(
  35871. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35872. {
  35873. solgooleo: {
  35874. height: math.unit(4, "meters"),
  35875. weight: math.unit(6000*1.5, "kg"),
  35876. volume: math.unit(6000, "liters"),
  35877. name: "Solgooleo",
  35878. image: {
  35879. source: "./media/characters/pi/solgooleo.svg",
  35880. extra: 388/331,
  35881. bottom: 29/417
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(4, "meters"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35895. {
  35896. front: {
  35897. height: math.unit(8, "feet"),
  35898. weight: math.unit(4, "tons"),
  35899. name: "Front",
  35900. image: {
  35901. source: "./media/characters/shaun/front.svg",
  35902. extra: 503/495,
  35903. bottom: 20/523
  35904. }
  35905. },
  35906. back: {
  35907. height: math.unit(8, "feet"),
  35908. weight: math.unit(4, "tons"),
  35909. name: "Back",
  35910. image: {
  35911. source: "./media/characters/shaun/back.svg",
  35912. extra: 487/480,
  35913. bottom: 20/507
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Lorg",
  35920. height: math.unit(8, "feet"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35927. {
  35928. frontAnthro: {
  35929. height: math.unit(7, "feet"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/sini/front-anthro.svg",
  35933. extra: 726/678,
  35934. bottom: 35/761
  35935. },
  35936. form: "anthro",
  35937. default: true
  35938. },
  35939. backAnthro: {
  35940. height: math.unit(7, "feet"),
  35941. name: "Back",
  35942. image: {
  35943. source: "./media/characters/sini/back-anthro.svg",
  35944. extra: 743/701,
  35945. bottom: 12/755
  35946. },
  35947. form: "anthro",
  35948. },
  35949. frontAnthroNsfw: {
  35950. height: math.unit(7, "feet"),
  35951. name: "Front (NSFW)",
  35952. image: {
  35953. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35954. extra: 726/678,
  35955. bottom: 35/761
  35956. },
  35957. form: "anthro"
  35958. },
  35959. backAnthroNsfw: {
  35960. height: math.unit(7, "feet"),
  35961. name: "Back (NSFW)",
  35962. image: {
  35963. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35964. extra: 743/701,
  35965. bottom: 12/755
  35966. },
  35967. form: "anthro",
  35968. },
  35969. mawAnthro: {
  35970. height: math.unit(2.14, "feet"),
  35971. name: "Maw",
  35972. image: {
  35973. source: "./media/characters/sini/maw-anthro.svg"
  35974. },
  35975. form: "anthro"
  35976. },
  35977. dick: {
  35978. height: math.unit(1.45, "feet"),
  35979. name: "Dick",
  35980. image: {
  35981. source: "./media/characters/sini/dick-anthro.svg"
  35982. },
  35983. form: "anthro"
  35984. },
  35985. feral: {
  35986. height: math.unit(16, "feet"),
  35987. name: "Feral",
  35988. image: {
  35989. source: "./media/characters/sini/feral.svg",
  35990. extra: 814/605,
  35991. bottom: 11/825
  35992. },
  35993. form: "feral",
  35994. default: true
  35995. },
  35996. feralNsfw: {
  35997. height: math.unit(16, "feet"),
  35998. name: "Feral (NSFW)",
  35999. image: {
  36000. source: "./media/characters/sini/feral-nsfw.svg",
  36001. extra: 814/605,
  36002. bottom: 11/825
  36003. },
  36004. form: "feral"
  36005. },
  36006. mawFeral: {
  36007. height: math.unit(5.66, "feet"),
  36008. name: "Maw",
  36009. image: {
  36010. source: "./media/characters/sini/maw-feral.svg"
  36011. },
  36012. form: "feral",
  36013. },
  36014. pawFeral: {
  36015. height: math.unit(5.17, "feet"),
  36016. name: "Paw",
  36017. image: {
  36018. source: "./media/characters/sini/paw-feral.svg"
  36019. },
  36020. form: "feral",
  36021. },
  36022. rumpFeral: {
  36023. height: math.unit(13.11, "feet"),
  36024. name: "Rump",
  36025. image: {
  36026. source: "./media/characters/sini/rump-feral.svg"
  36027. },
  36028. form: "feral",
  36029. },
  36030. dickFeral: {
  36031. height: math.unit(1, "feet"),
  36032. name: "Dick",
  36033. image: {
  36034. source: "./media/characters/sini/dick-feral.svg"
  36035. },
  36036. form: "feral",
  36037. },
  36038. eyeFeral: {
  36039. height: math.unit(1.23, "feet"),
  36040. name: "Eye",
  36041. image: {
  36042. source: "./media/characters/sini/eye-feral.svg"
  36043. },
  36044. form: "feral",
  36045. },
  36046. },
  36047. [
  36048. {
  36049. name: "Normal",
  36050. height: math.unit(7, "feet"),
  36051. default: true,
  36052. form: "anthro"
  36053. },
  36054. {
  36055. name: "Normal",
  36056. height: math.unit(16, "feet"),
  36057. default: true,
  36058. form: "feral"
  36059. },
  36060. ],
  36061. {
  36062. "anthro": {
  36063. name: "Anthro",
  36064. default: true
  36065. },
  36066. "feral": {
  36067. name: "Feral",
  36068. }
  36069. }
  36070. ))
  36071. characterMakers.push(() => makeCharacter(
  36072. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36073. {
  36074. side: {
  36075. height: math.unit(47.2, "meters"),
  36076. weight: math.unit(10000, "tons"),
  36077. name: "Side",
  36078. image: {
  36079. source: "./media/characters/raylldo/side.svg",
  36080. extra: 2363/642,
  36081. bottom: 221/2584
  36082. }
  36083. },
  36084. top: {
  36085. height: math.unit(240, "meters"),
  36086. weight: math.unit(10000, "tons"),
  36087. name: "Top",
  36088. image: {
  36089. source: "./media/characters/raylldo/top.svg"
  36090. }
  36091. },
  36092. bottom: {
  36093. height: math.unit(240, "meters"),
  36094. weight: math.unit(10000, "tons"),
  36095. name: "Bottom",
  36096. image: {
  36097. source: "./media/characters/raylldo/bottom.svg"
  36098. }
  36099. },
  36100. head: {
  36101. height: math.unit(38.6, "meters"),
  36102. name: "Head",
  36103. image: {
  36104. source: "./media/characters/raylldo/head.svg",
  36105. extra: 1335/1112,
  36106. bottom: 0/1335
  36107. }
  36108. },
  36109. maw: {
  36110. height: math.unit(16.37, "meters"),
  36111. name: "Maw",
  36112. image: {
  36113. source: "./media/characters/raylldo/maw.svg",
  36114. extra: 883/660,
  36115. bottom: 0/883
  36116. },
  36117. extraAttributes: {
  36118. preyCapacity: {
  36119. name: "Capacity",
  36120. power: 3,
  36121. type: "volume",
  36122. base: math.unit(1000, "people")
  36123. },
  36124. tongueSize: {
  36125. name: "Tongue Size",
  36126. power: 2,
  36127. type: "area",
  36128. base: math.unit(21, "m^2")
  36129. }
  36130. }
  36131. },
  36132. forepaw: {
  36133. height: math.unit(18, "meters"),
  36134. name: "Forepaw",
  36135. image: {
  36136. source: "./media/characters/raylldo/forepaw.svg"
  36137. }
  36138. },
  36139. hindpaw: {
  36140. height: math.unit(23, "meters"),
  36141. name: "Hindpaw",
  36142. image: {
  36143. source: "./media/characters/raylldo/hindpaw.svg"
  36144. }
  36145. },
  36146. genitals: {
  36147. height: math.unit(42, "meters"),
  36148. name: "Genitals",
  36149. image: {
  36150. source: "./media/characters/raylldo/genitals.svg"
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(47.2, "meters"),
  36158. default: true
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36164. {
  36165. anthroFront: {
  36166. height: math.unit(9, "feet"),
  36167. weight: math.unit(600, "lb"),
  36168. name: "Anthro (Front)",
  36169. image: {
  36170. source: "./media/characters/glint/anthro-front.svg",
  36171. extra: 1097/1018,
  36172. bottom: 28/1125
  36173. }
  36174. },
  36175. anthroBack: {
  36176. height: math.unit(9, "feet"),
  36177. weight: math.unit(600, "lb"),
  36178. name: "Anthro (Back)",
  36179. image: {
  36180. source: "./media/characters/glint/anthro-back.svg",
  36181. extra: 1154/997,
  36182. bottom: 36/1190
  36183. }
  36184. },
  36185. feral: {
  36186. height: math.unit(11, "feet"),
  36187. weight: math.unit(50000, "lb"),
  36188. name: "Feral",
  36189. image: {
  36190. source: "./media/characters/glint/feral.svg",
  36191. extra: 3035/1585,
  36192. bottom: 1169/4204
  36193. }
  36194. },
  36195. dickAnthro: {
  36196. height: math.unit(0.7, "meters"),
  36197. name: "Dick (Anthro)",
  36198. image: {
  36199. source: "./media/characters/glint/dick-anthro.svg"
  36200. }
  36201. },
  36202. dickFeral: {
  36203. height: math.unit(2.65, "meters"),
  36204. name: "Dick (Feral)",
  36205. image: {
  36206. source: "./media/characters/glint/dick-feral.svg"
  36207. }
  36208. },
  36209. slitHidden: {
  36210. height: math.unit(5.85, "meters"),
  36211. name: "Slit (Hidden)",
  36212. image: {
  36213. source: "./media/characters/glint/slit-hidden.svg"
  36214. }
  36215. },
  36216. slitErect: {
  36217. height: math.unit(5.85, "meters"),
  36218. name: "Slit (Erect)",
  36219. image: {
  36220. source: "./media/characters/glint/slit-erect.svg"
  36221. }
  36222. },
  36223. mawAnthro: {
  36224. height: math.unit(0.63, "meters"),
  36225. name: "Maw (Anthro)",
  36226. image: {
  36227. source: "./media/characters/glint/maw.svg"
  36228. }
  36229. },
  36230. mawFeral: {
  36231. height: math.unit(2.89, "meters"),
  36232. name: "Maw (Feral)",
  36233. image: {
  36234. source: "./media/characters/glint/maw.svg"
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Normal",
  36241. height: math.unit(9, "feet"),
  36242. default: true
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36248. {
  36249. side: {
  36250. height: math.unit(15, "feet"),
  36251. weight: math.unit(5000, "kg"),
  36252. name: "Side",
  36253. image: {
  36254. source: "./media/characters/kairne/side.svg",
  36255. extra: 979/811,
  36256. bottom: 13/992
  36257. }
  36258. },
  36259. front: {
  36260. height: math.unit(15, "feet"),
  36261. weight: math.unit(5000, "kg"),
  36262. name: "Front",
  36263. image: {
  36264. source: "./media/characters/kairne/front.svg",
  36265. extra: 908/814,
  36266. bottom: 26/934
  36267. }
  36268. },
  36269. sideNsfw: {
  36270. height: math.unit(15, "feet"),
  36271. weight: math.unit(5000, "kg"),
  36272. name: "Side (NSFW)",
  36273. image: {
  36274. source: "./media/characters/kairne/side-nsfw.svg",
  36275. extra: 979/811,
  36276. bottom: 13/992
  36277. }
  36278. },
  36279. frontNsfw: {
  36280. height: math.unit(15, "feet"),
  36281. weight: math.unit(5000, "kg"),
  36282. name: "Front (NSFW)",
  36283. image: {
  36284. source: "./media/characters/kairne/front-nsfw.svg",
  36285. extra: 908/814,
  36286. bottom: 26/934
  36287. }
  36288. },
  36289. dickCaged: {
  36290. height: math.unit(0.65, "meters"),
  36291. name: "Dick-caged",
  36292. image: {
  36293. source: "./media/characters/kairne/dick-caged.svg"
  36294. }
  36295. },
  36296. dick: {
  36297. height: math.unit(0.79, "meters"),
  36298. name: "Dick",
  36299. image: {
  36300. source: "./media/characters/kairne/dick.svg"
  36301. }
  36302. },
  36303. genitals: {
  36304. height: math.unit(1.29, "meters"),
  36305. name: "Genitals",
  36306. image: {
  36307. source: "./media/characters/kairne/genitals.svg"
  36308. }
  36309. },
  36310. maw: {
  36311. height: math.unit(1.73, "meters"),
  36312. name: "Maw",
  36313. image: {
  36314. source: "./media/characters/kairne/maw.svg"
  36315. }
  36316. },
  36317. },
  36318. [
  36319. {
  36320. name: "Normal",
  36321. height: math.unit(15, "feet"),
  36322. default: true
  36323. },
  36324. ]
  36325. ))
  36326. characterMakers.push(() => makeCharacter(
  36327. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36328. {
  36329. front: {
  36330. height: math.unit(5 + 8/12, "feet"),
  36331. weight: math.unit(139, "lb"),
  36332. name: "Front",
  36333. image: {
  36334. source: "./media/characters/biscuit-jackal/front.svg",
  36335. extra: 2106/1961,
  36336. bottom: 58/2164
  36337. }
  36338. },
  36339. back: {
  36340. height: math.unit(5 + 8/12, "feet"),
  36341. weight: math.unit(139, "lb"),
  36342. name: "Back",
  36343. image: {
  36344. source: "./media/characters/biscuit-jackal/back.svg",
  36345. extra: 2132/1976,
  36346. bottom: 57/2189
  36347. }
  36348. },
  36349. werejackal: {
  36350. height: math.unit(6 + 3/12, "feet"),
  36351. weight: math.unit(188, "lb"),
  36352. name: "Werejackal",
  36353. image: {
  36354. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36355. extra: 2373/2178,
  36356. bottom: 53/2426
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(5 + 8/12, "feet"),
  36364. default: true
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(140, "cm"),
  36373. weight: math.unit(45, "kg"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/tayra-white/front.svg",
  36377. extra: 2229/2192,
  36378. bottom: 75/2304
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(140, "cm"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(4 + 5/12, "feet"),
  36395. name: "Front",
  36396. image: {
  36397. source: "./media/characters/scoop/front.svg",
  36398. extra: 1257/1136,
  36399. bottom: 69/1326
  36400. }
  36401. },
  36402. back: {
  36403. height: math.unit(4 + 5/12, "feet"),
  36404. name: "Back",
  36405. image: {
  36406. source: "./media/characters/scoop/back.svg",
  36407. extra: 1321/1152,
  36408. bottom: 32/1353
  36409. }
  36410. },
  36411. maw: {
  36412. height: math.unit(0.68, "feet"),
  36413. name: "Maw",
  36414. image: {
  36415. source: "./media/characters/scoop/maw.svg"
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Really Small",
  36422. height: math.unit(1, "mm")
  36423. },
  36424. {
  36425. name: "Micro",
  36426. height: math.unit(1, "inch")
  36427. },
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(4 + 5/12, "feet"),
  36431. default: true
  36432. },
  36433. {
  36434. name: "Macro",
  36435. height: math.unit(200, "feet")
  36436. },
  36437. {
  36438. name: "Megamacro",
  36439. height: math.unit(3240, "feet")
  36440. },
  36441. {
  36442. name: "Teramacro",
  36443. height: math.unit(2500, "miles")
  36444. },
  36445. ]
  36446. ))
  36447. characterMakers.push(() => makeCharacter(
  36448. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36449. {
  36450. front: {
  36451. height: math.unit(15 + 7/12, "feet"),
  36452. weight: math.unit(1150, "tons"),
  36453. name: "Front",
  36454. image: {
  36455. source: "./media/characters/saphinara/front.svg",
  36456. extra: 1837/1643,
  36457. bottom: 84/1921
  36458. },
  36459. form: "normal",
  36460. default: true
  36461. },
  36462. side: {
  36463. height: math.unit(15 + 7/12, "feet"),
  36464. weight: math.unit(1150, "tons"),
  36465. name: "Side",
  36466. image: {
  36467. source: "./media/characters/saphinara/side.svg",
  36468. extra: 605/547,
  36469. bottom: 6/611
  36470. },
  36471. form: "normal"
  36472. },
  36473. back: {
  36474. height: math.unit(15 + 7/12, "feet"),
  36475. weight: math.unit(1150, "tons"),
  36476. name: "Back",
  36477. image: {
  36478. source: "./media/characters/saphinara/back.svg",
  36479. extra: 591/531,
  36480. bottom: 13/604
  36481. },
  36482. form: "normal"
  36483. },
  36484. frontTail: {
  36485. height: math.unit(15 + 7/12, "feet"),
  36486. weight: math.unit(1150, "tons"),
  36487. name: "Front (Full Tail)",
  36488. image: {
  36489. source: "./media/characters/saphinara/front-tail.svg",
  36490. extra: 2256/1630,
  36491. bottom: 261/2517
  36492. },
  36493. form: "normal"
  36494. },
  36495. insides: {
  36496. height: math.unit(11.92, "feet"),
  36497. name: "Insides",
  36498. image: {
  36499. source: "./media/characters/saphinara/insides.svg"
  36500. },
  36501. form: "normal"
  36502. },
  36503. head: {
  36504. height: math.unit(4.17, "feet"),
  36505. name: "Head",
  36506. image: {
  36507. source: "./media/characters/saphinara/head.svg"
  36508. },
  36509. form: "normal"
  36510. },
  36511. tongue: {
  36512. height: math.unit(4.60, "feet"),
  36513. name: "Tongue",
  36514. image: {
  36515. source: "./media/characters/saphinara/tongue.svg"
  36516. },
  36517. form: "normal"
  36518. },
  36519. headEnraged: {
  36520. height: math.unit(5.55, "feet"),
  36521. name: "Head (Enraged)",
  36522. image: {
  36523. source: "./media/characters/saphinara/head-enraged.svg"
  36524. },
  36525. form: "normal"
  36526. },
  36527. wings: {
  36528. height: math.unit(11.95, "feet"),
  36529. name: "Wings",
  36530. image: {
  36531. source: "./media/characters/saphinara/wings.svg"
  36532. },
  36533. form: "normal"
  36534. },
  36535. feathers: {
  36536. height: math.unit(8.92, "feet"),
  36537. name: "Feathers",
  36538. image: {
  36539. source: "./media/characters/saphinara/feathers.svg"
  36540. },
  36541. form: "normal"
  36542. },
  36543. shackles: {
  36544. height: math.unit(2, "feet"),
  36545. name: "Shackles",
  36546. image: {
  36547. source: "./media/characters/saphinara/shackles.svg"
  36548. },
  36549. form: "normal"
  36550. },
  36551. eyes: {
  36552. height: math.unit(1.331, "feet"),
  36553. name: "Eyes",
  36554. image: {
  36555. source: "./media/characters/saphinara/eyes.svg"
  36556. },
  36557. form: "normal"
  36558. },
  36559. eyesEnraged: {
  36560. height: math.unit(1.331, "feet"),
  36561. name: "Eyes (Enraged)",
  36562. image: {
  36563. source: "./media/characters/saphinara/eyes-enraged.svg"
  36564. },
  36565. form: "normal"
  36566. },
  36567. trueFormSide: {
  36568. height: math.unit(200, "feet"),
  36569. weight: math.unit(1e7, "tons"),
  36570. name: "Side",
  36571. image: {
  36572. source: "./media/characters/saphinara/true-form-side.svg",
  36573. extra: 1399/770,
  36574. bottom: 97/1496
  36575. },
  36576. form: "true-form",
  36577. default: true
  36578. },
  36579. trueFormMaw: {
  36580. height: math.unit(71.5, "feet"),
  36581. name: "Maw",
  36582. image: {
  36583. source: "./media/characters/saphinara/true-form-maw.svg",
  36584. extra: 2302/1453,
  36585. bottom: 0/2302
  36586. },
  36587. form: "true-form"
  36588. },
  36589. meowberusSide: {
  36590. height: math.unit(75, "feet"),
  36591. weight: math.unit(180000, "kg"),
  36592. preyCapacity: math.unit(50000, "people"),
  36593. name: "Side",
  36594. image: {
  36595. source: "./media/characters/saphinara/meowberus-side.svg",
  36596. extra: 1400/711,
  36597. bottom: 126/1526
  36598. },
  36599. form: "meowberus",
  36600. extraAttributes: {
  36601. "pawArea": {
  36602. name: "Paw Size",
  36603. power: 2,
  36604. type: "area",
  36605. base: math.unit(35, "m^2")
  36606. }
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(15 + 7/12, "feet"),
  36614. default: true,
  36615. form: "normal"
  36616. },
  36617. {
  36618. name: "Angry",
  36619. height: math.unit(30 + 6/12, "feet"),
  36620. form: "normal"
  36621. },
  36622. {
  36623. name: "Enraged",
  36624. height: math.unit(102 + 1/12, "feet"),
  36625. form: "normal"
  36626. },
  36627. {
  36628. name: "True",
  36629. height: math.unit(200, "feet"),
  36630. default: true,
  36631. form: "true-form"
  36632. },
  36633. {
  36634. name: "Normal",
  36635. height: math.unit(75, "feet"),
  36636. default: true,
  36637. form: "meowberus"
  36638. },
  36639. ],
  36640. {
  36641. "normal": {
  36642. name: "Normal",
  36643. default: true
  36644. },
  36645. "true-form": {
  36646. name: "True Form"
  36647. },
  36648. "meowberus": {
  36649. name: "Meowberus",
  36650. },
  36651. }
  36652. ))
  36653. characterMakers.push(() => makeCharacter(
  36654. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36655. {
  36656. front: {
  36657. height: math.unit(6 + 8/12, "feet"),
  36658. weight: math.unit(300, "lb"),
  36659. name: "Front",
  36660. image: {
  36661. source: "./media/characters/jrain/front.svg",
  36662. extra: 3039/2865,
  36663. bottom: 399/3438
  36664. }
  36665. },
  36666. back: {
  36667. height: math.unit(6 + 8/12, "feet"),
  36668. weight: math.unit(300, "lb"),
  36669. name: "Back",
  36670. image: {
  36671. source: "./media/characters/jrain/back.svg",
  36672. extra: 3089/2938,
  36673. bottom: 172/3261
  36674. }
  36675. },
  36676. head: {
  36677. height: math.unit(2.14, "feet"),
  36678. name: "Head",
  36679. image: {
  36680. source: "./media/characters/jrain/head.svg"
  36681. }
  36682. },
  36683. maw: {
  36684. height: math.unit(1.77, "feet"),
  36685. name: "Maw",
  36686. image: {
  36687. source: "./media/characters/jrain/maw.svg"
  36688. }
  36689. },
  36690. leftHand: {
  36691. height: math.unit(1.1, "feet"),
  36692. name: "Left Hand",
  36693. image: {
  36694. source: "./media/characters/jrain/left-hand.svg"
  36695. }
  36696. },
  36697. rightHand: {
  36698. height: math.unit(1.1, "feet"),
  36699. name: "Right Hand",
  36700. image: {
  36701. source: "./media/characters/jrain/right-hand.svg"
  36702. }
  36703. },
  36704. eye: {
  36705. height: math.unit(0.35, "feet"),
  36706. name: "Eye",
  36707. image: {
  36708. source: "./media/characters/jrain/eye.svg"
  36709. }
  36710. },
  36711. },
  36712. [
  36713. {
  36714. name: "Normal",
  36715. height: math.unit(6 + 8/12, "feet"),
  36716. default: true
  36717. },
  36718. {
  36719. name: "Casually Large",
  36720. height: math.unit(25, "feet")
  36721. },
  36722. {
  36723. name: "Giant",
  36724. height: math.unit(100, "feet")
  36725. },
  36726. {
  36727. name: "Kaiju",
  36728. height: math.unit(300, "feet")
  36729. },
  36730. ]
  36731. ))
  36732. characterMakers.push(() => makeCharacter(
  36733. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36734. {
  36735. dragon: {
  36736. height: math.unit(5, "meters"),
  36737. name: "Dragon",
  36738. image: {
  36739. source: "./media/characters/sabrina/dragon.svg",
  36740. extra: 3670 / 2365,
  36741. bottom: 333 / 4003
  36742. }
  36743. },
  36744. gryphon: {
  36745. height: math.unit(3, "meters"),
  36746. name: "Gryphon",
  36747. image: {
  36748. source: "./media/characters/sabrina/gryphon.svg",
  36749. extra: 1576 / 945,
  36750. bottom: 71 / 1647
  36751. }
  36752. },
  36753. snake: {
  36754. height: math.unit(12, "meters"),
  36755. name: "Snake",
  36756. image: {
  36757. source: "./media/characters/sabrina/snake.svg",
  36758. extra: 1758 / 1320,
  36759. bottom: 186 / 1944
  36760. }
  36761. },
  36762. collar: {
  36763. height: math.unit(1.86, "meters"),
  36764. name: "Collar",
  36765. image: {
  36766. source: "./media/characters/sabrina/collar.svg"
  36767. }
  36768. },
  36769. eye: {
  36770. height: math.unit(0.53, "meters"),
  36771. name: "Eye",
  36772. image: {
  36773. source: "./media/characters/sabrina/eye.svg"
  36774. }
  36775. },
  36776. foot: {
  36777. height: math.unit(1.86, "meters"),
  36778. name: "Foot",
  36779. image: {
  36780. source: "./media/characters/sabrina/foot.svg"
  36781. }
  36782. },
  36783. hand: {
  36784. height: math.unit(1.32, "meters"),
  36785. name: "Hand",
  36786. image: {
  36787. source: "./media/characters/sabrina/hand.svg"
  36788. }
  36789. },
  36790. head: {
  36791. height: math.unit(2.44, "meters"),
  36792. name: "Head",
  36793. image: {
  36794. source: "./media/characters/sabrina/head.svg"
  36795. }
  36796. },
  36797. headAngry: {
  36798. height: math.unit(2.44, "meters"),
  36799. name: "Head (Angry))",
  36800. image: {
  36801. source: "./media/characters/sabrina/head-angry.svg"
  36802. }
  36803. },
  36804. maw: {
  36805. height: math.unit(1.65, "meters"),
  36806. name: "Maw",
  36807. image: {
  36808. source: "./media/characters/sabrina/maw.svg"
  36809. }
  36810. },
  36811. spikes: {
  36812. height: math.unit(1.69, "meters"),
  36813. name: "Spikes",
  36814. image: {
  36815. source: "./media/characters/sabrina/spikes.svg"
  36816. }
  36817. },
  36818. stomach: {
  36819. height: math.unit(1.15, "meters"),
  36820. name: "Stomach",
  36821. image: {
  36822. source: "./media/characters/sabrina/stomach.svg"
  36823. }
  36824. },
  36825. tongue: {
  36826. height: math.unit(1.27, "meters"),
  36827. name: "Tongue",
  36828. image: {
  36829. source: "./media/characters/sabrina/tongue.svg"
  36830. }
  36831. },
  36832. wingDorsal: {
  36833. height: math.unit(4.85, "meters"),
  36834. name: "Wing (Dorsal)",
  36835. image: {
  36836. source: "./media/characters/sabrina/wing-dorsal.svg"
  36837. }
  36838. },
  36839. wingVentral: {
  36840. height: math.unit(4.85, "meters"),
  36841. name: "Wing (Ventral)",
  36842. image: {
  36843. source: "./media/characters/sabrina/wing-ventral.svg"
  36844. }
  36845. },
  36846. },
  36847. [
  36848. {
  36849. name: "Normal",
  36850. height: math.unit(5, "meters"),
  36851. default: true
  36852. },
  36853. ]
  36854. ))
  36855. characterMakers.push(() => makeCharacter(
  36856. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36857. {
  36858. frontMaid: {
  36859. height: math.unit(5 + 5/12, "feet"),
  36860. weight: math.unit(130, "lb"),
  36861. name: "Front (Maid)",
  36862. image: {
  36863. source: "./media/characters/midnight-tales/front-maid.svg",
  36864. extra: 489/454,
  36865. bottom: 61/550
  36866. }
  36867. },
  36868. frontFormal: {
  36869. height: math.unit(5 + 5/12, "feet"),
  36870. weight: math.unit(130, "lb"),
  36871. name: "Front (Formal)",
  36872. image: {
  36873. source: "./media/characters/midnight-tales/front-formal.svg",
  36874. extra: 489/454,
  36875. bottom: 61/550
  36876. }
  36877. },
  36878. back: {
  36879. height: math.unit(5 + 5/12, "feet"),
  36880. weight: math.unit(130, "lb"),
  36881. name: "Back",
  36882. image: {
  36883. source: "./media/characters/midnight-tales/back.svg",
  36884. extra: 498/456,
  36885. bottom: 33/531
  36886. }
  36887. },
  36888. frontBeast: {
  36889. height: math.unit(40, "feet"),
  36890. weight: math.unit(64000, "lb"),
  36891. name: "Front (Beast)",
  36892. image: {
  36893. source: "./media/characters/midnight-tales/front-beast.svg",
  36894. extra: 927/860,
  36895. bottom: 53/980
  36896. }
  36897. },
  36898. backBeast: {
  36899. height: math.unit(40, "feet"),
  36900. weight: math.unit(64000, "lb"),
  36901. name: "Back (Beast)",
  36902. image: {
  36903. source: "./media/characters/midnight-tales/back-beast.svg",
  36904. extra: 929/855,
  36905. bottom: 16/945
  36906. }
  36907. },
  36908. footBeast: {
  36909. height: math.unit(6.7, "feet"),
  36910. name: "Foot (Beast)",
  36911. image: {
  36912. source: "./media/characters/midnight-tales/foot-beast.svg"
  36913. }
  36914. },
  36915. headBeast: {
  36916. height: math.unit(8, "feet"),
  36917. name: "Head (Beast)",
  36918. image: {
  36919. source: "./media/characters/midnight-tales/head-beast.svg"
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(5 + 5 / 12, "feet"),
  36927. default: true
  36928. },
  36929. {
  36930. name: "Macro",
  36931. height: math.unit(25, "feet")
  36932. },
  36933. ]
  36934. ))
  36935. characterMakers.push(() => makeCharacter(
  36936. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36937. {
  36938. front: {
  36939. height: math.unit(6 + 2/12, "feet"),
  36940. weight: math.unit(115, "kg"),
  36941. preyCapacity: math.unit(3, "people"),
  36942. name: "Front",
  36943. image: {
  36944. source: "./media/characters/argon/front.svg",
  36945. extra: 2009/1935,
  36946. bottom: 118/2127
  36947. },
  36948. extraAttributes: {
  36949. "tailLength": {
  36950. name: "Tail Length",
  36951. power: 1,
  36952. type: "length",
  36953. base: math.unit(6, "feet")
  36954. },
  36955. "tailWeight": {
  36956. name: "Tail Weight",
  36957. power: 3,
  36958. type: "mass",
  36959. base: math.unit(40, "kg")
  36960. },
  36961. }
  36962. },
  36963. back: {
  36964. height: math.unit(6 + 2/12, "feet"),
  36965. weight: math.unit(115, "kg"),
  36966. preyCapacity: math.unit(3, "people"),
  36967. name: "Back",
  36968. image: {
  36969. source: "./media/characters/argon/back.svg",
  36970. extra: 2047/1992,
  36971. bottom: 20/2067
  36972. },
  36973. extraAttributes: {
  36974. "tailLength": {
  36975. name: "Tail Length",
  36976. power: 1,
  36977. type: "length",
  36978. base: math.unit(6, "feet")
  36979. },
  36980. "tailWeight": {
  36981. name: "Tail Weight",
  36982. power: 3,
  36983. type: "mass",
  36984. base: math.unit(40, "kg")
  36985. },
  36986. }
  36987. },
  36988. frontDressed: {
  36989. height: math.unit(6 + 2/12, "feet"),
  36990. weight: math.unit(115, "kg"),
  36991. preyCapacity: math.unit(3, "people"),
  36992. name: "Front (Dressed)",
  36993. image: {
  36994. source: "./media/characters/argon/front-dressed.svg",
  36995. extra: 2009/1935,
  36996. bottom: 118/2127
  36997. },
  36998. extraAttributes: {
  36999. "tailLength": {
  37000. name: "Tail Length",
  37001. power: 1,
  37002. type: "length",
  37003. base: math.unit(6, "feet")
  37004. },
  37005. "tailWeight": {
  37006. name: "Tail Weight",
  37007. power: 3,
  37008. type: "mass",
  37009. base: math.unit(40, "kg")
  37010. },
  37011. }
  37012. },
  37013. },
  37014. [
  37015. {
  37016. name: "Minimum",
  37017. height: math.unit(2 + 8/12, "feet")
  37018. },
  37019. {
  37020. name: "Normal",
  37021. height: math.unit(6 + 2/12, "feet"),
  37022. default: true
  37023. },
  37024. {
  37025. name: "Maximum",
  37026. height: math.unit(20, "feet")
  37027. },
  37028. ]
  37029. ))
  37030. characterMakers.push(() => makeCharacter(
  37031. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37032. {
  37033. front: {
  37034. height: math.unit(8 + 6/12, "feet"),
  37035. weight: math.unit(1150, "lb"),
  37036. name: "Front",
  37037. image: {
  37038. source: "./media/characters/kichi/front.svg",
  37039. extra: 1267/1164,
  37040. bottom: 61/1328
  37041. }
  37042. },
  37043. back: {
  37044. height: math.unit(8 + 6/12, "feet"),
  37045. weight: math.unit(1150, "lb"),
  37046. name: "Back",
  37047. image: {
  37048. source: "./media/characters/kichi/back.svg",
  37049. extra: 1273/1166,
  37050. bottom: 33/1306
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(8 + 6/12, "feet"),
  37058. default: true
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  37064. {
  37065. front: {
  37066. height: math.unit(6, "feet"),
  37067. weight: math.unit(210, "lb"),
  37068. name: "Front",
  37069. image: {
  37070. source: "./media/characters/manetel-greyscale/front.svg",
  37071. extra: 350/312,
  37072. bottom: 8/358
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Micro",
  37079. height: math.unit(2, "inches")
  37080. },
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(6, "feet"),
  37084. default: true
  37085. },
  37086. {
  37087. name: "Minimacro",
  37088. height: math.unit(17, "feet")
  37089. },
  37090. {
  37091. name: "Macro",
  37092. height: math.unit(117, "feet")
  37093. },
  37094. ]
  37095. ))
  37096. characterMakers.push(() => makeCharacter(
  37097. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37098. {
  37099. side: {
  37100. height: math.unit(5 + 1/12, "feet"),
  37101. weight: math.unit(418, "lb"),
  37102. name: "Side",
  37103. image: {
  37104. source: "./media/characters/softpurr/side.svg",
  37105. extra: 1993/1945,
  37106. bottom: 134/2127
  37107. }
  37108. },
  37109. front: {
  37110. height: math.unit(5 + 1/12, "feet"),
  37111. weight: math.unit(418, "lb"),
  37112. name: "Front",
  37113. image: {
  37114. source: "./media/characters/softpurr/front.svg",
  37115. extra: 1950/1856,
  37116. bottom: 174/2124
  37117. }
  37118. },
  37119. paw: {
  37120. height: math.unit(1, "feet"),
  37121. name: "Paw",
  37122. image: {
  37123. source: "./media/characters/softpurr/paw.svg"
  37124. }
  37125. },
  37126. },
  37127. [
  37128. {
  37129. name: "Normal",
  37130. height: math.unit(5 + 1/12, "feet"),
  37131. default: true
  37132. },
  37133. ]
  37134. ))
  37135. characterMakers.push(() => makeCharacter(
  37136. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  37137. {
  37138. front: {
  37139. height: math.unit(260, "meters"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/anahita/front.svg",
  37143. extra: 665/635,
  37144. bottom: 89/754
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Macro",
  37151. height: math.unit(260, "meters"),
  37152. default: true
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37158. {
  37159. front: {
  37160. height: math.unit(4 + 10/12, "feet"),
  37161. weight: math.unit(160, "lb"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/chip-mouse/front.svg",
  37165. extra: 3528/3408,
  37166. bottom: 0/3528
  37167. }
  37168. },
  37169. frontNsfw: {
  37170. height: math.unit(4 + 10/12, "feet"),
  37171. weight: math.unit(160, "lb"),
  37172. name: "Front (NSFW)",
  37173. image: {
  37174. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37175. extra: 3528/3408,
  37176. bottom: 0/3528
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(4 + 10/12, "feet"),
  37184. default: true
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37190. {
  37191. side: {
  37192. height: math.unit(10, "feet"),
  37193. weight: math.unit(14000, "lb"),
  37194. name: "Side",
  37195. image: {
  37196. source: "./media/characters/kremm/side.svg",
  37197. extra: 1390/1053,
  37198. bottom: 90/1480
  37199. }
  37200. },
  37201. gut: {
  37202. height: math.unit(5.8, "feet"),
  37203. name: "Gut",
  37204. image: {
  37205. source: "./media/characters/kremm/gut.svg"
  37206. }
  37207. },
  37208. ass: {
  37209. height: math.unit(6.1, "feet"),
  37210. name: "Ass",
  37211. image: {
  37212. source: "./media/characters/kremm/ass.svg"
  37213. }
  37214. },
  37215. jaws: {
  37216. height: math.unit(2.2, "feet"),
  37217. name: "Jaws",
  37218. image: {
  37219. source: "./media/characters/kremm/jaws.svg"
  37220. }
  37221. },
  37222. dick: {
  37223. height: math.unit(4.26, "feet"),
  37224. name: "Dick",
  37225. image: {
  37226. source: "./media/characters/kremm/dick.svg"
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Normal",
  37233. height: math.unit(10, "feet"),
  37234. default: true
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37240. {
  37241. front: {
  37242. height: math.unit(30, "stories"),
  37243. name: "Front",
  37244. image: {
  37245. source: "./media/characters/kai/front.svg",
  37246. extra: 1892/1718,
  37247. bottom: 162/2054
  37248. }
  37249. },
  37250. },
  37251. [
  37252. {
  37253. name: "Macro",
  37254. height: math.unit(30, "stories"),
  37255. default: true
  37256. },
  37257. ]
  37258. ))
  37259. characterMakers.push(() => makeCharacter(
  37260. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37261. {
  37262. front: {
  37263. height: math.unit(6 + 4/12, "feet"),
  37264. weight: math.unit(145, "lb"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/sykes/front.svg",
  37268. extra: 1321 / 1187,
  37269. bottom: 66 / 1387
  37270. }
  37271. },
  37272. back: {
  37273. height: math.unit(6 + 4/12, "feet"),
  37274. weight: math.unit(145, "lb"),
  37275. name: "Back",
  37276. image: {
  37277. source: "./media/characters/sykes/back.svg",
  37278. extra: 1326/1181,
  37279. bottom: 31/1357
  37280. }
  37281. },
  37282. traditionalOutfit: {
  37283. height: math.unit(6 + 4/12, "feet"),
  37284. weight: math.unit(145, "lb"),
  37285. name: "Traditional Outfit",
  37286. image: {
  37287. source: "./media/characters/sykes/traditional-outfit.svg",
  37288. extra: 1321 / 1187,
  37289. bottom: 66 / 1387
  37290. }
  37291. },
  37292. adventureOutfit: {
  37293. height: math.unit(6 + 4/12, "feet"),
  37294. weight: math.unit(145, "lb"),
  37295. name: "Adventure Outfit",
  37296. image: {
  37297. source: "./media/characters/sykes/adventure-outfit.svg",
  37298. extra: 1321 / 1187,
  37299. bottom: 66 / 1387
  37300. }
  37301. },
  37302. handLeft: {
  37303. height: math.unit(0.9, "feet"),
  37304. name: "Hand (Left)",
  37305. image: {
  37306. source: "./media/characters/sykes/hand-left.svg"
  37307. }
  37308. },
  37309. handRight: {
  37310. height: math.unit(0.839, "feet"),
  37311. name: "Hand (Right)",
  37312. image: {
  37313. source: "./media/characters/sykes/hand-right.svg"
  37314. }
  37315. },
  37316. leftFoot: {
  37317. height: math.unit(1.2, "feet"),
  37318. name: "Foot (Left)",
  37319. image: {
  37320. source: "./media/characters/sykes/foot-left.svg"
  37321. }
  37322. },
  37323. rightFoot: {
  37324. height: math.unit(1.2, "feet"),
  37325. name: "Foot (Right)",
  37326. image: {
  37327. source: "./media/characters/sykes/foot-right.svg"
  37328. }
  37329. },
  37330. maw: {
  37331. height: math.unit(1.93, "feet"),
  37332. name: "Maw",
  37333. image: {
  37334. source: "./media/characters/sykes/maw.svg"
  37335. }
  37336. },
  37337. teeth: {
  37338. height: math.unit(0.51, "feet"),
  37339. name: "Teeth",
  37340. image: {
  37341. source: "./media/characters/sykes/teeth.svg"
  37342. }
  37343. },
  37344. tongue: {
  37345. height: math.unit(2.13, "feet"),
  37346. name: "Tongue",
  37347. image: {
  37348. source: "./media/characters/sykes/tongue.svg"
  37349. }
  37350. },
  37351. uvula: {
  37352. height: math.unit(0.16, "feet"),
  37353. name: "Uvula",
  37354. image: {
  37355. source: "./media/characters/sykes/uvula.svg"
  37356. }
  37357. },
  37358. collar: {
  37359. height: math.unit(0.287, "feet"),
  37360. name: "Collar",
  37361. image: {
  37362. source: "./media/characters/sykes/collar.svg"
  37363. }
  37364. },
  37365. tail: {
  37366. height: math.unit(3.8, "feet"),
  37367. name: "Tail",
  37368. image: {
  37369. source: "./media/characters/sykes/tail.svg"
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Shrunken",
  37376. height: math.unit(5, "inches")
  37377. },
  37378. {
  37379. name: "Normal",
  37380. height: math.unit(6 + 4 / 12, "feet"),
  37381. default: true
  37382. },
  37383. {
  37384. name: "Big",
  37385. height: math.unit(15, "feet")
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37391. {
  37392. front: {
  37393. height: math.unit(5 + 8/12, "feet"),
  37394. weight: math.unit(190, "lb"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/oven-otter/front.svg",
  37398. extra: 1809/1740,
  37399. bottom: 181/1990
  37400. }
  37401. },
  37402. back: {
  37403. height: math.unit(5 + 8/12, "feet"),
  37404. weight: math.unit(190, "lb"),
  37405. name: "Back",
  37406. image: {
  37407. source: "./media/characters/oven-otter/back.svg",
  37408. extra: 1709/1635,
  37409. bottom: 118/1827
  37410. }
  37411. },
  37412. hand: {
  37413. height: math.unit(1.07, "feet"),
  37414. name: "Hand",
  37415. image: {
  37416. source: "./media/characters/oven-otter/hand.svg"
  37417. }
  37418. },
  37419. beans: {
  37420. height: math.unit(1.74, "feet"),
  37421. name: "Beans",
  37422. image: {
  37423. source: "./media/characters/oven-otter/beans.svg"
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Micro",
  37430. height: math.unit(0.5, "inches")
  37431. },
  37432. {
  37433. name: "Normal",
  37434. height: math.unit(5 + 8/12, "feet"),
  37435. default: true
  37436. },
  37437. {
  37438. name: "Macro",
  37439. height: math.unit(250, "feet")
  37440. },
  37441. {
  37442. name: "Really High",
  37443. height: math.unit(420, "feet")
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37449. {
  37450. front: {
  37451. height: math.unit(5, "meters"),
  37452. weight: math.unit(292000000000000, "kg"),
  37453. name: "Front",
  37454. image: {
  37455. source: "./media/characters/devourer/front.svg",
  37456. extra: 1800/1733,
  37457. bottom: 211/2011
  37458. }
  37459. },
  37460. maw: {
  37461. height: math.unit(1.1, "meter"),
  37462. name: "Maw",
  37463. image: {
  37464. source: "./media/characters/devourer/maw.svg"
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Small",
  37471. height: math.unit(3, "meters")
  37472. },
  37473. {
  37474. name: "Large",
  37475. height: math.unit(5, "meters"),
  37476. default: true
  37477. },
  37478. ]
  37479. ))
  37480. characterMakers.push(() => makeCharacter(
  37481. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37482. {
  37483. front: {
  37484. height: math.unit(6, "feet"),
  37485. weight: math.unit(400, "lb"),
  37486. name: "Front",
  37487. image: {
  37488. source: "./media/characters/ellarby/front.svg",
  37489. extra: 1909/1763,
  37490. bottom: 80/1989
  37491. }
  37492. },
  37493. back: {
  37494. height: math.unit(6, "feet"),
  37495. weight: math.unit(400, "lb"),
  37496. name: "Back",
  37497. image: {
  37498. source: "./media/characters/ellarby/back.svg",
  37499. extra: 1914/1784,
  37500. bottom: 172/2086
  37501. }
  37502. },
  37503. },
  37504. [
  37505. {
  37506. name: "Mischief",
  37507. height: math.unit(18, "inches")
  37508. },
  37509. {
  37510. name: "Trouble",
  37511. height: math.unit(12, "feet")
  37512. },
  37513. {
  37514. name: "Havoc",
  37515. height: math.unit(200, "feet"),
  37516. default: true
  37517. },
  37518. {
  37519. name: "Pandemonium",
  37520. height: math.unit(1, "mile")
  37521. },
  37522. {
  37523. name: "Catastrophe",
  37524. height: math.unit(100, "miles")
  37525. },
  37526. ]
  37527. ))
  37528. characterMakers.push(() => makeCharacter(
  37529. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37530. {
  37531. front: {
  37532. height: math.unit(4.7, "meters"),
  37533. weight: math.unit(6500, "kg"),
  37534. name: "Front",
  37535. image: {
  37536. source: "./media/characters/vex/front.svg",
  37537. extra: 1288/1140,
  37538. bottom: 100/1388
  37539. }
  37540. },
  37541. },
  37542. [
  37543. {
  37544. name: "Normal",
  37545. height: math.unit(4.7, "meters"),
  37546. default: true
  37547. },
  37548. ]
  37549. ))
  37550. characterMakers.push(() => makeCharacter(
  37551. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37552. {
  37553. normal: {
  37554. height: math.unit(6, "feet"),
  37555. weight: math.unit(350, "lb"),
  37556. name: "Normal",
  37557. image: {
  37558. source: "./media/characters/teshy/normal.svg",
  37559. extra: 1795/1735,
  37560. bottom: 16/1811
  37561. }
  37562. },
  37563. monsterFront: {
  37564. height: math.unit(12, "feet"),
  37565. weight: math.unit(4700, "lb"),
  37566. name: "Monster (Front)",
  37567. image: {
  37568. source: "./media/characters/teshy/monster-front.svg",
  37569. extra: 2042/2034,
  37570. bottom: 128/2170
  37571. }
  37572. },
  37573. monsterSide: {
  37574. height: math.unit(12, "feet"),
  37575. weight: math.unit(4700, "lb"),
  37576. name: "Monster (Side)",
  37577. image: {
  37578. source: "./media/characters/teshy/monster-side.svg",
  37579. extra: 2067/2056,
  37580. bottom: 70/2137
  37581. }
  37582. },
  37583. monsterBack: {
  37584. height: math.unit(12, "feet"),
  37585. weight: math.unit(4700, "lb"),
  37586. name: "Monster (Back)",
  37587. image: {
  37588. source: "./media/characters/teshy/monster-back.svg",
  37589. extra: 1921/1914,
  37590. bottom: 171/2092
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(6, "feet"),
  37598. default: true
  37599. },
  37600. ]
  37601. ))
  37602. characterMakers.push(() => makeCharacter(
  37603. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37604. {
  37605. front: {
  37606. height: math.unit(6, "feet"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/ramey/front.svg",
  37610. extra: 790/787,
  37611. bottom: 27/817
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(6, "feet"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(5 + 5/12, "feet"),
  37628. weight: math.unit(120, "lb"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/phirae/front.svg",
  37632. extra: 2491/2436,
  37633. bottom: 38/2529
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(5 + 5/12, "feet"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37647. {
  37648. front: {
  37649. height: math.unit(5 + 3/12, "feet"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/stagglas/front.svg",
  37653. extra: 962/882,
  37654. bottom: 53/1015
  37655. }
  37656. },
  37657. feral: {
  37658. height: math.unit(335, "cm"),
  37659. name: "Feral",
  37660. image: {
  37661. source: "./media/characters/stagglas/feral.svg",
  37662. extra: 1732/1090,
  37663. bottom: 48/1780
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(5 + 3/12, "feet"),
  37671. default: true
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(5 + 4/12, "feet"),
  37680. weight: math.unit(145, "lb"),
  37681. name: "Front",
  37682. image: {
  37683. source: "./media/characters/starra/front.svg",
  37684. extra: 1790/1691,
  37685. bottom: 91/1881
  37686. }
  37687. },
  37688. },
  37689. [
  37690. {
  37691. name: "Normal",
  37692. height: math.unit(5 + 4/12, "feet"),
  37693. default: true
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(3.5, "meters"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37705. extra: 1248/972,
  37706. bottom: 38/1286
  37707. }
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(3.5, "meters"),
  37714. default: true
  37715. },
  37716. ]
  37717. ))
  37718. characterMakers.push(() => makeCharacter(
  37719. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37720. {
  37721. side: {
  37722. height: math.unit(8 + 2/12, "feet"),
  37723. weight: math.unit(1240, "lb"),
  37724. name: "Side",
  37725. image: {
  37726. source: "./media/characters/mika-valentine/side.svg",
  37727. extra: 2670/2501,
  37728. bottom: 250/2920
  37729. }
  37730. },
  37731. },
  37732. [
  37733. {
  37734. name: "Normal",
  37735. height: math.unit(8 + 2/12, "feet"),
  37736. default: true
  37737. },
  37738. ]
  37739. ))
  37740. characterMakers.push(() => makeCharacter(
  37741. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37742. {
  37743. front: {
  37744. height: math.unit(7 + 2/12, "feet"),
  37745. name: "Front",
  37746. image: {
  37747. source: "./media/characters/xoltol/front.svg",
  37748. extra: 2212/2124,
  37749. bottom: 84/2296
  37750. }
  37751. },
  37752. side: {
  37753. height: math.unit(7 + 2/12, "feet"),
  37754. name: "Side",
  37755. image: {
  37756. source: "./media/characters/xoltol/side.svg",
  37757. extra: 2273/2197,
  37758. bottom: 26/2299
  37759. }
  37760. },
  37761. hand: {
  37762. height: math.unit(2.5, "feet"),
  37763. name: "Hand",
  37764. image: {
  37765. source: "./media/characters/xoltol/hand.svg"
  37766. }
  37767. },
  37768. },
  37769. [
  37770. {
  37771. name: "Small-ish",
  37772. height: math.unit(5 + 11/12, "feet")
  37773. },
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(7 + 2/12, "feet")
  37777. },
  37778. {
  37779. name: "\"Macro\"",
  37780. height: math.unit(14 + 9/12, "feet"),
  37781. default: true
  37782. },
  37783. {
  37784. name: "Alternate Height",
  37785. height: math.unit(20, "feet")
  37786. },
  37787. {
  37788. name: "Actually Macro",
  37789. height: math.unit(100, "feet")
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37795. {
  37796. front: {
  37797. height: math.unit(5 + 2/12, "feet"),
  37798. weight: math.unit(75, "kg"),
  37799. name: "Front",
  37800. image: {
  37801. source: "./media/characters/kotetsu-redwood/front.svg",
  37802. extra: 1053/942,
  37803. bottom: 60/1113
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Normal",
  37810. height: math.unit(5 + 2/12, "feet"),
  37811. default: true
  37812. },
  37813. ]
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(2.4, "meters"),
  37820. weight: math.unit(125, "kg"),
  37821. name: "Front",
  37822. image: {
  37823. source: "./media/characters/lilith/front.svg",
  37824. extra: 1590/1513,
  37825. bottom: 203/1793
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Humanoid",
  37832. height: math.unit(2.4, "meters")
  37833. },
  37834. {
  37835. name: "Normal",
  37836. height: math.unit(6, "meters"),
  37837. default: true
  37838. },
  37839. {
  37840. name: "Largest",
  37841. height: math.unit(55, "meters")
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37847. {
  37848. front: {
  37849. height: math.unit(8 + 4/12, "feet"),
  37850. weight: math.unit(535, "lb"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/beh'kah-bolger/front.svg",
  37854. extra: 1660/1603,
  37855. bottom: 37/1697
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(8 + 4/12, "feet"),
  37863. default: true
  37864. },
  37865. {
  37866. name: "Kaiju",
  37867. height: math.unit(250, "feet")
  37868. },
  37869. {
  37870. name: "Still Growing",
  37871. height: math.unit(10, "miles")
  37872. },
  37873. {
  37874. name: "Continental",
  37875. height: math.unit(5000, "miles")
  37876. },
  37877. {
  37878. name: "Final Form",
  37879. height: math.unit(2500000, "miles")
  37880. },
  37881. ]
  37882. ))
  37883. characterMakers.push(() => makeCharacter(
  37884. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37885. {
  37886. front: {
  37887. height: math.unit(7 + 2/12, "feet"),
  37888. weight: math.unit(230, "kg"),
  37889. name: "Front",
  37890. image: {
  37891. source: "./media/characters/tatyana-milewska/front.svg",
  37892. extra: 1199/1150,
  37893. bottom: 86/1285
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(7 + 2/12, "feet"),
  37901. default: true
  37902. },
  37903. {
  37904. name: "Big",
  37905. height: math.unit(12, "feet")
  37906. },
  37907. {
  37908. name: "Minimacro",
  37909. height: math.unit(20, "feet")
  37910. },
  37911. {
  37912. name: "Macro",
  37913. height: math.unit(120, "feet")
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(7 + 8/12, "feet"),
  37922. weight: math.unit(152, "kg"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/helen-arri/front.svg",
  37926. extra: 440/423,
  37927. bottom: 14/454
  37928. }
  37929. },
  37930. back: {
  37931. height: math.unit(7 + 8/12, "feet"),
  37932. weight: math.unit(152, "kg"),
  37933. name: "Back",
  37934. image: {
  37935. source: "./media/characters/helen-arri/back.svg",
  37936. extra: 443/426,
  37937. bottom: 8/451
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(7 + 8/12, "feet"),
  37945. default: true
  37946. },
  37947. {
  37948. name: "Big",
  37949. height: math.unit(14, "feet")
  37950. },
  37951. {
  37952. name: "Minimacro",
  37953. height: math.unit(24, "feet")
  37954. },
  37955. {
  37956. name: "Macro",
  37957. height: math.unit(140, "feet")
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(6, "meters"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/ehanu-rehu/front.svg",
  37969. extra: 1800/1800,
  37970. bottom: 59/1859
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(6, "meters"),
  37978. default: true
  37979. },
  37980. ]
  37981. ))
  37982. characterMakers.push(() => makeCharacter(
  37983. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37984. {
  37985. front: {
  37986. height: math.unit(7 + 3/12, "feet"),
  37987. name: "Front",
  37988. image: {
  37989. source: "./media/characters/renholder/front.svg",
  37990. extra: 3096/2960,
  37991. bottom: 250/3346
  37992. }
  37993. },
  37994. },
  37995. [
  37996. {
  37997. name: "Normal Bat",
  37998. height: math.unit(7 + 3/12, "feet"),
  37999. default: true
  38000. },
  38001. {
  38002. name: "Slightly Tall Bat",
  38003. height: math.unit(100, "feet")
  38004. },
  38005. {
  38006. name: "Big Bat",
  38007. height: math.unit(1000, "feet")
  38008. },
  38009. {
  38010. name: "City-Sized Bat",
  38011. height: math.unit(200000, "feet")
  38012. },
  38013. {
  38014. name: "Bigger Bat",
  38015. height: math.unit(10000, "miles")
  38016. },
  38017. {
  38018. name: "Solar Sized Bat",
  38019. height: math.unit(100, "AU")
  38020. },
  38021. {
  38022. name: "Galactic Bat",
  38023. height: math.unit(200000, "lightyears")
  38024. },
  38025. {
  38026. name: "Universally Known Bat",
  38027. height: math.unit(1, "universe")
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38033. {
  38034. front: {
  38035. height: math.unit(6 + 11/12, "feet"),
  38036. weight: math.unit(250, "lb"),
  38037. name: "Front",
  38038. image: {
  38039. source: "./media/characters/cookiecat/front.svg",
  38040. extra: 893/827,
  38041. bottom: 14/907
  38042. }
  38043. },
  38044. },
  38045. [
  38046. {
  38047. name: "Micro",
  38048. height: math.unit(3, "inches")
  38049. },
  38050. {
  38051. name: "Normal",
  38052. height: math.unit(6 + 11/12, "feet"),
  38053. default: true
  38054. },
  38055. {
  38056. name: "Macro",
  38057. height: math.unit(100, "feet")
  38058. },
  38059. {
  38060. name: "Macro+",
  38061. height: math.unit(404, "feet")
  38062. },
  38063. {
  38064. name: "Megamacro",
  38065. height: math.unit(165, "miles")
  38066. },
  38067. {
  38068. name: "Planetary",
  38069. height: math.unit(4600, "miles")
  38070. },
  38071. ]
  38072. ))
  38073. characterMakers.push(() => makeCharacter(
  38074. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38075. {
  38076. front: {
  38077. height: math.unit(10 + 3/12, "feet"),
  38078. weight: math.unit(1500, "lb"),
  38079. name: "Front",
  38080. image: {
  38081. source: "./media/characters/tux-kusanagi/front.svg",
  38082. extra: 944/840,
  38083. bottom: 39/983
  38084. }
  38085. },
  38086. back: {
  38087. height: math.unit(10 + 3/12, "feet"),
  38088. weight: math.unit(1500, "lb"),
  38089. name: "Back",
  38090. image: {
  38091. source: "./media/characters/tux-kusanagi/back.svg",
  38092. extra: 941/842,
  38093. bottom: 28/969
  38094. }
  38095. },
  38096. rump: {
  38097. height: math.unit(5.25, "feet"),
  38098. name: "Rump",
  38099. image: {
  38100. source: "./media/characters/tux-kusanagi/rump.svg"
  38101. }
  38102. },
  38103. beak: {
  38104. height: math.unit(1.54, "feet"),
  38105. name: "Beak",
  38106. image: {
  38107. source: "./media/characters/tux-kusanagi/beak.svg"
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(10 + 3/12, "feet"),
  38115. default: true
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(58, "feet"),
  38124. weight: math.unit(200, "tons"),
  38125. name: "Front",
  38126. image: {
  38127. source: "./media/characters/uzarmazari/front.svg",
  38128. extra: 1575/1455,
  38129. bottom: 152/1727
  38130. }
  38131. },
  38132. back: {
  38133. height: math.unit(58, "feet"),
  38134. weight: math.unit(200, "tons"),
  38135. name: "Back",
  38136. image: {
  38137. source: "./media/characters/uzarmazari/back.svg",
  38138. extra: 1585/1510,
  38139. bottom: 157/1742
  38140. }
  38141. },
  38142. head: {
  38143. height: math.unit(26, "feet"),
  38144. name: "Head",
  38145. image: {
  38146. source: "./media/characters/uzarmazari/head.svg"
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(58, "feet"),
  38154. default: true
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38160. {
  38161. side: {
  38162. height: math.unit(15, "feet"),
  38163. name: "Side",
  38164. image: {
  38165. source: "./media/characters/akitu/side.svg",
  38166. extra: 1421/1321,
  38167. bottom: 157/1578
  38168. }
  38169. },
  38170. front: {
  38171. height: math.unit(15, "feet"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/akitu/front.svg",
  38175. extra: 1435/1326,
  38176. bottom: 232/1667
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(15, "feet"),
  38184. default: true
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(10 + 8/12, "feet"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/azalie-croixland/front.svg",
  38196. extra: 1972/1856,
  38197. bottom: 31/2003
  38198. }
  38199. },
  38200. },
  38201. [
  38202. {
  38203. name: "Original Height",
  38204. height: math.unit(5 + 4/12, "feet")
  38205. },
  38206. {
  38207. name: "Normal Height",
  38208. height: math.unit(10 + 8/12, "feet"),
  38209. default: true
  38210. },
  38211. ]
  38212. ))
  38213. characterMakers.push(() => makeCharacter(
  38214. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38215. {
  38216. side: {
  38217. height: math.unit(7 + 1/12, "feet"),
  38218. weight: math.unit(245, "lb"),
  38219. name: "Side",
  38220. image: {
  38221. source: "./media/characters/kavus-kazian/side.svg",
  38222. extra: 349/342,
  38223. bottom: 15/364
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(7 + 1/12, "feet"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38237. {
  38238. normalFront: {
  38239. height: math.unit(5 + 11/12, "feet"),
  38240. name: "Front",
  38241. image: {
  38242. source: "./media/characters/moonlight-rose/normal-front.svg",
  38243. extra: 1980/1825,
  38244. bottom: 18/1998
  38245. },
  38246. form: "normal",
  38247. default: true
  38248. },
  38249. normalBack: {
  38250. height: math.unit(5 + 11/12, "feet"),
  38251. name: "Back",
  38252. image: {
  38253. source: "./media/characters/moonlight-rose/normal-back.svg",
  38254. extra: 2010/1839,
  38255. bottom: 10/2020
  38256. },
  38257. form: "normal"
  38258. },
  38259. demonFront: {
  38260. height: math.unit(1.5, "earths"),
  38261. name: "Front",
  38262. image: {
  38263. source: "./media/characters/moonlight-rose/demon.svg",
  38264. extra: 1400/1294,
  38265. bottom: 45/1445
  38266. },
  38267. form: "demon",
  38268. default: true
  38269. },
  38270. terraFront: {
  38271. height: math.unit(1.5, "earths"),
  38272. name: "Front",
  38273. image: {
  38274. source: "./media/characters/moonlight-rose/terra.svg"
  38275. },
  38276. form: "terra",
  38277. default: true
  38278. },
  38279. jupiterFront: {
  38280. height: math.unit(69911*2, "km"),
  38281. name: "Front",
  38282. image: {
  38283. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38284. extra: 1367/1286,
  38285. bottom: 55/1422
  38286. },
  38287. form: "jupiter",
  38288. default: true
  38289. },
  38290. neptuneFront: {
  38291. height: math.unit(24622*2, "feet"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38295. extra: 1851/1712,
  38296. bottom: 0/1851
  38297. },
  38298. form: "neptune",
  38299. default: true
  38300. },
  38301. },
  38302. [
  38303. {
  38304. name: "\"Natural\" Height",
  38305. height: math.unit(5 + 11/12, "feet"),
  38306. form: "normal"
  38307. },
  38308. {
  38309. name: "Smallest comfortable size",
  38310. height: math.unit(40, "meters"),
  38311. form: "normal"
  38312. },
  38313. {
  38314. name: "Common size",
  38315. height: math.unit(50, "km"),
  38316. form: "normal",
  38317. default: true
  38318. },
  38319. {
  38320. name: "Normal",
  38321. height: math.unit(1.5, "earths"),
  38322. form: "demon",
  38323. default: true
  38324. },
  38325. {
  38326. name: "Universal",
  38327. height: math.unit(15, "universes"),
  38328. form: "demon"
  38329. },
  38330. {
  38331. name: "Earth",
  38332. height: math.unit(1.5, "earths"),
  38333. form: "terra",
  38334. default: true
  38335. },
  38336. {
  38337. name: "Super Earth",
  38338. height: math.unit(67.5, "earths"),
  38339. form: "terra"
  38340. },
  38341. {
  38342. name: "Doesn't fit in a solar system...",
  38343. height: math.unit(1, "galaxy"),
  38344. form: "terra"
  38345. },
  38346. {
  38347. name: "Saturn",
  38348. height: math.unit(58232*2, "km"),
  38349. form: "jupiter"
  38350. },
  38351. {
  38352. name: "Jupiter",
  38353. height: math.unit(69911*2, "km"),
  38354. form: "jupiter",
  38355. default: true
  38356. },
  38357. {
  38358. name: "HD 100546 b",
  38359. height: math.unit(482938, "km"),
  38360. form: "jupiter"
  38361. },
  38362. {
  38363. name: "Enceladus",
  38364. height: math.unit(513*2, "km"),
  38365. form: "neptune"
  38366. },
  38367. {
  38368. name: "Europe",
  38369. height: math.unit(1560*2, "km"),
  38370. form: "neptune"
  38371. },
  38372. {
  38373. name: "Neptune",
  38374. height: math.unit(24622*2, "km"),
  38375. form: "neptune",
  38376. default: true
  38377. },
  38378. {
  38379. name: "CoRoT-9b",
  38380. height: math.unit(75067*2, "km"),
  38381. form: "neptune"
  38382. },
  38383. ],
  38384. {
  38385. "normal": {
  38386. name: "Normal",
  38387. default: true
  38388. },
  38389. "demon": {
  38390. name: "Demon"
  38391. },
  38392. "terra": {
  38393. name: "Terra"
  38394. },
  38395. "jupiter": {
  38396. name: "Jupiter"
  38397. },
  38398. "neptune": {
  38399. name: "Neptune"
  38400. }
  38401. }
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(16, "feet"),
  38408. weight: math.unit(610, "kg"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/huckle/front.svg",
  38412. extra: 1731/1625,
  38413. bottom: 33/1764
  38414. }
  38415. },
  38416. back: {
  38417. height: math.unit(16, "feet"),
  38418. weight: math.unit(610, "kg"),
  38419. name: "Back",
  38420. image: {
  38421. source: "./media/characters/huckle/back.svg",
  38422. extra: 1738/1651,
  38423. bottom: 37/1775
  38424. }
  38425. },
  38426. laughing: {
  38427. height: math.unit(3.75, "feet"),
  38428. name: "Laughing",
  38429. image: {
  38430. source: "./media/characters/huckle/laughing.svg"
  38431. }
  38432. },
  38433. angry: {
  38434. height: math.unit(4.15, "feet"),
  38435. name: "Angry",
  38436. image: {
  38437. source: "./media/characters/huckle/angry.svg"
  38438. }
  38439. },
  38440. },
  38441. [
  38442. {
  38443. name: "Normal",
  38444. height: math.unit(16, "feet"),
  38445. default: true
  38446. },
  38447. {
  38448. name: "Mini Macro",
  38449. height: math.unit(463, "feet")
  38450. },
  38451. {
  38452. name: "Macro",
  38453. height: math.unit(1680, "meters")
  38454. },
  38455. {
  38456. name: "Mega Macro",
  38457. height: math.unit(175, "km")
  38458. },
  38459. {
  38460. name: "Terra Macro",
  38461. height: math.unit(32, "gigameters")
  38462. },
  38463. {
  38464. name: "Multiverse+",
  38465. height: math.unit(2.56e23, "yottameters")
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38471. {
  38472. front: {
  38473. height: math.unit(6 + 9/12, "feet"),
  38474. weight: math.unit(280, "lb"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/candy/front.svg",
  38478. extra: 234/217,
  38479. bottom: 11/245
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Really Small",
  38486. height: math.unit(0.1, "nm")
  38487. },
  38488. {
  38489. name: "Micro",
  38490. height: math.unit(2, "inches")
  38491. },
  38492. {
  38493. name: "Normal",
  38494. height: math.unit(6 + 9/12, "feet"),
  38495. default: true
  38496. },
  38497. {
  38498. name: "Small Macro",
  38499. height: math.unit(69, "feet")
  38500. },
  38501. {
  38502. name: "Macro",
  38503. height: math.unit(160, "feet")
  38504. },
  38505. {
  38506. name: "Megamacro",
  38507. height: math.unit(22000, "miles")
  38508. },
  38509. {
  38510. name: "Gigamacro",
  38511. height: math.unit(50000, "miles")
  38512. },
  38513. ]
  38514. ))
  38515. characterMakers.push(() => makeCharacter(
  38516. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38517. {
  38518. front: {
  38519. height: math.unit(4, "feet"),
  38520. weight: math.unit(90, "lb"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/joey-mcdonald/front.svg",
  38524. extra: 1059/852,
  38525. bottom: 33/1092
  38526. }
  38527. },
  38528. back: {
  38529. height: math.unit(4, "feet"),
  38530. weight: math.unit(90, "lb"),
  38531. name: "Back",
  38532. image: {
  38533. source: "./media/characters/joey-mcdonald/back.svg",
  38534. extra: 1077/879,
  38535. bottom: 5/1082
  38536. }
  38537. },
  38538. frontKobold: {
  38539. height: math.unit(4, "feet"),
  38540. weight: math.unit(100, "lb"),
  38541. name: "Front-kobold",
  38542. image: {
  38543. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38544. extra: 1480/1367,
  38545. bottom: 0/1480
  38546. }
  38547. },
  38548. backKobold: {
  38549. height: math.unit(4, "feet"),
  38550. weight: math.unit(100, "lb"),
  38551. name: "Back-kobold",
  38552. image: {
  38553. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38554. extra: 1449/1361,
  38555. bottom: 0/1449
  38556. }
  38557. },
  38558. },
  38559. [
  38560. {
  38561. name: "Normal",
  38562. height: math.unit(4, "feet"),
  38563. default: true
  38564. },
  38565. ]
  38566. ))
  38567. characterMakers.push(() => makeCharacter(
  38568. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38569. {
  38570. front: {
  38571. height: math.unit(12 + 6/12, "feet"),
  38572. name: "Front",
  38573. image: {
  38574. source: "./media/characters/kass-lockheed/front.svg",
  38575. extra: 354/343,
  38576. bottom: 9/363
  38577. }
  38578. },
  38579. back: {
  38580. height: math.unit(12 + 6/12, "feet"),
  38581. name: "Back",
  38582. image: {
  38583. source: "./media/characters/kass-lockheed/back.svg",
  38584. extra: 364/352,
  38585. bottom: 3/367
  38586. }
  38587. },
  38588. dick: {
  38589. height: math.unit(3.12, "feet"),
  38590. name: "Dick",
  38591. image: {
  38592. source: "./media/characters/kass-lockheed/dick.svg"
  38593. }
  38594. },
  38595. head: {
  38596. height: math.unit(2.6, "feet"),
  38597. name: "Head",
  38598. image: {
  38599. source: "./media/characters/kass-lockheed/head.svg"
  38600. }
  38601. },
  38602. bleh: {
  38603. height: math.unit(2.85, "feet"),
  38604. name: "Bleh",
  38605. image: {
  38606. source: "./media/characters/kass-lockheed/bleh.svg"
  38607. }
  38608. },
  38609. smug: {
  38610. height: math.unit(2.85, "feet"),
  38611. name: "Smug",
  38612. image: {
  38613. source: "./media/characters/kass-lockheed/smug.svg"
  38614. }
  38615. },
  38616. },
  38617. [
  38618. {
  38619. name: "Normal",
  38620. height: math.unit(12 + 6/12, "feet"),
  38621. default: true
  38622. },
  38623. ]
  38624. ))
  38625. characterMakers.push(() => makeCharacter(
  38626. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38627. {
  38628. front: {
  38629. height: math.unit(6 + 2/12, "feet"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/taylor/front.svg",
  38633. extra: 639/495,
  38634. bottom: 12/651
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Normal",
  38641. height: math.unit(6 + 2/12, "feet"),
  38642. default: true
  38643. },
  38644. {
  38645. name: "Big",
  38646. height: math.unit(15, "feet")
  38647. },
  38648. {
  38649. name: "Lorg",
  38650. height: math.unit(80, "feet")
  38651. },
  38652. {
  38653. name: "Too Lorg",
  38654. height: math.unit(120, "feet")
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38660. {
  38661. front: {
  38662. height: math.unit(15, "feet"),
  38663. name: "Front",
  38664. image: {
  38665. source: "./media/characters/kaizer/front.svg",
  38666. extra: 1612/1436,
  38667. bottom: 43/1655
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(15, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(2, "feet"),
  38684. weight: math.unit(30, "lb"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/sandy/front.svg",
  38688. extra: 1439/1307,
  38689. bottom: 194/1633
  38690. }
  38691. },
  38692. },
  38693. [
  38694. {
  38695. name: "Normal",
  38696. height: math.unit(2, "feet"),
  38697. default: true
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38703. {
  38704. front: {
  38705. height: math.unit(3, "feet"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/mellvi/front.svg",
  38709. extra: 1831/1630,
  38710. bottom: 58/1889
  38711. }
  38712. },
  38713. },
  38714. [
  38715. {
  38716. name: "Normal",
  38717. height: math.unit(3, "feet"),
  38718. default: true
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(5 + 11/12, "feet"),
  38727. weight: math.unit(200, "lb"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/shirou/front.svg",
  38731. extra: 2491/2383,
  38732. bottom: 189/2680
  38733. }
  38734. },
  38735. back: {
  38736. height: math.unit(5 + 11/12, "feet"),
  38737. weight: math.unit(200, "lb"),
  38738. name: "Back",
  38739. image: {
  38740. source: "./media/characters/shirou/back.svg",
  38741. extra: 2554/2450,
  38742. bottom: 76/2630
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Normal",
  38749. height: math.unit(5 + 11/12, "feet"),
  38750. default: true
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38756. {
  38757. front: {
  38758. height: math.unit(6 + 3/12, "feet"),
  38759. weight: math.unit(177, "lb"),
  38760. name: "Front",
  38761. image: {
  38762. source: "./media/characters/noryu/front.svg",
  38763. extra: 973/885,
  38764. bottom: 10/983
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Normal",
  38771. height: math.unit(6 + 3/12, "feet"),
  38772. default: true
  38773. },
  38774. ]
  38775. ))
  38776. characterMakers.push(() => makeCharacter(
  38777. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38778. {
  38779. front: {
  38780. height: math.unit(5 + 6/12, "feet"),
  38781. weight: math.unit(170, "lb"),
  38782. name: "Front",
  38783. image: {
  38784. source: "./media/characters/mevolas-rubenido/front.svg",
  38785. extra: 2109/1901,
  38786. bottom: 96/2205
  38787. }
  38788. },
  38789. },
  38790. [
  38791. {
  38792. name: "Normal",
  38793. height: math.unit(5 + 6/12, "feet"),
  38794. default: true
  38795. },
  38796. ]
  38797. ))
  38798. characterMakers.push(() => makeCharacter(
  38799. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38800. {
  38801. front: {
  38802. height: math.unit(100, "feet"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/dee/front.svg",
  38806. extra: 2153/2036,
  38807. bottom: 59/2212
  38808. }
  38809. },
  38810. back: {
  38811. height: math.unit(100, "feet"),
  38812. name: "Back",
  38813. image: {
  38814. source: "./media/characters/dee/back.svg",
  38815. extra: 2183/2058,
  38816. bottom: 75/2258
  38817. }
  38818. },
  38819. foot: {
  38820. height: math.unit(19.43, "feet"),
  38821. name: "Foot",
  38822. image: {
  38823. source: "./media/characters/dee/foot.svg"
  38824. }
  38825. },
  38826. hoof: {
  38827. height: math.unit(20.6, "feet"),
  38828. name: "Hoof",
  38829. image: {
  38830. source: "./media/characters/dee/hoof.svg"
  38831. }
  38832. },
  38833. },
  38834. [
  38835. {
  38836. name: "Macro",
  38837. height: math.unit(100, "feet"),
  38838. default: true
  38839. },
  38840. ]
  38841. ))
  38842. characterMakers.push(() => makeCharacter(
  38843. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38844. {
  38845. front: {
  38846. height: math.unit(5 + 6/12, "feet"),
  38847. name: "Front",
  38848. image: {
  38849. source: "./media/characters/teh/front.svg",
  38850. extra: 1002/847,
  38851. bottom: 62/1064
  38852. }
  38853. },
  38854. },
  38855. [
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(5 + 6/12, "feet"),
  38859. default: true
  38860. },
  38861. ]
  38862. ))
  38863. characterMakers.push(() => makeCharacter(
  38864. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38865. {
  38866. side: {
  38867. height: math.unit(6 + 1/12, "feet"),
  38868. weight: math.unit(204, "lb"),
  38869. name: "Side",
  38870. image: {
  38871. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38872. extra: 974/775,
  38873. bottom: 169/1143
  38874. }
  38875. },
  38876. sitting: {
  38877. height: math.unit(6 + 2/12, "feet"),
  38878. weight: math.unit(204, "lb"),
  38879. name: "Sitting",
  38880. image: {
  38881. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38882. extra: 1175/964,
  38883. bottom: 378/1553
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(6 + 1/12, "feet"),
  38891. default: true
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(6, "inches"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/tululi/front.svg",
  38903. extra: 1997/1876,
  38904. bottom: 20/2017
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(6, "inches"),
  38912. default: true
  38913. },
  38914. ]
  38915. ))
  38916. characterMakers.push(() => makeCharacter(
  38917. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38918. {
  38919. front: {
  38920. height: math.unit(4 + 1/12, "feet"),
  38921. name: "Front",
  38922. image: {
  38923. source: "./media/characters/star/front.svg",
  38924. extra: 1493/1189,
  38925. bottom: 48/1541
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(4 + 1/12, "feet"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38939. {
  38940. front: {
  38941. height: math.unit(6 + 3/12, "feet"),
  38942. name: "Front",
  38943. image: {
  38944. source: "./media/characters/comet/front.svg",
  38945. extra: 1681/1462,
  38946. bottom: 26/1707
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Normal",
  38953. height: math.unit(6 + 3/12, "feet"),
  38954. default: true
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38960. {
  38961. front: {
  38962. height: math.unit(950, "feet"),
  38963. name: "Front",
  38964. image: {
  38965. source: "./media/characters/vortex/front.svg",
  38966. extra: 1497/1434,
  38967. bottom: 56/1553
  38968. }
  38969. },
  38970. maw: {
  38971. height: math.unit(285, "feet"),
  38972. name: "Maw",
  38973. image: {
  38974. source: "./media/characters/vortex/maw.svg"
  38975. }
  38976. },
  38977. },
  38978. [
  38979. {
  38980. name: "Macro",
  38981. height: math.unit(950, "feet"),
  38982. default: true
  38983. },
  38984. ]
  38985. ))
  38986. characterMakers.push(() => makeCharacter(
  38987. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38988. {
  38989. front: {
  38990. height: math.unit(600, "feet"),
  38991. weight: math.unit(0.02, "grams"),
  38992. name: "Front",
  38993. image: {
  38994. source: "./media/characters/doodle/front.svg",
  38995. extra: 1578/1413,
  38996. bottom: 37/1615
  38997. }
  38998. },
  38999. },
  39000. [
  39001. {
  39002. name: "Macro",
  39003. height: math.unit(600, "feet"),
  39004. default: true
  39005. },
  39006. ]
  39007. ))
  39008. characterMakers.push(() => makeCharacter(
  39009. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39010. {
  39011. front: {
  39012. height: math.unit(6 + 6/12, "feet"),
  39013. name: "Front",
  39014. image: {
  39015. source: "./media/characters/jai/front.svg",
  39016. extra: 1645/1534,
  39017. bottom: 115/1760
  39018. }
  39019. },
  39020. },
  39021. [
  39022. {
  39023. name: "Normal",
  39024. height: math.unit(6 + 6/12, "feet"),
  39025. default: true
  39026. },
  39027. ]
  39028. ))
  39029. characterMakers.push(() => makeCharacter(
  39030. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39031. {
  39032. front: {
  39033. height: math.unit(6 + 8/12, "feet"),
  39034. name: "Front",
  39035. image: {
  39036. source: "./media/characters/pixel/front.svg",
  39037. extra: 1900/1735,
  39038. bottom: 63/1963
  39039. }
  39040. },
  39041. },
  39042. [
  39043. {
  39044. name: "Normal",
  39045. height: math.unit(6 + 8/12, "feet"),
  39046. default: true
  39047. },
  39048. ]
  39049. ))
  39050. characterMakers.push(() => makeCharacter(
  39051. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39052. {
  39053. back: {
  39054. height: math.unit(4 + 1/12, "feet"),
  39055. weight: math.unit(75, "lb"),
  39056. name: "Back",
  39057. image: {
  39058. source: "./media/characters/rhett/back.svg",
  39059. extra: 930/878,
  39060. bottom: 25/955
  39061. }
  39062. },
  39063. front: {
  39064. height: math.unit(4 + 1/12, "feet"),
  39065. weight: math.unit(75, "lb"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/rhett/front.svg",
  39069. extra: 1682/1586,
  39070. bottom: 92/1774
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Micro",
  39077. height: math.unit(8, "inches")
  39078. },
  39079. {
  39080. name: "Tiny",
  39081. height: math.unit(2, "feet")
  39082. },
  39083. {
  39084. name: "Normal",
  39085. height: math.unit(4 + 1/12, "feet"),
  39086. default: true
  39087. },
  39088. ]
  39089. ))
  39090. characterMakers.push(() => makeCharacter(
  39091. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39092. {
  39093. front: {
  39094. height: math.unit(3 + 3/12, "feet"),
  39095. name: "Front",
  39096. image: {
  39097. source: "./media/characters/penny/front.svg",
  39098. extra: 1406/1311,
  39099. bottom: 26/1432
  39100. }
  39101. },
  39102. },
  39103. [
  39104. {
  39105. name: "Normal",
  39106. height: math.unit(3 + 3/12, "feet"),
  39107. default: true
  39108. },
  39109. ]
  39110. ))
  39111. characterMakers.push(() => makeCharacter(
  39112. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39113. {
  39114. front: {
  39115. height: math.unit(4 + 11/12, "feet"),
  39116. name: "Front",
  39117. image: {
  39118. source: "./media/characters/monty/front.svg",
  39119. extra: 1479/1209,
  39120. bottom: 0/1479
  39121. }
  39122. },
  39123. },
  39124. [
  39125. {
  39126. name: "Normal",
  39127. height: math.unit(4 + 11/12, "feet"),
  39128. default: true
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(8 + 4/12, "feet"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/sterling/front.svg",
  39140. extra: 1420/1236,
  39141. bottom: 27/1447
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(8 + 4/12, "feet"),
  39149. default: true
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39155. {
  39156. front: {
  39157. height: math.unit(15, "feet"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/marble/front.svg",
  39161. extra: 973/937,
  39162. bottom: 32/1005
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Normal",
  39169. height: math.unit(15, "feet"),
  39170. default: true
  39171. },
  39172. ]
  39173. ))
  39174. characterMakers.push(() => makeCharacter(
  39175. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39176. {
  39177. front: {
  39178. height: math.unit(3, "inches"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/powder/front.svg",
  39182. extra: 1504/1334,
  39183. bottom: 518/2022
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Normal",
  39190. height: math.unit(3, "inches"),
  39191. default: true
  39192. },
  39193. ]
  39194. ))
  39195. characterMakers.push(() => makeCharacter(
  39196. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39197. {
  39198. front: {
  39199. height: math.unit(4 + 5/12, "feet"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/joey-raccoon/front.svg",
  39203. extra: 1273/1197,
  39204. bottom: 0/1273
  39205. }
  39206. },
  39207. },
  39208. [
  39209. {
  39210. name: "Normal",
  39211. height: math.unit(4 + 5/12, "feet"),
  39212. default: true
  39213. },
  39214. ]
  39215. ))
  39216. characterMakers.push(() => makeCharacter(
  39217. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39218. {
  39219. front: {
  39220. height: math.unit(8 + 4/12, "feet"),
  39221. name: "Front",
  39222. image: {
  39223. source: "./media/characters/vick/front.svg",
  39224. extra: 2187/2118,
  39225. bottom: 47/2234
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Normal",
  39232. height: math.unit(8 + 4/12, "feet"),
  39233. default: true
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39239. {
  39240. front: {
  39241. height: math.unit(5 + 5/12, "feet"),
  39242. name: "Front",
  39243. image: {
  39244. source: "./media/characters/mitsy/front.svg",
  39245. extra: 1842/1695,
  39246. bottom: 0/1842
  39247. }
  39248. },
  39249. },
  39250. [
  39251. {
  39252. name: "Normal",
  39253. height: math.unit(5 + 5/12, "feet"),
  39254. default: true
  39255. },
  39256. ]
  39257. ))
  39258. characterMakers.push(() => makeCharacter(
  39259. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39260. {
  39261. front: {
  39262. height: math.unit(6 + 3/12, "feet"),
  39263. name: "Front",
  39264. image: {
  39265. source: "./media/characters/silvy/front.svg",
  39266. extra: 1995/1836,
  39267. bottom: 225/2220
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(6 + 3/12, "feet"),
  39275. default: true
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39281. {
  39282. front: {
  39283. height: math.unit(3 + 8/12, "feet"),
  39284. name: "Front",
  39285. image: {
  39286. source: "./media/characters/rodney/front.svg",
  39287. extra: 1956/1747,
  39288. bottom: 31/1987
  39289. }
  39290. },
  39291. frontDressed: {
  39292. height: math.unit(2.9, "feet"),
  39293. name: "Front (Dressed)",
  39294. image: {
  39295. source: "./media/characters/rodney/front-dressed.svg",
  39296. extra: 1382/1241,
  39297. bottom: 385/1767
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(3 + 8/12, "feet"),
  39305. default: true
  39306. },
  39307. ]
  39308. ))
  39309. characterMakers.push(() => makeCharacter(
  39310. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39311. {
  39312. front: {
  39313. height: math.unit(5 + 9/12, "feet"),
  39314. weight: math.unit(194, "lbs"),
  39315. name: "Front",
  39316. image: {
  39317. source: "./media/characters/zakail-sudekai/front.svg",
  39318. extra: 2696/2533,
  39319. bottom: 248/2944
  39320. }
  39321. },
  39322. maw: {
  39323. height: math.unit(1.35, "feet"),
  39324. name: "Maw",
  39325. image: {
  39326. source: "./media/characters/zakail-sudekai/maw.svg"
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Normal",
  39333. height: math.unit(5 + 9/12, "feet"),
  39334. default: true
  39335. },
  39336. ]
  39337. ))
  39338. characterMakers.push(() => makeCharacter(
  39339. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39340. {
  39341. front: {
  39342. height: math.unit(8 + 4/12, "feet"),
  39343. weight: math.unit(1200, "lb"),
  39344. name: "Front",
  39345. image: {
  39346. source: "./media/characters/eleanor/front.svg",
  39347. extra: 1226/1192,
  39348. bottom: 52/1278
  39349. }
  39350. },
  39351. back: {
  39352. height: math.unit(8 + 4/12, "feet"),
  39353. weight: math.unit(1200, "lb"),
  39354. name: "Back",
  39355. image: {
  39356. source: "./media/characters/eleanor/back.svg",
  39357. extra: 1242/1184,
  39358. bottom: 60/1302
  39359. }
  39360. },
  39361. head: {
  39362. height: math.unit(2.62, "feet"),
  39363. name: "Head",
  39364. image: {
  39365. source: "./media/characters/eleanor/head.svg"
  39366. }
  39367. },
  39368. },
  39369. [
  39370. {
  39371. name: "Normal",
  39372. height: math.unit(8 + 4/12, "feet"),
  39373. default: true
  39374. },
  39375. ]
  39376. ))
  39377. characterMakers.push(() => makeCharacter(
  39378. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39379. {
  39380. front: {
  39381. height: math.unit(8 + 4/12, "feet"),
  39382. weight: math.unit(750, "lb"),
  39383. name: "Front",
  39384. image: {
  39385. source: "./media/characters/tanya/front.svg",
  39386. extra: 1749/1615,
  39387. bottom: 33/1782
  39388. }
  39389. },
  39390. },
  39391. [
  39392. {
  39393. name: "Normal",
  39394. height: math.unit(8 + 4/12, "feet"),
  39395. default: true
  39396. },
  39397. ]
  39398. ))
  39399. characterMakers.push(() => makeCharacter(
  39400. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39401. {
  39402. front: {
  39403. height: math.unit(5, "feet"),
  39404. weight: math.unit(225, "lb"),
  39405. name: "Front",
  39406. image: {
  39407. source: "./media/characters/cindy/front.svg",
  39408. extra: 1320/1250,
  39409. bottom: 42/1362
  39410. }
  39411. },
  39412. frontDressed: {
  39413. height: math.unit(5, "feet"),
  39414. weight: math.unit(225, "lb"),
  39415. name: "Front (Dressed)",
  39416. image: {
  39417. source: "./media/characters/cindy/front-dressed.svg",
  39418. extra: 1320/1250,
  39419. bottom: 42/1362
  39420. }
  39421. },
  39422. back: {
  39423. height: math.unit(5, "feet"),
  39424. weight: math.unit(225, "lb"),
  39425. name: "Back",
  39426. image: {
  39427. source: "./media/characters/cindy/back.svg",
  39428. extra: 1384/1346,
  39429. bottom: 14/1398
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "Normal",
  39436. height: math.unit(5, "feet"),
  39437. default: true
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39443. {
  39444. front: {
  39445. height: math.unit(6 + 9/12, "feet"),
  39446. weight: math.unit(440, "lb"),
  39447. name: "Front",
  39448. image: {
  39449. source: "./media/characters/wilbur-owen/front.svg",
  39450. extra: 1575/1448,
  39451. bottom: 72/1647
  39452. }
  39453. },
  39454. back: {
  39455. height: math.unit(6 + 9/12, "feet"),
  39456. weight: math.unit(440, "lb"),
  39457. name: "Back",
  39458. image: {
  39459. source: "./media/characters/wilbur-owen/back.svg",
  39460. extra: 1578/1445,
  39461. bottom: 36/1614
  39462. }
  39463. },
  39464. },
  39465. [
  39466. {
  39467. name: "Normal",
  39468. height: math.unit(6 + 9/12, "feet"),
  39469. default: true
  39470. },
  39471. ]
  39472. ))
  39473. characterMakers.push(() => makeCharacter(
  39474. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39475. {
  39476. front: {
  39477. height: math.unit(6 + 5/12, "feet"),
  39478. weight: math.unit(650, "lb"),
  39479. name: "Front",
  39480. image: {
  39481. source: "./media/characters/keegan/front.svg",
  39482. extra: 2387/2198,
  39483. bottom: 33/2420
  39484. }
  39485. },
  39486. side: {
  39487. height: math.unit(6 + 5/12, "feet"),
  39488. weight: math.unit(650, "lb"),
  39489. name: "Side",
  39490. image: {
  39491. source: "./media/characters/keegan/side.svg",
  39492. extra: 2390/2202,
  39493. bottom: 47/2437
  39494. }
  39495. },
  39496. back: {
  39497. height: math.unit(6 + 5/12, "feet"),
  39498. weight: math.unit(650, "lb"),
  39499. name: "Back",
  39500. image: {
  39501. source: "./media/characters/keegan/back.svg",
  39502. extra: 2418/2268,
  39503. bottom: 15/2433
  39504. }
  39505. },
  39506. frontSfw: {
  39507. height: math.unit(6 + 5/12, "feet"),
  39508. weight: math.unit(650, "lb"),
  39509. name: "Front (SFW)",
  39510. image: {
  39511. source: "./media/characters/keegan/front-sfw.svg",
  39512. extra: 2387/2198,
  39513. bottom: 33/2420
  39514. }
  39515. },
  39516. beans: {
  39517. height: math.unit(1.85, "feet"),
  39518. name: "Beans",
  39519. image: {
  39520. source: "./media/characters/keegan/beans.svg"
  39521. }
  39522. },
  39523. },
  39524. [
  39525. {
  39526. name: "Normal",
  39527. height: math.unit(6 + 5/12, "feet"),
  39528. default: true
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(9, "feet"),
  39537. name: "Front",
  39538. image: {
  39539. source: "./media/characters/colton/front.svg",
  39540. extra: 1589/1326,
  39541. bottom: 139/1728
  39542. }
  39543. },
  39544. },
  39545. [
  39546. {
  39547. name: "Normal",
  39548. height: math.unit(9, "feet"),
  39549. default: true
  39550. },
  39551. ]
  39552. ))
  39553. characterMakers.push(() => makeCharacter(
  39554. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39555. {
  39556. front: {
  39557. height: math.unit(2 + 9/12, "feet"),
  39558. name: "Front",
  39559. image: {
  39560. source: "./media/characters/bora/front.svg",
  39561. extra: 1265/1250,
  39562. bottom: 24/1289
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(2 + 9/12, "feet"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(8, "feet"),
  39579. name: "Front",
  39580. image: {
  39581. source: "./media/characters/myu-myu/front.svg",
  39582. extra: 1949/1857,
  39583. bottom: 90/2039
  39584. }
  39585. },
  39586. },
  39587. [
  39588. {
  39589. name: "Normal",
  39590. height: math.unit(8, "feet"),
  39591. default: true
  39592. },
  39593. {
  39594. name: "Big",
  39595. height: math.unit(15, "feet")
  39596. },
  39597. {
  39598. name: "BIG",
  39599. height: math.unit(25, "feet")
  39600. },
  39601. ]
  39602. ))
  39603. characterMakers.push(() => makeCharacter(
  39604. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39605. {
  39606. side: {
  39607. height: math.unit(7 + 5/12, "feet"),
  39608. weight: math.unit(2800, "lb"),
  39609. name: "Side",
  39610. image: {
  39611. source: "./media/characters/haloren/side.svg",
  39612. extra: 1793/409,
  39613. bottom: 59/1852
  39614. }
  39615. },
  39616. frontPaw: {
  39617. height: math.unit(2.36, "feet"),
  39618. name: "Front paw",
  39619. image: {
  39620. source: "./media/characters/haloren/front-paw.svg"
  39621. }
  39622. },
  39623. hindPaw: {
  39624. height: math.unit(3.18, "feet"),
  39625. name: "Hind paw",
  39626. image: {
  39627. source: "./media/characters/haloren/hind-paw.svg"
  39628. }
  39629. },
  39630. maw: {
  39631. height: math.unit(5.05, "feet"),
  39632. name: "Maw",
  39633. image: {
  39634. source: "./media/characters/haloren/maw.svg"
  39635. }
  39636. },
  39637. dick: {
  39638. height: math.unit(2.90, "feet"),
  39639. name: "Dick",
  39640. image: {
  39641. source: "./media/characters/haloren/dick.svg"
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "Normal",
  39648. height: math.unit(7 + 5/12, "feet"),
  39649. default: true
  39650. },
  39651. {
  39652. name: "Enhanced",
  39653. height: math.unit(14 + 3/12, "feet")
  39654. },
  39655. ]
  39656. ))
  39657. characterMakers.push(() => makeCharacter(
  39658. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39659. {
  39660. front: {
  39661. height: math.unit(171, "cm"),
  39662. name: "Front",
  39663. image: {
  39664. source: "./media/characters/kimmy/front.svg",
  39665. extra: 1491/1435,
  39666. bottom: 53/1544
  39667. }
  39668. },
  39669. },
  39670. [
  39671. {
  39672. name: "Small",
  39673. height: math.unit(9, "cm")
  39674. },
  39675. {
  39676. name: "Normal",
  39677. height: math.unit(171, "cm"),
  39678. default: true
  39679. },
  39680. ]
  39681. ))
  39682. characterMakers.push(() => makeCharacter(
  39683. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39684. {
  39685. front: {
  39686. height: math.unit(8, "feet"),
  39687. weight: math.unit(300, "lb"),
  39688. name: "Front",
  39689. image: {
  39690. source: "./media/characters/galeboomer/front.svg",
  39691. extra: 4651/4415,
  39692. bottom: 162/4813
  39693. }
  39694. },
  39695. back: {
  39696. height: math.unit(8, "feet"),
  39697. weight: math.unit(300, "lb"),
  39698. name: "Back",
  39699. image: {
  39700. source: "./media/characters/galeboomer/back.svg",
  39701. extra: 4544/4314,
  39702. bottom: 16/4560
  39703. }
  39704. },
  39705. frontAlt: {
  39706. height: math.unit(8, "feet"),
  39707. weight: math.unit(300, "lb"),
  39708. name: "Front (Alt)",
  39709. image: {
  39710. source: "./media/characters/galeboomer/front-alt.svg",
  39711. extra: 4458/4228,
  39712. bottom: 68/4526
  39713. }
  39714. },
  39715. maw: {
  39716. height: math.unit(1.2, "feet"),
  39717. name: "Maw",
  39718. image: {
  39719. source: "./media/characters/galeboomer/maw.svg"
  39720. }
  39721. },
  39722. },
  39723. [
  39724. {
  39725. name: "Normal",
  39726. height: math.unit(8, "feet"),
  39727. default: true
  39728. },
  39729. ]
  39730. ))
  39731. characterMakers.push(() => makeCharacter(
  39732. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39733. {
  39734. front: {
  39735. height: math.unit(5 + 9/12, "feet"),
  39736. weight: math.unit(120, "lb"),
  39737. name: "Front",
  39738. image: {
  39739. source: "./media/characters/chyr/front.svg",
  39740. extra: 1323/1254,
  39741. bottom: 63/1386
  39742. }
  39743. },
  39744. back: {
  39745. height: math.unit(5 + 9/12, "feet"),
  39746. weight: math.unit(120, "lb"),
  39747. name: "Back",
  39748. image: {
  39749. source: "./media/characters/chyr/back.svg",
  39750. extra: 1323/1252,
  39751. bottom: 48/1371
  39752. }
  39753. },
  39754. },
  39755. [
  39756. {
  39757. name: "Normal",
  39758. height: math.unit(5 + 9/12, "feet"),
  39759. default: true
  39760. },
  39761. ]
  39762. ))
  39763. characterMakers.push(() => makeCharacter(
  39764. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39765. {
  39766. front: {
  39767. height: math.unit(7, "feet"),
  39768. weight: math.unit(310, "lb"),
  39769. name: "Front",
  39770. image: {
  39771. source: "./media/characters/solarus/front.svg",
  39772. extra: 2415/2021,
  39773. bottom: 103/2518
  39774. }
  39775. },
  39776. back: {
  39777. height: math.unit(7, "feet"),
  39778. weight: math.unit(310, "lb"),
  39779. name: "Back",
  39780. image: {
  39781. source: "./media/characters/solarus/back.svg",
  39782. extra: 2463/2089,
  39783. bottom: 79/2542
  39784. }
  39785. },
  39786. },
  39787. [
  39788. {
  39789. name: "Normal",
  39790. height: math.unit(7, "feet"),
  39791. default: true
  39792. },
  39793. ]
  39794. ))
  39795. characterMakers.push(() => makeCharacter(
  39796. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39797. {
  39798. front: {
  39799. height: math.unit(16, "feet"),
  39800. name: "Front",
  39801. image: {
  39802. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39803. extra: 1844/1780,
  39804. bottom: 58/1902
  39805. }
  39806. },
  39807. winterCoat: {
  39808. height: math.unit(16, "feet"),
  39809. name: "Winter Coat",
  39810. image: {
  39811. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39812. extra: 1807/1775,
  39813. bottom: 69/1876
  39814. }
  39815. },
  39816. },
  39817. [
  39818. {
  39819. name: "Normal",
  39820. height: math.unit(16, "feet"),
  39821. default: true
  39822. },
  39823. {
  39824. name: "Chicago Size",
  39825. height: math.unit(560, "feet")
  39826. },
  39827. ]
  39828. ))
  39829. characterMakers.push(() => makeCharacter(
  39830. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39831. {
  39832. front: {
  39833. height: math.unit(11 + 6/12, "feet"),
  39834. weight: math.unit(1366, "lb"),
  39835. name: "Front",
  39836. image: {
  39837. source: "./media/characters/lexor/front.svg",
  39838. extra: 1560/1481,
  39839. bottom: 211/1771
  39840. }
  39841. },
  39842. back: {
  39843. height: math.unit(11 + 6/12, "feet"),
  39844. weight: math.unit(1366, "lb"),
  39845. name: "Back",
  39846. image: {
  39847. source: "./media/characters/lexor/back.svg",
  39848. extra: 1614/1533,
  39849. bottom: 76/1690
  39850. }
  39851. },
  39852. maw: {
  39853. height: math.unit(3, "feet"),
  39854. name: "Maw",
  39855. image: {
  39856. source: "./media/characters/lexor/maw.svg"
  39857. }
  39858. },
  39859. dick: {
  39860. height: math.unit(2.59, "feet"),
  39861. name: "Dick",
  39862. image: {
  39863. source: "./media/characters/lexor/dick.svg"
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Normal",
  39870. height: math.unit(11 + 6/12, "feet"),
  39871. default: true
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39877. {
  39878. front: {
  39879. height: math.unit(5 + 8/12, "feet"),
  39880. name: "Front",
  39881. image: {
  39882. source: "./media/characters/magnum/front.svg",
  39883. extra: 942/855,
  39884. bottom: 26/968
  39885. }
  39886. },
  39887. },
  39888. [
  39889. {
  39890. name: "Normal",
  39891. height: math.unit(5 + 8/12, "feet"),
  39892. default: true
  39893. },
  39894. ]
  39895. ))
  39896. characterMakers.push(() => makeCharacter(
  39897. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39898. {
  39899. front: {
  39900. height: math.unit(18 + 4/12, "feet"),
  39901. weight: math.unit(1500, "kg"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/solas-sharpsman/front.svg",
  39905. extra: 1698/1589,
  39906. bottom: 0/1698
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Normal",
  39913. height: math.unit(18 + 4/12, "feet"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(5 + 5/12, "feet"),
  39923. weight: math.unit(180, "lb"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/october/front.svg",
  39927. extra: 1800/1650,
  39928. bottom: 0/1800
  39929. }
  39930. },
  39931. frontNsfw: {
  39932. height: math.unit(5 + 5/12, "feet"),
  39933. weight: math.unit(180, "lb"),
  39934. name: "Front (NSFW)",
  39935. image: {
  39936. source: "./media/characters/october/front-nsfw.svg",
  39937. extra: 1392/1307,
  39938. bottom: 42/1434
  39939. }
  39940. },
  39941. },
  39942. [
  39943. {
  39944. name: "Normal",
  39945. height: math.unit(5 + 5/12, "feet"),
  39946. default: true
  39947. },
  39948. ]
  39949. ))
  39950. characterMakers.push(() => makeCharacter(
  39951. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39952. {
  39953. front: {
  39954. height: math.unit(8 + 6/12, "feet"),
  39955. name: "Front",
  39956. image: {
  39957. source: "./media/characters/essynkardi/front.svg",
  39958. extra: 1541/1457,
  39959. bottom: 47/1588
  39960. }
  39961. },
  39962. },
  39963. [
  39964. {
  39965. name: "Normal",
  39966. height: math.unit(8 + 6/12, "feet"),
  39967. default: true
  39968. },
  39969. ]
  39970. ))
  39971. characterMakers.push(() => makeCharacter(
  39972. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39973. {
  39974. front: {
  39975. height: math.unit(6 + 6/12, "feet"),
  39976. weight: math.unit(7, "lb"),
  39977. name: "Front",
  39978. image: {
  39979. source: "./media/characters/icky/front.svg",
  39980. extra: 813/782,
  39981. bottom: 66/879
  39982. }
  39983. },
  39984. back: {
  39985. height: math.unit(6 + 6/12, "feet"),
  39986. weight: math.unit(7, "lb"),
  39987. name: "Back",
  39988. image: {
  39989. source: "./media/characters/icky/back.svg",
  39990. extra: 754/735,
  39991. bottom: 56/810
  39992. }
  39993. },
  39994. },
  39995. [
  39996. {
  39997. name: "Normal",
  39998. height: math.unit(6 + 6/12, "feet"),
  39999. default: true
  40000. },
  40001. ]
  40002. ))
  40003. characterMakers.push(() => makeCharacter(
  40004. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40005. {
  40006. front: {
  40007. height: math.unit(15, "feet"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/rojas/front.svg",
  40011. extra: 1462/1408,
  40012. bottom: 95/1557
  40013. }
  40014. },
  40015. back: {
  40016. height: math.unit(15, "feet"),
  40017. name: "Back",
  40018. image: {
  40019. source: "./media/characters/rojas/back.svg",
  40020. extra: 1023/954,
  40021. bottom: 28/1051
  40022. }
  40023. },
  40024. },
  40025. [
  40026. {
  40027. name: "Normal",
  40028. height: math.unit(15, "feet"),
  40029. default: true
  40030. },
  40031. ]
  40032. ))
  40033. characterMakers.push(() => makeCharacter(
  40034. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40035. {
  40036. frontHuman: {
  40037. height: math.unit(5 + 7/12, "feet"),
  40038. name: "Front (Human)",
  40039. image: {
  40040. source: "./media/characters/alek-dryagan/front-human.svg",
  40041. extra: 1687/1667,
  40042. bottom: 69/1756
  40043. }
  40044. },
  40045. backHuman: {
  40046. height: math.unit(5 + 7/12, "feet"),
  40047. name: "Back (Human)",
  40048. image: {
  40049. source: "./media/characters/alek-dryagan/back-human.svg",
  40050. extra: 1670/1649,
  40051. bottom: 65/1735
  40052. }
  40053. },
  40054. frontDemi: {
  40055. height: math.unit(65, "feet"),
  40056. name: "Front (Demi)",
  40057. image: {
  40058. source: "./media/characters/alek-dryagan/front-demi.svg",
  40059. extra: 1669/1642,
  40060. bottom: 49/1718
  40061. }
  40062. },
  40063. backDemi: {
  40064. height: math.unit(65, "feet"),
  40065. name: "Back (Demi)",
  40066. image: {
  40067. source: "./media/characters/alek-dryagan/back-demi.svg",
  40068. extra: 1658/1637,
  40069. bottom: 40/1698
  40070. }
  40071. },
  40072. mawHuman: {
  40073. height: math.unit(0.3, "feet"),
  40074. name: "Maw (Human)",
  40075. image: {
  40076. source: "./media/characters/alek-dryagan/maw-human.svg"
  40077. }
  40078. },
  40079. mawDemi: {
  40080. height: math.unit(3.8, "feet"),
  40081. name: "Maw (Demi)",
  40082. image: {
  40083. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40084. }
  40085. },
  40086. },
  40087. [
  40088. {
  40089. name: "Normal",
  40090. height: math.unit(5 + 7/12, "feet"),
  40091. default: true
  40092. },
  40093. ]
  40094. ))
  40095. characterMakers.push(() => makeCharacter(
  40096. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40097. {
  40098. frontHuman: {
  40099. height: math.unit(5 + 2/12, "feet"),
  40100. name: "Front (Human)",
  40101. image: {
  40102. source: "./media/characters/gen/front-human.svg",
  40103. extra: 1627/1538,
  40104. bottom: 71/1698
  40105. }
  40106. },
  40107. backHuman: {
  40108. height: math.unit(5 + 2/12, "feet"),
  40109. name: "Back (Human)",
  40110. image: {
  40111. source: "./media/characters/gen/back-human.svg",
  40112. extra: 1638/1548,
  40113. bottom: 69/1707
  40114. }
  40115. },
  40116. frontDemi: {
  40117. height: math.unit(5 + 2/12, "feet"),
  40118. name: "Front (Demi)",
  40119. image: {
  40120. source: "./media/characters/gen/front-demi.svg",
  40121. extra: 1627/1538,
  40122. bottom: 71/1698
  40123. }
  40124. },
  40125. backDemi: {
  40126. height: math.unit(5 + 2/12, "feet"),
  40127. name: "Back (Demi)",
  40128. image: {
  40129. source: "./media/characters/gen/back-demi.svg",
  40130. extra: 1638/1548,
  40131. bottom: 69/1707
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Normal",
  40138. height: math.unit(5 + 2/12, "feet"),
  40139. default: true
  40140. },
  40141. ]
  40142. ))
  40143. characterMakers.push(() => makeCharacter(
  40144. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40145. {
  40146. frontImp: {
  40147. height: math.unit(1 + 11/12, "feet"),
  40148. name: "Front (Imp)",
  40149. image: {
  40150. source: "./media/characters/max-kobold/front-imp.svg",
  40151. extra: 1238/1134,
  40152. bottom: 81/1319
  40153. }
  40154. },
  40155. backImp: {
  40156. height: math.unit(1 + 11/12, "feet"),
  40157. name: "Back (Imp)",
  40158. image: {
  40159. source: "./media/characters/max-kobold/back-imp.svg",
  40160. extra: 1334/1175,
  40161. bottom: 34/1368
  40162. }
  40163. },
  40164. frontDemi: {
  40165. height: math.unit(5 + 9/12, "feet"),
  40166. name: "Front (Demi)",
  40167. image: {
  40168. source: "./media/characters/max-kobold/front-demi.svg",
  40169. extra: 1715/1685,
  40170. bottom: 54/1769
  40171. }
  40172. },
  40173. backDemi: {
  40174. height: math.unit(5 + 9/12, "feet"),
  40175. name: "Back (Demi)",
  40176. image: {
  40177. source: "./media/characters/max-kobold/back-demi.svg",
  40178. extra: 1752/1729,
  40179. bottom: 41/1793
  40180. }
  40181. },
  40182. handImp: {
  40183. height: math.unit(0.45, "feet"),
  40184. name: "Hand (Imp)",
  40185. image: {
  40186. source: "./media/characters/max-kobold/hand.svg"
  40187. }
  40188. },
  40189. pawImp: {
  40190. height: math.unit(0.46, "feet"),
  40191. name: "Paw (Imp)",
  40192. image: {
  40193. source: "./media/characters/max-kobold/paw.svg"
  40194. }
  40195. },
  40196. handDemi: {
  40197. height: math.unit(0.80, "feet"),
  40198. name: "Hand (Demi)",
  40199. image: {
  40200. source: "./media/characters/max-kobold/hand.svg"
  40201. }
  40202. },
  40203. pawDemi: {
  40204. height: math.unit(1.1, "feet"),
  40205. name: "Paw (Demi)",
  40206. image: {
  40207. source: "./media/characters/max-kobold/paw.svg"
  40208. }
  40209. },
  40210. headImp: {
  40211. height: math.unit(1.33, "feet"),
  40212. name: "Head (Imp)",
  40213. image: {
  40214. source: "./media/characters/max-kobold/head-imp.svg"
  40215. }
  40216. },
  40217. mawImp: {
  40218. height: math.unit(0.75, "feet"),
  40219. name: "Maw (Imp)",
  40220. image: {
  40221. source: "./media/characters/max-kobold/maw-imp.svg"
  40222. }
  40223. },
  40224. mawDemi: {
  40225. height: math.unit(0.42, "feet"),
  40226. name: "Maw (Demi)",
  40227. image: {
  40228. source: "./media/characters/max-kobold/maw-demi.svg"
  40229. }
  40230. },
  40231. },
  40232. [
  40233. {
  40234. name: "Normal",
  40235. height: math.unit(1 + 11/12, "feet"),
  40236. default: true
  40237. },
  40238. ]
  40239. ))
  40240. characterMakers.push(() => makeCharacter(
  40241. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40242. {
  40243. front: {
  40244. height: math.unit(7 + 5/12, "feet"),
  40245. name: "Front",
  40246. image: {
  40247. source: "./media/characters/carbon/front.svg",
  40248. extra: 1754/1689,
  40249. bottom: 65/1819
  40250. }
  40251. },
  40252. back: {
  40253. height: math.unit(7 + 5/12, "feet"),
  40254. name: "Back",
  40255. image: {
  40256. source: "./media/characters/carbon/back.svg",
  40257. extra: 1762/1695,
  40258. bottom: 24/1786
  40259. }
  40260. },
  40261. frontGigantamax: {
  40262. height: math.unit(150, "feet"),
  40263. name: "Front (Gigantamax)",
  40264. image: {
  40265. source: "./media/characters/carbon/front-gigantamax.svg",
  40266. extra: 1826/1669,
  40267. bottom: 59/1885
  40268. }
  40269. },
  40270. backGigantamax: {
  40271. height: math.unit(150, "feet"),
  40272. name: "Back (Gigantamax)",
  40273. image: {
  40274. source: "./media/characters/carbon/back-gigantamax.svg",
  40275. extra: 1796/1653,
  40276. bottom: 53/1849
  40277. }
  40278. },
  40279. maw: {
  40280. height: math.unit(0.48, "feet"),
  40281. name: "Maw",
  40282. image: {
  40283. source: "./media/characters/carbon/maw.svg"
  40284. }
  40285. },
  40286. mawGigantamax: {
  40287. height: math.unit(7.5, "feet"),
  40288. name: "Maw (Gigantamax)",
  40289. image: {
  40290. source: "./media/characters/carbon/maw-gigantamax.svg"
  40291. }
  40292. },
  40293. },
  40294. [
  40295. {
  40296. name: "Normal",
  40297. height: math.unit(7 + 5/12, "feet"),
  40298. default: true
  40299. },
  40300. ]
  40301. ))
  40302. characterMakers.push(() => makeCharacter(
  40303. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40304. {
  40305. front: {
  40306. height: math.unit(6, "feet"),
  40307. name: "Front",
  40308. image: {
  40309. source: "./media/characters/maverick/front.svg",
  40310. extra: 1672/1661,
  40311. bottom: 85/1757
  40312. }
  40313. },
  40314. back: {
  40315. height: math.unit(6, "feet"),
  40316. name: "Back",
  40317. image: {
  40318. source: "./media/characters/maverick/back.svg",
  40319. extra: 1642/1631,
  40320. bottom: 38/1680
  40321. }
  40322. },
  40323. },
  40324. [
  40325. {
  40326. name: "Normal",
  40327. height: math.unit(6, "feet"),
  40328. default: true
  40329. },
  40330. ]
  40331. ))
  40332. characterMakers.push(() => makeCharacter(
  40333. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40334. {
  40335. front: {
  40336. height: math.unit(15, "feet"),
  40337. weight: math.unit(615, "lb"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/grockle/front.svg",
  40341. extra: 1535/1427,
  40342. bottom: 56/1591
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Normal",
  40349. height: math.unit(15, "feet"),
  40350. default: true
  40351. },
  40352. {
  40353. name: "Large",
  40354. height: math.unit(150, "feet")
  40355. },
  40356. {
  40357. name: "Macro",
  40358. height: math.unit(1876, "feet")
  40359. },
  40360. {
  40361. name: "Mega Macro",
  40362. height: math.unit(121940, "feet")
  40363. },
  40364. {
  40365. name: "Giga Macro",
  40366. height: math.unit(750, "km")
  40367. },
  40368. {
  40369. name: "Tera Macro",
  40370. height: math.unit(750000, "km")
  40371. },
  40372. {
  40373. name: "Galactic",
  40374. height: math.unit(1.4e5, "km")
  40375. },
  40376. {
  40377. name: "Godlike",
  40378. height: math.unit(9.8e280, "galaxies")
  40379. },
  40380. ]
  40381. ))
  40382. characterMakers.push(() => makeCharacter(
  40383. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40384. {
  40385. front: {
  40386. height: math.unit(11, "meters"),
  40387. weight: math.unit(20, "tonnes"),
  40388. name: "Front",
  40389. image: {
  40390. source: "./media/characters/alistair/front.svg",
  40391. extra: 1265/1009,
  40392. bottom: 93/1358
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Normal",
  40399. height: math.unit(11, "meters"),
  40400. default: true
  40401. },
  40402. ]
  40403. ))
  40404. characterMakers.push(() => makeCharacter(
  40405. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40406. {
  40407. front: {
  40408. height: math.unit(5 + 8/12, "feet"),
  40409. name: "Front",
  40410. image: {
  40411. source: "./media/characters/haruka/front.svg",
  40412. extra: 2012/1952,
  40413. bottom: 0/2012
  40414. }
  40415. },
  40416. },
  40417. [
  40418. {
  40419. name: "Normal",
  40420. height: math.unit(5 + 8/12, "feet"),
  40421. default: true
  40422. },
  40423. ]
  40424. ))
  40425. characterMakers.push(() => makeCharacter(
  40426. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40427. {
  40428. back: {
  40429. height: math.unit(9, "feet"),
  40430. name: "Back",
  40431. image: {
  40432. source: "./media/characters/vivian-sylveon/back.svg",
  40433. extra: 1853/1714,
  40434. bottom: 0/1853
  40435. }
  40436. },
  40437. hyper: {
  40438. height: math.unit(5.58, "feet"),
  40439. name: "Hyper",
  40440. preyCapacity: math.unit(2.80616218797, "m^3"),
  40441. image: {
  40442. source: "./media/characters/vivian-sylveon/hyper.svg",
  40443. extra: 999/676,
  40444. bottom: 697/1696
  40445. },
  40446. },
  40447. paw: {
  40448. height: math.unit(1.8, "feet"),
  40449. name: "Paw",
  40450. image: {
  40451. source: "./media/characters/vivian-sylveon/paw.svg"
  40452. }
  40453. },
  40454. danger: {
  40455. height: math.unit(7.5, "feet"),
  40456. name: "DANGER",
  40457. image: {
  40458. source: "./media/characters/vivian-sylveon/danger.svg"
  40459. }
  40460. },
  40461. },
  40462. [
  40463. {
  40464. name: "Normal",
  40465. height: math.unit(9, "feet"),
  40466. default: true
  40467. },
  40468. {
  40469. name: "Macro",
  40470. height: math.unit(500, "feet")
  40471. },
  40472. {
  40473. name: "Megamacro",
  40474. height: math.unit(600, "miles")
  40475. },
  40476. {
  40477. name: "Gigamacro",
  40478. height: math.unit(30000, "miles")
  40479. },
  40480. ]
  40481. ))
  40482. characterMakers.push(() => makeCharacter(
  40483. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40484. {
  40485. anthro: {
  40486. height: math.unit(5 + 10/12, "feet"),
  40487. weight: math.unit(100, "lb"),
  40488. name: "Anthro",
  40489. image: {
  40490. source: "./media/characters/daiki/anthro.svg",
  40491. extra: 1115/1027,
  40492. bottom: 69/1184
  40493. }
  40494. },
  40495. feral: {
  40496. height: math.unit(200, "feet"),
  40497. name: "Feral",
  40498. image: {
  40499. source: "./media/characters/daiki/feral.svg",
  40500. extra: 1256/313,
  40501. bottom: 39/1295
  40502. }
  40503. },
  40504. feralHead: {
  40505. height: math.unit(171, "feet"),
  40506. name: "Feral Head",
  40507. image: {
  40508. source: "./media/characters/daiki/feral-head.svg"
  40509. }
  40510. },
  40511. manaDragon: {
  40512. height: math.unit(170, "meters"),
  40513. name: "Mana-dragon",
  40514. image: {
  40515. source: "./media/characters/daiki/mana-dragon.svg",
  40516. extra: 763/420,
  40517. bottom: 97/860
  40518. }
  40519. },
  40520. },
  40521. [
  40522. {
  40523. name: "Normal",
  40524. height: math.unit(5 + 10/12, "feet"),
  40525. default: true
  40526. },
  40527. ]
  40528. ))
  40529. characterMakers.push(() => makeCharacter(
  40530. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40531. {
  40532. fullyEquippedFront: {
  40533. height: math.unit(3 + 1/12, "feet"),
  40534. weight: math.unit(24, "lb"),
  40535. name: "Fully Equipped (Front)",
  40536. image: {
  40537. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40538. extra: 687/605,
  40539. bottom: 18/705
  40540. }
  40541. },
  40542. fullyEquippedBack: {
  40543. height: math.unit(3 + 1/12, "feet"),
  40544. weight: math.unit(24, "lb"),
  40545. name: "Fully Equipped (Back)",
  40546. image: {
  40547. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40548. extra: 689/590,
  40549. bottom: 18/707
  40550. }
  40551. },
  40552. dailyWear: {
  40553. height: math.unit(3 + 1/12, "feet"),
  40554. weight: math.unit(24, "lb"),
  40555. name: "Daily Wear",
  40556. image: {
  40557. source: "./media/characters/tea-spot/daily-wear.svg",
  40558. extra: 701/620,
  40559. bottom: 21/722
  40560. }
  40561. },
  40562. maidWork: {
  40563. height: math.unit(3 + 1/12, "feet"),
  40564. weight: math.unit(24, "lb"),
  40565. name: "Maid Work",
  40566. image: {
  40567. source: "./media/characters/tea-spot/maid-work.svg",
  40568. extra: 693/609,
  40569. bottom: 15/708
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(3 + 1/12, "feet"),
  40577. default: true
  40578. },
  40579. ]
  40580. ))
  40581. characterMakers.push(() => makeCharacter(
  40582. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40583. {
  40584. front: {
  40585. height: math.unit(175, "cm"),
  40586. weight: math.unit(75, "kg"),
  40587. name: "Front",
  40588. image: {
  40589. source: "./media/characters/chee/front.svg",
  40590. extra: 1796/1740,
  40591. bottom: 40/1836
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Micro-Micro",
  40598. height: math.unit(1, "nm")
  40599. },
  40600. {
  40601. name: "Micro-erst",
  40602. height: math.unit(1, "micrometer")
  40603. },
  40604. {
  40605. name: "Micro-er",
  40606. height: math.unit(1, "cm")
  40607. },
  40608. {
  40609. name: "Normal",
  40610. height: math.unit(175, "cm"),
  40611. default: true
  40612. },
  40613. {
  40614. name: "Macro",
  40615. height: math.unit(100, "m")
  40616. },
  40617. {
  40618. name: "Macro-er",
  40619. height: math.unit(1, "km")
  40620. },
  40621. {
  40622. name: "Macro-erst",
  40623. height: math.unit(10, "km")
  40624. },
  40625. {
  40626. name: "Macro-Macro",
  40627. height: math.unit(100, "km")
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40633. {
  40634. front: {
  40635. height: math.unit(11 + 9/12, "feet"),
  40636. weight: math.unit(935, "lb"),
  40637. name: "Front",
  40638. image: {
  40639. source: "./media/characters/kingsley/front.svg",
  40640. extra: 1803/1674,
  40641. bottom: 127/1930
  40642. }
  40643. },
  40644. frontNude: {
  40645. height: math.unit(11 + 9/12, "feet"),
  40646. weight: math.unit(935, "lb"),
  40647. name: "Front (Nude)",
  40648. image: {
  40649. source: "./media/characters/kingsley/front-nude.svg",
  40650. extra: 1803/1674,
  40651. bottom: 127/1930
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(11 + 9/12, "feet"),
  40659. default: true
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40665. {
  40666. side: {
  40667. height: math.unit(9, "feet"),
  40668. name: "Side",
  40669. image: {
  40670. source: "./media/characters/rymel/side.svg",
  40671. extra: 792/469,
  40672. bottom: 121/913
  40673. }
  40674. },
  40675. maw: {
  40676. height: math.unit(2.4, "meters"),
  40677. name: "Maw",
  40678. image: {
  40679. source: "./media/characters/rymel/maw.svg"
  40680. }
  40681. },
  40682. },
  40683. [
  40684. {
  40685. name: "House Drake",
  40686. height: math.unit(2, "feet")
  40687. },
  40688. {
  40689. name: "Reduced",
  40690. height: math.unit(4.5, "feet")
  40691. },
  40692. {
  40693. name: "Normal",
  40694. height: math.unit(9, "feet"),
  40695. default: true
  40696. },
  40697. ]
  40698. ))
  40699. characterMakers.push(() => makeCharacter(
  40700. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40701. {
  40702. front: {
  40703. height: math.unit(1.74, "meters"),
  40704. weight: math.unit(55, "kg"),
  40705. name: "Front",
  40706. image: {
  40707. source: "./media/characters/rubus/front.svg",
  40708. extra: 1894/1742,
  40709. bottom: 44/1938
  40710. }
  40711. },
  40712. },
  40713. [
  40714. {
  40715. name: "Normal",
  40716. height: math.unit(1.74, "meters"),
  40717. default: true
  40718. },
  40719. ]
  40720. ))
  40721. characterMakers.push(() => makeCharacter(
  40722. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40723. {
  40724. front: {
  40725. height: math.unit(5 + 2/12, "feet"),
  40726. weight: math.unit(112, "lb"),
  40727. name: "Front",
  40728. image: {
  40729. source: "./media/characters/cassie-kingston/front.svg",
  40730. extra: 1438/1390,
  40731. bottom: 47/1485
  40732. }
  40733. },
  40734. },
  40735. [
  40736. {
  40737. name: "Normal",
  40738. height: math.unit(5 + 2/12, "feet"),
  40739. default: true
  40740. },
  40741. {
  40742. name: "Macro",
  40743. height: math.unit(128, "feet")
  40744. },
  40745. {
  40746. name: "Megamacro",
  40747. height: math.unit(2.56, "miles")
  40748. },
  40749. ]
  40750. ))
  40751. characterMakers.push(() => makeCharacter(
  40752. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40753. {
  40754. front: {
  40755. height: math.unit(7, "feet"),
  40756. name: "Front",
  40757. image: {
  40758. source: "./media/characters/fox/front.svg",
  40759. extra: 1798/1703,
  40760. bottom: 55/1853
  40761. }
  40762. },
  40763. back: {
  40764. height: math.unit(7, "feet"),
  40765. name: "Back",
  40766. image: {
  40767. source: "./media/characters/fox/back.svg",
  40768. extra: 1748/1649,
  40769. bottom: 32/1780
  40770. }
  40771. },
  40772. head: {
  40773. height: math.unit(1.95, "feet"),
  40774. name: "Head",
  40775. image: {
  40776. source: "./media/characters/fox/head.svg"
  40777. }
  40778. },
  40779. dick: {
  40780. height: math.unit(1.33, "feet"),
  40781. name: "Dick",
  40782. image: {
  40783. source: "./media/characters/fox/dick.svg"
  40784. }
  40785. },
  40786. foot: {
  40787. height: math.unit(1, "feet"),
  40788. name: "Foot",
  40789. image: {
  40790. source: "./media/characters/fox/foot.svg"
  40791. }
  40792. },
  40793. paw: {
  40794. height: math.unit(0.92, "feet"),
  40795. name: "Paw",
  40796. image: {
  40797. source: "./media/characters/fox/paw.svg"
  40798. }
  40799. },
  40800. },
  40801. [
  40802. {
  40803. name: "Small",
  40804. height: math.unit(3, "inches")
  40805. },
  40806. {
  40807. name: "\"Realistic\"",
  40808. height: math.unit(7, "feet")
  40809. },
  40810. {
  40811. name: "Normal",
  40812. height: math.unit(150, "feet"),
  40813. default: true
  40814. },
  40815. {
  40816. name: "BIG",
  40817. height: math.unit(1200, "feet")
  40818. },
  40819. {
  40820. name: "👀",
  40821. height: math.unit(5, "miles")
  40822. },
  40823. {
  40824. name: "👀👀👀",
  40825. height: math.unit(64, "miles")
  40826. },
  40827. ]
  40828. ))
  40829. characterMakers.push(() => makeCharacter(
  40830. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40831. {
  40832. front: {
  40833. height: math.unit(625, "feet"),
  40834. name: "Front",
  40835. image: {
  40836. source: "./media/characters/asonja-rossa/front.svg",
  40837. extra: 1833/1686,
  40838. bottom: 24/1857
  40839. }
  40840. },
  40841. back: {
  40842. height: math.unit(625, "feet"),
  40843. name: "Back",
  40844. image: {
  40845. source: "./media/characters/asonja-rossa/back.svg",
  40846. extra: 1852/1753,
  40847. bottom: 26/1878
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Macro",
  40854. height: math.unit(625, "feet"),
  40855. default: true
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40861. {
  40862. side: {
  40863. height: math.unit(8, "feet"),
  40864. name: "Side",
  40865. image: {
  40866. source: "./media/characters/rezukii/side.svg",
  40867. extra: 979/542,
  40868. bottom: 87/1066
  40869. }
  40870. },
  40871. sitting: {
  40872. height: math.unit(14.6, "feet"),
  40873. name: "Sitting",
  40874. image: {
  40875. source: "./media/characters/rezukii/sitting.svg",
  40876. extra: 1023/813,
  40877. bottom: 45/1068
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Tiny",
  40884. height: math.unit(2, "feet")
  40885. },
  40886. {
  40887. name: "Smol",
  40888. height: math.unit(4, "feet")
  40889. },
  40890. {
  40891. name: "Normal",
  40892. height: math.unit(8, "feet"),
  40893. default: true
  40894. },
  40895. {
  40896. name: "Big",
  40897. height: math.unit(12, "feet")
  40898. },
  40899. {
  40900. name: "Macro",
  40901. height: math.unit(30, "feet")
  40902. },
  40903. ]
  40904. ))
  40905. characterMakers.push(() => makeCharacter(
  40906. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40907. {
  40908. front: {
  40909. height: math.unit(14, "feet"),
  40910. weight: math.unit(9.5, "tonnes"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/dawnheart/front.svg",
  40914. extra: 2792/2675,
  40915. bottom: 64/2856
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Normal",
  40922. height: math.unit(14, "feet"),
  40923. default: true
  40924. },
  40925. ]
  40926. ))
  40927. characterMakers.push(() => makeCharacter(
  40928. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40929. {
  40930. front: {
  40931. height: math.unit(1.7, "m"),
  40932. name: "Front",
  40933. image: {
  40934. source: "./media/characters/gladi/front.svg",
  40935. extra: 1460/1362,
  40936. bottom: 19/1479
  40937. }
  40938. },
  40939. back: {
  40940. height: math.unit(1.7, "m"),
  40941. name: "Back",
  40942. image: {
  40943. source: "./media/characters/gladi/back.svg",
  40944. extra: 1459/1357,
  40945. bottom: 12/1471
  40946. }
  40947. },
  40948. feral: {
  40949. height: math.unit(2.05, "m"),
  40950. name: "Feral",
  40951. image: {
  40952. source: "./media/characters/gladi/feral.svg",
  40953. extra: 821/557,
  40954. bottom: 91/912
  40955. }
  40956. },
  40957. },
  40958. [
  40959. {
  40960. name: "Shortest",
  40961. height: math.unit(70, "cm")
  40962. },
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(1.7, "m")
  40966. },
  40967. {
  40968. name: "Macro",
  40969. height: math.unit(10, "m"),
  40970. default: true
  40971. },
  40972. {
  40973. name: "Tallest",
  40974. height: math.unit(200, "m")
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(5 + 7/12, "feet"),
  40983. weight: math.unit(2, "tons"),
  40984. name: "Front",
  40985. image: {
  40986. source: "./media/characters/erdno/front.svg",
  40987. extra: 1234/1129,
  40988. bottom: 35/1269
  40989. }
  40990. },
  40991. angled: {
  40992. height: math.unit(5 + 7/12, "feet"),
  40993. weight: math.unit(2, "tons"),
  40994. name: "Angled",
  40995. image: {
  40996. source: "./media/characters/erdno/angled.svg",
  40997. extra: 1185/1139,
  40998. bottom: 36/1221
  40999. }
  41000. },
  41001. side: {
  41002. height: math.unit(5 + 7/12, "feet"),
  41003. weight: math.unit(2, "tons"),
  41004. name: "Side",
  41005. image: {
  41006. source: "./media/characters/erdno/side.svg",
  41007. extra: 1191/1144,
  41008. bottom: 40/1231
  41009. }
  41010. },
  41011. back: {
  41012. height: math.unit(5 + 7/12, "feet"),
  41013. weight: math.unit(2, "tons"),
  41014. name: "Back",
  41015. image: {
  41016. source: "./media/characters/erdno/back.svg",
  41017. extra: 1202/1146,
  41018. bottom: 17/1219
  41019. }
  41020. },
  41021. frontNsfw: {
  41022. height: math.unit(5 + 7/12, "feet"),
  41023. weight: math.unit(2, "tons"),
  41024. name: "Front (NSFW)",
  41025. image: {
  41026. source: "./media/characters/erdno/front-nsfw.svg",
  41027. extra: 1234/1129,
  41028. bottom: 35/1269
  41029. }
  41030. },
  41031. angledNsfw: {
  41032. height: math.unit(5 + 7/12, "feet"),
  41033. weight: math.unit(2, "tons"),
  41034. name: "Angled (NSFW)",
  41035. image: {
  41036. source: "./media/characters/erdno/angled-nsfw.svg",
  41037. extra: 1185/1139,
  41038. bottom: 36/1221
  41039. }
  41040. },
  41041. sideNsfw: {
  41042. height: math.unit(5 + 7/12, "feet"),
  41043. weight: math.unit(2, "tons"),
  41044. name: "Side (NSFW)",
  41045. image: {
  41046. source: "./media/characters/erdno/side-nsfw.svg",
  41047. extra: 1191/1144,
  41048. bottom: 40/1231
  41049. }
  41050. },
  41051. backNsfw: {
  41052. height: math.unit(5 + 7/12, "feet"),
  41053. weight: math.unit(2, "tons"),
  41054. name: "Back (NSFW)",
  41055. image: {
  41056. source: "./media/characters/erdno/back-nsfw.svg",
  41057. extra: 1202/1146,
  41058. bottom: 17/1219
  41059. }
  41060. },
  41061. frontHyper: {
  41062. height: math.unit(5 + 7/12, "feet"),
  41063. weight: math.unit(2, "tons"),
  41064. name: "Front (Hyper)",
  41065. image: {
  41066. source: "./media/characters/erdno/front-hyper.svg",
  41067. extra: 1298/1136,
  41068. bottom: 35/1333
  41069. }
  41070. },
  41071. },
  41072. [
  41073. {
  41074. name: "Normal",
  41075. height: math.unit(5 + 7/12, "feet"),
  41076. default: true
  41077. },
  41078. {
  41079. name: "Big",
  41080. height: math.unit(5.7, "meters")
  41081. },
  41082. {
  41083. name: "Macro",
  41084. height: math.unit(5.7, "kilometers")
  41085. },
  41086. {
  41087. name: "Megamacro",
  41088. height: math.unit(5.7, "earths")
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41094. {
  41095. front: {
  41096. height: math.unit(5 + 10/12, "feet"),
  41097. weight: math.unit(150, "lb"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/jamie/front.svg",
  41101. extra: 1908/1768,
  41102. bottom: 19/1927
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Minimum",
  41109. height: math.unit(2, "cm")
  41110. },
  41111. {
  41112. name: "Micro",
  41113. height: math.unit(3, "inches")
  41114. },
  41115. {
  41116. name: "Normal",
  41117. height: math.unit(5 + 10/12, "feet"),
  41118. default: true
  41119. },
  41120. {
  41121. name: "Macro",
  41122. height: math.unit(150, "feet")
  41123. },
  41124. {
  41125. name: "Megamacro",
  41126. height: math.unit(10000, "m")
  41127. },
  41128. ]
  41129. ))
  41130. characterMakers.push(() => makeCharacter(
  41131. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41132. {
  41133. front: {
  41134. height: math.unit(2, "meters"),
  41135. weight: math.unit(100, "kg"),
  41136. name: "Front",
  41137. image: {
  41138. source: "./media/characters/shiron/front.svg",
  41139. extra: 2103/1985,
  41140. bottom: 98/2201
  41141. }
  41142. },
  41143. back: {
  41144. height: math.unit(2, "meters"),
  41145. weight: math.unit(100, "kg"),
  41146. name: "Back",
  41147. image: {
  41148. source: "./media/characters/shiron/back.svg",
  41149. extra: 2110/2015,
  41150. bottom: 89/2199
  41151. }
  41152. },
  41153. hand: {
  41154. height: math.unit(0.96, "feet"),
  41155. name: "Hand",
  41156. image: {
  41157. source: "./media/characters/shiron/hand.svg"
  41158. }
  41159. },
  41160. foot: {
  41161. height: math.unit(1.464, "feet"),
  41162. name: "Foot",
  41163. image: {
  41164. source: "./media/characters/shiron/foot.svg"
  41165. }
  41166. },
  41167. },
  41168. [
  41169. {
  41170. name: "Normal",
  41171. height: math.unit(2, "meters")
  41172. },
  41173. {
  41174. name: "Macro",
  41175. height: math.unit(500, "meters"),
  41176. default: true
  41177. },
  41178. {
  41179. name: "Megamacro",
  41180. height: math.unit(20, "km")
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41186. {
  41187. front: {
  41188. height: math.unit(6, "feet"),
  41189. name: "Front",
  41190. image: {
  41191. source: "./media/characters/sam/front.svg",
  41192. extra: 849/826,
  41193. bottom: 19/868
  41194. }
  41195. },
  41196. },
  41197. [
  41198. {
  41199. name: "Normal",
  41200. height: math.unit(6, "feet"),
  41201. default: true
  41202. },
  41203. ]
  41204. ))
  41205. characterMakers.push(() => makeCharacter(
  41206. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41207. {
  41208. front: {
  41209. height: math.unit(8 + 4/12, "feet"),
  41210. weight: math.unit(122, "kg"),
  41211. name: "Front",
  41212. image: {
  41213. source: "./media/characters/namori-kurogawa/front.svg",
  41214. extra: 1894/1576,
  41215. bottom: 34/1928
  41216. }
  41217. },
  41218. },
  41219. [
  41220. {
  41221. name: "Normal",
  41222. height: math.unit(8 + 4/12, "feet"),
  41223. default: true
  41224. },
  41225. ]
  41226. ))
  41227. characterMakers.push(() => makeCharacter(
  41228. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41229. {
  41230. front: {
  41231. height: math.unit(9, "feet"),
  41232. weight: math.unit(621, "lb"),
  41233. name: "Front",
  41234. image: {
  41235. source: "./media/characters/unmru/front.svg",
  41236. extra: 1853/1747,
  41237. bottom: 73/1926
  41238. }
  41239. },
  41240. side: {
  41241. height: math.unit(9, "feet"),
  41242. weight: math.unit(621, "lb"),
  41243. name: "Side",
  41244. image: {
  41245. source: "./media/characters/unmru/side.svg",
  41246. extra: 1781/1671,
  41247. bottom: 127/1908
  41248. }
  41249. },
  41250. back: {
  41251. height: math.unit(9, "feet"),
  41252. weight: math.unit(621, "lb"),
  41253. name: "Back",
  41254. image: {
  41255. source: "./media/characters/unmru/back.svg",
  41256. extra: 1894/1765,
  41257. bottom: 75/1969
  41258. }
  41259. },
  41260. dick: {
  41261. height: math.unit(3, "feet"),
  41262. weight: math.unit(35, "lb"),
  41263. name: "Dick",
  41264. image: {
  41265. source: "./media/characters/unmru/dick.svg"
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Normal",
  41272. height: math.unit(9, "feet")
  41273. },
  41274. {
  41275. name: "Natural",
  41276. height: math.unit(27, "feet"),
  41277. default: true
  41278. },
  41279. {
  41280. name: "Giant",
  41281. height: math.unit(90, "feet")
  41282. },
  41283. {
  41284. name: "Kaiju",
  41285. height: math.unit(270, "feet")
  41286. },
  41287. {
  41288. name: "Macro",
  41289. height: math.unit(900, "feet")
  41290. },
  41291. {
  41292. name: "Macro+",
  41293. height: math.unit(2700, "feet")
  41294. },
  41295. {
  41296. name: "Megamacro",
  41297. height: math.unit(9000, "feet")
  41298. },
  41299. {
  41300. name: "City-Crushing",
  41301. height: math.unit(27000, "feet")
  41302. },
  41303. {
  41304. name: "Mountain-Mashing",
  41305. height: math.unit(90000, "feet")
  41306. },
  41307. {
  41308. name: "Earth-Eclipsing",
  41309. height: math.unit(2.7e8, "feet")
  41310. },
  41311. {
  41312. name: "Sol-Swallowing",
  41313. height: math.unit(9e10, "feet")
  41314. },
  41315. {
  41316. name: "Majoris-Munching",
  41317. height: math.unit(2.7e13, "feet")
  41318. },
  41319. ]
  41320. ))
  41321. characterMakers.push(() => makeCharacter(
  41322. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41323. {
  41324. front: {
  41325. height: math.unit(1, "inch"),
  41326. name: "Front",
  41327. image: {
  41328. source: "./media/characters/squeaks-mouse/front.svg",
  41329. extra: 352/308,
  41330. bottom: 25/377
  41331. }
  41332. },
  41333. },
  41334. [
  41335. {
  41336. name: "Micro",
  41337. height: math.unit(1, "inch"),
  41338. default: true
  41339. },
  41340. ]
  41341. ))
  41342. characterMakers.push(() => makeCharacter(
  41343. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41344. {
  41345. side: {
  41346. height: math.unit(35, "feet"),
  41347. name: "Side",
  41348. image: {
  41349. source: "./media/characters/sayko/side.svg",
  41350. extra: 1697/1021,
  41351. bottom: 82/1779
  41352. }
  41353. },
  41354. head: {
  41355. height: math.unit(16, "feet"),
  41356. name: "Head",
  41357. image: {
  41358. source: "./media/characters/sayko/head.svg"
  41359. }
  41360. },
  41361. forepaw: {
  41362. height: math.unit(7.85, "feet"),
  41363. name: "Forepaw",
  41364. image: {
  41365. source: "./media/characters/sayko/forepaw.svg"
  41366. }
  41367. },
  41368. hindpaw: {
  41369. height: math.unit(8.8, "feet"),
  41370. name: "Hindpaw",
  41371. image: {
  41372. source: "./media/characters/sayko/hindpaw.svg"
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Normal",
  41379. height: math.unit(35, "feet"),
  41380. default: true
  41381. },
  41382. {
  41383. name: "Colossus",
  41384. height: math.unit(100, "meters")
  41385. },
  41386. {
  41387. name: "\"Small\" Deity",
  41388. height: math.unit(1, "km")
  41389. },
  41390. {
  41391. name: "\"Large\" Deity",
  41392. height: math.unit(15, "km")
  41393. },
  41394. ]
  41395. ))
  41396. characterMakers.push(() => makeCharacter(
  41397. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41398. {
  41399. front: {
  41400. height: math.unit(6, "feet"),
  41401. weight: math.unit(250, "lb"),
  41402. name: "Front",
  41403. image: {
  41404. source: "./media/characters/mukiro/front.svg",
  41405. extra: 1368/1310,
  41406. bottom: 34/1402
  41407. }
  41408. },
  41409. },
  41410. [
  41411. {
  41412. name: "Normal",
  41413. height: math.unit(6, "feet"),
  41414. default: true
  41415. },
  41416. ]
  41417. ))
  41418. characterMakers.push(() => makeCharacter(
  41419. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41420. {
  41421. front: {
  41422. height: math.unit(12 + 4/12, "feet"),
  41423. name: "Front",
  41424. image: {
  41425. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41426. extra: 1346/1311,
  41427. bottom: 65/1411
  41428. }
  41429. },
  41430. },
  41431. [
  41432. {
  41433. name: "Base",
  41434. height: math.unit(12 + 4/12, "feet"),
  41435. default: true
  41436. },
  41437. {
  41438. name: "Macro",
  41439. height: math.unit(150, "feet")
  41440. },
  41441. {
  41442. name: "Mega",
  41443. height: math.unit(2, "miles")
  41444. },
  41445. {
  41446. name: "Demi God",
  41447. height: math.unit(4, "AU")
  41448. },
  41449. {
  41450. name: "God Size",
  41451. height: math.unit(1, "universe")
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41457. {
  41458. front: {
  41459. height: math.unit(3 + 3/12, "feet"),
  41460. weight: math.unit(88, "lb"),
  41461. name: "Front",
  41462. image: {
  41463. source: "./media/characters/trey/front.svg",
  41464. extra: 1815/1509,
  41465. bottom: 60/1875
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(3 + 3/12, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41479. {
  41480. front: {
  41481. height: math.unit(4, "meters"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/adelonda/front.svg",
  41485. extra: 1077/982,
  41486. bottom: 39/1116
  41487. }
  41488. },
  41489. back: {
  41490. height: math.unit(4, "meters"),
  41491. name: "Back",
  41492. image: {
  41493. source: "./media/characters/adelonda/back.svg",
  41494. extra: 1105/1003,
  41495. bottom: 25/1130
  41496. }
  41497. },
  41498. feral: {
  41499. height: math.unit(40/1.5, "meters"),
  41500. name: "Feral",
  41501. image: {
  41502. source: "./media/characters/adelonda/feral.svg",
  41503. extra: 597/271,
  41504. bottom: 387/984
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(4, "meters"),
  41512. default: true
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41518. {
  41519. front: {
  41520. height: math.unit(8 + 4/12, "feet"),
  41521. weight: math.unit(670, "lb"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/acadiel/front.svg",
  41525. extra: 1901/1595,
  41526. bottom: 142/2043
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Normal",
  41533. height: math.unit(8 + 4/12, "feet"),
  41534. default: true
  41535. },
  41536. {
  41537. name: "Macro",
  41538. height: math.unit(200, "feet")
  41539. },
  41540. ]
  41541. ))
  41542. characterMakers.push(() => makeCharacter(
  41543. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41544. {
  41545. front: {
  41546. height: math.unit(6 + 2/12, "feet"),
  41547. weight: math.unit(185, "lb"),
  41548. name: "Front",
  41549. image: {
  41550. source: "./media/characters/kayne-ein/front.svg",
  41551. extra: 1780/1560,
  41552. bottom: 81/1861
  41553. }
  41554. },
  41555. },
  41556. [
  41557. {
  41558. name: "Normal",
  41559. height: math.unit(6 + 2/12, "feet"),
  41560. default: true
  41561. },
  41562. {
  41563. name: "Transformation Stage",
  41564. height: math.unit(15, "feet")
  41565. },
  41566. {
  41567. name: "Macro",
  41568. height: math.unit(150, "feet")
  41569. },
  41570. {
  41571. name: "Earth's Shadow",
  41572. height: math.unit(6200, "miles")
  41573. },
  41574. {
  41575. name: "Universal Demon",
  41576. height: math.unit(28e9, "parsecs")
  41577. },
  41578. {
  41579. name: "Multiverse God",
  41580. height: math.unit(3, "multiverses")
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41586. {
  41587. front: {
  41588. height: math.unit(5 + 5/12, "feet"),
  41589. name: "Front",
  41590. image: {
  41591. source: "./media/characters/fawn/front.svg",
  41592. extra: 1873/1731,
  41593. bottom: 95/1968
  41594. }
  41595. },
  41596. back: {
  41597. height: math.unit(5 + 5/12, "feet"),
  41598. name: "Back",
  41599. image: {
  41600. source: "./media/characters/fawn/back.svg",
  41601. extra: 1813/1700,
  41602. bottom: 14/1827
  41603. }
  41604. },
  41605. hoof: {
  41606. height: math.unit(1.45, "feet"),
  41607. name: "Hoof",
  41608. image: {
  41609. source: "./media/characters/fawn/hoof.svg"
  41610. }
  41611. },
  41612. },
  41613. [
  41614. {
  41615. name: "Normal",
  41616. height: math.unit(5 + 5/12, "feet"),
  41617. default: true
  41618. },
  41619. ]
  41620. ))
  41621. characterMakers.push(() => makeCharacter(
  41622. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41623. {
  41624. front: {
  41625. height: math.unit(2 + 5/12, "feet"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/orion/front.svg",
  41629. extra: 1366/1304,
  41630. bottom: 43/1409
  41631. }
  41632. },
  41633. paw: {
  41634. height: math.unit(0.52, "feet"),
  41635. name: "Paw",
  41636. image: {
  41637. source: "./media/characters/orion/paw.svg"
  41638. }
  41639. },
  41640. },
  41641. [
  41642. {
  41643. name: "Normal",
  41644. height: math.unit(2 + 5/12, "feet"),
  41645. default: true
  41646. },
  41647. ]
  41648. ))
  41649. characterMakers.push(() => makeCharacter(
  41650. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41651. {
  41652. front: {
  41653. height: math.unit(5 + 10/12, "feet"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/vera/front.svg",
  41657. extra: 1680/1575,
  41658. bottom: 49/1729
  41659. }
  41660. },
  41661. back: {
  41662. height: math.unit(5 + 10/12, "feet"),
  41663. name: "Back",
  41664. image: {
  41665. source: "./media/characters/vera/back.svg",
  41666. extra: 1700/1588,
  41667. bottom: 18/1718
  41668. }
  41669. },
  41670. arcanine: {
  41671. height: math.unit(6 + 8/12, "feet"),
  41672. name: "Arcanine",
  41673. image: {
  41674. source: "./media/characters/vera/arcanine.svg",
  41675. extra: 1590/1511,
  41676. bottom: 71/1661
  41677. }
  41678. },
  41679. maw: {
  41680. height: math.unit(0.82, "feet"),
  41681. name: "Maw",
  41682. image: {
  41683. source: "./media/characters/vera/maw.svg"
  41684. }
  41685. },
  41686. mawArcanine: {
  41687. height: math.unit(0.97, "feet"),
  41688. name: "Maw (Arcanine)",
  41689. image: {
  41690. source: "./media/characters/vera/maw-arcanine.svg"
  41691. }
  41692. },
  41693. paw: {
  41694. height: math.unit(0.75, "feet"),
  41695. name: "Paw",
  41696. image: {
  41697. source: "./media/characters/vera/paw.svg"
  41698. }
  41699. },
  41700. pawprint: {
  41701. height: math.unit(0.52, "feet"),
  41702. name: "Pawprint",
  41703. image: {
  41704. source: "./media/characters/vera/pawprint.svg"
  41705. }
  41706. },
  41707. },
  41708. [
  41709. {
  41710. name: "Normal",
  41711. height: math.unit(5 + 10/12, "feet"),
  41712. default: true
  41713. },
  41714. {
  41715. name: "Macro",
  41716. height: math.unit(75, "feet")
  41717. },
  41718. ]
  41719. ))
  41720. characterMakers.push(() => makeCharacter(
  41721. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41722. {
  41723. front: {
  41724. height: math.unit(4, "feet"),
  41725. weight: math.unit(40, "lb"),
  41726. name: "Front",
  41727. image: {
  41728. source: "./media/characters/orvan-rabbit/front.svg",
  41729. extra: 1896/1642,
  41730. bottom: 29/1925
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Normal",
  41737. height: math.unit(4, "feet"),
  41738. default: true
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41744. {
  41745. front: {
  41746. height: math.unit(6, "feet"),
  41747. weight: math.unit(168, "lb"),
  41748. name: "Front",
  41749. image: {
  41750. source: "./media/characters/lisa/front.svg",
  41751. extra: 2065/1867,
  41752. bottom: 46/2111
  41753. }
  41754. },
  41755. back: {
  41756. height: math.unit(6, "feet"),
  41757. weight: math.unit(168, "lb"),
  41758. name: "Back",
  41759. image: {
  41760. source: "./media/characters/lisa/back.svg",
  41761. extra: 1982/1838,
  41762. bottom: 29/2011
  41763. }
  41764. },
  41765. maw: {
  41766. height: math.unit(0.81, "feet"),
  41767. name: "Maw",
  41768. image: {
  41769. source: "./media/characters/lisa/maw.svg"
  41770. }
  41771. },
  41772. paw: {
  41773. height: math.unit(0.9, "feet"),
  41774. name: "Paw",
  41775. image: {
  41776. source: "./media/characters/lisa/paw.svg"
  41777. }
  41778. },
  41779. caribousune: {
  41780. height: math.unit(7 + 2/12, "feet"),
  41781. weight: math.unit(268, "lb"),
  41782. name: "Caribousune",
  41783. image: {
  41784. source: "./media/characters/lisa/caribousune.svg",
  41785. extra: 1843/1633,
  41786. bottom: 29/1872
  41787. }
  41788. },
  41789. frontCaribousune: {
  41790. height: math.unit(7 + 2/12, "feet"),
  41791. weight: math.unit(268, "lb"),
  41792. name: "Front (Caribousune)",
  41793. image: {
  41794. source: "./media/characters/lisa/front-caribousune.svg",
  41795. extra: 1818/1638,
  41796. bottom: 52/1870
  41797. }
  41798. },
  41799. sideCaribousune: {
  41800. height: math.unit(7 + 2/12, "feet"),
  41801. weight: math.unit(268, "lb"),
  41802. name: "Side (Caribousune)",
  41803. image: {
  41804. source: "./media/characters/lisa/side-caribousune.svg",
  41805. extra: 1851/1635,
  41806. bottom: 16/1867
  41807. }
  41808. },
  41809. backCaribousune: {
  41810. height: math.unit(7 + 2/12, "feet"),
  41811. weight: math.unit(268, "lb"),
  41812. name: "Back (Caribousune)",
  41813. image: {
  41814. source: "./media/characters/lisa/back-caribousune.svg",
  41815. extra: 1801/1604,
  41816. bottom: 44/1845
  41817. }
  41818. },
  41819. caribou: {
  41820. height: math.unit(7 + 2/12, "feet"),
  41821. weight: math.unit(268, "lb"),
  41822. name: "Caribou",
  41823. image: {
  41824. source: "./media/characters/lisa/caribou.svg",
  41825. extra: 1843/1633,
  41826. bottom: 29/1872
  41827. }
  41828. },
  41829. frontCaribou: {
  41830. height: math.unit(7 + 2/12, "feet"),
  41831. weight: math.unit(268, "lb"),
  41832. name: "Front (Caribou)",
  41833. image: {
  41834. source: "./media/characters/lisa/front-caribou.svg",
  41835. extra: 1818/1638,
  41836. bottom: 52/1870
  41837. }
  41838. },
  41839. sideCaribou: {
  41840. height: math.unit(7 + 2/12, "feet"),
  41841. weight: math.unit(268, "lb"),
  41842. name: "Side (Caribou)",
  41843. image: {
  41844. source: "./media/characters/lisa/side-caribou.svg",
  41845. extra: 1851/1635,
  41846. bottom: 16/1867
  41847. }
  41848. },
  41849. backCaribou: {
  41850. height: math.unit(7 + 2/12, "feet"),
  41851. weight: math.unit(268, "lb"),
  41852. name: "Back (Caribou)",
  41853. image: {
  41854. source: "./media/characters/lisa/back-caribou.svg",
  41855. extra: 1801/1604,
  41856. bottom: 44/1845
  41857. }
  41858. },
  41859. mawCaribou: {
  41860. height: math.unit(1.45, "feet"),
  41861. name: "Maw (Caribou)",
  41862. image: {
  41863. source: "./media/characters/lisa/maw-caribou.svg"
  41864. }
  41865. },
  41866. mawCaribousune: {
  41867. height: math.unit(1.45, "feet"),
  41868. name: "Maw (Caribousune)",
  41869. image: {
  41870. source: "./media/characters/lisa/maw-caribousune.svg"
  41871. }
  41872. },
  41873. pawCaribousune: {
  41874. height: math.unit(1.61, "feet"),
  41875. name: "Paw (Caribou)",
  41876. image: {
  41877. source: "./media/characters/lisa/paw-caribousune.svg"
  41878. }
  41879. },
  41880. },
  41881. [
  41882. {
  41883. name: "Normal",
  41884. height: math.unit(6, "feet")
  41885. },
  41886. {
  41887. name: "God Size",
  41888. height: math.unit(72, "feet"),
  41889. default: true
  41890. },
  41891. {
  41892. name: "Towering",
  41893. height: math.unit(288, "feet")
  41894. },
  41895. {
  41896. name: "City Size",
  41897. height: math.unit(48384, "feet")
  41898. },
  41899. {
  41900. name: "Continental",
  41901. height: math.unit(4200, "miles")
  41902. },
  41903. {
  41904. name: "Planet Eater",
  41905. height: math.unit(42, "earths")
  41906. },
  41907. {
  41908. name: "Star Swallower",
  41909. height: math.unit(42, "solarradii")
  41910. },
  41911. {
  41912. name: "System Swallower",
  41913. height: math.unit(84000, "AU")
  41914. },
  41915. {
  41916. name: "Galaxy Gobbler",
  41917. height: math.unit(42, "galaxies")
  41918. },
  41919. {
  41920. name: "Universe Devourer",
  41921. height: math.unit(42, "universes")
  41922. },
  41923. {
  41924. name: "Multiverse Muncher",
  41925. height: math.unit(42, "multiverses")
  41926. },
  41927. ]
  41928. ))
  41929. characterMakers.push(() => makeCharacter(
  41930. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41931. {
  41932. front: {
  41933. height: math.unit(36, "feet"),
  41934. name: "Front",
  41935. image: {
  41936. source: "./media/characters/shadow-rat/front.svg",
  41937. extra: 1845/1758,
  41938. bottom: 83/1928
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Macro",
  41945. height: math.unit(36, "feet"),
  41946. default: true
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41952. {
  41953. side: {
  41954. height: math.unit(8, "feet"),
  41955. weight: math.unit(2630, "lb"),
  41956. name: "Side",
  41957. image: {
  41958. source: "./media/characters/torallia/side.svg",
  41959. extra: 2164/2021,
  41960. bottom: 371/2535
  41961. }
  41962. },
  41963. },
  41964. [
  41965. {
  41966. name: "Mortal Interaction",
  41967. height: math.unit(8, "feet")
  41968. },
  41969. {
  41970. name: "Natural",
  41971. height: math.unit(24, "feet"),
  41972. default: true
  41973. },
  41974. {
  41975. name: "Giant",
  41976. height: math.unit(80, "feet")
  41977. },
  41978. {
  41979. name: "Kaiju",
  41980. height: math.unit(240, "feet")
  41981. },
  41982. {
  41983. name: "Macro",
  41984. height: math.unit(800, "feet")
  41985. },
  41986. {
  41987. name: "Macro+",
  41988. height: math.unit(2400, "feet")
  41989. },
  41990. {
  41991. name: "Macro++",
  41992. height: math.unit(8000, "feet")
  41993. },
  41994. {
  41995. name: "City-Crushing",
  41996. height: math.unit(24000, "feet")
  41997. },
  41998. {
  41999. name: "Mountain-Mashing",
  42000. height: math.unit(80000, "feet")
  42001. },
  42002. {
  42003. name: "District Demolisher",
  42004. height: math.unit(240000, "feet")
  42005. },
  42006. {
  42007. name: "Tri-County Terror",
  42008. height: math.unit(800000, "feet")
  42009. },
  42010. {
  42011. name: "State Smasher",
  42012. height: math.unit(2.4e6, "feet")
  42013. },
  42014. {
  42015. name: "Nation Nemesis",
  42016. height: math.unit(8e6, "feet")
  42017. },
  42018. {
  42019. name: "Continent Cracker",
  42020. height: math.unit(2.4e7, "feet")
  42021. },
  42022. {
  42023. name: "Planet-Pillaging",
  42024. height: math.unit(8e7, "feet")
  42025. },
  42026. {
  42027. name: "Earth-Eclipsing",
  42028. height: math.unit(2.4e8, "feet")
  42029. },
  42030. {
  42031. name: "Jovian-Jostling",
  42032. height: math.unit(8e8, "feet")
  42033. },
  42034. {
  42035. name: "Gas Giant Gulper",
  42036. height: math.unit(2.4e9, "feet")
  42037. },
  42038. {
  42039. name: "Astral Annihilator",
  42040. height: math.unit(8e9, "feet")
  42041. },
  42042. {
  42043. name: "Celestial Conqueror",
  42044. height: math.unit(2.4e10, "feet")
  42045. },
  42046. {
  42047. name: "Sol-Swallowing",
  42048. height: math.unit(8e10, "feet")
  42049. },
  42050. {
  42051. name: "Hunter of the Heavens",
  42052. height: math.unit(2.4e13, "feet")
  42053. },
  42054. ]
  42055. ))
  42056. characterMakers.push(() => makeCharacter(
  42057. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42058. {
  42059. front: {
  42060. height: math.unit(10, "feet"),
  42061. weight: math.unit(844, "kilograms"),
  42062. name: "Front",
  42063. image: {
  42064. source: "./media/characters/rebecca-pawlson/front.svg",
  42065. extra: 1196/1099,
  42066. bottom: 81/1277
  42067. },
  42068. extraAttributes: {
  42069. "pawSize": {
  42070. name: "Paw Size",
  42071. power: 2,
  42072. type: "area",
  42073. base: math.unit(0.2 * 0.375, "meters^2")
  42074. },
  42075. "handSize": {
  42076. name: "Hand Size",
  42077. power: 2,
  42078. type: "area",
  42079. base: math.unit(0.2 * 0.35, "meters^2")
  42080. },
  42081. "breastDiameter": {
  42082. name: "Breast Diameter",
  42083. power: 1,
  42084. type: "length",
  42085. base: math.unit(0.5, "meters")
  42086. },
  42087. "breastVolume": {
  42088. name: "Breast Volume",
  42089. power: 3,
  42090. type: "volume",
  42091. base: math.unit(0.065, "m^3")
  42092. },
  42093. "breastMass": {
  42094. name: "Breast Mass",
  42095. power: 3,
  42096. type: "mass",
  42097. base: math.unit(65, "kg")
  42098. },
  42099. "nippleDiameter": {
  42100. name: "Nipple Diameter",
  42101. power: 1,
  42102. type: "length",
  42103. base: math.unit(0.1, "meters")
  42104. },
  42105. }
  42106. },
  42107. back: {
  42108. height: math.unit(10, "feet"),
  42109. weight: math.unit(844, "kilograms"),
  42110. name: "Back",
  42111. image: {
  42112. source: "./media/characters/rebecca-pawlson/back.svg",
  42113. extra: 879/776,
  42114. bottom: 43/922
  42115. },
  42116. extraAttributes: {
  42117. "pawSize": {
  42118. name: "Paw Size",
  42119. power: 2,
  42120. type: "area",
  42121. base: math.unit(0.2 * 0.375, "meters^2")
  42122. },
  42123. "handSize": {
  42124. name: "Hand Size",
  42125. power: 2,
  42126. type: "area",
  42127. base: math.unit(0.2 * 0.35, "meters^2")
  42128. },
  42129. "breastDiameter": {
  42130. name: "Breast Diameter",
  42131. power: 1,
  42132. type: "length",
  42133. base: math.unit(0.5, "meters")
  42134. },
  42135. "breastVolume": {
  42136. name: "Breast Volume",
  42137. power: 3,
  42138. type: "volume",
  42139. base: math.unit(0.065, "m^3")
  42140. },
  42141. "breastMass": {
  42142. name: "Breast Mass",
  42143. power: 3,
  42144. type: "mass",
  42145. base: math.unit(65, "kg")
  42146. },
  42147. "nippleDiameter": {
  42148. name: "Nipple Diameter",
  42149. power: 1,
  42150. type: "length",
  42151. base: math.unit(0.1, "meters")
  42152. },
  42153. }
  42154. },
  42155. },
  42156. [
  42157. {
  42158. name: "Normal",
  42159. height: math.unit(6 + 8/12, "feet")
  42160. },
  42161. {
  42162. name: "Mini Macro",
  42163. height: math.unit(10, "feet"),
  42164. default: true
  42165. },
  42166. {
  42167. name: "Macro",
  42168. height: math.unit(100, "feet")
  42169. },
  42170. {
  42171. name: "Mega Macro",
  42172. height: math.unit(2500, "feet")
  42173. },
  42174. {
  42175. name: "Giga Macro",
  42176. height: math.unit(50, "miles")
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42182. {
  42183. front: {
  42184. height: math.unit(7 + 6/12, "feet"),
  42185. weight: math.unit(600, "lb"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/moxie-nova/front.svg",
  42189. extra: 1734/1652,
  42190. bottom: 41/1775
  42191. }
  42192. },
  42193. },
  42194. [
  42195. {
  42196. name: "Normal",
  42197. height: math.unit(7 + 6/12, "feet"),
  42198. default: true
  42199. },
  42200. ]
  42201. ))
  42202. characterMakers.push(() => makeCharacter(
  42203. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42204. {
  42205. goat: {
  42206. height: math.unit(4, "feet"),
  42207. weight: math.unit(180, "lb"),
  42208. name: "Goat",
  42209. image: {
  42210. source: "./media/characters/tiffany/goat.svg",
  42211. extra: 1845/1595,
  42212. bottom: 106/1951
  42213. }
  42214. },
  42215. front: {
  42216. height: math.unit(5, "feet"),
  42217. weight: math.unit(150, "lb"),
  42218. name: "Foxcoon",
  42219. image: {
  42220. source: "./media/characters/tiffany/foxcoon.svg",
  42221. extra: 1941/1845,
  42222. bottom: 58/1999
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(5, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(8, "feet"),
  42239. weight: math.unit(300, "lb"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/raxinath/front.svg",
  42243. extra: 1407/1309,
  42244. bottom: 39/1446
  42245. }
  42246. },
  42247. back: {
  42248. height: math.unit(8, "feet"),
  42249. weight: math.unit(300, "lb"),
  42250. name: "Back",
  42251. image: {
  42252. source: "./media/characters/raxinath/back.svg",
  42253. extra: 1405/1315,
  42254. bottom: 9/1414
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Speck",
  42261. height: math.unit(0.5, "nm")
  42262. },
  42263. {
  42264. name: "Micro",
  42265. height: math.unit(3, "inches")
  42266. },
  42267. {
  42268. name: "Kobold",
  42269. height: math.unit(3, "feet")
  42270. },
  42271. {
  42272. name: "Normal",
  42273. height: math.unit(8, "feet"),
  42274. default: true
  42275. },
  42276. {
  42277. name: "Giant",
  42278. height: math.unit(50, "feet")
  42279. },
  42280. {
  42281. name: "Macro",
  42282. height: math.unit(1000, "feet")
  42283. },
  42284. {
  42285. name: "Megamacro",
  42286. height: math.unit(1, "mile")
  42287. },
  42288. ]
  42289. ))
  42290. characterMakers.push(() => makeCharacter(
  42291. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42292. {
  42293. front: {
  42294. height: math.unit(10, "feet"),
  42295. weight: math.unit(1442, "lb"),
  42296. name: "Front",
  42297. image: {
  42298. source: "./media/characters/mal-dragon/front.svg",
  42299. extra: 1515/1444,
  42300. bottom: 113/1628
  42301. }
  42302. },
  42303. back: {
  42304. height: math.unit(10, "feet"),
  42305. weight: math.unit(1442, "lb"),
  42306. name: "Back",
  42307. image: {
  42308. source: "./media/characters/mal-dragon/back.svg",
  42309. extra: 1527/1434,
  42310. bottom: 25/1552
  42311. }
  42312. },
  42313. },
  42314. [
  42315. {
  42316. name: "Mortal Interaction",
  42317. height: math.unit(10, "feet"),
  42318. default: true
  42319. },
  42320. {
  42321. name: "Large",
  42322. height: math.unit(30, "feet")
  42323. },
  42324. {
  42325. name: "Kaiju",
  42326. height: math.unit(300, "feet")
  42327. },
  42328. {
  42329. name: "Megamacro",
  42330. height: math.unit(10000, "feet")
  42331. },
  42332. {
  42333. name: "Continent Cracker",
  42334. height: math.unit(30000000, "feet")
  42335. },
  42336. {
  42337. name: "Sol-Swallowing",
  42338. height: math.unit(1e11, "feet")
  42339. },
  42340. {
  42341. name: "Light Universal",
  42342. height: math.unit(5, "universes")
  42343. },
  42344. {
  42345. name: "Universe Atoms",
  42346. height: math.unit(1.829e9, "universes")
  42347. },
  42348. {
  42349. name: "Light Multiversal",
  42350. height: math.unit(5, "multiverses")
  42351. },
  42352. {
  42353. name: "Multiverse Atoms",
  42354. height: math.unit(1.829e9, "multiverses")
  42355. },
  42356. {
  42357. name: "Fabric of Time",
  42358. height: math.unit(1e262, "multiverses")
  42359. },
  42360. ]
  42361. ))
  42362. characterMakers.push(() => makeCharacter(
  42363. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42364. {
  42365. front: {
  42366. height: math.unit(9, "feet"),
  42367. weight: math.unit(1050, "lb"),
  42368. name: "Front",
  42369. image: {
  42370. source: "./media/characters/tabitha/front.svg",
  42371. extra: 2083/1994,
  42372. bottom: 68/2151
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Baseline",
  42379. height: math.unit(9, "feet"),
  42380. default: true
  42381. },
  42382. {
  42383. name: "Giant",
  42384. height: math.unit(90, "feet")
  42385. },
  42386. {
  42387. name: "Macro",
  42388. height: math.unit(900, "feet")
  42389. },
  42390. {
  42391. name: "Megamacro",
  42392. height: math.unit(9000, "feet")
  42393. },
  42394. {
  42395. name: "City-Crushing",
  42396. height: math.unit(27000, "feet")
  42397. },
  42398. {
  42399. name: "Mountain-Mashing",
  42400. height: math.unit(90000, "feet")
  42401. },
  42402. {
  42403. name: "Nation Nemesis",
  42404. height: math.unit(9e6, "feet")
  42405. },
  42406. {
  42407. name: "Continent Cracker",
  42408. height: math.unit(27e6, "feet")
  42409. },
  42410. {
  42411. name: "Earth-Eclipsing",
  42412. height: math.unit(2.7e8, "feet")
  42413. },
  42414. {
  42415. name: "Gas Giant Gulper",
  42416. height: math.unit(2.7e9, "feet")
  42417. },
  42418. {
  42419. name: "Sol-Swallowing",
  42420. height: math.unit(9e10, "feet")
  42421. },
  42422. {
  42423. name: "Galaxy Gulper",
  42424. height: math.unit(9, "galaxies")
  42425. },
  42426. {
  42427. name: "Cosmos Churner",
  42428. height: math.unit(9, "universes")
  42429. },
  42430. ]
  42431. ))
  42432. characterMakers.push(() => makeCharacter(
  42433. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42434. {
  42435. front: {
  42436. height: math.unit(160, "cm"),
  42437. weight: math.unit(55, "kg"),
  42438. name: "Front",
  42439. image: {
  42440. source: "./media/characters/tow/front.svg",
  42441. extra: 1751/1722,
  42442. bottom: 74/1825
  42443. }
  42444. },
  42445. },
  42446. [
  42447. {
  42448. name: "Norm",
  42449. height: math.unit(160, "cm")
  42450. },
  42451. {
  42452. name: "Casual",
  42453. height: math.unit(3200, "m"),
  42454. default: true
  42455. },
  42456. {
  42457. name: "Show-Off",
  42458. height: math.unit(160, "km")
  42459. },
  42460. ]
  42461. ))
  42462. characterMakers.push(() => makeCharacter(
  42463. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42464. {
  42465. front: {
  42466. height: math.unit(7 + 11/12, "feet"),
  42467. weight: math.unit(342.8, "lb"),
  42468. name: "Front",
  42469. image: {
  42470. source: "./media/characters/vivian-orca-dragon/front.svg",
  42471. extra: 1890/1865,
  42472. bottom: 28/1918
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Micro",
  42479. height: math.unit(5, "inches")
  42480. },
  42481. {
  42482. name: "Normal",
  42483. height: math.unit(7 + 11/12, "feet"),
  42484. default: true
  42485. },
  42486. {
  42487. name: "Macro",
  42488. height: math.unit(395 + 7/12, "feet")
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42494. {
  42495. side: {
  42496. height: math.unit(10, "feet"),
  42497. weight: math.unit(1442, "lb"),
  42498. name: "Side",
  42499. image: {
  42500. source: "./media/characters/lotherakon/side.svg",
  42501. extra: 1604/1497,
  42502. bottom: 89/1693
  42503. }
  42504. },
  42505. },
  42506. [
  42507. {
  42508. name: "Mortal Interaction",
  42509. height: math.unit(10, "feet")
  42510. },
  42511. {
  42512. name: "Large",
  42513. height: math.unit(30, "feet"),
  42514. default: true
  42515. },
  42516. {
  42517. name: "Giant",
  42518. height: math.unit(100, "feet")
  42519. },
  42520. {
  42521. name: "Kaiju",
  42522. height: math.unit(300, "feet")
  42523. },
  42524. {
  42525. name: "Macro",
  42526. height: math.unit(1000, "feet")
  42527. },
  42528. {
  42529. name: "Macro+",
  42530. height: math.unit(3000, "feet")
  42531. },
  42532. {
  42533. name: "Megamacro",
  42534. height: math.unit(10000, "feet")
  42535. },
  42536. {
  42537. name: "City-Crushing",
  42538. height: math.unit(30000, "feet")
  42539. },
  42540. {
  42541. name: "Continent Cracker",
  42542. height: math.unit(30e6, "feet")
  42543. },
  42544. {
  42545. name: "Earth Eclipsing",
  42546. height: math.unit(3e8, "feet")
  42547. },
  42548. {
  42549. name: "Gas Giant Gulper",
  42550. height: math.unit(3e9, "feet")
  42551. },
  42552. {
  42553. name: "Sol-Swallowing",
  42554. height: math.unit(1e11, "feet")
  42555. },
  42556. {
  42557. name: "System Swallower",
  42558. height: math.unit(3e14, "feet")
  42559. },
  42560. {
  42561. name: "Galaxy Gulper",
  42562. height: math.unit(10, "galaxies")
  42563. },
  42564. {
  42565. name: "Light Universal",
  42566. height: math.unit(5, "universes")
  42567. },
  42568. {
  42569. name: "Universe Palm",
  42570. height: math.unit(20, "universes")
  42571. },
  42572. {
  42573. name: "Light Multiversal",
  42574. height: math.unit(5, "multiverses")
  42575. },
  42576. {
  42577. name: "Multiverse Palm",
  42578. height: math.unit(20, "multiverses")
  42579. },
  42580. {
  42581. name: "Inferno Incarnate",
  42582. height: math.unit(1e7, "multiverses")
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42588. {
  42589. front: {
  42590. height: math.unit(8, "feet"),
  42591. weight: math.unit(1200, "lb"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/malithee/front.svg",
  42595. extra: 1675/1640,
  42596. bottom: 162/1837
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Mortal Interaction",
  42603. height: math.unit(8, "feet"),
  42604. default: true
  42605. },
  42606. {
  42607. name: "Large",
  42608. height: math.unit(24, "feet")
  42609. },
  42610. {
  42611. name: "Kaiju",
  42612. height: math.unit(240, "feet")
  42613. },
  42614. {
  42615. name: "Megamacro",
  42616. height: math.unit(8000, "feet")
  42617. },
  42618. {
  42619. name: "Continent Cracker",
  42620. height: math.unit(24e6, "feet")
  42621. },
  42622. {
  42623. name: "Earth-Eclipsing",
  42624. height: math.unit(2.4e8, "feet")
  42625. },
  42626. {
  42627. name: "Sol-Swallowing",
  42628. height: math.unit(8e10, "feet")
  42629. },
  42630. {
  42631. name: "Galaxy Gulper",
  42632. height: math.unit(8, "galaxies")
  42633. },
  42634. {
  42635. name: "Light Universal",
  42636. height: math.unit(4, "universes")
  42637. },
  42638. {
  42639. name: "Universe Atoms",
  42640. height: math.unit(1.829e9, "universes")
  42641. },
  42642. {
  42643. name: "Light Multiversal",
  42644. height: math.unit(4, "multiverses")
  42645. },
  42646. {
  42647. name: "Multiverse Atoms",
  42648. height: math.unit(1.829e9, "multiverses")
  42649. },
  42650. {
  42651. name: "Nigh-Omnipresence",
  42652. height: math.unit(8e261, "multiverses")
  42653. },
  42654. ]
  42655. ))
  42656. characterMakers.push(() => makeCharacter(
  42657. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42658. {
  42659. front: {
  42660. height: math.unit(10, "feet"),
  42661. weight: math.unit(1500, "lb"),
  42662. name: "Front",
  42663. image: {
  42664. source: "./media/characters/miles-thestia/front.svg",
  42665. extra: 1812/1727,
  42666. bottom: 86/1898
  42667. }
  42668. },
  42669. back: {
  42670. height: math.unit(10, "feet"),
  42671. weight: math.unit(1500, "lb"),
  42672. name: "Back",
  42673. image: {
  42674. source: "./media/characters/miles-thestia/back.svg",
  42675. extra: 1799/1690,
  42676. bottom: 47/1846
  42677. }
  42678. },
  42679. frontNsfw: {
  42680. height: math.unit(10, "feet"),
  42681. weight: math.unit(1500, "lb"),
  42682. name: "Front (NSFW)",
  42683. image: {
  42684. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42685. extra: 1812/1727,
  42686. bottom: 86/1898
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Mini-Macro",
  42693. height: math.unit(10, "feet"),
  42694. default: true
  42695. },
  42696. ]
  42697. ))
  42698. characterMakers.push(() => makeCharacter(
  42699. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42700. {
  42701. front: {
  42702. height: math.unit(25, "feet"),
  42703. name: "Front",
  42704. image: {
  42705. source: "./media/characters/titan-s-wulf/front.svg",
  42706. extra: 1560/1484,
  42707. bottom: 76/1636
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Smallest",
  42714. height: math.unit(25, "feet"),
  42715. default: true
  42716. },
  42717. {
  42718. name: "Normal",
  42719. height: math.unit(200, "feet")
  42720. },
  42721. {
  42722. name: "Macro",
  42723. height: math.unit(200000, "feet")
  42724. },
  42725. {
  42726. name: "Multiversal Original",
  42727. height: math.unit(10000, "multiverses")
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42733. {
  42734. front: {
  42735. height: math.unit(8, "feet"),
  42736. weight: math.unit(553, "lb"),
  42737. name: "Front",
  42738. image: {
  42739. source: "./media/characters/tawendeh/front.svg",
  42740. extra: 2365/2268,
  42741. bottom: 83/2448
  42742. }
  42743. },
  42744. frontClothed: {
  42745. height: math.unit(8, "feet"),
  42746. weight: math.unit(553, "lb"),
  42747. name: "Front (Clothed)",
  42748. image: {
  42749. source: "./media/characters/tawendeh/front-clothed.svg",
  42750. extra: 2365/2268,
  42751. bottom: 83/2448
  42752. }
  42753. },
  42754. back: {
  42755. height: math.unit(8, "feet"),
  42756. weight: math.unit(553, "lb"),
  42757. name: "Back",
  42758. image: {
  42759. source: "./media/characters/tawendeh/back.svg",
  42760. extra: 2397/2294,
  42761. bottom: 42/2439
  42762. }
  42763. },
  42764. },
  42765. [
  42766. {
  42767. name: "Mortal Interaction",
  42768. height: math.unit(8, "feet"),
  42769. default: true
  42770. },
  42771. {
  42772. name: "Giant",
  42773. height: math.unit(80, "feet")
  42774. },
  42775. {
  42776. name: "Macro",
  42777. height: math.unit(800, "feet")
  42778. },
  42779. {
  42780. name: "Megamacro",
  42781. height: math.unit(8000, "feet")
  42782. },
  42783. {
  42784. name: "City-Crushing",
  42785. height: math.unit(24000, "feet")
  42786. },
  42787. {
  42788. name: "Mountain-Mashing",
  42789. height: math.unit(80000, "feet")
  42790. },
  42791. {
  42792. name: "Nation Nemesis",
  42793. height: math.unit(8e6, "feet")
  42794. },
  42795. {
  42796. name: "Continent Cracker",
  42797. height: math.unit(24e6, "feet")
  42798. },
  42799. {
  42800. name: "Earth-Eclipsing",
  42801. height: math.unit(2.4e8, "feet")
  42802. },
  42803. {
  42804. name: "Gas Giant Gulper",
  42805. height: math.unit(2.4e9, "feet")
  42806. },
  42807. {
  42808. name: "Sol-Swallowing",
  42809. height: math.unit(8e10, "feet")
  42810. },
  42811. {
  42812. name: "Galaxy Gulper",
  42813. height: math.unit(8, "galaxies")
  42814. },
  42815. {
  42816. name: "Cosmos Churner",
  42817. height: math.unit(8, "universes")
  42818. },
  42819. {
  42820. name: "Omnipotent Otter",
  42821. height: math.unit(80, "universes")
  42822. },
  42823. ]
  42824. ))
  42825. characterMakers.push(() => makeCharacter(
  42826. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42827. {
  42828. front: {
  42829. height: math.unit(2.6, "meters"),
  42830. weight: math.unit(900, "kg"),
  42831. name: "Front",
  42832. image: {
  42833. source: "./media/characters/neesha/front.svg",
  42834. extra: 1803/1653,
  42835. bottom: 128/1931
  42836. }
  42837. },
  42838. },
  42839. [
  42840. {
  42841. name: "Normal",
  42842. height: math.unit(2.6, "meters"),
  42843. default: true
  42844. },
  42845. {
  42846. name: "Macro",
  42847. height: math.unit(50, "meters")
  42848. },
  42849. ]
  42850. ))
  42851. characterMakers.push(() => makeCharacter(
  42852. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42853. {
  42854. front: {
  42855. height: math.unit(5, "feet"),
  42856. weight: math.unit(185, "lb"),
  42857. name: "Front",
  42858. image: {
  42859. source: "./media/characters/kyera/front.svg",
  42860. extra: 1875/1790,
  42861. bottom: 96/1971
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Normal",
  42868. height: math.unit(5, "feet"),
  42869. default: true
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42875. {
  42876. front: {
  42877. height: math.unit(7 + 6/12, "feet"),
  42878. weight: math.unit(540, "lb"),
  42879. name: "Front",
  42880. image: {
  42881. source: "./media/characters/yuko/front.svg",
  42882. extra: 1282/1222,
  42883. bottom: 101/1383
  42884. }
  42885. },
  42886. frontClothed: {
  42887. height: math.unit(7 + 6/12, "feet"),
  42888. weight: math.unit(540, "lb"),
  42889. name: "Front (Clothed)",
  42890. image: {
  42891. source: "./media/characters/yuko/front-clothed.svg",
  42892. extra: 1282/1222,
  42893. bottom: 101/1383
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Normal",
  42900. height: math.unit(7 + 6/12, "feet"),
  42901. default: true
  42902. },
  42903. {
  42904. name: "Macro",
  42905. height: math.unit(26 + 9/12, "feet")
  42906. },
  42907. {
  42908. name: "Megamacro",
  42909. height: math.unit(300, "feet")
  42910. },
  42911. {
  42912. name: "Gigamacro",
  42913. height: math.unit(5000, "feet")
  42914. },
  42915. {
  42916. name: "Planetary",
  42917. height: math.unit(10000, "miles")
  42918. },
  42919. ]
  42920. ))
  42921. characterMakers.push(() => makeCharacter(
  42922. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42923. {
  42924. front: {
  42925. height: math.unit(8 + 2/12, "feet"),
  42926. weight: math.unit(600, "lb"),
  42927. name: "Front",
  42928. image: {
  42929. source: "./media/characters/deam-nitrel/front.svg",
  42930. extra: 1308/1234,
  42931. bottom: 125/1433
  42932. }
  42933. },
  42934. },
  42935. [
  42936. {
  42937. name: "Normal",
  42938. height: math.unit(8 + 2/12, "feet"),
  42939. default: true
  42940. },
  42941. ]
  42942. ))
  42943. characterMakers.push(() => makeCharacter(
  42944. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42945. {
  42946. front: {
  42947. height: math.unit(6.1, "feet"),
  42948. weight: math.unit(180, "lb"),
  42949. name: "Front",
  42950. image: {
  42951. source: "./media/characters/skyress/front.svg",
  42952. extra: 1045/915,
  42953. bottom: 28/1073
  42954. }
  42955. },
  42956. maw: {
  42957. height: math.unit(1, "feet"),
  42958. name: "Maw",
  42959. image: {
  42960. source: "./media/characters/skyress/maw.svg"
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Normal",
  42967. height: math.unit(6.1, "feet"),
  42968. default: true
  42969. },
  42970. {
  42971. name: "Macro",
  42972. height: math.unit(200, "feet")
  42973. },
  42974. ]
  42975. ))
  42976. characterMakers.push(() => makeCharacter(
  42977. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42978. {
  42979. front: {
  42980. height: math.unit(4 + 2/12, "feet"),
  42981. weight: math.unit(40, "kg"),
  42982. name: "Front",
  42983. image: {
  42984. source: "./media/characters/amethyst-jones/front.svg",
  42985. extra: 1220/1150,
  42986. bottom: 101/1321
  42987. }
  42988. },
  42989. },
  42990. [
  42991. {
  42992. name: "Normal",
  42993. height: math.unit(4 + 2/12, "feet"),
  42994. default: true
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43000. {
  43001. front: {
  43002. height: math.unit(1.7, "m"),
  43003. weight: math.unit(135, "lb"),
  43004. name: "Front",
  43005. image: {
  43006. source: "./media/characters/jade/front.svg",
  43007. extra: 1818/1767,
  43008. bottom: 32/1850
  43009. }
  43010. },
  43011. back: {
  43012. height: math.unit(1.7, "m"),
  43013. weight: math.unit(135, "lb"),
  43014. name: "Back",
  43015. image: {
  43016. source: "./media/characters/jade/back.svg",
  43017. extra: 1869/1809,
  43018. bottom: 35/1904
  43019. }
  43020. },
  43021. hand: {
  43022. height: math.unit(0.24, "m"),
  43023. name: "Hand",
  43024. image: {
  43025. source: "./media/characters/jade/hand.svg"
  43026. }
  43027. },
  43028. foot: {
  43029. height: math.unit(0.263, "m"),
  43030. name: "Foot",
  43031. image: {
  43032. source: "./media/characters/jade/foot.svg"
  43033. }
  43034. },
  43035. dick: {
  43036. height: math.unit(0.47, "m"),
  43037. name: "Dick",
  43038. image: {
  43039. source: "./media/characters/jade/dick.svg"
  43040. }
  43041. },
  43042. },
  43043. [
  43044. {
  43045. name: "Micro",
  43046. height: math.unit(22, "cm")
  43047. },
  43048. {
  43049. name: "Normal",
  43050. height: math.unit(1.7, "m"),
  43051. default: true
  43052. },
  43053. {
  43054. name: "Macro",
  43055. height: math.unit(152, "m")
  43056. },
  43057. ]
  43058. ))
  43059. characterMakers.push(() => makeCharacter(
  43060. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43061. {
  43062. front: {
  43063. height: math.unit(100, "miles"),
  43064. weight: math.unit(20000, "tons"),
  43065. name: "Front",
  43066. image: {
  43067. source: "./media/characters/cookie/front.svg",
  43068. extra: 1125/1070,
  43069. bottom: 30/1155
  43070. }
  43071. },
  43072. },
  43073. [
  43074. {
  43075. name: "Big",
  43076. height: math.unit(50, "feet")
  43077. },
  43078. {
  43079. name: "Macro",
  43080. height: math.unit(100, "miles"),
  43081. default: true
  43082. },
  43083. {
  43084. name: "Megamacro",
  43085. height: math.unit(90000, "miles")
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43091. {
  43092. front: {
  43093. height: math.unit(6, "feet"),
  43094. weight: math.unit(145, "lb"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/farzian/front.svg",
  43098. extra: 1902/1693,
  43099. bottom: 108/2010
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Macro",
  43106. height: math.unit(500, "feet"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(3 + 6/12, "feet"),
  43116. weight: math.unit(50, "lb"),
  43117. name: "Front",
  43118. image: {
  43119. source: "./media/characters/kimberly-tilson/front.svg",
  43120. extra: 1400/1322,
  43121. bottom: 36/1436
  43122. }
  43123. },
  43124. back: {
  43125. height: math.unit(3 + 6/12, "feet"),
  43126. weight: math.unit(50, "lb"),
  43127. name: "Back",
  43128. image: {
  43129. source: "./media/characters/kimberly-tilson/back.svg",
  43130. extra: 1370/1307,
  43131. bottom: 20/1390
  43132. }
  43133. },
  43134. },
  43135. [
  43136. {
  43137. name: "Normal",
  43138. height: math.unit(3 + 6/12, "feet"),
  43139. default: true
  43140. },
  43141. ]
  43142. ))
  43143. characterMakers.push(() => makeCharacter(
  43144. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43145. {
  43146. front: {
  43147. height: math.unit(350, "meters"),
  43148. weight: math.unit(7.57059e+8, "lb"),
  43149. name: "Front",
  43150. image: {
  43151. source: "./media/characters/harthos/front.svg",
  43152. extra: 455/446,
  43153. bottom: 15/470
  43154. },
  43155. form: "peacekeeper",
  43156. default: true
  43157. },
  43158. allusus_front: {
  43159. height: math.unit(270, "meters"),
  43160. weight: math.unit(3.47550e+8, "lb"),
  43161. name: "Front",
  43162. image: {
  43163. source: "./media/characters/harthos/allusus-front.svg",
  43164. extra: 455/446,
  43165. bottom: 15/470
  43166. },
  43167. form: "allusus",
  43168. },
  43169. },
  43170. [
  43171. {
  43172. name: "Macro",
  43173. height: math.unit(350, "meters"),
  43174. default: true,
  43175. form: "peacekeeper"
  43176. },
  43177. {
  43178. name: "Macro",
  43179. height: math.unit(270, "meters"),
  43180. default: true,
  43181. form: "allusus"
  43182. },
  43183. ],
  43184. {
  43185. "peacekeeper": {
  43186. name: "Peacekeeper",
  43187. default: true
  43188. },
  43189. "allusus": {
  43190. name: "Allusus",
  43191. },
  43192. }
  43193. ))
  43194. characterMakers.push(() => makeCharacter(
  43195. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43196. {
  43197. front: {
  43198. height: math.unit(15, "feet"),
  43199. name: "Front",
  43200. image: {
  43201. source: "./media/characters/hypatia/front.svg",
  43202. extra: 1653/1591,
  43203. bottom: 79/1732
  43204. }
  43205. },
  43206. },
  43207. [
  43208. {
  43209. name: "Normal",
  43210. height: math.unit(15, "feet")
  43211. },
  43212. {
  43213. name: "Small",
  43214. height: math.unit(300, "feet")
  43215. },
  43216. {
  43217. name: "Macro",
  43218. height: math.unit(2500, "feet"),
  43219. default: true
  43220. },
  43221. {
  43222. name: "Mega Macro",
  43223. height: math.unit(1500, "miles")
  43224. },
  43225. {
  43226. name: "Giga Macro",
  43227. height: math.unit(1.5e6, "miles")
  43228. },
  43229. ]
  43230. ))
  43231. characterMakers.push(() => makeCharacter(
  43232. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43233. {
  43234. front: {
  43235. height: math.unit(6, "feet"),
  43236. weight: math.unit(200, "lb"),
  43237. name: "Front",
  43238. image: {
  43239. source: "./media/characters/wulver/front.svg",
  43240. extra: 1724/1632,
  43241. bottom: 130/1854
  43242. }
  43243. },
  43244. frontNsfw: {
  43245. height: math.unit(6, "feet"),
  43246. weight: math.unit(200, "lb"),
  43247. name: "Front (NSFW)",
  43248. image: {
  43249. source: "./media/characters/wulver/front-nsfw.svg",
  43250. extra: 1724/1632,
  43251. bottom: 130/1854
  43252. }
  43253. },
  43254. },
  43255. [
  43256. {
  43257. name: "Human-Sized",
  43258. height: math.unit(6, "feet")
  43259. },
  43260. {
  43261. name: "Normal",
  43262. height: math.unit(4, "meters"),
  43263. default: true
  43264. },
  43265. {
  43266. name: "Large",
  43267. height: math.unit(6, "m")
  43268. },
  43269. ]
  43270. ))
  43271. characterMakers.push(() => makeCharacter(
  43272. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43273. {
  43274. front: {
  43275. height: math.unit(7, "feet"),
  43276. name: "Front",
  43277. image: {
  43278. source: "./media/characters/maru/front.svg",
  43279. extra: 1595/1570,
  43280. bottom: 0/1595
  43281. }
  43282. },
  43283. },
  43284. [
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(7, "feet"),
  43288. default: true
  43289. },
  43290. {
  43291. name: "Macro",
  43292. height: math.unit(700, "feet")
  43293. },
  43294. {
  43295. name: "Mega Macro",
  43296. height: math.unit(25, "miles")
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43302. {
  43303. front: {
  43304. height: math.unit(6, "feet"),
  43305. weight: math.unit(170, "lb"),
  43306. name: "Front",
  43307. image: {
  43308. source: "./media/characters/xenon/front.svg",
  43309. extra: 1376/1305,
  43310. bottom: 56/1432
  43311. }
  43312. },
  43313. back: {
  43314. height: math.unit(6, "feet"),
  43315. weight: math.unit(170, "lb"),
  43316. name: "Back",
  43317. image: {
  43318. source: "./media/characters/xenon/back.svg",
  43319. extra: 1328/1259,
  43320. bottom: 95/1423
  43321. }
  43322. },
  43323. maw: {
  43324. height: math.unit(0.52, "feet"),
  43325. name: "Maw",
  43326. image: {
  43327. source: "./media/characters/xenon/maw.svg"
  43328. }
  43329. },
  43330. handLeft: {
  43331. height: math.unit(0.82 * 169 / 153, "feet"),
  43332. name: "Hand (Left)",
  43333. image: {
  43334. source: "./media/characters/xenon/hand-left.svg"
  43335. }
  43336. },
  43337. handRight: {
  43338. height: math.unit(0.82, "feet"),
  43339. name: "Hand (Right)",
  43340. image: {
  43341. source: "./media/characters/xenon/hand-right.svg"
  43342. }
  43343. },
  43344. footLeft: {
  43345. height: math.unit(1.13, "feet"),
  43346. name: "Foot (Left)",
  43347. image: {
  43348. source: "./media/characters/xenon/foot-left.svg"
  43349. }
  43350. },
  43351. footRight: {
  43352. height: math.unit(1.13 * 194 / 196, "feet"),
  43353. name: "Foot (Right)",
  43354. image: {
  43355. source: "./media/characters/xenon/foot-right.svg"
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Micro",
  43362. height: math.unit(0.8, "inches")
  43363. },
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(6, "feet")
  43367. },
  43368. {
  43369. name: "Macro",
  43370. height: math.unit(50, "feet"),
  43371. default: true
  43372. },
  43373. {
  43374. name: "Macro+",
  43375. height: math.unit(250, "feet")
  43376. },
  43377. {
  43378. name: "Megamacro",
  43379. height: math.unit(1500, "feet")
  43380. },
  43381. ]
  43382. ))
  43383. characterMakers.push(() => makeCharacter(
  43384. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43385. {
  43386. front: {
  43387. height: math.unit(7 + 5/12, "feet"),
  43388. name: "Front",
  43389. image: {
  43390. source: "./media/characters/zane/front.svg",
  43391. extra: 1260/1203,
  43392. bottom: 94/1354
  43393. }
  43394. },
  43395. back: {
  43396. height: math.unit(5.05, "feet"),
  43397. name: "Back",
  43398. image: {
  43399. source: "./media/characters/zane/back.svg",
  43400. extra: 893/829,
  43401. bottom: 30/923
  43402. }
  43403. },
  43404. werewolf: {
  43405. height: math.unit(11, "feet"),
  43406. name: "Werewolf",
  43407. image: {
  43408. source: "./media/characters/zane/werewolf.svg",
  43409. extra: 1383/1323,
  43410. bottom: 89/1472
  43411. }
  43412. },
  43413. foot: {
  43414. height: math.unit(1.46, "feet"),
  43415. name: "Foot",
  43416. image: {
  43417. source: "./media/characters/zane/foot.svg"
  43418. }
  43419. },
  43420. footFront: {
  43421. height: math.unit(0.784, "feet"),
  43422. name: "Foot (Front)",
  43423. image: {
  43424. source: "./media/characters/zane/foot-front.svg"
  43425. }
  43426. },
  43427. dick: {
  43428. height: math.unit(1.95, "feet"),
  43429. name: "Dick",
  43430. image: {
  43431. source: "./media/characters/zane/dick.svg"
  43432. }
  43433. },
  43434. dickWerewolf: {
  43435. height: math.unit(3.77, "feet"),
  43436. name: "Dick (Werewolf)",
  43437. image: {
  43438. source: "./media/characters/zane/dick.svg"
  43439. }
  43440. },
  43441. },
  43442. [
  43443. {
  43444. name: "Normal",
  43445. height: math.unit(7 + 5/12, "feet"),
  43446. default: true
  43447. },
  43448. ]
  43449. ))
  43450. characterMakers.push(() => makeCharacter(
  43451. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43452. {
  43453. front: {
  43454. height: math.unit(6 + 2/12, "feet"),
  43455. weight: math.unit(284, "lb"),
  43456. name: "Front",
  43457. image: {
  43458. source: "./media/characters/benni-desparque/front.svg",
  43459. extra: 878/729,
  43460. bottom: 58/936
  43461. }
  43462. },
  43463. back: {
  43464. height: math.unit(6 + 2/12, "feet"),
  43465. weight: math.unit(284, "lb"),
  43466. name: "Back",
  43467. image: {
  43468. source: "./media/characters/benni-desparque/back.svg",
  43469. extra: 901/756,
  43470. bottom: 51/952
  43471. }
  43472. },
  43473. dressed: {
  43474. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43475. weight: math.unit(284, "lb"),
  43476. name: "Dressed",
  43477. image: {
  43478. source: "./media/characters/benni-desparque/dressed.svg",
  43479. extra: 1514/1276,
  43480. bottom: 65/1579
  43481. }
  43482. },
  43483. hand: {
  43484. height: math.unit(1.28, "feet"),
  43485. name: "Hand",
  43486. image: {
  43487. source: "./media/characters/benni-desparque/hand.svg"
  43488. }
  43489. },
  43490. foot: {
  43491. height: math.unit(1.53, "feet"),
  43492. name: "Foot",
  43493. image: {
  43494. source: "./media/characters/benni-desparque/foot.svg"
  43495. }
  43496. },
  43497. aiControlUnit: {
  43498. height: math.unit(0.175, "feet"),
  43499. name: "AI Control Unit",
  43500. image: {
  43501. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43502. }
  43503. },
  43504. },
  43505. [
  43506. {
  43507. name: "Civilian",
  43508. height: math.unit(6 + 2/12, "feet")
  43509. },
  43510. {
  43511. name: "Normal",
  43512. height: math.unit(98, "feet"),
  43513. default: true
  43514. },
  43515. {
  43516. name: "Kaiju Fighter",
  43517. height: math.unit(268, "feet")
  43518. },
  43519. ]
  43520. ))
  43521. characterMakers.push(() => makeCharacter(
  43522. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43523. {
  43524. front: {
  43525. height: math.unit(5, "feet"),
  43526. weight: math.unit(105, "lb"),
  43527. name: "Front",
  43528. image: {
  43529. source: "./media/characters/maxine/front.svg",
  43530. extra: 1386/1250,
  43531. bottom: 71/1457
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Normal",
  43538. height: math.unit(5, "feet"),
  43539. default: true
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(11 + 7/12, "feet"),
  43548. weight: math.unit(9576, "lb"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/scaly/front.svg",
  43552. extra: 888/867,
  43553. bottom: 36/924
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Normal",
  43560. height: math.unit(11 + 7/12, "feet"),
  43561. default: true
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43567. {
  43568. front: {
  43569. height: math.unit(6 + 3/12, "feet"),
  43570. name: "Front",
  43571. image: {
  43572. source: "./media/characters/saelria/front.svg",
  43573. extra: 1243/1138,
  43574. bottom: 46/1289
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Micro",
  43581. height: math.unit(6, "inches"),
  43582. },
  43583. {
  43584. name: "Normal",
  43585. height: math.unit(6 + 3/12, "feet"),
  43586. default: true
  43587. },
  43588. {
  43589. name: "Macro",
  43590. height: math.unit(25, "feet")
  43591. },
  43592. ]
  43593. ))
  43594. characterMakers.push(() => makeCharacter(
  43595. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43596. {
  43597. front: {
  43598. height: math.unit(80, "meters"),
  43599. weight: math.unit(7000, "tonnes"),
  43600. name: "Front",
  43601. image: {
  43602. source: "./media/characters/tef/front.svg",
  43603. extra: 2036/1991,
  43604. bottom: 54/2090
  43605. }
  43606. },
  43607. back: {
  43608. height: math.unit(80, "meters"),
  43609. weight: math.unit(7000, "tonnes"),
  43610. name: "Back",
  43611. image: {
  43612. source: "./media/characters/tef/back.svg",
  43613. extra: 2036/1991,
  43614. bottom: 54/2090
  43615. }
  43616. },
  43617. },
  43618. [
  43619. {
  43620. name: "Macro",
  43621. height: math.unit(80, "meters"),
  43622. default: true
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43628. {
  43629. front: {
  43630. height: math.unit(13, "feet"),
  43631. weight: math.unit(6, "tons"),
  43632. name: "Front",
  43633. image: {
  43634. source: "./media/characters/rover/front.svg",
  43635. extra: 1233/1156,
  43636. bottom: 50/1283
  43637. }
  43638. },
  43639. back: {
  43640. height: math.unit(13, "feet"),
  43641. weight: math.unit(6, "tons"),
  43642. name: "Back",
  43643. image: {
  43644. source: "./media/characters/rover/back.svg",
  43645. extra: 1327/1258,
  43646. bottom: 39/1366
  43647. }
  43648. },
  43649. },
  43650. [
  43651. {
  43652. name: "Normal",
  43653. height: math.unit(13, "feet"),
  43654. default: true
  43655. },
  43656. {
  43657. name: "Macro",
  43658. height: math.unit(1300, "feet")
  43659. },
  43660. {
  43661. name: "Megamacro",
  43662. height: math.unit(1300, "miles")
  43663. },
  43664. {
  43665. name: "Gigamacro",
  43666. height: math.unit(1300000, "miles")
  43667. },
  43668. ]
  43669. ))
  43670. characterMakers.push(() => makeCharacter(
  43671. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43672. {
  43673. front: {
  43674. height: math.unit(10, "feet"),
  43675. weight: math.unit(500, "lb"),
  43676. name: "Front",
  43677. image: {
  43678. source: "./media/characters/ariz/front.svg",
  43679. extra: 461/450,
  43680. bottom: 16/477
  43681. }
  43682. },
  43683. },
  43684. [
  43685. {
  43686. name: "MiniMacro",
  43687. height: math.unit(10, "feet"),
  43688. default: true
  43689. },
  43690. ]
  43691. ))
  43692. characterMakers.push(() => makeCharacter(
  43693. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43694. {
  43695. front: {
  43696. height: math.unit(6, "feet"),
  43697. weight: math.unit(140, "lb"),
  43698. name: "Front",
  43699. image: {
  43700. source: "./media/characters/sigrun/front.svg",
  43701. extra: 1418/1359,
  43702. bottom: 27/1445
  43703. }
  43704. },
  43705. },
  43706. [
  43707. {
  43708. name: "Macro",
  43709. height: math.unit(35, "feet"),
  43710. default: true
  43711. },
  43712. ]
  43713. ))
  43714. characterMakers.push(() => makeCharacter(
  43715. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43716. {
  43717. front: {
  43718. height: math.unit(6, "feet"),
  43719. weight: math.unit(150, "lb"),
  43720. name: "Front",
  43721. image: {
  43722. source: "./media/characters/numin/front.svg",
  43723. extra: 1433/1388,
  43724. bottom: 12/1445
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Macro",
  43731. height: math.unit(21.5, "km"),
  43732. default: true
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43738. {
  43739. front: {
  43740. height: math.unit(6, "feet"),
  43741. weight: math.unit(463, "lb"),
  43742. name: "Front",
  43743. image: {
  43744. source: "./media/characters/melwa/front.svg",
  43745. extra: 1307/1248,
  43746. bottom: 93/1400
  43747. }
  43748. },
  43749. },
  43750. [
  43751. {
  43752. name: "Macro",
  43753. height: math.unit(50, "meters"),
  43754. default: true
  43755. },
  43756. ]
  43757. ))
  43758. characterMakers.push(() => makeCharacter(
  43759. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43760. {
  43761. front: {
  43762. height: math.unit(325, "feet"),
  43763. name: "Front",
  43764. image: {
  43765. source: "./media/characters/zorkaiju/front.svg",
  43766. extra: 1955/1814,
  43767. bottom: 40/1995
  43768. }
  43769. },
  43770. frontExtended: {
  43771. height: math.unit(325, "feet"),
  43772. name: "Front (Extended)",
  43773. image: {
  43774. source: "./media/characters/zorkaiju/front-extended.svg",
  43775. extra: 1955/1814,
  43776. bottom: 40/1995
  43777. }
  43778. },
  43779. side: {
  43780. height: math.unit(325, "feet"),
  43781. name: "Side",
  43782. image: {
  43783. source: "./media/characters/zorkaiju/side.svg",
  43784. extra: 1495/1396,
  43785. bottom: 17/1512
  43786. }
  43787. },
  43788. sideExtended: {
  43789. height: math.unit(325, "feet"),
  43790. name: "Side (Extended)",
  43791. image: {
  43792. source: "./media/characters/zorkaiju/side-extended.svg",
  43793. extra: 1495/1396,
  43794. bottom: 17/1512
  43795. }
  43796. },
  43797. back: {
  43798. height: math.unit(325, "feet"),
  43799. name: "Back",
  43800. image: {
  43801. source: "./media/characters/zorkaiju/back.svg",
  43802. extra: 1959/1821,
  43803. bottom: 31/1990
  43804. }
  43805. },
  43806. backExtended: {
  43807. height: math.unit(325, "feet"),
  43808. name: "Back (Extended)",
  43809. image: {
  43810. source: "./media/characters/zorkaiju/back-extended.svg",
  43811. extra: 1959/1821,
  43812. bottom: 31/1990
  43813. }
  43814. },
  43815. hand: {
  43816. height: math.unit(58.4, "feet"),
  43817. name: "Hand",
  43818. image: {
  43819. source: "./media/characters/zorkaiju/hand.svg"
  43820. }
  43821. },
  43822. handExtended: {
  43823. height: math.unit(61.4, "feet"),
  43824. name: "Hand (Extended)",
  43825. image: {
  43826. source: "./media/characters/zorkaiju/hand-extended.svg"
  43827. }
  43828. },
  43829. foot: {
  43830. height: math.unit(95, "feet"),
  43831. name: "Foot",
  43832. image: {
  43833. source: "./media/characters/zorkaiju/foot.svg"
  43834. }
  43835. },
  43836. leftArm: {
  43837. height: math.unit(59, "feet"),
  43838. name: "Left Arm",
  43839. image: {
  43840. source: "./media/characters/zorkaiju/left-arm.svg"
  43841. }
  43842. },
  43843. rightArm: {
  43844. height: math.unit(59, "feet"),
  43845. name: "Right Arm",
  43846. image: {
  43847. source: "./media/characters/zorkaiju/right-arm.svg"
  43848. }
  43849. },
  43850. leftArmExtended: {
  43851. height: math.unit(59 * 1.033546, "feet"),
  43852. name: "Left Arm (Extended)",
  43853. image: {
  43854. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43855. }
  43856. },
  43857. rightArmExtended: {
  43858. height: math.unit(59 * 1.0496, "feet"),
  43859. name: "Right Arm (Extended)",
  43860. image: {
  43861. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43862. }
  43863. },
  43864. tail: {
  43865. height: math.unit(104, "feet"),
  43866. name: "Tail",
  43867. image: {
  43868. source: "./media/characters/zorkaiju/tail.svg"
  43869. }
  43870. },
  43871. tailExtended: {
  43872. height: math.unit(104, "feet"),
  43873. name: "Tail (Extended)",
  43874. image: {
  43875. source: "./media/characters/zorkaiju/tail-extended.svg"
  43876. }
  43877. },
  43878. tailBottom: {
  43879. height: math.unit(104, "feet"),
  43880. name: "Tail Bottom",
  43881. image: {
  43882. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43883. }
  43884. },
  43885. crystal: {
  43886. height: math.unit(27.54, "feet"),
  43887. name: "Crystal",
  43888. image: {
  43889. source: "./media/characters/zorkaiju/crystal.svg"
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Kaiju",
  43896. height: math.unit(325, "feet"),
  43897. default: true
  43898. },
  43899. ]
  43900. ))
  43901. characterMakers.push(() => makeCharacter(
  43902. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43903. {
  43904. front: {
  43905. height: math.unit(6 + 1/12, "feet"),
  43906. weight: math.unit(115, "lb"),
  43907. name: "Front",
  43908. image: {
  43909. source: "./media/characters/bailey-belfry/front.svg",
  43910. extra: 1240/1121,
  43911. bottom: 101/1341
  43912. }
  43913. },
  43914. },
  43915. [
  43916. {
  43917. name: "Normal",
  43918. height: math.unit(6 + 1/12, "feet"),
  43919. default: true
  43920. },
  43921. ]
  43922. ))
  43923. characterMakers.push(() => makeCharacter(
  43924. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43925. {
  43926. side: {
  43927. height: math.unit(4, "meters"),
  43928. weight: math.unit(250, "kg"),
  43929. name: "Side",
  43930. image: {
  43931. source: "./media/characters/blacky/side.svg",
  43932. extra: 1027/919,
  43933. bottom: 43/1070
  43934. }
  43935. },
  43936. maw: {
  43937. height: math.unit(1, "meters"),
  43938. name: "Maw",
  43939. image: {
  43940. source: "./media/characters/blacky/maw.svg"
  43941. }
  43942. },
  43943. paw: {
  43944. height: math.unit(1, "meters"),
  43945. name: "Paw",
  43946. image: {
  43947. source: "./media/characters/blacky/paw.svg"
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "Normal",
  43954. height: math.unit(4, "meters"),
  43955. default: true
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43961. {
  43962. front: {
  43963. height: math.unit(170, "cm"),
  43964. weight: math.unit(66, "kg"),
  43965. name: "Front",
  43966. image: {
  43967. source: "./media/characters/thux-ei/front.svg",
  43968. extra: 1109/1011,
  43969. bottom: 8/1117
  43970. }
  43971. },
  43972. },
  43973. [
  43974. {
  43975. name: "Normal",
  43976. height: math.unit(170, "cm"),
  43977. default: true
  43978. },
  43979. ]
  43980. ))
  43981. characterMakers.push(() => makeCharacter(
  43982. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43983. {
  43984. front: {
  43985. height: math.unit(5, "feet"),
  43986. weight: math.unit(120, "lb"),
  43987. name: "Front",
  43988. image: {
  43989. source: "./media/characters/roxanne-voltaire/front.svg",
  43990. extra: 1901/1779,
  43991. bottom: 53/1954
  43992. }
  43993. },
  43994. },
  43995. [
  43996. {
  43997. name: "Normal",
  43998. height: math.unit(5, "feet"),
  43999. default: true
  44000. },
  44001. {
  44002. name: "Giant",
  44003. height: math.unit(50, "feet")
  44004. },
  44005. {
  44006. name: "Titan",
  44007. height: math.unit(500, "feet")
  44008. },
  44009. {
  44010. name: "Macro",
  44011. height: math.unit(5000, "feet")
  44012. },
  44013. {
  44014. name: "Megamacro",
  44015. height: math.unit(50000, "feet")
  44016. },
  44017. {
  44018. name: "Gigamacro",
  44019. height: math.unit(500000, "feet")
  44020. },
  44021. {
  44022. name: "Teramacro",
  44023. height: math.unit(5e6, "feet")
  44024. },
  44025. ]
  44026. ))
  44027. characterMakers.push(() => makeCharacter(
  44028. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44029. {
  44030. front: {
  44031. height: math.unit(6 + 2/12, "feet"),
  44032. name: "Front",
  44033. image: {
  44034. source: "./media/characters/squeaks/front.svg",
  44035. extra: 1823/1768,
  44036. bottom: 138/1961
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Micro",
  44043. height: math.unit(0.5, "inches")
  44044. },
  44045. {
  44046. name: "Normal",
  44047. height: math.unit(6 + 2/12, "feet"),
  44048. default: true
  44049. },
  44050. {
  44051. name: "Macro",
  44052. height: math.unit(600, "feet")
  44053. },
  44054. ]
  44055. ))
  44056. characterMakers.push(() => makeCharacter(
  44057. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44058. {
  44059. front: {
  44060. height: math.unit(1.72, "meters"),
  44061. name: "Front",
  44062. image: {
  44063. source: "./media/characters/archinger/front.svg",
  44064. extra: 1861/1675,
  44065. bottom: 125/1986
  44066. }
  44067. },
  44068. back: {
  44069. height: math.unit(1.72, "meters"),
  44070. name: "Back",
  44071. image: {
  44072. source: "./media/characters/archinger/back.svg",
  44073. extra: 1844/1701,
  44074. bottom: 104/1948
  44075. }
  44076. },
  44077. cock: {
  44078. height: math.unit(0.59, "feet"),
  44079. name: "Cock",
  44080. image: {
  44081. source: "./media/characters/archinger/cock.svg"
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Normal",
  44088. height: math.unit(1.72, "meters"),
  44089. default: true
  44090. },
  44091. {
  44092. name: "Macro",
  44093. height: math.unit(84, "meters")
  44094. },
  44095. {
  44096. name: "Macro+",
  44097. height: math.unit(112, "meters")
  44098. },
  44099. {
  44100. name: "Macro++",
  44101. height: math.unit(960, "meters")
  44102. },
  44103. {
  44104. name: "Macro+++",
  44105. height: math.unit(4, "km")
  44106. },
  44107. {
  44108. name: "Macro++++",
  44109. height: math.unit(48, "km")
  44110. },
  44111. {
  44112. name: "Macro+++++",
  44113. height: math.unit(4500, "km")
  44114. },
  44115. ]
  44116. ))
  44117. characterMakers.push(() => makeCharacter(
  44118. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44119. {
  44120. front: {
  44121. height: math.unit(5 + 5/12, "feet"),
  44122. name: "Front",
  44123. image: {
  44124. source: "./media/characters/alsnapz/front.svg",
  44125. extra: 1157/1065,
  44126. bottom: 42/1199
  44127. }
  44128. },
  44129. },
  44130. [
  44131. {
  44132. name: "Normal",
  44133. height: math.unit(5 + 5/12, "feet"),
  44134. default: true
  44135. },
  44136. ]
  44137. ))
  44138. characterMakers.push(() => makeCharacter(
  44139. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44140. {
  44141. side: {
  44142. height: math.unit(3.2, "earths"),
  44143. name: "Side",
  44144. image: {
  44145. source: "./media/characters/mag/side.svg",
  44146. extra: 1331/1008,
  44147. bottom: 52/1383
  44148. }
  44149. },
  44150. wing: {
  44151. height: math.unit(1.94, "earths"),
  44152. name: "Wing",
  44153. image: {
  44154. source: "./media/characters/mag/wing.svg"
  44155. }
  44156. },
  44157. dick: {
  44158. height: math.unit(1.8, "earths"),
  44159. name: "Dick",
  44160. image: {
  44161. source: "./media/characters/mag/dick.svg"
  44162. }
  44163. },
  44164. ass: {
  44165. height: math.unit(1.33, "earths"),
  44166. name: "Ass",
  44167. image: {
  44168. source: "./media/characters/mag/ass.svg"
  44169. }
  44170. },
  44171. head: {
  44172. height: math.unit(1.1, "earths"),
  44173. name: "Head",
  44174. image: {
  44175. source: "./media/characters/mag/head.svg"
  44176. }
  44177. },
  44178. maw: {
  44179. height: math.unit(1.62, "earths"),
  44180. name: "Maw",
  44181. image: {
  44182. source: "./media/characters/mag/maw.svg"
  44183. }
  44184. },
  44185. },
  44186. [
  44187. {
  44188. name: "Small",
  44189. height: math.unit(162, "feet")
  44190. },
  44191. {
  44192. name: "Normal",
  44193. height: math.unit(3.2, "earths"),
  44194. default: true
  44195. },
  44196. ]
  44197. ))
  44198. characterMakers.push(() => makeCharacter(
  44199. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44200. {
  44201. front: {
  44202. height: math.unit(512, "feet"),
  44203. weight: math.unit(63509, "tonnes"),
  44204. name: "Front",
  44205. image: {
  44206. source: "./media/characters/vorrel-harroc/front.svg",
  44207. extra: 1075/1063,
  44208. bottom: 62/1137
  44209. }
  44210. },
  44211. },
  44212. [
  44213. {
  44214. name: "Normal",
  44215. height: math.unit(10, "feet")
  44216. },
  44217. {
  44218. name: "Macro",
  44219. height: math.unit(512, "feet"),
  44220. default: true
  44221. },
  44222. {
  44223. name: "Megamacro",
  44224. height: math.unit(256, "miles")
  44225. },
  44226. {
  44227. name: "Gigamacro",
  44228. height: math.unit(4096, "miles")
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44234. {
  44235. side: {
  44236. height: math.unit(50, "feet"),
  44237. name: "Side",
  44238. image: {
  44239. source: "./media/characters/froimar/side.svg",
  44240. extra: 855/638,
  44241. bottom: 99/954
  44242. }
  44243. },
  44244. },
  44245. [
  44246. {
  44247. name: "Macro",
  44248. height: math.unit(50, "feet"),
  44249. default: true
  44250. },
  44251. ]
  44252. ))
  44253. characterMakers.push(() => makeCharacter(
  44254. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44255. {
  44256. front: {
  44257. height: math.unit(210, "miles"),
  44258. name: "Front",
  44259. image: {
  44260. source: "./media/characters/timothy/front.svg",
  44261. extra: 1007/943,
  44262. bottom: 62/1069
  44263. }
  44264. },
  44265. frontSkirt: {
  44266. height: math.unit(210, "miles"),
  44267. name: "Front (Skirt)",
  44268. image: {
  44269. source: "./media/characters/timothy/front-skirt.svg",
  44270. extra: 1007/943,
  44271. bottom: 62/1069
  44272. }
  44273. },
  44274. frontCoat: {
  44275. height: math.unit(210, "miles"),
  44276. name: "Front (Coat)",
  44277. image: {
  44278. source: "./media/characters/timothy/front-coat.svg",
  44279. extra: 1007/943,
  44280. bottom: 62/1069
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Macro",
  44287. height: math.unit(210, "miles"),
  44288. default: true
  44289. },
  44290. {
  44291. name: "Megamacro",
  44292. height: math.unit(210000, "miles")
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44298. {
  44299. front: {
  44300. height: math.unit(188, "feet"),
  44301. name: "Front",
  44302. image: {
  44303. source: "./media/characters/pyotr/front.svg",
  44304. extra: 1912/1826,
  44305. bottom: 18/1930
  44306. }
  44307. },
  44308. },
  44309. [
  44310. {
  44311. name: "Macro",
  44312. height: math.unit(188, "feet"),
  44313. default: true
  44314. },
  44315. {
  44316. name: "Megamacro",
  44317. height: math.unit(8, "miles")
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44323. {
  44324. side: {
  44325. height: math.unit(10, "feet"),
  44326. weight: math.unit(4500, "lb"),
  44327. name: "Side",
  44328. image: {
  44329. source: "./media/characters/ackart/side.svg",
  44330. extra: 1776/1668,
  44331. bottom: 116/1892
  44332. }
  44333. },
  44334. },
  44335. [
  44336. {
  44337. name: "Normal",
  44338. height: math.unit(10, "feet"),
  44339. default: true
  44340. },
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44345. {
  44346. side: {
  44347. height: math.unit(21, "feet"),
  44348. name: "Side",
  44349. image: {
  44350. source: "./media/characters/nolow/side.svg",
  44351. extra: 1484/1434,
  44352. bottom: 85/1569
  44353. }
  44354. },
  44355. sideErect: {
  44356. height: math.unit(21, "feet"),
  44357. name: "Side-erect",
  44358. image: {
  44359. source: "./media/characters/nolow/side-erect.svg",
  44360. extra: 1484/1434,
  44361. bottom: 85/1569
  44362. }
  44363. },
  44364. },
  44365. [
  44366. {
  44367. name: "Regular",
  44368. height: math.unit(12, "feet")
  44369. },
  44370. {
  44371. name: "Big Chee",
  44372. height: math.unit(21, "feet"),
  44373. default: true
  44374. },
  44375. ]
  44376. ))
  44377. characterMakers.push(() => makeCharacter(
  44378. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44379. {
  44380. front: {
  44381. height: math.unit(7, "feet"),
  44382. weight: math.unit(250, "lb"),
  44383. name: "Front",
  44384. image: {
  44385. source: "./media/characters/nines/front.svg",
  44386. extra: 1741/1607,
  44387. bottom: 41/1782
  44388. }
  44389. },
  44390. side: {
  44391. height: math.unit(7, "feet"),
  44392. weight: math.unit(250, "lb"),
  44393. name: "Side",
  44394. image: {
  44395. source: "./media/characters/nines/side.svg",
  44396. extra: 1854/1735,
  44397. bottom: 93/1947
  44398. }
  44399. },
  44400. back: {
  44401. height: math.unit(7, "feet"),
  44402. weight: math.unit(250, "lb"),
  44403. name: "Back",
  44404. image: {
  44405. source: "./media/characters/nines/back.svg",
  44406. extra: 1748/1615,
  44407. bottom: 20/1768
  44408. }
  44409. },
  44410. },
  44411. [
  44412. {
  44413. name: "Megamacro",
  44414. height: math.unit(99, "km"),
  44415. default: true
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44421. {
  44422. front: {
  44423. height: math.unit(5 + 10/12, "feet"),
  44424. weight: math.unit(210, "lb"),
  44425. name: "Front",
  44426. image: {
  44427. source: "./media/characters/zenith/front.svg",
  44428. extra: 1531/1452,
  44429. bottom: 198/1729
  44430. }
  44431. },
  44432. back: {
  44433. height: math.unit(5 + 10/12, "feet"),
  44434. weight: math.unit(210, "lb"),
  44435. name: "Back",
  44436. image: {
  44437. source: "./media/characters/zenith/back.svg",
  44438. extra: 1571/1487,
  44439. bottom: 75/1646
  44440. }
  44441. },
  44442. },
  44443. [
  44444. {
  44445. name: "Normal",
  44446. height: math.unit(5 + 10/12, "feet"),
  44447. default: true
  44448. }
  44449. ]
  44450. ))
  44451. characterMakers.push(() => makeCharacter(
  44452. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44453. {
  44454. front: {
  44455. height: math.unit(4, "feet"),
  44456. weight: math.unit(60, "lb"),
  44457. name: "Front",
  44458. image: {
  44459. source: "./media/characters/jasper/front.svg",
  44460. extra: 1450/1379,
  44461. bottom: 19/1469
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Normal",
  44468. height: math.unit(4, "feet"),
  44469. default: true
  44470. },
  44471. ]
  44472. ))
  44473. characterMakers.push(() => makeCharacter(
  44474. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44475. {
  44476. front: {
  44477. height: math.unit(6 + 5/12, "feet"),
  44478. weight: math.unit(290, "lb"),
  44479. name: "Front",
  44480. image: {
  44481. source: "./media/characters/tiberius-thyben/front.svg",
  44482. extra: 757/739,
  44483. bottom: 39/796
  44484. }
  44485. },
  44486. },
  44487. [
  44488. {
  44489. name: "Micro",
  44490. height: math.unit(1.5, "inches")
  44491. },
  44492. {
  44493. name: "Normal",
  44494. height: math.unit(6 + 5/12, "feet"),
  44495. default: true
  44496. },
  44497. {
  44498. name: "Macro",
  44499. height: math.unit(300, "feet")
  44500. },
  44501. ]
  44502. ))
  44503. characterMakers.push(() => makeCharacter(
  44504. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44505. {
  44506. front: {
  44507. height: math.unit(5 + 6/12, "feet"),
  44508. weight: math.unit(60, "kg"),
  44509. name: "Front",
  44510. image: {
  44511. source: "./media/characters/sabre/front.svg",
  44512. extra: 738/671,
  44513. bottom: 27/765
  44514. }
  44515. },
  44516. },
  44517. [
  44518. {
  44519. name: "Teeny",
  44520. height: math.unit(2, "inches")
  44521. },
  44522. {
  44523. name: "Smol",
  44524. height: math.unit(8, "inches")
  44525. },
  44526. {
  44527. name: "Normal",
  44528. height: math.unit(5 + 6/12, "feet"),
  44529. default: true
  44530. },
  44531. {
  44532. name: "Mini-Macro",
  44533. height: math.unit(15, "feet")
  44534. },
  44535. {
  44536. name: "Macro",
  44537. height: math.unit(50, "feet")
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(6 + 4/12, "feet"),
  44546. weight: math.unit(170, "lb"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/charlie/front.svg",
  44550. extra: 1348/1228,
  44551. bottom: 15/1363
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "Macro",
  44558. height: math.unit(1700, "meters"),
  44559. default: true
  44560. },
  44561. {
  44562. name: "MegaMacro",
  44563. height: math.unit(20400, "meters")
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44569. {
  44570. front: {
  44571. height: math.unit(1.96, "meters"),
  44572. weight: math.unit(220, "lb"),
  44573. name: "Front",
  44574. image: {
  44575. source: "./media/characters/susan-grant/front.svg",
  44576. extra: 482/478,
  44577. bottom: 7/489
  44578. }
  44579. },
  44580. },
  44581. [
  44582. {
  44583. name: "Normal",
  44584. height: math.unit(1.96, "meters"),
  44585. default: true
  44586. },
  44587. {
  44588. name: "Macro",
  44589. height: math.unit(76.2, "meters")
  44590. },
  44591. {
  44592. name: "MegaMacro",
  44593. height: math.unit(305, "meters")
  44594. },
  44595. {
  44596. name: "GigaMacro",
  44597. height: math.unit(1220, "meters")
  44598. },
  44599. {
  44600. name: "SuperMacro",
  44601. height: math.unit(4878, "meters")
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44607. {
  44608. front: {
  44609. height: math.unit(5 + 4/12, "feet"),
  44610. weight: math.unit(110, "lb"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/axel-isanov/front.svg",
  44614. extra: 1096/1065,
  44615. bottom: 13/1109
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Normal",
  44622. height: math.unit(5 + 4/12, "feet"),
  44623. default: true
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44629. {
  44630. front: {
  44631. height: math.unit(9, "feet"),
  44632. weight: math.unit(467, "lb"),
  44633. name: "Front",
  44634. image: {
  44635. source: "./media/characters/necahual/front.svg",
  44636. extra: 920/873,
  44637. bottom: 26/946
  44638. }
  44639. },
  44640. back: {
  44641. height: math.unit(9, "feet"),
  44642. weight: math.unit(467, "lb"),
  44643. name: "Back",
  44644. image: {
  44645. source: "./media/characters/necahual/back.svg",
  44646. extra: 930/884,
  44647. bottom: 16/946
  44648. }
  44649. },
  44650. frontUnderwear: {
  44651. height: math.unit(9, "feet"),
  44652. weight: math.unit(467, "lb"),
  44653. name: "Front (Underwear)",
  44654. image: {
  44655. source: "./media/characters/necahual/front-underwear.svg",
  44656. extra: 920/873,
  44657. bottom: 26/946
  44658. }
  44659. },
  44660. frontDressed: {
  44661. height: math.unit(9, "feet"),
  44662. weight: math.unit(467, "lb"),
  44663. name: "Front (Dressed)",
  44664. image: {
  44665. source: "./media/characters/necahual/front-dressed.svg",
  44666. extra: 920/873,
  44667. bottom: 26/946
  44668. }
  44669. },
  44670. },
  44671. [
  44672. {
  44673. name: "Comprsesed",
  44674. height: math.unit(9, "feet")
  44675. },
  44676. {
  44677. name: "Natural",
  44678. height: math.unit(15, "feet"),
  44679. default: true
  44680. },
  44681. {
  44682. name: "Boosted",
  44683. height: math.unit(50, "feet")
  44684. },
  44685. {
  44686. name: "Boosted+",
  44687. height: math.unit(150, "feet")
  44688. },
  44689. {
  44690. name: "Max",
  44691. height: math.unit(500, "feet")
  44692. },
  44693. ]
  44694. ))
  44695. characterMakers.push(() => makeCharacter(
  44696. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44697. {
  44698. front: {
  44699. height: math.unit(22 + 1/12, "feet"),
  44700. weight: math.unit(3200, "lb"),
  44701. name: "Front",
  44702. image: {
  44703. source: "./media/characters/theo-acacia/front.svg",
  44704. extra: 1796/1741,
  44705. bottom: 83/1879
  44706. }
  44707. },
  44708. frontUnderwear: {
  44709. height: math.unit(22 + 1/12, "feet"),
  44710. weight: math.unit(3200, "lb"),
  44711. name: "Front (Underwear)",
  44712. image: {
  44713. source: "./media/characters/theo-acacia/front-underwear.svg",
  44714. extra: 1796/1741,
  44715. bottom: 83/1879
  44716. }
  44717. },
  44718. frontNude: {
  44719. height: math.unit(22 + 1/12, "feet"),
  44720. weight: math.unit(3200, "lb"),
  44721. name: "Front (Nude)",
  44722. image: {
  44723. source: "./media/characters/theo-acacia/front-nude.svg",
  44724. extra: 1796/1741,
  44725. bottom: 83/1879
  44726. }
  44727. },
  44728. },
  44729. [
  44730. {
  44731. name: "Normal",
  44732. height: math.unit(22 + 1/12, "feet"),
  44733. default: true
  44734. },
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44739. {
  44740. front: {
  44741. height: math.unit(20, "feet"),
  44742. name: "Front",
  44743. image: {
  44744. source: "./media/characters/astra/front.svg",
  44745. extra: 1850/1714,
  44746. bottom: 106/1956
  44747. }
  44748. },
  44749. frontUndressed: {
  44750. height: math.unit(20, "feet"),
  44751. name: "Front (Undressed)",
  44752. image: {
  44753. source: "./media/characters/astra/front-undressed.svg",
  44754. extra: 1926/1749,
  44755. bottom: 0/1926
  44756. }
  44757. },
  44758. hand: {
  44759. height: math.unit(1.53, "feet"),
  44760. name: "Hand",
  44761. image: {
  44762. source: "./media/characters/astra/hand.svg"
  44763. }
  44764. },
  44765. paw: {
  44766. height: math.unit(1.53, "feet"),
  44767. name: "Paw",
  44768. image: {
  44769. source: "./media/characters/astra/paw.svg"
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Smallest",
  44776. height: math.unit(20, "feet")
  44777. },
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(1e9, "miles"),
  44781. default: true
  44782. },
  44783. {
  44784. name: "Larger",
  44785. height: math.unit(5, "multiverses")
  44786. },
  44787. {
  44788. name: "Largest",
  44789. height: math.unit(1e9, "multiverses")
  44790. },
  44791. ]
  44792. ))
  44793. characterMakers.push(() => makeCharacter(
  44794. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44795. {
  44796. front: {
  44797. height: math.unit(8, "feet"),
  44798. name: "Front",
  44799. image: {
  44800. source: "./media/characters/breanna/front.svg",
  44801. extra: 1912/1632,
  44802. bottom: 33/1945
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Smallest",
  44809. height: math.unit(8, "feet")
  44810. },
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(1, "mile"),
  44814. default: true
  44815. },
  44816. {
  44817. name: "Maximum",
  44818. height: math.unit(1500000000000, "lightyears")
  44819. },
  44820. ]
  44821. ))
  44822. characterMakers.push(() => makeCharacter(
  44823. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44824. {
  44825. front: {
  44826. height: math.unit(5 + 11/12, "feet"),
  44827. weight: math.unit(155, "lb"),
  44828. name: "Front",
  44829. image: {
  44830. source: "./media/characters/cai/front.svg",
  44831. extra: 1823/1702,
  44832. bottom: 32/1855
  44833. }
  44834. },
  44835. back: {
  44836. height: math.unit(5 + 11/12, "feet"),
  44837. weight: math.unit(155, "lb"),
  44838. name: "Back",
  44839. image: {
  44840. source: "./media/characters/cai/back.svg",
  44841. extra: 1809/1708,
  44842. bottom: 31/1840
  44843. }
  44844. },
  44845. },
  44846. [
  44847. {
  44848. name: "Normal",
  44849. height: math.unit(5 + 11/12, "feet"),
  44850. default: true
  44851. },
  44852. {
  44853. name: "Big",
  44854. height: math.unit(15, "feet")
  44855. },
  44856. {
  44857. name: "Macro",
  44858. height: math.unit(200, "feet")
  44859. },
  44860. ]
  44861. ))
  44862. characterMakers.push(() => makeCharacter(
  44863. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44864. {
  44865. front: {
  44866. height: math.unit(5 + 6/12, "feet"),
  44867. weight: math.unit(160, "lb"),
  44868. name: "Front",
  44869. image: {
  44870. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44871. extra: 1227/1174,
  44872. bottom: 37/1264
  44873. }
  44874. },
  44875. },
  44876. [
  44877. {
  44878. name: "Macro",
  44879. height: math.unit(444, "meters"),
  44880. default: true
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44886. {
  44887. front: {
  44888. height: math.unit(18 + 7/12, "feet"),
  44889. name: "Front",
  44890. image: {
  44891. source: "./media/characters/rex/front.svg",
  44892. extra: 1941/1807,
  44893. bottom: 66/2007
  44894. }
  44895. },
  44896. back: {
  44897. height: math.unit(18 + 7/12, "feet"),
  44898. name: "Back",
  44899. image: {
  44900. source: "./media/characters/rex/back.svg",
  44901. extra: 1937/1822,
  44902. bottom: 42/1979
  44903. }
  44904. },
  44905. boot: {
  44906. height: math.unit(3.45, "feet"),
  44907. name: "Boot",
  44908. image: {
  44909. source: "./media/characters/rex/boot.svg"
  44910. }
  44911. },
  44912. paw: {
  44913. height: math.unit(4.17, "feet"),
  44914. name: "Paw",
  44915. image: {
  44916. source: "./media/characters/rex/paw.svg"
  44917. }
  44918. },
  44919. head: {
  44920. height: math.unit(6.728, "feet"),
  44921. name: "Head",
  44922. image: {
  44923. source: "./media/characters/rex/head.svg"
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Nano",
  44930. height: math.unit(18 + 7/12, "feet")
  44931. },
  44932. {
  44933. name: "Micro",
  44934. height: math.unit(1.5, "megameters")
  44935. },
  44936. {
  44937. name: "Normal",
  44938. height: math.unit(440, "megameters"),
  44939. default: true
  44940. },
  44941. {
  44942. name: "Macro",
  44943. height: math.unit(2.5, "gigameters")
  44944. },
  44945. {
  44946. name: "Gigamacro",
  44947. height: math.unit(2, "galaxies")
  44948. },
  44949. ]
  44950. ))
  44951. characterMakers.push(() => makeCharacter(
  44952. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44953. {
  44954. side: {
  44955. height: math.unit(32, "feet"),
  44956. weight: math.unit(250000, "lb"),
  44957. name: "Side",
  44958. image: {
  44959. source: "./media/characters/silverwing/side.svg",
  44960. extra: 1100/1019,
  44961. bottom: 204/1304
  44962. }
  44963. },
  44964. },
  44965. [
  44966. {
  44967. name: "Normal",
  44968. height: math.unit(32, "feet"),
  44969. default: true
  44970. },
  44971. ]
  44972. ))
  44973. characterMakers.push(() => makeCharacter(
  44974. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44975. {
  44976. front: {
  44977. height: math.unit(6 + 6/12, "feet"),
  44978. weight: math.unit(350, "lb"),
  44979. name: "Front",
  44980. image: {
  44981. source: "./media/characters/tristan-hawthorne/front.svg",
  44982. extra: 1159/1124,
  44983. bottom: 37/1196
  44984. },
  44985. form: "labrador",
  44986. default: true
  44987. },
  44988. skunkFront: {
  44989. height: math.unit(4 + 6/12, "feet"),
  44990. weight: math.unit(120, "lb"),
  44991. name: "Front",
  44992. image: {
  44993. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44994. extra: 1609/1551,
  44995. bottom: 169/1778
  44996. },
  44997. form: "skunk",
  44998. default: true
  44999. },
  45000. },
  45001. [
  45002. {
  45003. name: "Normal",
  45004. height: math.unit(6 + 6/12, "feet"),
  45005. form: "labrador",
  45006. default: true
  45007. },
  45008. {
  45009. name: "Normal",
  45010. height: math.unit(4 + 6/12, "feet"),
  45011. form: "skunk",
  45012. default: true
  45013. },
  45014. ],
  45015. {
  45016. "labrador": {
  45017. name: "Labrador",
  45018. default: true
  45019. },
  45020. "skunk": {
  45021. name: "Skunk"
  45022. }
  45023. }
  45024. ))
  45025. characterMakers.push(() => makeCharacter(
  45026. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45027. {
  45028. front: {
  45029. height: math.unit(5 + 11/12, "feet"),
  45030. weight: math.unit(190, "lb"),
  45031. name: "Front",
  45032. image: {
  45033. source: "./media/characters/mizu/front.svg",
  45034. extra: 1988/1788,
  45035. bottom: 14/2002
  45036. }
  45037. },
  45038. },
  45039. [
  45040. {
  45041. name: "Normal",
  45042. height: math.unit(5 + 11/12, "feet"),
  45043. default: true
  45044. },
  45045. ]
  45046. ))
  45047. characterMakers.push(() => makeCharacter(
  45048. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45049. {
  45050. front: {
  45051. height: math.unit(1.7, "feet"),
  45052. weight: math.unit(50, "lb"),
  45053. name: "Front",
  45054. image: {
  45055. source: "./media/characters/dechroma/front.svg",
  45056. extra: 1095/859,
  45057. bottom: 64/1159
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Normal",
  45064. height: math.unit(1.7, "feet"),
  45065. default: true
  45066. },
  45067. ]
  45068. ))
  45069. characterMakers.push(() => makeCharacter(
  45070. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45071. {
  45072. side: {
  45073. height: math.unit(30, "feet"),
  45074. name: "Side",
  45075. image: {
  45076. source: "./media/characters/veluren-thanazel/side.svg",
  45077. extra: 1611/633,
  45078. bottom: 118/1729
  45079. }
  45080. },
  45081. front: {
  45082. height: math.unit(30, "feet"),
  45083. name: "Front",
  45084. image: {
  45085. source: "./media/characters/veluren-thanazel/front.svg",
  45086. extra: 1486/636,
  45087. bottom: 238/1724
  45088. }
  45089. },
  45090. head: {
  45091. height: math.unit(21.4, "feet"),
  45092. name: "Head",
  45093. image: {
  45094. source: "./media/characters/veluren-thanazel/head.svg"
  45095. }
  45096. },
  45097. genitals: {
  45098. height: math.unit(19.4, "feet"),
  45099. name: "Genitals",
  45100. image: {
  45101. source: "./media/characters/veluren-thanazel/genitals.svg"
  45102. }
  45103. },
  45104. },
  45105. [
  45106. {
  45107. name: "Social",
  45108. height: math.unit(6, "feet")
  45109. },
  45110. {
  45111. name: "Play",
  45112. height: math.unit(12, "feet")
  45113. },
  45114. {
  45115. name: "True",
  45116. height: math.unit(30, "feet"),
  45117. default: true
  45118. },
  45119. ]
  45120. ))
  45121. characterMakers.push(() => makeCharacter(
  45122. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45123. {
  45124. front: {
  45125. height: math.unit(7 + 6/12, "feet"),
  45126. weight: math.unit(500, "kg"),
  45127. name: "Front",
  45128. image: {
  45129. source: "./media/characters/arcturas/front.svg",
  45130. extra: 1700/1500,
  45131. bottom: 145/1845
  45132. }
  45133. },
  45134. },
  45135. [
  45136. {
  45137. name: "Normal",
  45138. height: math.unit(7 + 6/12, "feet"),
  45139. default: true
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45145. {
  45146. side: {
  45147. height: math.unit(6, "feet"),
  45148. weight: math.unit(2, "tons"),
  45149. name: "Side",
  45150. image: {
  45151. source: "./media/characters/vitaen/side.svg",
  45152. extra: 1157/617,
  45153. bottom: 122/1279
  45154. }
  45155. },
  45156. },
  45157. [
  45158. {
  45159. name: "Normal",
  45160. height: math.unit(6, "feet"),
  45161. default: true
  45162. },
  45163. ]
  45164. ))
  45165. characterMakers.push(() => makeCharacter(
  45166. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45167. {
  45168. front: {
  45169. height: math.unit(19, "feet"),
  45170. name: "Front",
  45171. image: {
  45172. source: "./media/characters/fia-dreamweaver/front.svg",
  45173. extra: 1630/1504,
  45174. bottom: 25/1655
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Normal",
  45181. height: math.unit(19, "feet"),
  45182. default: true
  45183. },
  45184. ]
  45185. ))
  45186. characterMakers.push(() => makeCharacter(
  45187. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45188. {
  45189. front: {
  45190. height: math.unit(5 + 4/12, "feet"),
  45191. name: "Front",
  45192. image: {
  45193. source: "./media/characters/artan/front.svg",
  45194. extra: 1618/1535,
  45195. bottom: 46/1664
  45196. }
  45197. },
  45198. back: {
  45199. height: math.unit(5 + 4/12, "feet"),
  45200. name: "Back",
  45201. image: {
  45202. source: "./media/characters/artan/back.svg",
  45203. extra: 1618/1543,
  45204. bottom: 31/1649
  45205. }
  45206. },
  45207. },
  45208. [
  45209. {
  45210. name: "Normal",
  45211. height: math.unit(5 + 4/12, "feet"),
  45212. default: true
  45213. },
  45214. ]
  45215. ))
  45216. characterMakers.push(() => makeCharacter(
  45217. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45218. {
  45219. side: {
  45220. height: math.unit(182, "cm"),
  45221. weight: math.unit(1000, "lb"),
  45222. name: "Side",
  45223. image: {
  45224. source: "./media/characters/silver-dragon/side.svg",
  45225. extra: 710/287,
  45226. bottom: 88/798
  45227. }
  45228. },
  45229. },
  45230. [
  45231. {
  45232. name: "Normal",
  45233. height: math.unit(182, "cm"),
  45234. default: true
  45235. },
  45236. ]
  45237. ))
  45238. characterMakers.push(() => makeCharacter(
  45239. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45240. {
  45241. side: {
  45242. height: math.unit(6 + 6/12, "feet"),
  45243. weight: math.unit(1.5, "tons"),
  45244. name: "Side",
  45245. image: {
  45246. source: "./media/characters/zephyr/side.svg",
  45247. extra: 1433/586,
  45248. bottom: 109/1542
  45249. }
  45250. },
  45251. },
  45252. [
  45253. {
  45254. name: "Normal",
  45255. height: math.unit(6 + 6/12, "feet"),
  45256. default: true
  45257. },
  45258. ]
  45259. ))
  45260. characterMakers.push(() => makeCharacter(
  45261. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45262. {
  45263. side: {
  45264. height: math.unit(1, "feet"),
  45265. name: "Side",
  45266. image: {
  45267. source: "./media/characters/vixye/side.svg",
  45268. extra: 632/541,
  45269. bottom: 0/632
  45270. }
  45271. },
  45272. },
  45273. [
  45274. {
  45275. name: "Normal",
  45276. height: math.unit(1, "feet"),
  45277. default: true
  45278. },
  45279. {
  45280. name: "True",
  45281. height: math.unit(1e15, "multiverses")
  45282. },
  45283. ]
  45284. ))
  45285. characterMakers.push(() => makeCharacter(
  45286. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45287. {
  45288. front: {
  45289. height: math.unit(8 + 2/12, "feet"),
  45290. weight: math.unit(650, "lb"),
  45291. name: "Front",
  45292. image: {
  45293. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45294. extra: 1174/1137,
  45295. bottom: 82/1256
  45296. }
  45297. },
  45298. back: {
  45299. height: math.unit(8 + 2/12, "feet"),
  45300. weight: math.unit(650, "lb"),
  45301. name: "Back",
  45302. image: {
  45303. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45304. extra: 1204/1157,
  45305. bottom: 46/1250
  45306. }
  45307. },
  45308. },
  45309. [
  45310. {
  45311. name: "Wildform",
  45312. height: math.unit(8 + 2/12, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45319. {
  45320. front: {
  45321. height: math.unit(18, "feet"),
  45322. name: "Front",
  45323. image: {
  45324. source: "./media/characters/cyphin/front.svg",
  45325. extra: 970/886,
  45326. bottom: 42/1012
  45327. }
  45328. },
  45329. back: {
  45330. height: math.unit(18, "feet"),
  45331. name: "Back",
  45332. image: {
  45333. source: "./media/characters/cyphin/back.svg",
  45334. extra: 1009/894,
  45335. bottom: 24/1033
  45336. }
  45337. },
  45338. head: {
  45339. height: math.unit(5.05, "feet"),
  45340. name: "Head",
  45341. image: {
  45342. source: "./media/characters/cyphin/head.svg"
  45343. }
  45344. },
  45345. tailbud: {
  45346. height: math.unit(5, "feet"),
  45347. name: "Tailbud",
  45348. image: {
  45349. source: "./media/characters/cyphin/tailbud.svg"
  45350. }
  45351. },
  45352. },
  45353. [
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45358. {
  45359. side: {
  45360. height: math.unit(10, "feet"),
  45361. weight: math.unit(6, "tons"),
  45362. name: "Side",
  45363. image: {
  45364. source: "./media/characters/raijin/side.svg",
  45365. extra: 1529/613,
  45366. bottom: 337/1866
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(10, "feet"),
  45374. default: true
  45375. },
  45376. ]
  45377. ))
  45378. characterMakers.push(() => makeCharacter(
  45379. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45380. {
  45381. side: {
  45382. height: math.unit(9, "feet"),
  45383. name: "Side",
  45384. image: {
  45385. source: "./media/characters/nilghais/side.svg",
  45386. extra: 1047/744,
  45387. bottom: 91/1138
  45388. }
  45389. },
  45390. head: {
  45391. height: math.unit(3.14, "feet"),
  45392. name: "Head",
  45393. image: {
  45394. source: "./media/characters/nilghais/head.svg"
  45395. }
  45396. },
  45397. mouth: {
  45398. height: math.unit(4.6, "feet"),
  45399. name: "Mouth",
  45400. image: {
  45401. source: "./media/characters/nilghais/mouth.svg"
  45402. }
  45403. },
  45404. wings: {
  45405. height: math.unit(24, "feet"),
  45406. name: "Wings",
  45407. image: {
  45408. source: "./media/characters/nilghais/wings.svg"
  45409. }
  45410. },
  45411. ass: {
  45412. height: math.unit(6.12, "feet"),
  45413. name: "Ass",
  45414. image: {
  45415. source: "./media/characters/nilghais/ass.svg"
  45416. }
  45417. },
  45418. },
  45419. [
  45420. {
  45421. name: "Normal",
  45422. height: math.unit(9, "feet"),
  45423. default: true
  45424. },
  45425. ]
  45426. ))
  45427. characterMakers.push(() => makeCharacter(
  45428. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45429. {
  45430. regular: {
  45431. height: math.unit(16 + 2/12, "feet"),
  45432. weight: math.unit(2300, "lb"),
  45433. name: "Regular",
  45434. image: {
  45435. source: "./media/characters/zolgar/regular.svg",
  45436. extra: 1246/1004,
  45437. bottom: 124/1370
  45438. }
  45439. },
  45440. boxers: {
  45441. height: math.unit(16 + 2/12, "feet"),
  45442. weight: math.unit(2300, "lb"),
  45443. name: "Boxers",
  45444. image: {
  45445. source: "./media/characters/zolgar/boxers.svg",
  45446. extra: 1246/1004,
  45447. bottom: 124/1370
  45448. }
  45449. },
  45450. armored: {
  45451. height: math.unit(16 + 2/12, "feet"),
  45452. weight: math.unit(2300, "lb"),
  45453. name: "Armored",
  45454. image: {
  45455. source: "./media/characters/zolgar/armored.svg",
  45456. extra: 1246/1004,
  45457. bottom: 124/1370
  45458. }
  45459. },
  45460. goth: {
  45461. height: math.unit(16 + 2/12, "feet"),
  45462. weight: math.unit(2300, "lb"),
  45463. name: "Goth",
  45464. image: {
  45465. source: "./media/characters/zolgar/goth.svg",
  45466. extra: 1246/1004,
  45467. bottom: 124/1370
  45468. }
  45469. },
  45470. },
  45471. [
  45472. {
  45473. name: "Shrunken Down",
  45474. height: math.unit(9 + 2/12, "feet")
  45475. },
  45476. {
  45477. name: "Normal",
  45478. height: math.unit(16 + 2/12, "feet"),
  45479. default: true
  45480. },
  45481. ]
  45482. ))
  45483. characterMakers.push(() => makeCharacter(
  45484. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45485. {
  45486. front: {
  45487. height: math.unit(6, "feet"),
  45488. weight: math.unit(168, "lb"),
  45489. name: "Front",
  45490. image: {
  45491. source: "./media/characters/luca/front.svg",
  45492. extra: 841/667,
  45493. bottom: 102/943
  45494. }
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "Normal",
  45500. height: math.unit(6, "feet"),
  45501. default: true
  45502. },
  45503. ]
  45504. ))
  45505. characterMakers.push(() => makeCharacter(
  45506. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45507. {
  45508. side: {
  45509. height: math.unit(7 + 3/12, "feet"),
  45510. weight: math.unit(312, "lb"),
  45511. name: "Side",
  45512. image: {
  45513. source: "./media/characters/zezo/side.svg",
  45514. extra: 1192/1067,
  45515. bottom: 63/1255
  45516. }
  45517. },
  45518. },
  45519. [
  45520. {
  45521. name: "Normal",
  45522. height: math.unit(7 + 3/12, "feet"),
  45523. default: true
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45529. {
  45530. front: {
  45531. height: math.unit(5 + 5/12, "feet"),
  45532. weight: math.unit(170, "lb"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/mayso/front.svg",
  45536. extra: 1215/1108,
  45537. bottom: 16/1231
  45538. }
  45539. },
  45540. },
  45541. [
  45542. {
  45543. name: "Normal",
  45544. height: math.unit(5 + 5/12, "feet"),
  45545. default: true
  45546. },
  45547. ]
  45548. ))
  45549. characterMakers.push(() => makeCharacter(
  45550. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45551. {
  45552. front: {
  45553. height: math.unit(4 + 3/12, "feet"),
  45554. weight: math.unit(80, "lb"),
  45555. name: "Front",
  45556. image: {
  45557. source: "./media/characters/hess/front.svg",
  45558. extra: 1200/1123,
  45559. bottom: 16/1216
  45560. }
  45561. },
  45562. },
  45563. [
  45564. {
  45565. name: "Normal",
  45566. height: math.unit(4 + 3/12, "feet"),
  45567. default: true
  45568. },
  45569. ]
  45570. ))
  45571. characterMakers.push(() => makeCharacter(
  45572. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45573. {
  45574. front: {
  45575. height: math.unit(1.9, "meters"),
  45576. name: "Front",
  45577. image: {
  45578. source: "./media/characters/ashgar/front.svg",
  45579. extra: 1177/1146,
  45580. bottom: 99/1276
  45581. }
  45582. },
  45583. back: {
  45584. height: math.unit(1.9, "meters"),
  45585. name: "Back",
  45586. image: {
  45587. source: "./media/characters/ashgar/back.svg",
  45588. extra: 1201/1183,
  45589. bottom: 53/1254
  45590. }
  45591. },
  45592. feral: {
  45593. height: math.unit(1.4, "meters"),
  45594. name: "Feral",
  45595. image: {
  45596. source: "./media/characters/ashgar/feral.svg",
  45597. extra: 370/345,
  45598. bottom: 45/415
  45599. }
  45600. },
  45601. },
  45602. [
  45603. {
  45604. name: "Normal",
  45605. height: math.unit(1.9, "meters"),
  45606. default: true
  45607. },
  45608. ]
  45609. ))
  45610. characterMakers.push(() => makeCharacter(
  45611. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45612. {
  45613. regular: {
  45614. height: math.unit(6, "feet"),
  45615. weight: math.unit(220, "lb"),
  45616. name: "Regular",
  45617. image: {
  45618. source: "./media/characters/phillip/regular.svg",
  45619. extra: 1373/1277,
  45620. bottom: 75/1448
  45621. }
  45622. },
  45623. dressed: {
  45624. height: math.unit(6, "feet"),
  45625. weight: math.unit(220, "lb"),
  45626. name: "Dressed",
  45627. image: {
  45628. source: "./media/characters/phillip/dressed.svg",
  45629. extra: 1373/1277,
  45630. bottom: 75/1448
  45631. }
  45632. },
  45633. paw: {
  45634. height: math.unit(1.44, "feet"),
  45635. name: "Paw",
  45636. image: {
  45637. source: "./media/characters/phillip/paw.svg"
  45638. }
  45639. },
  45640. },
  45641. [
  45642. {
  45643. name: "Normal",
  45644. height: math.unit(6, "feet"),
  45645. default: true
  45646. },
  45647. ]
  45648. ))
  45649. characterMakers.push(() => makeCharacter(
  45650. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45651. {
  45652. side: {
  45653. height: math.unit(42, "feet"),
  45654. name: "Side",
  45655. image: {
  45656. source: "./media/characters/uvula/side.svg",
  45657. extra: 683/586,
  45658. bottom: 60/743
  45659. }
  45660. },
  45661. front: {
  45662. height: math.unit(42, "feet"),
  45663. name: "Front",
  45664. image: {
  45665. source: "./media/characters/uvula/front.svg",
  45666. extra: 705/613,
  45667. bottom: 54/759
  45668. }
  45669. },
  45670. maw: {
  45671. height: math.unit(23.5, "feet"),
  45672. name: "Maw",
  45673. image: {
  45674. source: "./media/characters/uvula/maw.svg"
  45675. }
  45676. },
  45677. },
  45678. [
  45679. {
  45680. name: "Original Size",
  45681. height: math.unit(14, "inches")
  45682. },
  45683. {
  45684. name: "Human Size",
  45685. height: math.unit(6, "feet")
  45686. },
  45687. {
  45688. name: "Big",
  45689. height: math.unit(42, "feet"),
  45690. default: true
  45691. },
  45692. {
  45693. name: "Bigger",
  45694. height: math.unit(100, "feet")
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45700. {
  45701. front: {
  45702. height: math.unit(5 + 11/12, "feet"),
  45703. name: "Front",
  45704. image: {
  45705. source: "./media/characters/lannah/front.svg",
  45706. extra: 1208/1113,
  45707. bottom: 97/1305
  45708. }
  45709. },
  45710. },
  45711. [
  45712. {
  45713. name: "Normal",
  45714. height: math.unit(5 + 11/12, "feet"),
  45715. default: true
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45721. {
  45722. front: {
  45723. height: math.unit(6 + 3/12, "feet"),
  45724. weight: math.unit(3.5, "tons"),
  45725. name: "Front",
  45726. image: {
  45727. source: "./media/characters/emberflame/front.svg",
  45728. extra: 1198/672,
  45729. bottom: 82/1280
  45730. }
  45731. },
  45732. side: {
  45733. height: math.unit(6 + 3/12, "feet"),
  45734. weight: math.unit(3.5, "tons"),
  45735. name: "Side",
  45736. image: {
  45737. source: "./media/characters/emberflame/side.svg",
  45738. extra: 938/527,
  45739. bottom: 56/994
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Normal",
  45746. height: math.unit(6 + 3/12, "feet"),
  45747. default: true
  45748. },
  45749. ]
  45750. ))
  45751. characterMakers.push(() => makeCharacter(
  45752. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45753. {
  45754. side: {
  45755. height: math.unit(17.5, "feet"),
  45756. weight: math.unit(35, "tons"),
  45757. name: "Side",
  45758. image: {
  45759. source: "./media/characters/sophie-ambrose/side.svg",
  45760. extra: 1573/1242,
  45761. bottom: 71/1644
  45762. }
  45763. },
  45764. maw: {
  45765. height: math.unit(7.4, "feet"),
  45766. name: "Maw",
  45767. image: {
  45768. source: "./media/characters/sophie-ambrose/maw.svg"
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Normal",
  45775. height: math.unit(17.5, "feet"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45782. {
  45783. front: {
  45784. height: math.unit(280, "feet"),
  45785. weight: math.unit(550, "tons"),
  45786. name: "Front",
  45787. image: {
  45788. source: "./media/characters/king-mugi/front.svg",
  45789. extra: 1102/947,
  45790. bottom: 104/1206
  45791. }
  45792. },
  45793. },
  45794. [
  45795. {
  45796. name: "King Mugi",
  45797. height: math.unit(280, "feet"),
  45798. default: true
  45799. },
  45800. ]
  45801. ))
  45802. characterMakers.push(() => makeCharacter(
  45803. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45804. {
  45805. female: {
  45806. height: math.unit(300, "meters"),
  45807. name: "Front",
  45808. image: {
  45809. source: "./media/characters/nova-fox/female.svg",
  45810. extra: 664/632,
  45811. bottom: 51/715
  45812. },
  45813. form: "female",
  45814. default: true
  45815. },
  45816. male: {
  45817. height: math.unit(300, "meters"),
  45818. name: "Front",
  45819. image: {
  45820. source: "./media/characters/nova-fox/male.svg",
  45821. extra: 663/631,
  45822. bottom: 30/693
  45823. },
  45824. form: "male",
  45825. default: true
  45826. },
  45827. },
  45828. [
  45829. {
  45830. name: "Macro",
  45831. height: math.unit(300, "meters"),
  45832. default: true,
  45833. allForms: true
  45834. },
  45835. ],
  45836. {
  45837. "female": {
  45838. name: "Female",
  45839. default: true
  45840. },
  45841. "male": {
  45842. name: "Male",
  45843. },
  45844. }
  45845. ))
  45846. characterMakers.push(() => makeCharacter(
  45847. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45848. {
  45849. front: {
  45850. height: math.unit(6 + 3/12, "feet"),
  45851. weight: math.unit(170, "lb"),
  45852. name: "Front",
  45853. image: {
  45854. source: "./media/characters/sam-bat/front.svg",
  45855. extra: 1601/1411,
  45856. bottom: 125/1726
  45857. }
  45858. },
  45859. back: {
  45860. height: math.unit(6 + 3/12, "feet"),
  45861. weight: math.unit(170, "lb"),
  45862. name: "Back",
  45863. image: {
  45864. source: "./media/characters/sam-bat/back.svg",
  45865. extra: 1577/1405,
  45866. bottom: 58/1635
  45867. }
  45868. },
  45869. },
  45870. [
  45871. {
  45872. name: "Normal",
  45873. height: math.unit(6 + 3/12, "feet"),
  45874. default: true
  45875. },
  45876. ]
  45877. ))
  45878. characterMakers.push(() => makeCharacter(
  45879. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45880. {
  45881. front: {
  45882. height: math.unit(59, "feet"),
  45883. weight: math.unit(40000, "lb"),
  45884. name: "Front",
  45885. image: {
  45886. source: "./media/characters/inari/front.svg",
  45887. extra: 1884/1350,
  45888. bottom: 95/1979
  45889. }
  45890. },
  45891. },
  45892. [
  45893. {
  45894. name: "Gigantamax",
  45895. height: math.unit(59, "feet"),
  45896. default: true
  45897. },
  45898. ]
  45899. ))
  45900. characterMakers.push(() => makeCharacter(
  45901. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45902. {
  45903. front: {
  45904. height: math.unit(5 + 8/12, "feet"),
  45905. name: "Front",
  45906. image: {
  45907. source: "./media/characters/elizabeth/front.svg",
  45908. extra: 1395/1298,
  45909. bottom: 54/1449
  45910. }
  45911. },
  45912. mouth: {
  45913. height: math.unit(1.97, "feet"),
  45914. name: "Mouth",
  45915. image: {
  45916. source: "./media/characters/elizabeth/mouth.svg"
  45917. }
  45918. },
  45919. foot: {
  45920. height: math.unit(1.17, "feet"),
  45921. name: "Foot",
  45922. image: {
  45923. source: "./media/characters/elizabeth/foot.svg"
  45924. }
  45925. },
  45926. },
  45927. [
  45928. {
  45929. name: "Normal",
  45930. height: math.unit(5 + 8/12, "feet"),
  45931. default: true
  45932. },
  45933. {
  45934. name: "Minimacro",
  45935. height: math.unit(18, "feet")
  45936. },
  45937. {
  45938. name: "Macro",
  45939. height: math.unit(180, "feet")
  45940. },
  45941. ]
  45942. ))
  45943. characterMakers.push(() => makeCharacter(
  45944. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45945. {
  45946. front: {
  45947. height: math.unit(5 + 2/12, "feet"),
  45948. name: "Front",
  45949. image: {
  45950. source: "./media/characters/october-gossamer/front.svg",
  45951. extra: 505/454,
  45952. bottom: 7/512
  45953. }
  45954. },
  45955. back: {
  45956. height: math.unit(5 + 2/12, "feet"),
  45957. name: "Back",
  45958. image: {
  45959. source: "./media/characters/october-gossamer/back.svg",
  45960. extra: 501/454,
  45961. bottom: 11/512
  45962. }
  45963. },
  45964. },
  45965. [
  45966. {
  45967. name: "Normal",
  45968. height: math.unit(5 + 2/12, "feet"),
  45969. default: true
  45970. },
  45971. ]
  45972. ))
  45973. characterMakers.push(() => makeCharacter(
  45974. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45975. {
  45976. front: {
  45977. height: math.unit(5, "feet"),
  45978. name: "Front",
  45979. image: {
  45980. source: "./media/characters/epiglottis/front.svg",
  45981. extra: 923/849,
  45982. bottom: 17/940
  45983. }
  45984. },
  45985. },
  45986. [
  45987. {
  45988. name: "Original Size",
  45989. height: math.unit(10, "inches")
  45990. },
  45991. {
  45992. name: "Human Size",
  45993. height: math.unit(5, "feet"),
  45994. default: true
  45995. },
  45996. {
  45997. name: "Big",
  45998. height: math.unit(25, "feet")
  45999. },
  46000. {
  46001. name: "Bigger",
  46002. height: math.unit(50, "feet")
  46003. },
  46004. {
  46005. name: "oh lawd",
  46006. height: math.unit(75, "feet")
  46007. },
  46008. ]
  46009. ))
  46010. characterMakers.push(() => makeCharacter(
  46011. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46012. {
  46013. front: {
  46014. height: math.unit(2 + 4/12, "feet"),
  46015. weight: math.unit(60, "lb"),
  46016. name: "Front",
  46017. image: {
  46018. source: "./media/characters/lerm/front.svg",
  46019. extra: 796/790,
  46020. bottom: 79/875
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(2 + 4/12, "feet"),
  46028. default: true
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46034. {
  46035. front: {
  46036. height: math.unit(5.5, "feet"),
  46037. weight: math.unit(130, "lb"),
  46038. name: "Front",
  46039. image: {
  46040. source: "./media/characters/xena-nebadon/front.svg",
  46041. extra: 1828/1730,
  46042. bottom: 79/1907
  46043. }
  46044. },
  46045. },
  46046. [
  46047. {
  46048. name: "Tiny Puppy",
  46049. height: math.unit(3, "inches")
  46050. },
  46051. {
  46052. name: "Normal",
  46053. height: math.unit(5.5, "feet"),
  46054. default: true
  46055. },
  46056. {
  46057. name: "Lotta Lady",
  46058. height: math.unit(12, "feet")
  46059. },
  46060. {
  46061. name: "Pretty Big",
  46062. height: math.unit(100, "feet")
  46063. },
  46064. {
  46065. name: "Big",
  46066. height: math.unit(500, "feet")
  46067. },
  46068. {
  46069. name: "Skyscraper Toys",
  46070. height: math.unit(2500, "feet")
  46071. },
  46072. {
  46073. name: "Plane Catcher",
  46074. height: math.unit(8, "miles")
  46075. },
  46076. {
  46077. name: "Planet Toys",
  46078. height: math.unit(15, "earths")
  46079. },
  46080. {
  46081. name: "Stardust",
  46082. height: math.unit(0.25, "galaxies")
  46083. },
  46084. {
  46085. name: "Snacks",
  46086. height: math.unit(70, "universes")
  46087. },
  46088. ]
  46089. ))
  46090. characterMakers.push(() => makeCharacter(
  46091. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46092. {
  46093. front: {
  46094. height: math.unit(1.6, "meters"),
  46095. weight: math.unit(60, "kg"),
  46096. name: "Front",
  46097. image: {
  46098. source: "./media/characters/bounty/front.svg",
  46099. extra: 1426/1308,
  46100. bottom: 15/1441
  46101. }
  46102. },
  46103. back: {
  46104. height: math.unit(1.6, "meters"),
  46105. weight: math.unit(60, "kg"),
  46106. name: "Back",
  46107. image: {
  46108. source: "./media/characters/bounty/back.svg",
  46109. extra: 1417/1307,
  46110. bottom: 8/1425
  46111. }
  46112. },
  46113. },
  46114. [
  46115. {
  46116. name: "Normal",
  46117. height: math.unit(1.6, "meters"),
  46118. default: true
  46119. },
  46120. {
  46121. name: "Macro",
  46122. height: math.unit(300, "meters")
  46123. },
  46124. ]
  46125. ))
  46126. characterMakers.push(() => makeCharacter(
  46127. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46128. {
  46129. front: {
  46130. height: math.unit(2 + 8/12, "feet"),
  46131. weight: math.unit(15, "lb"),
  46132. name: "Front",
  46133. image: {
  46134. source: "./media/characters/mochi/front.svg",
  46135. extra: 1022/852,
  46136. bottom: 435/1457
  46137. }
  46138. },
  46139. back: {
  46140. height: math.unit(2 + 8/12, "feet"),
  46141. weight: math.unit(15, "lb"),
  46142. name: "Back",
  46143. image: {
  46144. source: "./media/characters/mochi/back.svg",
  46145. extra: 1335/1119,
  46146. bottom: 39/1374
  46147. }
  46148. },
  46149. bird: {
  46150. height: math.unit(2 + 8/12, "feet"),
  46151. weight: math.unit(15, "lb"),
  46152. name: "Bird",
  46153. image: {
  46154. source: "./media/characters/mochi/bird.svg",
  46155. extra: 1251/1113,
  46156. bottom: 178/1429
  46157. }
  46158. },
  46159. kaiju: {
  46160. height: math.unit(154, "feet"),
  46161. weight: math.unit(1e7, "lb"),
  46162. name: "Kaiju",
  46163. image: {
  46164. source: "./media/characters/mochi/kaiju.svg",
  46165. extra: 460/324,
  46166. bottom: 40/500
  46167. }
  46168. },
  46169. head: {
  46170. height: math.unit(1.21, "feet"),
  46171. name: "Head",
  46172. image: {
  46173. source: "./media/characters/mochi/head.svg"
  46174. }
  46175. },
  46176. alternateTail: {
  46177. height: math.unit(2 + 8/12, "feet"),
  46178. weight: math.unit(45, "lb"),
  46179. name: "Alternate Tail",
  46180. image: {
  46181. source: "./media/characters/mochi/alternate-tail.svg",
  46182. extra: 139/76,
  46183. bottom: 45/184
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Micro",
  46190. height: math.unit(2, "inches")
  46191. },
  46192. {
  46193. name: "Normal",
  46194. height: math.unit(2 + 8/12, "feet"),
  46195. default: true
  46196. },
  46197. {
  46198. name: "Macro",
  46199. height: math.unit(106, "feet")
  46200. },
  46201. ]
  46202. ))
  46203. characterMakers.push(() => makeCharacter(
  46204. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46205. {
  46206. front: {
  46207. height: math.unit(5.67, "feet"),
  46208. weight: math.unit(135, "lb"),
  46209. name: "Front",
  46210. image: {
  46211. source: "./media/characters/sarel/front.svg",
  46212. extra: 865/788,
  46213. bottom: 97/962
  46214. }
  46215. },
  46216. back: {
  46217. height: math.unit(5.67, "feet"),
  46218. weight: math.unit(135, "lb"),
  46219. name: "Back",
  46220. image: {
  46221. source: "./media/characters/sarel/back.svg",
  46222. extra: 857/777,
  46223. bottom: 32/889
  46224. }
  46225. },
  46226. chozoan: {
  46227. height: math.unit(5.67, "feet"),
  46228. weight: math.unit(135, "lb"),
  46229. name: "Chozoan",
  46230. image: {
  46231. source: "./media/characters/sarel/chozoan.svg",
  46232. extra: 865/788,
  46233. bottom: 97/962
  46234. }
  46235. },
  46236. current: {
  46237. height: math.unit(5.67, "feet"),
  46238. weight: math.unit(135, "lb"),
  46239. name: "Current",
  46240. image: {
  46241. source: "./media/characters/sarel/current.svg",
  46242. extra: 865/788,
  46243. bottom: 97/962
  46244. }
  46245. },
  46246. head: {
  46247. height: math.unit(1.77, "feet"),
  46248. name: "Head",
  46249. image: {
  46250. source: "./media/characters/sarel/head.svg"
  46251. }
  46252. },
  46253. claws: {
  46254. height: math.unit(1.8, "feet"),
  46255. name: "Claws",
  46256. image: {
  46257. source: "./media/characters/sarel/claws.svg"
  46258. }
  46259. },
  46260. clawsAlt: {
  46261. height: math.unit(1.8, "feet"),
  46262. name: "Claws-alt",
  46263. image: {
  46264. source: "./media/characters/sarel/claws-alt.svg"
  46265. }
  46266. },
  46267. },
  46268. [
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(5.67, "feet"),
  46272. default: true
  46273. },
  46274. ]
  46275. ))
  46276. characterMakers.push(() => makeCharacter(
  46277. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46278. {
  46279. front: {
  46280. height: math.unit(5500, "feet"),
  46281. name: "Front",
  46282. image: {
  46283. source: "./media/characters/alyonia/front.svg",
  46284. extra: 1200/1135,
  46285. bottom: 29/1229
  46286. }
  46287. },
  46288. back: {
  46289. height: math.unit(5500, "feet"),
  46290. name: "Back",
  46291. image: {
  46292. source: "./media/characters/alyonia/back.svg",
  46293. extra: 1205/1138,
  46294. bottom: 10/1215
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Small",
  46301. height: math.unit(10, "feet")
  46302. },
  46303. {
  46304. name: "Macro",
  46305. height: math.unit(500, "feet")
  46306. },
  46307. {
  46308. name: "Mega Macro",
  46309. height: math.unit(5500, "feet"),
  46310. default: true
  46311. },
  46312. {
  46313. name: "Mega Macro+",
  46314. height: math.unit(500000, "feet")
  46315. },
  46316. {
  46317. name: "Giga Macro",
  46318. height: math.unit(3000, "miles")
  46319. },
  46320. {
  46321. name: "Tera Macro",
  46322. height: math.unit(2.8e6, "miles")
  46323. },
  46324. {
  46325. name: "Galactic",
  46326. height: math.unit(120000, "lightyears")
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46332. {
  46333. werewolf: {
  46334. height: math.unit(8, "feet"),
  46335. weight: math.unit(425, "lb"),
  46336. name: "Werewolf",
  46337. image: {
  46338. source: "./media/characters/autumn/werewolf.svg",
  46339. extra: 2154/2031,
  46340. bottom: 160/2314
  46341. }
  46342. },
  46343. human: {
  46344. height: math.unit(5 + 8/12, "feet"),
  46345. weight: math.unit(150, "lb"),
  46346. name: "Human",
  46347. image: {
  46348. source: "./media/characters/autumn/human.svg",
  46349. extra: 1200/1149,
  46350. bottom: 30/1230
  46351. }
  46352. },
  46353. },
  46354. [
  46355. {
  46356. name: "Normal",
  46357. height: math.unit(8, "feet"),
  46358. default: true
  46359. },
  46360. ]
  46361. ))
  46362. characterMakers.push(() => makeCharacter(
  46363. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46364. {
  46365. front: {
  46366. height: math.unit(8 + 5/12, "feet"),
  46367. weight: math.unit(825, "lb"),
  46368. name: "Front",
  46369. image: {
  46370. source: "./media/characters/cobalt-charizard/front.svg",
  46371. extra: 1268/1155,
  46372. bottom: 122/1390
  46373. }
  46374. },
  46375. side: {
  46376. height: math.unit(8 + 5/12, "feet"),
  46377. weight: math.unit(825, "lb"),
  46378. name: "Side",
  46379. image: {
  46380. source: "./media/characters/cobalt-charizard/side.svg",
  46381. extra: 1348/1257,
  46382. bottom: 58/1406
  46383. }
  46384. },
  46385. gMax: {
  46386. height: math.unit(134 + 11/12, "feet"),
  46387. name: "G-Max",
  46388. image: {
  46389. source: "./media/characters/cobalt-charizard/g-max.svg",
  46390. extra: 1835/1541,
  46391. bottom: 151/1986
  46392. }
  46393. },
  46394. },
  46395. [
  46396. {
  46397. name: "Normal",
  46398. height: math.unit(8 + 5/12, "feet"),
  46399. default: true
  46400. },
  46401. ]
  46402. ))
  46403. characterMakers.push(() => makeCharacter(
  46404. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46405. {
  46406. front: {
  46407. height: math.unit(6 + 3/12, "feet"),
  46408. weight: math.unit(210, "lb"),
  46409. name: "Front",
  46410. image: {
  46411. source: "./media/characters/stella/front.svg",
  46412. extra: 3549/3335,
  46413. bottom: 51/3600
  46414. }
  46415. },
  46416. },
  46417. [
  46418. {
  46419. name: "Normal",
  46420. height: math.unit(6 + 3/12, "feet"),
  46421. default: true
  46422. },
  46423. ]
  46424. ))
  46425. characterMakers.push(() => makeCharacter(
  46426. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46427. {
  46428. front: {
  46429. height: math.unit(5, "feet"),
  46430. weight: math.unit(90, "lb"),
  46431. name: "Front",
  46432. image: {
  46433. source: "./media/characters/riley-bishop/front.svg",
  46434. extra: 1450/1428,
  46435. bottom: 152/1602
  46436. }
  46437. },
  46438. },
  46439. [
  46440. {
  46441. name: "Normal",
  46442. height: math.unit(5, "feet"),
  46443. default: true
  46444. },
  46445. ]
  46446. ))
  46447. characterMakers.push(() => makeCharacter(
  46448. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46449. {
  46450. side: {
  46451. height: math.unit(8 + 2/12, "feet"),
  46452. weight: math.unit(500, "kg"),
  46453. name: "Side",
  46454. image: {
  46455. source: "./media/characters/theo-arcanine/side.svg",
  46456. extra: 1342/1074,
  46457. bottom: 111/1453
  46458. }
  46459. },
  46460. },
  46461. [
  46462. {
  46463. name: "Normal",
  46464. height: math.unit(8 + 2/12, "feet"),
  46465. default: true
  46466. },
  46467. ]
  46468. ))
  46469. characterMakers.push(() => makeCharacter(
  46470. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46471. {
  46472. front: {
  46473. height: math.unit(4, "feet"),
  46474. name: "Front",
  46475. image: {
  46476. source: "./media/characters/kali/front.svg",
  46477. extra: 1074/867,
  46478. bottom: 34/1108
  46479. }
  46480. },
  46481. back: {
  46482. height: math.unit(4, "feet"),
  46483. name: "Back",
  46484. image: {
  46485. source: "./media/characters/kali/back.svg",
  46486. extra: 1068/863,
  46487. bottom: 26/1094
  46488. }
  46489. },
  46490. frontAlt: {
  46491. height: math.unit(4, "feet"),
  46492. name: "Front (Alt)",
  46493. image: {
  46494. source: "./media/characters/kali/front-alt.svg",
  46495. extra: 1921/1357,
  46496. bottom: 70/1991
  46497. }
  46498. },
  46499. },
  46500. [
  46501. {
  46502. name: "Normal",
  46503. height: math.unit(4, "feet"),
  46504. default: true
  46505. },
  46506. {
  46507. name: "Big'vali",
  46508. height: math.unit(11, "feet")
  46509. },
  46510. {
  46511. name: "Macro",
  46512. height: math.unit(32, "meters")
  46513. },
  46514. {
  46515. name: "Macro+",
  46516. height: math.unit(150, "meters")
  46517. },
  46518. {
  46519. name: "Megamacro",
  46520. height: math.unit(7500, "meters")
  46521. },
  46522. {
  46523. name: "Megamacro+",
  46524. height: math.unit(80, "kilometers")
  46525. },
  46526. ]
  46527. ))
  46528. characterMakers.push(() => makeCharacter(
  46529. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46530. {
  46531. side: {
  46532. height: math.unit(5 + 11/12, "feet"),
  46533. weight: math.unit(236, "lb"),
  46534. name: "Side",
  46535. image: {
  46536. source: "./media/characters/gapp/side.svg",
  46537. extra: 775/340,
  46538. bottom: 58/833
  46539. }
  46540. },
  46541. mouth: {
  46542. height: math.unit(2.98, "feet"),
  46543. name: "Mouth",
  46544. image: {
  46545. source: "./media/characters/gapp/mouth.svg"
  46546. }
  46547. },
  46548. },
  46549. [
  46550. {
  46551. name: "Normal",
  46552. height: math.unit(5 + 1/12, "feet"),
  46553. default: true
  46554. },
  46555. ]
  46556. ))
  46557. characterMakers.push(() => makeCharacter(
  46558. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46559. {
  46560. front: {
  46561. height: math.unit(6, "feet"),
  46562. name: "Front",
  46563. image: {
  46564. source: "./media/characters/persephone/front.svg",
  46565. extra: 1895/1717,
  46566. bottom: 96/1991
  46567. }
  46568. },
  46569. back: {
  46570. height: math.unit(6, "feet"),
  46571. name: "Back",
  46572. image: {
  46573. source: "./media/characters/persephone/back.svg",
  46574. extra: 1868/1679,
  46575. bottom: 26/1894
  46576. }
  46577. },
  46578. casual: {
  46579. height: math.unit(6, "feet"),
  46580. name: "Casual",
  46581. image: {
  46582. source: "./media/characters/persephone/casual.svg",
  46583. extra: 1713/1541,
  46584. bottom: 76/1789
  46585. }
  46586. },
  46587. gaming: {
  46588. height: math.unit(3.55, "feet"),
  46589. name: "Gaming",
  46590. image: {
  46591. source: "./media/characters/persephone/gaming.svg",
  46592. extra: 1242/1038,
  46593. bottom: 66/1308
  46594. }
  46595. },
  46596. head: {
  46597. height: math.unit(2.15, "feet"),
  46598. name: "😐",
  46599. image: {
  46600. source: "./media/characters/persephone/head.svg"
  46601. }
  46602. },
  46603. talking: {
  46604. height: math.unit(2.5, "feet"),
  46605. name: "💬",
  46606. image: {
  46607. source: "./media/characters/persephone/talking.svg"
  46608. }
  46609. },
  46610. hmm: {
  46611. height: math.unit(2.28, "feet"),
  46612. name: "🤨",
  46613. image: {
  46614. source: "./media/characters/persephone/hmm.svg"
  46615. }
  46616. },
  46617. },
  46618. [
  46619. {
  46620. name: "Human Size",
  46621. height: math.unit(6, "feet")
  46622. },
  46623. {
  46624. name: "Big Steppy",
  46625. height: math.unit(600, "meters"),
  46626. default: true
  46627. },
  46628. {
  46629. name: "Galaxy Brain",
  46630. height: math.unit(1, "zettameter")
  46631. },
  46632. ]
  46633. ))
  46634. characterMakers.push(() => makeCharacter(
  46635. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46636. {
  46637. front: {
  46638. height: math.unit(1.85, "meters"),
  46639. name: "Front",
  46640. image: {
  46641. source: "./media/characters/riley-foxthing/front.svg",
  46642. extra: 1495/1354,
  46643. bottom: 122/1617
  46644. }
  46645. },
  46646. frontAlt: {
  46647. height: math.unit(1.85, "meters"),
  46648. name: "Front (Alt)",
  46649. image: {
  46650. source: "./media/characters/riley-foxthing/front-alt.svg",
  46651. extra: 1572/1389,
  46652. bottom: 116/1688
  46653. }
  46654. },
  46655. },
  46656. [
  46657. {
  46658. name: "Normal Sized",
  46659. height: math.unit(1.85, "meters"),
  46660. default: true
  46661. },
  46662. {
  46663. name: "Quite Sizable",
  46664. height: math.unit(5, "meters")
  46665. },
  46666. {
  46667. name: "Rather Large",
  46668. height: math.unit(20, "meters")
  46669. },
  46670. {
  46671. name: "Macro",
  46672. height: math.unit(450, "meters")
  46673. },
  46674. {
  46675. name: "Giga",
  46676. height: math.unit(5, "km")
  46677. },
  46678. ]
  46679. ))
  46680. characterMakers.push(() => makeCharacter(
  46681. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46682. {
  46683. front: {
  46684. height: math.unit(6, "feet"),
  46685. weight: math.unit(200, "lb"),
  46686. name: "Front",
  46687. image: {
  46688. source: "./media/characters/blizzard/front.svg",
  46689. extra: 1136/990,
  46690. bottom: 136/1272
  46691. }
  46692. },
  46693. back: {
  46694. height: math.unit(6, "feet"),
  46695. weight: math.unit(200, "lb"),
  46696. name: "Back",
  46697. image: {
  46698. source: "./media/characters/blizzard/back.svg",
  46699. extra: 1175/1034,
  46700. bottom: 97/1272
  46701. }
  46702. },
  46703. sitting: {
  46704. height: math.unit(3.725, "feet"),
  46705. weight: math.unit(200, "lb"),
  46706. name: "Sitting",
  46707. image: {
  46708. source: "./media/characters/blizzard/sitting.svg",
  46709. extra: 581/485,
  46710. bottom: 90/671
  46711. }
  46712. },
  46713. frontWizard: {
  46714. height: math.unit(7.9, "feet"),
  46715. weight: math.unit(200, "lb"),
  46716. name: "Front (Wizard)",
  46717. image: {
  46718. source: "./media/characters/blizzard/front-wizard.svg"
  46719. }
  46720. },
  46721. backWizard: {
  46722. height: math.unit(7.9, "feet"),
  46723. weight: math.unit(200, "lb"),
  46724. name: "Back (Wizard)",
  46725. image: {
  46726. source: "./media/characters/blizzard/back-wizard.svg"
  46727. }
  46728. },
  46729. frontNsfw: {
  46730. height: math.unit(6, "feet"),
  46731. weight: math.unit(200, "lb"),
  46732. name: "Front (NSFW)",
  46733. image: {
  46734. source: "./media/characters/blizzard/front-nsfw.svg",
  46735. extra: 1136/990,
  46736. bottom: 136/1272
  46737. }
  46738. },
  46739. backNsfw: {
  46740. height: math.unit(6, "feet"),
  46741. weight: math.unit(200, "lb"),
  46742. name: "Back (NSFW)",
  46743. image: {
  46744. source: "./media/characters/blizzard/back-nsfw.svg",
  46745. extra: 1175/1034,
  46746. bottom: 97/1272
  46747. }
  46748. },
  46749. sittingNsfw: {
  46750. height: math.unit(3.725, "feet"),
  46751. weight: math.unit(200, "lb"),
  46752. name: "Sitting (NSFW)",
  46753. image: {
  46754. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46755. extra: 581/485,
  46756. bottom: 90/671
  46757. }
  46758. },
  46759. wizardFrontNsfw: {
  46760. height: math.unit(7.9, "feet"),
  46761. weight: math.unit(200, "lb"),
  46762. name: "Wizard (Front, NSFW)",
  46763. image: {
  46764. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46765. }
  46766. },
  46767. },
  46768. [
  46769. {
  46770. name: "Normal",
  46771. height: math.unit(6, "feet"),
  46772. default: true
  46773. },
  46774. ]
  46775. ))
  46776. characterMakers.push(() => makeCharacter(
  46777. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46778. {
  46779. front: {
  46780. height: math.unit(5 + 2/12, "feet"),
  46781. name: "Front",
  46782. image: {
  46783. source: "./media/characters/lumi/front.svg",
  46784. extra: 1328/1268,
  46785. bottom: 103/1431
  46786. }
  46787. },
  46788. back: {
  46789. height: math.unit(5 + 2/12, "feet"),
  46790. name: "Back",
  46791. image: {
  46792. source: "./media/characters/lumi/back.svg",
  46793. extra: 1381/1327,
  46794. bottom: 43/1424
  46795. }
  46796. },
  46797. },
  46798. [
  46799. {
  46800. name: "Normal",
  46801. height: math.unit(5 + 2/12, "feet"),
  46802. default: true
  46803. },
  46804. ]
  46805. ))
  46806. characterMakers.push(() => makeCharacter(
  46807. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46808. {
  46809. front: {
  46810. height: math.unit(5 + 9/12, "feet"),
  46811. name: "Front",
  46812. image: {
  46813. source: "./media/characters/aliya-cotton/front.svg",
  46814. extra: 577/564,
  46815. bottom: 29/606
  46816. }
  46817. },
  46818. },
  46819. [
  46820. {
  46821. name: "Normal",
  46822. height: math.unit(5 + 9/12, "feet"),
  46823. default: true
  46824. },
  46825. ]
  46826. ))
  46827. characterMakers.push(() => makeCharacter(
  46828. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46829. {
  46830. front: {
  46831. height: math.unit(2.7, "meters"),
  46832. weight: math.unit(25000, "lb"),
  46833. name: "Front",
  46834. image: {
  46835. source: "./media/characters/noah-luxray/front.svg",
  46836. extra: 1644/825,
  46837. bottom: 339/1983
  46838. }
  46839. },
  46840. side: {
  46841. height: math.unit(2.97, "meters"),
  46842. weight: math.unit(25000, "lb"),
  46843. name: "Side",
  46844. image: {
  46845. source: "./media/characters/noah-luxray/side.svg",
  46846. extra: 1319/650,
  46847. bottom: 163/1482
  46848. }
  46849. },
  46850. dick: {
  46851. height: math.unit(7.4, "feet"),
  46852. weight: math.unit(2500, "lb"),
  46853. name: "Dick",
  46854. image: {
  46855. source: "./media/characters/noah-luxray/dick.svg"
  46856. }
  46857. },
  46858. dickAlt: {
  46859. height: math.unit(10.83, "feet"),
  46860. weight: math.unit(2500, "lb"),
  46861. name: "Dick-alt",
  46862. image: {
  46863. source: "./media/characters/noah-luxray/dick-alt.svg"
  46864. }
  46865. },
  46866. },
  46867. [
  46868. {
  46869. name: "BIG",
  46870. height: math.unit(2.7, "meters"),
  46871. default: true
  46872. },
  46873. ]
  46874. ))
  46875. characterMakers.push(() => makeCharacter(
  46876. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46877. {
  46878. standing: {
  46879. height: math.unit(183, "cm"),
  46880. weight: math.unit(68, "kg"),
  46881. name: "Standing",
  46882. image: {
  46883. source: "./media/characters/arion/standing.svg",
  46884. extra: 1869/1807,
  46885. bottom: 93/1962
  46886. }
  46887. },
  46888. reclining: {
  46889. height: math.unit(70.5, "cm"),
  46890. weight: math.unit(68, "lb"),
  46891. name: "Reclining",
  46892. image: {
  46893. source: "./media/characters/arion/reclining.svg",
  46894. extra: 937/870,
  46895. bottom: 63/1000
  46896. }
  46897. },
  46898. },
  46899. [
  46900. {
  46901. name: "Colossus Size, Low",
  46902. height: math.unit(33, "meters"),
  46903. default: true
  46904. },
  46905. {
  46906. name: "Colossus Size, Mid",
  46907. height: math.unit(52, "meters")
  46908. },
  46909. {
  46910. name: "Colossus Size, High",
  46911. height: math.unit(60, "meters")
  46912. },
  46913. {
  46914. name: "Titan Size, Low",
  46915. height: math.unit(91, "meters"),
  46916. },
  46917. {
  46918. name: "Titan Size, Mid",
  46919. height: math.unit(122, "meters")
  46920. },
  46921. {
  46922. name: "Titan Size, High",
  46923. height: math.unit(162, "meters")
  46924. },
  46925. ]
  46926. ))
  46927. characterMakers.push(() => makeCharacter(
  46928. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46929. {
  46930. front: {
  46931. height: math.unit(53, "meters"),
  46932. name: "Front",
  46933. image: {
  46934. source: "./media/characters/stellar-marbey/front.svg",
  46935. extra: 1913/1805,
  46936. bottom: 92/2005
  46937. }
  46938. },
  46939. back: {
  46940. height: math.unit(53, "meters"),
  46941. name: "Back",
  46942. image: {
  46943. source: "./media/characters/stellar-marbey/back.svg",
  46944. extra: 1960/1851,
  46945. bottom: 28/1988
  46946. }
  46947. },
  46948. mouth: {
  46949. height: math.unit(3.5, "meters"),
  46950. name: "Mouth",
  46951. image: {
  46952. source: "./media/characters/stellar-marbey/mouth.svg"
  46953. }
  46954. },
  46955. },
  46956. [
  46957. {
  46958. name: "Macro",
  46959. height: math.unit(53, "meters"),
  46960. default: true
  46961. },
  46962. ]
  46963. ))
  46964. characterMakers.push(() => makeCharacter(
  46965. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46966. {
  46967. front: {
  46968. height: math.unit(8 + 1/12, "feet"),
  46969. weight: math.unit(233, "lb"),
  46970. name: "Front",
  46971. image: {
  46972. source: "./media/characters/matsu/front.svg",
  46973. extra: 832/772,
  46974. bottom: 40/872
  46975. }
  46976. },
  46977. back: {
  46978. height: math.unit(8 + 1/12, "feet"),
  46979. weight: math.unit(233, "lb"),
  46980. name: "Back",
  46981. image: {
  46982. source: "./media/characters/matsu/back.svg",
  46983. extra: 839/780,
  46984. bottom: 47/886
  46985. }
  46986. },
  46987. },
  46988. [
  46989. {
  46990. name: "Normal",
  46991. height: math.unit(8 + 1/12, "feet"),
  46992. default: true
  46993. },
  46994. ]
  46995. ))
  46996. characterMakers.push(() => makeCharacter(
  46997. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46998. {
  46999. front: {
  47000. height: math.unit(4, "feet"),
  47001. weight: math.unit(148, "lb"),
  47002. name: "Front",
  47003. image: {
  47004. source: "./media/characters/thiz/front.svg",
  47005. extra: 1913/1748,
  47006. bottom: 62/1975
  47007. }
  47008. },
  47009. },
  47010. [
  47011. {
  47012. name: "Normal",
  47013. height: math.unit(4, "feet"),
  47014. default: true
  47015. },
  47016. ]
  47017. ))
  47018. characterMakers.push(() => makeCharacter(
  47019. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47020. {
  47021. front: {
  47022. height: math.unit(7 + 6/12, "feet"),
  47023. weight: math.unit(267, "lb"),
  47024. name: "Front",
  47025. image: {
  47026. source: "./media/characters/marcel/front.svg",
  47027. extra: 1221/1096,
  47028. bottom: 76/1297
  47029. }
  47030. },
  47031. },
  47032. [
  47033. {
  47034. name: "Normal",
  47035. height: math.unit(7 + 6/12, "feet"),
  47036. default: true
  47037. },
  47038. ]
  47039. ))
  47040. characterMakers.push(() => makeCharacter(
  47041. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47042. {
  47043. side: {
  47044. height: math.unit(42, "meters"),
  47045. name: "Side",
  47046. image: {
  47047. source: "./media/characters/flake/side.svg",
  47048. extra: 1525/1306,
  47049. bottom: 209/1734
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Normal",
  47056. height: math.unit(42, "meters"),
  47057. default: true
  47058. },
  47059. ]
  47060. ))
  47061. characterMakers.push(() => makeCharacter(
  47062. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47063. {
  47064. dressed: {
  47065. height: math.unit(6 + 4/12, "feet"),
  47066. weight: math.unit(520, "lb"),
  47067. name: "Dressed",
  47068. image: {
  47069. source: "./media/characters/someonne/dressed.svg",
  47070. extra: 1020/1010,
  47071. bottom: 178/1198
  47072. }
  47073. },
  47074. undressed: {
  47075. height: math.unit(6 + 4/12, "feet"),
  47076. weight: math.unit(520, "lb"),
  47077. name: "Undressed",
  47078. image: {
  47079. source: "./media/characters/someonne/undressed.svg",
  47080. extra: 1019/1014,
  47081. bottom: 169/1188
  47082. }
  47083. },
  47084. },
  47085. [
  47086. {
  47087. name: "Normal",
  47088. height: math.unit(6 + 4/12, "feet"),
  47089. default: true
  47090. },
  47091. ]
  47092. ))
  47093. characterMakers.push(() => makeCharacter(
  47094. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47095. {
  47096. front: {
  47097. height: math.unit(3, "feet"),
  47098. weight: math.unit(30, "lb"),
  47099. name: "Front",
  47100. image: {
  47101. source: "./media/characters/till/front.svg",
  47102. extra: 892/823,
  47103. bottom: 55/947
  47104. }
  47105. },
  47106. },
  47107. [
  47108. {
  47109. name: "Normal",
  47110. height: math.unit(3, "feet"),
  47111. default: true
  47112. },
  47113. ]
  47114. ))
  47115. characterMakers.push(() => makeCharacter(
  47116. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47117. {
  47118. front: {
  47119. height: math.unit(9 + 8/12, "feet"),
  47120. weight: math.unit(800, "lb"),
  47121. name: "Front",
  47122. image: {
  47123. source: "./media/characters/sydney-heki/front.svg",
  47124. extra: 1360/1300,
  47125. bottom: 22/1382
  47126. }
  47127. },
  47128. back: {
  47129. height: math.unit(9 + 8/12, "feet"),
  47130. weight: math.unit(800, "lb"),
  47131. name: "Back",
  47132. image: {
  47133. source: "./media/characters/sydney-heki/back.svg",
  47134. extra: 1356/1293,
  47135. bottom: 12/1368
  47136. }
  47137. },
  47138. frontDressed: {
  47139. height: math.unit(9 + 8/12, "feet"),
  47140. weight: math.unit(800, "lb"),
  47141. name: "Front-dressed",
  47142. image: {
  47143. source: "./media/characters/sydney-heki/front-dressed.svg",
  47144. extra: 1360/1300,
  47145. bottom: 22/1382
  47146. }
  47147. },
  47148. },
  47149. [
  47150. {
  47151. name: "Normal",
  47152. height: math.unit(9 + 8/12, "feet"),
  47153. default: true
  47154. },
  47155. {
  47156. name: "Macro",
  47157. height: math.unit(500, "feet")
  47158. },
  47159. {
  47160. name: "Megamacro",
  47161. height: math.unit(3.6, "miles")
  47162. },
  47163. ]
  47164. ))
  47165. characterMakers.push(() => makeCharacter(
  47166. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47167. {
  47168. front: {
  47169. height: math.unit(200, "cm"),
  47170. weight: math.unit(250, "lb"),
  47171. name: "Front",
  47172. image: {
  47173. source: "./media/characters/fowler-karlsson/front.svg",
  47174. extra: 897/845,
  47175. bottom: 123/1020
  47176. }
  47177. },
  47178. back: {
  47179. height: math.unit(200, "cm"),
  47180. weight: math.unit(250, "lb"),
  47181. name: "Back",
  47182. image: {
  47183. source: "./media/characters/fowler-karlsson/back.svg",
  47184. extra: 999/944,
  47185. bottom: 26/1025
  47186. }
  47187. },
  47188. dick: {
  47189. height: math.unit(1.92, "feet"),
  47190. weight: math.unit(150, "lb"),
  47191. name: "Dick",
  47192. image: {
  47193. source: "./media/characters/fowler-karlsson/dick.svg"
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Normal",
  47200. height: math.unit(200, "cm"),
  47201. default: true
  47202. },
  47203. {
  47204. name: "Smaller Macro",
  47205. height: math.unit(90, "m")
  47206. },
  47207. {
  47208. name: "Macro",
  47209. height: math.unit(150, "m")
  47210. },
  47211. {
  47212. name: "Bigger Macro",
  47213. height: math.unit(300, "m")
  47214. },
  47215. ]
  47216. ))
  47217. characterMakers.push(() => makeCharacter(
  47218. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47219. {
  47220. side: {
  47221. height: math.unit(8 + 2/12, "feet"),
  47222. weight: math.unit(1, "tonne"),
  47223. name: "Side",
  47224. image: {
  47225. source: "./media/characters/rylide/side.svg",
  47226. extra: 1318/1034,
  47227. bottom: 106/1424
  47228. }
  47229. },
  47230. sitting: {
  47231. height: math.unit(303, "cm"),
  47232. weight: math.unit(1, "tonne"),
  47233. name: "Sitting",
  47234. image: {
  47235. source: "./media/characters/rylide/sitting.svg",
  47236. extra: 1303/1103,
  47237. bottom: 36/1339
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(8 + 2/12, "feet"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(5 + 10/12, "feet"),
  47254. weight: math.unit(160, "lb"),
  47255. name: "Front",
  47256. image: {
  47257. source: "./media/characters/pudask/front.svg",
  47258. extra: 1616/1590,
  47259. bottom: 161/1777
  47260. }
  47261. },
  47262. },
  47263. [
  47264. {
  47265. name: "Ferret Height",
  47266. height: math.unit(2 + 5/12, "feet")
  47267. },
  47268. {
  47269. name: "Canon Height",
  47270. height: math.unit(5 + 10/12, "feet"),
  47271. default: true
  47272. },
  47273. ]
  47274. ))
  47275. characterMakers.push(() => makeCharacter(
  47276. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47277. {
  47278. front: {
  47279. height: math.unit(3 + 6/12, "feet"),
  47280. weight: math.unit(60, "lb"),
  47281. name: "Front",
  47282. image: {
  47283. source: "./media/characters/ramita/front.svg",
  47284. extra: 1402/1232,
  47285. bottom: 62/1464
  47286. }
  47287. },
  47288. dressed: {
  47289. height: math.unit(3 + 6/12, "feet"),
  47290. weight: math.unit(60, "lb"),
  47291. name: "Dressed",
  47292. image: {
  47293. source: "./media/characters/ramita/dressed.svg",
  47294. extra: 1534/1249,
  47295. bottom: 50/1584
  47296. }
  47297. },
  47298. },
  47299. [
  47300. {
  47301. name: "Normal",
  47302. height: math.unit(3 + 6/12, "feet"),
  47303. default: true
  47304. },
  47305. ]
  47306. ))
  47307. characterMakers.push(() => makeCharacter(
  47308. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47309. {
  47310. front: {
  47311. height: math.unit(8, "feet"),
  47312. name: "Front",
  47313. image: {
  47314. source: "./media/characters/ark/front.svg",
  47315. extra: 772/693,
  47316. bottom: 45/817
  47317. }
  47318. },
  47319. },
  47320. [
  47321. {
  47322. name: "Normal",
  47323. height: math.unit(8, "feet"),
  47324. default: true
  47325. },
  47326. ]
  47327. ))
  47328. characterMakers.push(() => makeCharacter(
  47329. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47330. {
  47331. front: {
  47332. height: math.unit(6, "feet"),
  47333. weight: math.unit(250, "lb"),
  47334. volume: math.unit(5/8, "gallons"),
  47335. name: "Front",
  47336. image: {
  47337. source: "./media/characters/ludwig-horn/front.svg",
  47338. extra: 1782/1635,
  47339. bottom: 96/1878
  47340. }
  47341. },
  47342. back: {
  47343. height: math.unit(6, "feet"),
  47344. weight: math.unit(250, "lb"),
  47345. volume: math.unit(5/8, "gallons"),
  47346. name: "Back",
  47347. image: {
  47348. source: "./media/characters/ludwig-horn/back.svg",
  47349. extra: 1874/1729,
  47350. bottom: 27/1901
  47351. }
  47352. },
  47353. dick: {
  47354. height: math.unit(1.05, "feet"),
  47355. weight: math.unit(15, "lb"),
  47356. volume: math.unit(5/8, "gallons"),
  47357. name: "Dick",
  47358. image: {
  47359. source: "./media/characters/ludwig-horn/dick.svg"
  47360. }
  47361. },
  47362. },
  47363. [
  47364. {
  47365. name: "Small",
  47366. height: math.unit(6, "feet")
  47367. },
  47368. {
  47369. name: "Typical",
  47370. height: math.unit(12, "feet"),
  47371. default: true
  47372. },
  47373. {
  47374. name: "Building",
  47375. height: math.unit(80, "feet")
  47376. },
  47377. {
  47378. name: "Town",
  47379. height: math.unit(800, "feet")
  47380. },
  47381. {
  47382. name: "Kingdom",
  47383. height: math.unit(80000, "feet")
  47384. },
  47385. {
  47386. name: "Planet",
  47387. height: math.unit(8000000, "feet")
  47388. },
  47389. {
  47390. name: "Universe",
  47391. height: math.unit(8000000000, "feet")
  47392. },
  47393. {
  47394. name: "Transcended",
  47395. height: math.unit(8e27, "feet")
  47396. },
  47397. ]
  47398. ))
  47399. characterMakers.push(() => makeCharacter(
  47400. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47401. {
  47402. front: {
  47403. height: math.unit(5, "feet"),
  47404. weight: math.unit(50, "kg"),
  47405. name: "Front",
  47406. image: {
  47407. source: "./media/characters/biot-avery/front.svg",
  47408. extra: 1295/1232,
  47409. bottom: 86/1381
  47410. }
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Normal",
  47416. height: math.unit(5, "feet"),
  47417. default: true
  47418. },
  47419. ]
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47423. {
  47424. front: {
  47425. height: math.unit(6, "feet"),
  47426. name: "Front",
  47427. image: {
  47428. source: "./media/characters/kitsune-kiro/front.svg",
  47429. extra: 1270/1158,
  47430. bottom: 42/1312
  47431. }
  47432. },
  47433. frontAlt: {
  47434. height: math.unit(6, "feet"),
  47435. name: "Front-alt",
  47436. image: {
  47437. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47438. extra: 1130/1081,
  47439. bottom: 36/1166
  47440. }
  47441. },
  47442. },
  47443. [
  47444. {
  47445. name: "Smol",
  47446. height: math.unit(3, "feet")
  47447. },
  47448. {
  47449. name: "Normal",
  47450. height: math.unit(6, "feet"),
  47451. default: true
  47452. },
  47453. ]
  47454. ))
  47455. characterMakers.push(() => makeCharacter(
  47456. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47457. {
  47458. front: {
  47459. height: math.unit(6, "feet"),
  47460. weight: math.unit(125, "lb"),
  47461. name: "Front",
  47462. image: {
  47463. source: "./media/characters/jack-thatcher/front.svg",
  47464. extra: 1474/1370,
  47465. bottom: 26/1500
  47466. }
  47467. },
  47468. back: {
  47469. height: math.unit(6, "feet"),
  47470. weight: math.unit(125, "lb"),
  47471. name: "Back",
  47472. image: {
  47473. source: "./media/characters/jack-thatcher/back.svg",
  47474. extra: 1489/1384,
  47475. bottom: 18/1507
  47476. }
  47477. },
  47478. },
  47479. [
  47480. {
  47481. name: "Normal",
  47482. height: math.unit(6, "feet"),
  47483. default: true
  47484. },
  47485. {
  47486. name: "Macro",
  47487. height: math.unit(75, "feet")
  47488. },
  47489. {
  47490. name: "Macro-er",
  47491. height: math.unit(250, "feet")
  47492. },
  47493. ]
  47494. ))
  47495. characterMakers.push(() => makeCharacter(
  47496. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47497. {
  47498. front: {
  47499. height: math.unit(7, "feet"),
  47500. weight: math.unit(110, "kg"),
  47501. name: "Front",
  47502. image: {
  47503. source: "./media/characters/max-hyper/front.svg",
  47504. extra: 1969/1881,
  47505. bottom: 49/2018
  47506. }
  47507. },
  47508. },
  47509. [
  47510. {
  47511. name: "Normal",
  47512. height: math.unit(7, "feet"),
  47513. default: true
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47519. {
  47520. front: {
  47521. height: math.unit(5 + 5/12, "feet"),
  47522. weight: math.unit(160, "lb"),
  47523. name: "Front",
  47524. image: {
  47525. source: "./media/characters/spook/front.svg",
  47526. extra: 794/791,
  47527. bottom: 54/848
  47528. }
  47529. },
  47530. back: {
  47531. height: math.unit(5 + 5/12, "feet"),
  47532. weight: math.unit(160, "lb"),
  47533. name: "Back",
  47534. image: {
  47535. source: "./media/characters/spook/back.svg",
  47536. extra: 812/798,
  47537. bottom: 32/844
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Normal",
  47544. height: math.unit(5 + 5/12, "feet"),
  47545. default: true
  47546. },
  47547. ]
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47551. {
  47552. front: {
  47553. height: math.unit(18, "feet"),
  47554. name: "Front",
  47555. image: {
  47556. source: "./media/characters/xeaduulix/front.svg",
  47557. extra: 1380/1166,
  47558. bottom: 110/1490
  47559. }
  47560. },
  47561. back: {
  47562. height: math.unit(18, "feet"),
  47563. name: "Back",
  47564. image: {
  47565. source: "./media/characters/xeaduulix/back.svg",
  47566. extra: 1592/1170,
  47567. bottom: 128/1720
  47568. }
  47569. },
  47570. frontNsfw: {
  47571. height: math.unit(18, "feet"),
  47572. name: "Front (NSFW)",
  47573. image: {
  47574. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47575. extra: 1380/1166,
  47576. bottom: 110/1490
  47577. }
  47578. },
  47579. backNsfw: {
  47580. height: math.unit(18, "feet"),
  47581. name: "Back (NSFW)",
  47582. image: {
  47583. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47584. extra: 1592/1170,
  47585. bottom: 128/1720
  47586. }
  47587. },
  47588. },
  47589. [
  47590. {
  47591. name: "Normal",
  47592. height: math.unit(18, "feet"),
  47593. default: true
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47599. {
  47600. spreadWings: {
  47601. height: math.unit(20, "feet"),
  47602. name: "Spread Wings",
  47603. image: {
  47604. source: "./media/characters/fledge/spread-wings.svg",
  47605. extra: 693/635,
  47606. bottom: 26/719
  47607. }
  47608. },
  47609. front: {
  47610. height: math.unit(20, "feet"),
  47611. name: "Front",
  47612. image: {
  47613. source: "./media/characters/fledge/front.svg",
  47614. extra: 684/637,
  47615. bottom: 18/702
  47616. }
  47617. },
  47618. frontAlt: {
  47619. height: math.unit(20, "feet"),
  47620. name: "Front (Alt)",
  47621. image: {
  47622. source: "./media/characters/fledge/front-alt.svg",
  47623. extra: 708/664,
  47624. bottom: 13/721
  47625. }
  47626. },
  47627. back: {
  47628. height: math.unit(20, "feet"),
  47629. name: "Back",
  47630. image: {
  47631. source: "./media/characters/fledge/back.svg",
  47632. extra: 718/634,
  47633. bottom: 22/740
  47634. }
  47635. },
  47636. head: {
  47637. height: math.unit(5.55, "feet"),
  47638. name: "Head",
  47639. image: {
  47640. source: "./media/characters/fledge/head.svg"
  47641. }
  47642. },
  47643. headAlt: {
  47644. height: math.unit(5.1, "feet"),
  47645. name: "Head (Alt)",
  47646. image: {
  47647. source: "./media/characters/fledge/head-alt.svg"
  47648. }
  47649. },
  47650. },
  47651. [
  47652. {
  47653. name: "Small",
  47654. height: math.unit(6 + 2/12, "feet")
  47655. },
  47656. {
  47657. name: "Big",
  47658. height: math.unit(20, "feet"),
  47659. default: true
  47660. },
  47661. {
  47662. name: "Giant",
  47663. height: math.unit(100, "feet")
  47664. },
  47665. {
  47666. name: "Macro",
  47667. height: math.unit(200, "feet")
  47668. },
  47669. ]
  47670. ))
  47671. characterMakers.push(() => makeCharacter(
  47672. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47673. {
  47674. front: {
  47675. height: math.unit(1, "meter"),
  47676. name: "Front",
  47677. image: {
  47678. source: "./media/characters/atlas-morenai/front.svg",
  47679. extra: 1275/1043,
  47680. bottom: 19/1294
  47681. }
  47682. },
  47683. back: {
  47684. height: math.unit(1, "meter"),
  47685. name: "Back",
  47686. image: {
  47687. source: "./media/characters/atlas-morenai/back.svg",
  47688. extra: 1141/1001,
  47689. bottom: 25/1166
  47690. }
  47691. },
  47692. },
  47693. [
  47694. {
  47695. name: "Normal",
  47696. height: math.unit(1, "meter"),
  47697. default: true
  47698. },
  47699. {
  47700. name: "Magic-Infused",
  47701. height: math.unit(5, "meters")
  47702. },
  47703. ]
  47704. ))
  47705. characterMakers.push(() => makeCharacter(
  47706. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47707. {
  47708. front: {
  47709. height: math.unit(5, "meters"),
  47710. name: "Front",
  47711. image: {
  47712. source: "./media/characters/cintia/front.svg",
  47713. extra: 1312/1228,
  47714. bottom: 38/1350
  47715. }
  47716. },
  47717. back: {
  47718. height: math.unit(5, "meters"),
  47719. name: "Back",
  47720. image: {
  47721. source: "./media/characters/cintia/back.svg",
  47722. extra: 1260/1166,
  47723. bottom: 98/1358
  47724. }
  47725. },
  47726. frontDick: {
  47727. height: math.unit(5, "meters"),
  47728. name: "Front (Dick)",
  47729. image: {
  47730. source: "./media/characters/cintia/front-dick.svg",
  47731. extra: 1312/1228,
  47732. bottom: 38/1350
  47733. }
  47734. },
  47735. backDick: {
  47736. height: math.unit(5, "meters"),
  47737. name: "Back (Dick)",
  47738. image: {
  47739. source: "./media/characters/cintia/back-dick.svg",
  47740. extra: 1260/1166,
  47741. bottom: 98/1358
  47742. }
  47743. },
  47744. bust: {
  47745. height: math.unit(1.97, "meters"),
  47746. name: "Bust",
  47747. image: {
  47748. source: "./media/characters/cintia/bust.svg",
  47749. extra: 617/565,
  47750. bottom: 0/617
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(5, "meters"),
  47758. default: true
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47764. {
  47765. side: {
  47766. height: math.unit(100, "feet"),
  47767. name: "Side",
  47768. image: {
  47769. source: "./media/characters/denora/side.svg",
  47770. extra: 875/803,
  47771. bottom: 9/884
  47772. }
  47773. },
  47774. },
  47775. [
  47776. {
  47777. name: "Standard",
  47778. height: math.unit(100, "feet"),
  47779. default: true
  47780. },
  47781. {
  47782. name: "Grand",
  47783. height: math.unit(1000, "feet")
  47784. },
  47785. {
  47786. name: "Conquering",
  47787. height: math.unit(10000, "feet")
  47788. },
  47789. ]
  47790. ))
  47791. characterMakers.push(() => makeCharacter(
  47792. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47793. {
  47794. dressed: {
  47795. height: math.unit(8 + 5/12, "feet"),
  47796. weight: math.unit(700, "lb"),
  47797. name: "Dressed",
  47798. image: {
  47799. source: "./media/characters/kiva/dressed.svg",
  47800. extra: 1102/1055,
  47801. bottom: 60/1162
  47802. }
  47803. },
  47804. nude: {
  47805. height: math.unit(8 + 5/12, "feet"),
  47806. weight: math.unit(700, "lb"),
  47807. name: "Nude",
  47808. image: {
  47809. source: "./media/characters/kiva/nude.svg",
  47810. extra: 1102/1055,
  47811. bottom: 60/1162
  47812. }
  47813. },
  47814. },
  47815. [
  47816. {
  47817. name: "Base Height",
  47818. height: math.unit(8 + 5/12, "feet"),
  47819. default: true
  47820. },
  47821. {
  47822. name: "Macro",
  47823. height: math.unit(100, "feet")
  47824. },
  47825. {
  47826. name: "Max",
  47827. height: math.unit(3280, "feet")
  47828. },
  47829. ]
  47830. ))
  47831. characterMakers.push(() => makeCharacter(
  47832. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47833. {
  47834. front: {
  47835. height: math.unit(6 + 8/12, "feet"),
  47836. weight: math.unit(250, "lb"),
  47837. name: "Front",
  47838. image: {
  47839. source: "./media/characters/ztragon/front.svg",
  47840. extra: 1825/1684,
  47841. bottom: 98/1923
  47842. }
  47843. },
  47844. },
  47845. [
  47846. {
  47847. name: "Normal",
  47848. height: math.unit(6 + 8/12, "feet"),
  47849. default: true
  47850. },
  47851. {
  47852. name: "Macro",
  47853. height: math.unit(80, "feet")
  47854. },
  47855. ]
  47856. ))
  47857. characterMakers.push(() => makeCharacter(
  47858. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47859. {
  47860. front: {
  47861. height: math.unit(10.4, "feet"),
  47862. weight: math.unit(2, "tons"),
  47863. name: "Front",
  47864. image: {
  47865. source: "./media/characters/yesenia/front.svg",
  47866. extra: 1479/1474,
  47867. bottom: 233/1712
  47868. }
  47869. },
  47870. },
  47871. [
  47872. {
  47873. name: "Normal",
  47874. height: math.unit(10.4, "feet"),
  47875. default: true
  47876. },
  47877. ]
  47878. ))
  47879. characterMakers.push(() => makeCharacter(
  47880. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47881. {
  47882. normal: {
  47883. height: math.unit(6 + 1/12, "feet"),
  47884. weight: math.unit(180, "lb"),
  47885. name: "Normal",
  47886. image: {
  47887. source: "./media/characters/leanne-lycheborne/normal.svg",
  47888. extra: 1748/1660,
  47889. bottom: 98/1846
  47890. }
  47891. },
  47892. were: {
  47893. height: math.unit(12, "feet"),
  47894. weight: math.unit(1600, "lb"),
  47895. name: "Were",
  47896. image: {
  47897. source: "./media/characters/leanne-lycheborne/were.svg",
  47898. extra: 1485/1432,
  47899. bottom: 66/1551
  47900. }
  47901. },
  47902. },
  47903. [
  47904. {
  47905. name: "Normal",
  47906. height: math.unit(6 + 1/12, "feet"),
  47907. default: true
  47908. },
  47909. ]
  47910. ))
  47911. characterMakers.push(() => makeCharacter(
  47912. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47913. {
  47914. side: {
  47915. height: math.unit(13, "feet"),
  47916. name: "Side",
  47917. image: {
  47918. source: "./media/characters/kira-tyler/side.svg",
  47919. extra: 693/393,
  47920. bottom: 58/751
  47921. }
  47922. },
  47923. },
  47924. [
  47925. {
  47926. name: "Normal",
  47927. height: math.unit(13, "feet"),
  47928. default: true
  47929. },
  47930. ]
  47931. ))
  47932. characterMakers.push(() => makeCharacter(
  47933. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47934. {
  47935. front: {
  47936. height: math.unit(10.3, "feet"),
  47937. weight: math.unit(150, "lb"),
  47938. name: "Front",
  47939. image: {
  47940. source: "./media/characters/blaze/front.svg",
  47941. extra: 1378/1286,
  47942. bottom: 172/1550
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(10.3, "feet"),
  47950. default: true
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47956. {
  47957. side: {
  47958. height: math.unit(2, "meters"),
  47959. weight: math.unit(400, "kg"),
  47960. name: "Side",
  47961. image: {
  47962. source: "./media/characters/anu/side.svg",
  47963. extra: 506/394,
  47964. bottom: 18/524
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Humanoid",
  47971. height: math.unit(2, "meters")
  47972. },
  47973. {
  47974. name: "Normal",
  47975. height: math.unit(5, "meters"),
  47976. default: true
  47977. },
  47978. ]
  47979. ))
  47980. characterMakers.push(() => makeCharacter(
  47981. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47982. {
  47983. front: {
  47984. height: math.unit(5 + 5/12, "feet"),
  47985. weight: math.unit(170, "lb"),
  47986. name: "Front",
  47987. image: {
  47988. source: "./media/characters/synx-the-lynx/front.svg",
  47989. extra: 1893/1745,
  47990. bottom: 17/1910
  47991. }
  47992. },
  47993. side: {
  47994. height: math.unit(5 + 5/12, "feet"),
  47995. weight: math.unit(170, "lb"),
  47996. name: "Side",
  47997. image: {
  47998. source: "./media/characters/synx-the-lynx/side.svg",
  47999. extra: 1884/1740,
  48000. bottom: 39/1923
  48001. }
  48002. },
  48003. back: {
  48004. height: math.unit(5 + 5/12, "feet"),
  48005. weight: math.unit(170, "lb"),
  48006. name: "Back",
  48007. image: {
  48008. source: "./media/characters/synx-the-lynx/back.svg",
  48009. extra: 1903/1755,
  48010. bottom: 14/1917
  48011. }
  48012. },
  48013. },
  48014. [
  48015. {
  48016. name: "Normal",
  48017. height: math.unit(5 + 5/12, "feet"),
  48018. default: true
  48019. },
  48020. ]
  48021. ))
  48022. characterMakers.push(() => makeCharacter(
  48023. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48024. {
  48025. back: {
  48026. height: math.unit(15, "feet"),
  48027. name: "Back",
  48028. image: {
  48029. source: "./media/characters/nadezda-fex/back.svg",
  48030. extra: 1695/1481,
  48031. bottom: 25/1720
  48032. }
  48033. },
  48034. },
  48035. [
  48036. {
  48037. name: "Normal",
  48038. height: math.unit(15, "feet"),
  48039. default: true
  48040. },
  48041. {
  48042. name: "Macro",
  48043. height: math.unit(2.5, "miles")
  48044. },
  48045. {
  48046. name: "Goddess",
  48047. height: math.unit(2, "multiverses")
  48048. },
  48049. ]
  48050. ))
  48051. characterMakers.push(() => makeCharacter(
  48052. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48053. {
  48054. front: {
  48055. height: math.unit(216, "cm"),
  48056. name: "Front",
  48057. image: {
  48058. source: "./media/characters/lev/front.svg",
  48059. extra: 1728/1670,
  48060. bottom: 82/1810
  48061. }
  48062. },
  48063. back: {
  48064. height: math.unit(216, "cm"),
  48065. name: "Back",
  48066. image: {
  48067. source: "./media/characters/lev/back.svg",
  48068. extra: 1738/1675,
  48069. bottom: 24/1762
  48070. }
  48071. },
  48072. dressed: {
  48073. height: math.unit(216, "cm"),
  48074. name: "Dressed",
  48075. image: {
  48076. source: "./media/characters/lev/dressed.svg",
  48077. extra: 1397/1351,
  48078. bottom: 73/1470
  48079. }
  48080. },
  48081. head: {
  48082. height: math.unit(0.51, "meter"),
  48083. name: "Head",
  48084. image: {
  48085. source: "./media/characters/lev/head.svg"
  48086. }
  48087. },
  48088. },
  48089. [
  48090. {
  48091. name: "Normal",
  48092. height: math.unit(216, "cm"),
  48093. default: true
  48094. },
  48095. {
  48096. name: "Relatively Macro",
  48097. height: math.unit(80, "meters")
  48098. },
  48099. {
  48100. name: "Megamacro",
  48101. height: math.unit(21600, "meters")
  48102. },
  48103. {
  48104. name: "Megamacro+",
  48105. height: math.unit(64800, "meters")
  48106. },
  48107. ]
  48108. ))
  48109. characterMakers.push(() => makeCharacter(
  48110. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48111. {
  48112. front: {
  48113. height: math.unit(2, "meters"),
  48114. weight: math.unit(80, "kg"),
  48115. name: "Front",
  48116. image: {
  48117. source: "./media/characters/moka/front.svg",
  48118. extra: 1337/1255,
  48119. bottom: 58/1395
  48120. }
  48121. },
  48122. },
  48123. [
  48124. {
  48125. name: "Micro",
  48126. height: math.unit(15, "cm")
  48127. },
  48128. {
  48129. name: "Normal",
  48130. height: math.unit(2, "meters"),
  48131. default: true
  48132. },
  48133. {
  48134. name: "Macro",
  48135. height: math.unit(20, "meters"),
  48136. },
  48137. ]
  48138. ))
  48139. characterMakers.push(() => makeCharacter(
  48140. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48141. {
  48142. front: {
  48143. height: math.unit(9, "feet"),
  48144. weight: math.unit(240, "lb"),
  48145. name: "Front",
  48146. image: {
  48147. source: "./media/characters/kuzco/front.svg",
  48148. extra: 1593/1487,
  48149. bottom: 32/1625
  48150. }
  48151. },
  48152. side: {
  48153. height: math.unit(9, "feet"),
  48154. weight: math.unit(240, "lb"),
  48155. name: "Side",
  48156. image: {
  48157. source: "./media/characters/kuzco/side.svg",
  48158. extra: 1575/1485,
  48159. bottom: 30/1605
  48160. }
  48161. },
  48162. back: {
  48163. height: math.unit(9, "feet"),
  48164. weight: math.unit(240, "lb"),
  48165. name: "Back",
  48166. image: {
  48167. source: "./media/characters/kuzco/back.svg",
  48168. extra: 1603/1514,
  48169. bottom: 14/1617
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Normal",
  48176. height: math.unit(9, "feet"),
  48177. default: true
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48183. {
  48184. side: {
  48185. height: math.unit(2, "meters"),
  48186. weight: math.unit(300, "kg"),
  48187. name: "Side",
  48188. image: {
  48189. source: "./media/characters/ceruleus/side.svg",
  48190. extra: 1068/974,
  48191. bottom: 126/1194
  48192. }
  48193. },
  48194. maw: {
  48195. height: math.unit(0.8125, "meter"),
  48196. name: "Maw",
  48197. image: {
  48198. source: "./media/characters/ceruleus/maw.svg"
  48199. }
  48200. },
  48201. },
  48202. [
  48203. {
  48204. name: "Normal",
  48205. height: math.unit(16, "meters"),
  48206. default: true
  48207. },
  48208. ]
  48209. ))
  48210. characterMakers.push(() => makeCharacter(
  48211. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48212. {
  48213. front: {
  48214. height: math.unit(9, "feet"),
  48215. weight: math.unit(500, "kg"),
  48216. name: "Front",
  48217. image: {
  48218. source: "./media/characters/acouya/front.svg",
  48219. extra: 1660/1473,
  48220. bottom: 28/1688
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Normal",
  48227. height: math.unit(9, "feet"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48234. {
  48235. front: {
  48236. height: math.unit(5 + 6/12, "feet"),
  48237. weight: math.unit(195, "lb"),
  48238. name: "Front",
  48239. image: {
  48240. source: "./media/characters/vant/front.svg",
  48241. extra: 1396/1320,
  48242. bottom: 20/1416
  48243. }
  48244. },
  48245. back: {
  48246. height: math.unit(5 + 6/12, "feet"),
  48247. weight: math.unit(195, "lb"),
  48248. name: "Back",
  48249. image: {
  48250. source: "./media/characters/vant/back.svg",
  48251. extra: 1396/1320,
  48252. bottom: 20/1416
  48253. }
  48254. },
  48255. maw: {
  48256. height: math.unit(0.75, "feet"),
  48257. name: "Maw",
  48258. image: {
  48259. source: "./media/characters/vant/maw.svg"
  48260. }
  48261. },
  48262. paw: {
  48263. height: math.unit(1.07, "feet"),
  48264. name: "Paw",
  48265. image: {
  48266. source: "./media/characters/vant/paw.svg"
  48267. }
  48268. },
  48269. },
  48270. [
  48271. {
  48272. name: "Micro",
  48273. height: math.unit(0.25, "inches")
  48274. },
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(5 + 6/12, "feet"),
  48278. default: true
  48279. },
  48280. {
  48281. name: "Macro",
  48282. height: math.unit(75, "feet")
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48288. {
  48289. front: {
  48290. height: math.unit(30, "meters"),
  48291. weight: math.unit(363, "tons"),
  48292. name: "Front",
  48293. image: {
  48294. source: "./media/characters/ahra/front.svg",
  48295. extra: 1914/1814,
  48296. bottom: 46/1960
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Macro",
  48303. height: math.unit(30, "meters"),
  48304. default: true
  48305. },
  48306. ]
  48307. ))
  48308. characterMakers.push(() => makeCharacter(
  48309. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48310. {
  48311. undressed: {
  48312. height: math.unit(2, "m"),
  48313. weight: math.unit(250, "kg"),
  48314. name: "Undressed",
  48315. image: {
  48316. source: "./media/characters/coriander/undressed.svg",
  48317. extra: 1757/1606,
  48318. bottom: 107/1864
  48319. }
  48320. },
  48321. dressed: {
  48322. height: math.unit(2, "m"),
  48323. weight: math.unit(250, "kg"),
  48324. name: "Dressed",
  48325. image: {
  48326. source: "./media/characters/coriander/dressed.svg",
  48327. extra: 1757/1606,
  48328. bottom: 107/1864
  48329. }
  48330. },
  48331. },
  48332. [
  48333. {
  48334. name: "Normal",
  48335. height: math.unit(4, "meters"),
  48336. default: true
  48337. },
  48338. {
  48339. name: "XL",
  48340. height: math.unit(6, "meters")
  48341. },
  48342. {
  48343. name: "XXL",
  48344. height: math.unit(8, "meters")
  48345. },
  48346. ]
  48347. ))
  48348. characterMakers.push(() => makeCharacter(
  48349. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48350. {
  48351. front: {
  48352. height: math.unit(6, "feet"),
  48353. name: "Front",
  48354. image: {
  48355. source: "./media/characters/syrinx/front.svg",
  48356. extra: 1557/1259,
  48357. bottom: 171/1728
  48358. }
  48359. },
  48360. },
  48361. [
  48362. {
  48363. name: "Normal",
  48364. height: math.unit(6 + 3/12, "feet"),
  48365. default: true
  48366. },
  48367. ]
  48368. ))
  48369. characterMakers.push(() => makeCharacter(
  48370. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48371. {
  48372. front: {
  48373. height: math.unit(11 + 6/12, "feet"),
  48374. weight: math.unit(1.5, "tons"),
  48375. name: "Front",
  48376. image: {
  48377. source: "./media/characters/bor/front.svg",
  48378. extra: 1189/1109,
  48379. bottom: 170/1359
  48380. }
  48381. },
  48382. },
  48383. [
  48384. {
  48385. name: "Normal",
  48386. height: math.unit(11 + 6/12, "feet"),
  48387. default: true
  48388. },
  48389. {
  48390. name: "Macro",
  48391. height: math.unit(32 + 9/12, "feet")
  48392. },
  48393. ]
  48394. ))
  48395. characterMakers.push(() => makeCharacter(
  48396. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48397. {
  48398. anthro: {
  48399. height: math.unit(9, "feet"),
  48400. weight: math.unit(2076, "lb"),
  48401. name: "Anthro",
  48402. image: {
  48403. source: "./media/characters/abacus/anthro.svg",
  48404. extra: 1540/1494,
  48405. bottom: 233/1773
  48406. }
  48407. },
  48408. pigeon: {
  48409. height: math.unit(1, "feet"),
  48410. name: "Pigeon",
  48411. image: {
  48412. source: "./media/characters/abacus/pigeon.svg",
  48413. extra: 528/525,
  48414. bottom: 46/574
  48415. }
  48416. },
  48417. },
  48418. [
  48419. {
  48420. name: "Normal",
  48421. height: math.unit(9, "feet"),
  48422. default: true
  48423. },
  48424. ]
  48425. ))
  48426. characterMakers.push(() => makeCharacter(
  48427. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48428. {
  48429. side: {
  48430. height: math.unit(6, "feet"),
  48431. name: "Side",
  48432. image: {
  48433. source: "./media/characters/delkhan/side.svg",
  48434. extra: 1884/1786,
  48435. bottom: 308/2192
  48436. }
  48437. },
  48438. head: {
  48439. height: math.unit(3.38, "feet"),
  48440. name: "Head",
  48441. image: {
  48442. source: "./media/characters/delkhan/head.svg"
  48443. }
  48444. },
  48445. },
  48446. [
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(72, "feet"),
  48450. default: true
  48451. },
  48452. {
  48453. name: "Giant",
  48454. height: math.unit(172, "feet")
  48455. },
  48456. ]
  48457. ))
  48458. characterMakers.push(() => makeCharacter(
  48459. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48460. {
  48461. standing: {
  48462. height: math.unit(6, "feet"),
  48463. name: "Standing",
  48464. image: {
  48465. source: "./media/characters/euchidat/standing.svg",
  48466. extra: 1612/1553,
  48467. bottom: 116/1728
  48468. }
  48469. },
  48470. leaning: {
  48471. height: math.unit(6, "feet"),
  48472. name: "Leaning",
  48473. image: {
  48474. source: "./media/characters/euchidat/leaning.svg",
  48475. extra: 1719/1674,
  48476. bottom: 27/1746
  48477. }
  48478. },
  48479. },
  48480. [
  48481. {
  48482. name: "Normal",
  48483. height: math.unit(175, "feet"),
  48484. default: true
  48485. },
  48486. {
  48487. name: "Megamacro",
  48488. height: math.unit(190, "miles")
  48489. },
  48490. {
  48491. name: "Gigamacro",
  48492. height: math.unit(190000, "miles")
  48493. },
  48494. ]
  48495. ))
  48496. characterMakers.push(() => makeCharacter(
  48497. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48498. {
  48499. front: {
  48500. height: math.unit(6, "feet"),
  48501. weight: math.unit(150, "lb"),
  48502. name: "Front",
  48503. image: {
  48504. source: "./media/characters/rebecca-stack/front.svg",
  48505. extra: 1256/1201,
  48506. bottom: 18/1274
  48507. }
  48508. },
  48509. },
  48510. [
  48511. {
  48512. name: "Normal",
  48513. height: math.unit(5 + 8/12, "feet"),
  48514. default: true
  48515. },
  48516. {
  48517. name: "Demolitionist",
  48518. height: math.unit(200, "feet")
  48519. },
  48520. {
  48521. name: "Out of Control",
  48522. height: math.unit(2, "miles")
  48523. },
  48524. {
  48525. name: "Giga",
  48526. height: math.unit(7200, "miles")
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48532. {
  48533. front: {
  48534. height: math.unit(6, "feet"),
  48535. weight: math.unit(150, "lb"),
  48536. name: "Front",
  48537. image: {
  48538. source: "./media/characters/jenny-cartwright/front.svg",
  48539. extra: 1384/1376,
  48540. bottom: 58/1442
  48541. }
  48542. },
  48543. },
  48544. [
  48545. {
  48546. name: "Normal",
  48547. height: math.unit(6 + 7/12, "feet"),
  48548. default: true
  48549. },
  48550. {
  48551. name: "Librarian",
  48552. height: math.unit(55, "feet")
  48553. },
  48554. {
  48555. name: "Sightseer",
  48556. height: math.unit(50, "miles")
  48557. },
  48558. {
  48559. name: "Giga",
  48560. height: math.unit(30000, "miles")
  48561. },
  48562. ]
  48563. ))
  48564. characterMakers.push(() => makeCharacter(
  48565. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48566. {
  48567. nude: {
  48568. height: math.unit(8, "feet"),
  48569. weight: math.unit(225, "lb"),
  48570. name: "Nude",
  48571. image: {
  48572. source: "./media/characters/marvy/nude.svg",
  48573. extra: 1900/1683,
  48574. bottom: 89/1989
  48575. }
  48576. },
  48577. dressed: {
  48578. height: math.unit(8, "feet"),
  48579. weight: math.unit(225, "lb"),
  48580. name: "Dressed",
  48581. image: {
  48582. source: "./media/characters/marvy/dressed.svg",
  48583. extra: 1900/1683,
  48584. bottom: 89/1989
  48585. }
  48586. },
  48587. head: {
  48588. height: math.unit(2.85, "feet"),
  48589. name: "Head",
  48590. image: {
  48591. source: "./media/characters/marvy/head.svg"
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Normal",
  48598. height: math.unit(8, "feet"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(8, "feet"),
  48608. weight: math.unit(250, "lb"),
  48609. name: "Front",
  48610. image: {
  48611. source: "./media/characters/leah/front.svg",
  48612. extra: 1257/1149,
  48613. bottom: 109/1366
  48614. }
  48615. },
  48616. },
  48617. [
  48618. {
  48619. name: "Normal",
  48620. height: math.unit(8, "feet"),
  48621. default: true
  48622. },
  48623. {
  48624. name: "Minimacro",
  48625. height: math.unit(40, "feet")
  48626. },
  48627. {
  48628. name: "Macro",
  48629. height: math.unit(124, "feet")
  48630. },
  48631. {
  48632. name: "Megamacro",
  48633. height: math.unit(850, "feet")
  48634. },
  48635. ]
  48636. ))
  48637. characterMakers.push(() => makeCharacter(
  48638. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48639. {
  48640. side: {
  48641. height: math.unit(13 + 6/12, "feet"),
  48642. weight: math.unit(3200, "lb"),
  48643. name: "Side",
  48644. image: {
  48645. source: "./media/characters/alvir/side.svg",
  48646. extra: 896/589,
  48647. bottom: 26/922
  48648. }
  48649. },
  48650. },
  48651. [
  48652. {
  48653. name: "Normal",
  48654. height: math.unit(13 + 6/12, "feet"),
  48655. default: true
  48656. },
  48657. ]
  48658. ))
  48659. characterMakers.push(() => makeCharacter(
  48660. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48661. {
  48662. front: {
  48663. height: math.unit(5 + 4/12, "feet"),
  48664. weight: math.unit(236, "lb"),
  48665. name: "Front",
  48666. image: {
  48667. source: "./media/characters/zaina-khalil/front.svg",
  48668. extra: 1533/1485,
  48669. bottom: 94/1627
  48670. }
  48671. },
  48672. side: {
  48673. height: math.unit(5 + 4/12, "feet"),
  48674. weight: math.unit(236, "lb"),
  48675. name: "Side",
  48676. image: {
  48677. source: "./media/characters/zaina-khalil/side.svg",
  48678. extra: 1537/1498,
  48679. bottom: 66/1603
  48680. }
  48681. },
  48682. back: {
  48683. height: math.unit(5 + 4/12, "feet"),
  48684. weight: math.unit(236, "lb"),
  48685. name: "Back",
  48686. image: {
  48687. source: "./media/characters/zaina-khalil/back.svg",
  48688. extra: 1546/1494,
  48689. bottom: 89/1635
  48690. }
  48691. },
  48692. },
  48693. [
  48694. {
  48695. name: "Normal",
  48696. height: math.unit(5 + 4/12, "feet"),
  48697. default: true
  48698. },
  48699. ]
  48700. ))
  48701. characterMakers.push(() => makeCharacter(
  48702. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48703. {
  48704. side: {
  48705. height: math.unit(12, "feet"),
  48706. weight: math.unit(4000, "lb"),
  48707. name: "Side",
  48708. image: {
  48709. source: "./media/characters/terry/side.svg",
  48710. extra: 1518/1439,
  48711. bottom: 149/1667
  48712. }
  48713. },
  48714. },
  48715. [
  48716. {
  48717. name: "Normal",
  48718. height: math.unit(12, "feet"),
  48719. default: true
  48720. },
  48721. ]
  48722. ))
  48723. characterMakers.push(() => makeCharacter(
  48724. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48725. {
  48726. front: {
  48727. height: math.unit(12, "feet"),
  48728. weight: math.unit(1500, "lb"),
  48729. name: "Front",
  48730. image: {
  48731. source: "./media/characters/kahea/front.svg",
  48732. extra: 1722/1617,
  48733. bottom: 179/1901
  48734. }
  48735. },
  48736. },
  48737. [
  48738. {
  48739. name: "Normal",
  48740. height: math.unit(12, "feet"),
  48741. default: true
  48742. },
  48743. ]
  48744. ))
  48745. characterMakers.push(() => makeCharacter(
  48746. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48747. {
  48748. demonFront: {
  48749. height: math.unit(36, "feet"),
  48750. name: "Front",
  48751. image: {
  48752. source: "./media/characters/alex-xuria/demon-front.svg",
  48753. extra: 1705/1673,
  48754. bottom: 198/1903
  48755. },
  48756. form: "demon",
  48757. default: true
  48758. },
  48759. demonBack: {
  48760. height: math.unit(36, "feet"),
  48761. name: "Back",
  48762. image: {
  48763. source: "./media/characters/alex-xuria/demon-back.svg",
  48764. extra: 1725/1693,
  48765. bottom: 70/1795
  48766. },
  48767. form: "demon"
  48768. },
  48769. demonHead: {
  48770. height: math.unit(2.14, "meters"),
  48771. name: "Head",
  48772. image: {
  48773. source: "./media/characters/alex-xuria/demon-head.svg"
  48774. },
  48775. form: "demon"
  48776. },
  48777. demonHand: {
  48778. height: math.unit(1.61, "meters"),
  48779. name: "Hand",
  48780. image: {
  48781. source: "./media/characters/alex-xuria/demon-hand.svg"
  48782. },
  48783. form: "demon"
  48784. },
  48785. demonPaw: {
  48786. height: math.unit(1.35, "meters"),
  48787. name: "Paw",
  48788. image: {
  48789. source: "./media/characters/alex-xuria/demon-paw.svg"
  48790. },
  48791. form: "demon"
  48792. },
  48793. demonFoot: {
  48794. height: math.unit(2.2, "meters"),
  48795. name: "Foot",
  48796. image: {
  48797. source: "./media/characters/alex-xuria/demon-foot.svg"
  48798. },
  48799. form: "demon"
  48800. },
  48801. demonCock: {
  48802. height: math.unit(1.74, "meters"),
  48803. name: "Cock",
  48804. image: {
  48805. source: "./media/characters/alex-xuria/demon-cock.svg"
  48806. },
  48807. form: "demon"
  48808. },
  48809. demonTailClosed: {
  48810. height: math.unit(1.47, "meters"),
  48811. name: "Tail (Closed)",
  48812. image: {
  48813. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48814. },
  48815. form: "demon"
  48816. },
  48817. demonTailOpen: {
  48818. height: math.unit(2.85, "meters"),
  48819. name: "Tail (Open)",
  48820. image: {
  48821. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48822. },
  48823. form: "demon"
  48824. },
  48825. incubusFront: {
  48826. height: math.unit(12, "feet"),
  48827. name: "Front",
  48828. image: {
  48829. source: "./media/characters/alex-xuria/incubus-front.svg",
  48830. extra: 1754/1677,
  48831. bottom: 125/1879
  48832. },
  48833. form: "incubus",
  48834. default: true
  48835. },
  48836. incubusBack: {
  48837. height: math.unit(12, "feet"),
  48838. name: "Back",
  48839. image: {
  48840. source: "./media/characters/alex-xuria/incubus-back.svg",
  48841. extra: 1702/1647,
  48842. bottom: 30/1732
  48843. },
  48844. form: "incubus"
  48845. },
  48846. incubusHead: {
  48847. height: math.unit(3.45, "feet"),
  48848. name: "Head",
  48849. image: {
  48850. source: "./media/characters/alex-xuria/incubus-head.svg"
  48851. },
  48852. form: "incubus"
  48853. },
  48854. rabbitFront: {
  48855. height: math.unit(6, "feet"),
  48856. name: "Front",
  48857. image: {
  48858. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48859. extra: 1369/1349,
  48860. bottom: 45/1414
  48861. },
  48862. form: "rabbit",
  48863. default: true
  48864. },
  48865. rabbitSide: {
  48866. height: math.unit(6, "feet"),
  48867. name: "Side",
  48868. image: {
  48869. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48870. extra: 1370/1356,
  48871. bottom: 37/1407
  48872. },
  48873. form: "rabbit"
  48874. },
  48875. rabbitBack: {
  48876. height: math.unit(6, "feet"),
  48877. name: "Back",
  48878. image: {
  48879. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48880. extra: 1375/1358,
  48881. bottom: 43/1418
  48882. },
  48883. form: "rabbit"
  48884. },
  48885. },
  48886. [
  48887. {
  48888. name: "Normal",
  48889. height: math.unit(6, "feet"),
  48890. default: true,
  48891. form: "rabbit"
  48892. },
  48893. {
  48894. name: "Incubus",
  48895. height: math.unit(12, "feet"),
  48896. default: true,
  48897. form: "incubus"
  48898. },
  48899. {
  48900. name: "Demon",
  48901. height: math.unit(36, "feet"),
  48902. default: true,
  48903. form: "demon"
  48904. }
  48905. ],
  48906. {
  48907. "demon": {
  48908. name: "Demon",
  48909. default: true
  48910. },
  48911. "incubus": {
  48912. name: "Incubus",
  48913. },
  48914. "rabbit": {
  48915. name: "Rabbit"
  48916. }
  48917. }
  48918. ))
  48919. characterMakers.push(() => makeCharacter(
  48920. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48921. {
  48922. front: {
  48923. height: math.unit(7 + 5/12, "feet"),
  48924. weight: math.unit(510, "lb"),
  48925. name: "Front",
  48926. image: {
  48927. source: "./media/characters/syrup/front.svg",
  48928. extra: 932/916,
  48929. bottom: 26/958
  48930. }
  48931. },
  48932. },
  48933. [
  48934. {
  48935. name: "Normal",
  48936. height: math.unit(7 + 5/12, "feet"),
  48937. default: true
  48938. },
  48939. {
  48940. name: "Big",
  48941. height: math.unit(50, "feet")
  48942. },
  48943. {
  48944. name: "Macro",
  48945. height: math.unit(300, "feet")
  48946. },
  48947. {
  48948. name: "Megamacro",
  48949. height: math.unit(1, "mile")
  48950. },
  48951. ]
  48952. ))
  48953. characterMakers.push(() => makeCharacter(
  48954. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48955. {
  48956. front: {
  48957. height: math.unit(6 + 9/12, "feet"),
  48958. name: "Front",
  48959. image: {
  48960. source: "./media/characters/zeimne/front.svg",
  48961. extra: 1969/1806,
  48962. bottom: 53/2022
  48963. }
  48964. },
  48965. },
  48966. [
  48967. {
  48968. name: "Normal",
  48969. height: math.unit(6 + 9/12, "feet"),
  48970. default: true
  48971. },
  48972. {
  48973. name: "Giant",
  48974. height: math.unit(550, "feet")
  48975. },
  48976. {
  48977. name: "Mega",
  48978. height: math.unit(3, "miles")
  48979. },
  48980. {
  48981. name: "Giga",
  48982. height: math.unit(250, "miles")
  48983. },
  48984. {
  48985. name: "Tera",
  48986. height: math.unit(1, "AU")
  48987. },
  48988. ]
  48989. ))
  48990. characterMakers.push(() => makeCharacter(
  48991. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48992. {
  48993. front: {
  48994. height: math.unit(5 + 2/12, "feet"),
  48995. name: "Front",
  48996. image: {
  48997. source: "./media/characters/grar/front.svg",
  48998. extra: 1331/1119,
  48999. bottom: 60/1391
  49000. }
  49001. },
  49002. back: {
  49003. height: math.unit(5 + 2/12, "feet"),
  49004. name: "Back",
  49005. image: {
  49006. source: "./media/characters/grar/back.svg",
  49007. extra: 1385/1169,
  49008. bottom: 23/1408
  49009. }
  49010. },
  49011. },
  49012. [
  49013. {
  49014. name: "Normal",
  49015. height: math.unit(5 + 2/12, "feet"),
  49016. default: true
  49017. },
  49018. ]
  49019. ))
  49020. characterMakers.push(() => makeCharacter(
  49021. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49022. {
  49023. front: {
  49024. height: math.unit(13 + 7/12, "feet"),
  49025. weight: math.unit(2200, "lb"),
  49026. name: "Front",
  49027. image: {
  49028. source: "./media/characters/endraya/front.svg",
  49029. extra: 1289/1215,
  49030. bottom: 50/1339
  49031. }
  49032. },
  49033. nude: {
  49034. height: math.unit(13 + 7/12, "feet"),
  49035. weight: math.unit(2200, "lb"),
  49036. name: "Nude",
  49037. image: {
  49038. source: "./media/characters/endraya/nude.svg",
  49039. extra: 1247/1171,
  49040. bottom: 40/1287
  49041. }
  49042. },
  49043. head: {
  49044. height: math.unit(2.6, "feet"),
  49045. name: "Head",
  49046. image: {
  49047. source: "./media/characters/endraya/head.svg"
  49048. }
  49049. },
  49050. slit: {
  49051. height: math.unit(3.4, "feet"),
  49052. name: "Slit",
  49053. image: {
  49054. source: "./media/characters/endraya/slit.svg"
  49055. }
  49056. },
  49057. },
  49058. [
  49059. {
  49060. name: "Normal",
  49061. height: math.unit(13 + 7/12, "feet"),
  49062. default: true
  49063. },
  49064. {
  49065. name: "Macro",
  49066. height: math.unit(200, "feet")
  49067. },
  49068. ]
  49069. ))
  49070. characterMakers.push(() => makeCharacter(
  49071. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49072. {
  49073. front: {
  49074. height: math.unit(1.81, "meters"),
  49075. weight: math.unit(69, "kg"),
  49076. name: "Front",
  49077. image: {
  49078. source: "./media/characters/rodryana/front.svg",
  49079. extra: 2002/1921,
  49080. bottom: 53/2055
  49081. }
  49082. },
  49083. back: {
  49084. height: math.unit(1.81, "meters"),
  49085. weight: math.unit(69, "kg"),
  49086. name: "Back",
  49087. image: {
  49088. source: "./media/characters/rodryana/back.svg",
  49089. extra: 1993/1926,
  49090. bottom: 48/2041
  49091. }
  49092. },
  49093. maw: {
  49094. height: math.unit(0.19769417475, "meters"),
  49095. name: "Maw",
  49096. image: {
  49097. source: "./media/characters/rodryana/maw.svg"
  49098. }
  49099. },
  49100. slit: {
  49101. height: math.unit(0.31631067961, "meters"),
  49102. name: "Slit",
  49103. image: {
  49104. source: "./media/characters/rodryana/slit.svg"
  49105. }
  49106. },
  49107. },
  49108. [
  49109. {
  49110. name: "Normal",
  49111. height: math.unit(1.81, "meters")
  49112. },
  49113. {
  49114. name: "Mini Macro",
  49115. height: math.unit(181, "meters")
  49116. },
  49117. {
  49118. name: "Macro",
  49119. height: math.unit(452, "meters"),
  49120. default: true
  49121. },
  49122. {
  49123. name: "Mega Macro",
  49124. height: math.unit(1.375, "km")
  49125. },
  49126. {
  49127. name: "Giga Macro",
  49128. height: math.unit(13.575, "km")
  49129. },
  49130. ]
  49131. ))
  49132. characterMakers.push(() => makeCharacter(
  49133. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49134. {
  49135. front: {
  49136. height: math.unit(6, "feet"),
  49137. weight: math.unit(1000, "lb"),
  49138. name: "Front",
  49139. image: {
  49140. source: "./media/characters/asaya/front.svg",
  49141. extra: 1460/1200,
  49142. bottom: 71/1531
  49143. }
  49144. },
  49145. },
  49146. [
  49147. {
  49148. name: "Normal",
  49149. height: math.unit(8, "km"),
  49150. default: true
  49151. },
  49152. ]
  49153. ))
  49154. characterMakers.push(() => makeCharacter(
  49155. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49156. {
  49157. front: {
  49158. height: math.unit(3.5, "meters"),
  49159. name: "Front",
  49160. image: {
  49161. source: "./media/characters/sarzu-and-israz/front.svg",
  49162. extra: 1570/1558,
  49163. bottom: 150/1720
  49164. },
  49165. },
  49166. back: {
  49167. height: math.unit(3.5, "meters"),
  49168. name: "Back",
  49169. image: {
  49170. source: "./media/characters/sarzu-and-israz/back.svg",
  49171. extra: 1523/1509,
  49172. bottom: 132/1655
  49173. },
  49174. },
  49175. frontFemale: {
  49176. height: math.unit(3.5, "meters"),
  49177. name: "Front (Female)",
  49178. image: {
  49179. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49180. extra: 1570/1558,
  49181. bottom: 150/1720
  49182. },
  49183. },
  49184. frontHerm: {
  49185. height: math.unit(3.5, "meters"),
  49186. name: "Front (Herm)",
  49187. image: {
  49188. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49189. extra: 1570/1558,
  49190. bottom: 150/1720
  49191. },
  49192. },
  49193. },
  49194. [
  49195. {
  49196. name: "Normal",
  49197. height: math.unit(3.5, "meters"),
  49198. default: true,
  49199. },
  49200. {
  49201. name: "Macro",
  49202. height: math.unit(65.5, "meters"),
  49203. },
  49204. ],
  49205. ))
  49206. characterMakers.push(() => makeCharacter(
  49207. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49208. {
  49209. front: {
  49210. height: math.unit(6, "feet"),
  49211. weight: math.unit(250, "lb"),
  49212. name: "Front",
  49213. image: {
  49214. source: "./media/characters/zenimma/front.svg",
  49215. extra: 1346/1320,
  49216. bottom: 58/1404
  49217. }
  49218. },
  49219. back: {
  49220. height: math.unit(6, "feet"),
  49221. weight: math.unit(250, "lb"),
  49222. name: "Back",
  49223. image: {
  49224. source: "./media/characters/zenimma/back.svg",
  49225. extra: 1324/1308,
  49226. bottom: 44/1368
  49227. }
  49228. },
  49229. dick: {
  49230. height: math.unit(1.44, "feet"),
  49231. name: "Dick",
  49232. image: {
  49233. source: "./media/characters/zenimma/dick.svg"
  49234. }
  49235. },
  49236. },
  49237. [
  49238. {
  49239. name: "Canon Height",
  49240. height: math.unit(66, "miles"),
  49241. default: true
  49242. },
  49243. ]
  49244. ))
  49245. characterMakers.push(() => makeCharacter(
  49246. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49247. {
  49248. nude: {
  49249. height: math.unit(6, "feet"),
  49250. weight: math.unit(150, "lb"),
  49251. name: "Nude",
  49252. image: {
  49253. source: "./media/characters/shavon/nude.svg",
  49254. extra: 1242/1096,
  49255. bottom: 98/1340
  49256. }
  49257. },
  49258. dressed: {
  49259. height: math.unit(6, "feet"),
  49260. weight: math.unit(150, "lb"),
  49261. name: "Dressed",
  49262. image: {
  49263. source: "./media/characters/shavon/dressed.svg",
  49264. extra: 1242/1096,
  49265. bottom: 98/1340
  49266. }
  49267. },
  49268. },
  49269. [
  49270. {
  49271. name: "Macro",
  49272. height: math.unit(255, "feet"),
  49273. default: true
  49274. },
  49275. ]
  49276. ))
  49277. characterMakers.push(() => makeCharacter(
  49278. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49279. {
  49280. front: {
  49281. height: math.unit(6, "feet"),
  49282. name: "Front",
  49283. image: {
  49284. source: "./media/characters/steph/front.svg",
  49285. extra: 1430/1330,
  49286. bottom: 54/1484
  49287. }
  49288. },
  49289. },
  49290. [
  49291. {
  49292. name: "Normal",
  49293. height: math.unit(6, "feet"),
  49294. default: true
  49295. },
  49296. ]
  49297. ))
  49298. characterMakers.push(() => makeCharacter(
  49299. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49300. {
  49301. front: {
  49302. height: math.unit(9, "feet"),
  49303. weight: math.unit(400, "lb"),
  49304. name: "Front",
  49305. image: {
  49306. source: "./media/characters/kil'aman/front.svg",
  49307. extra: 1210/1159,
  49308. bottom: 109/1319
  49309. }
  49310. },
  49311. head: {
  49312. height: math.unit(2.14, "feet"),
  49313. name: "Head",
  49314. image: {
  49315. source: "./media/characters/kil'aman/head.svg"
  49316. }
  49317. },
  49318. maw: {
  49319. height: math.unit(1.21, "feet"),
  49320. name: "Maw",
  49321. image: {
  49322. source: "./media/characters/kil'aman/maw.svg"
  49323. }
  49324. },
  49325. foot: {
  49326. height: math.unit(1.7, "feet"),
  49327. name: "Foot",
  49328. image: {
  49329. source: "./media/characters/kil'aman/foot.svg"
  49330. }
  49331. },
  49332. dick: {
  49333. height: math.unit(2.1, "feet"),
  49334. name: "Dick",
  49335. image: {
  49336. source: "./media/characters/kil'aman/dick.svg"
  49337. }
  49338. },
  49339. },
  49340. [
  49341. {
  49342. name: "Normal",
  49343. height: math.unit(9, "feet")
  49344. },
  49345. {
  49346. name: "Canon Height",
  49347. height: math.unit(10, "miles"),
  49348. default: true
  49349. },
  49350. {
  49351. name: "Maximum",
  49352. height: math.unit(6e9, "miles")
  49353. },
  49354. ]
  49355. ))
  49356. characterMakers.push(() => makeCharacter(
  49357. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49358. {
  49359. front: {
  49360. height: math.unit(90, "feet"),
  49361. weight: math.unit(675000, "lb"),
  49362. name: "Front",
  49363. image: {
  49364. source: "./media/characters/qadan/front.svg",
  49365. extra: 1012/1004,
  49366. bottom: 78/1090
  49367. }
  49368. },
  49369. back: {
  49370. height: math.unit(90, "feet"),
  49371. weight: math.unit(675000, "lb"),
  49372. name: "Back",
  49373. image: {
  49374. source: "./media/characters/qadan/back.svg",
  49375. extra: 1042/1031,
  49376. bottom: 55/1097
  49377. }
  49378. },
  49379. armored: {
  49380. height: math.unit(90, "feet"),
  49381. weight: math.unit(675000, "lb"),
  49382. name: "Armored",
  49383. image: {
  49384. source: "./media/characters/qadan/armored.svg",
  49385. extra: 1047/1037,
  49386. bottom: 48/1095
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(90, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(6, "feet"),
  49403. weight: math.unit(225, "lb"),
  49404. name: "Front",
  49405. image: {
  49406. source: "./media/characters/brooke/front.svg",
  49407. extra: 1050/1010,
  49408. bottom: 66/1116
  49409. }
  49410. },
  49411. back: {
  49412. height: math.unit(6, "feet"),
  49413. weight: math.unit(225, "lb"),
  49414. name: "Back",
  49415. image: {
  49416. source: "./media/characters/brooke/back.svg",
  49417. extra: 1053/1013,
  49418. bottom: 41/1094
  49419. }
  49420. },
  49421. dressed: {
  49422. height: math.unit(6, "feet"),
  49423. weight: math.unit(225, "lb"),
  49424. name: "Dressed",
  49425. image: {
  49426. source: "./media/characters/brooke/dressed.svg",
  49427. extra: 1050/1010,
  49428. bottom: 66/1116
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Canon Height",
  49435. height: math.unit(500, "miles"),
  49436. default: true
  49437. },
  49438. ]
  49439. ))
  49440. characterMakers.push(() => makeCharacter(
  49441. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49442. {
  49443. front: {
  49444. height: math.unit(6 + 2/12, "feet"),
  49445. weight: math.unit(210, "lb"),
  49446. name: "Front",
  49447. image: {
  49448. source: "./media/characters/wubs/front.svg",
  49449. extra: 1345/1325,
  49450. bottom: 70/1415
  49451. }
  49452. },
  49453. back: {
  49454. height: math.unit(6 + 2/12, "feet"),
  49455. weight: math.unit(210, "lb"),
  49456. name: "Back",
  49457. image: {
  49458. source: "./media/characters/wubs/back.svg",
  49459. extra: 1296/1275,
  49460. bottom: 58/1354
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Normal",
  49467. height: math.unit(6 + 2/12, "feet"),
  49468. default: true
  49469. },
  49470. {
  49471. name: "Macro",
  49472. height: math.unit(1000, "feet")
  49473. },
  49474. {
  49475. name: "Megamacro",
  49476. height: math.unit(1, "mile")
  49477. },
  49478. ]
  49479. ))
  49480. characterMakers.push(() => makeCharacter(
  49481. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49482. {
  49483. front: {
  49484. height: math.unit(4, "feet"),
  49485. weight: math.unit(120, "lb"),
  49486. name: "Front",
  49487. image: {
  49488. source: "./media/characters/blue/front.svg",
  49489. extra: 1636/1525,
  49490. bottom: 43/1679
  49491. }
  49492. },
  49493. back: {
  49494. height: math.unit(4, "feet"),
  49495. weight: math.unit(120, "lb"),
  49496. name: "Back",
  49497. image: {
  49498. source: "./media/characters/blue/back.svg",
  49499. extra: 1660/1560,
  49500. bottom: 57/1717
  49501. }
  49502. },
  49503. paws: {
  49504. height: math.unit(0.826, "feet"),
  49505. name: "Paws",
  49506. image: {
  49507. source: "./media/characters/blue/paws.svg"
  49508. }
  49509. },
  49510. },
  49511. [
  49512. {
  49513. name: "Micro",
  49514. height: math.unit(3, "inches")
  49515. },
  49516. {
  49517. name: "Normal",
  49518. height: math.unit(4, "feet"),
  49519. default: true
  49520. },
  49521. {
  49522. name: "Femenine Form",
  49523. height: math.unit(14, "feet")
  49524. },
  49525. {
  49526. name: "Werebat Form",
  49527. height: math.unit(18, "feet")
  49528. },
  49529. ]
  49530. ))
  49531. characterMakers.push(() => makeCharacter(
  49532. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49533. {
  49534. female: {
  49535. height: math.unit(7 + 4/12, "feet"),
  49536. weight: math.unit(243, "lb"),
  49537. name: "Female",
  49538. image: {
  49539. source: "./media/characters/kaya/female.svg",
  49540. extra: 975/898,
  49541. bottom: 34/1009
  49542. }
  49543. },
  49544. herm: {
  49545. height: math.unit(7 + 4/12, "feet"),
  49546. weight: math.unit(243, "lb"),
  49547. name: "Herm",
  49548. image: {
  49549. source: "./media/characters/kaya/herm.svg",
  49550. extra: 975/898,
  49551. bottom: 34/1009
  49552. }
  49553. },
  49554. },
  49555. [
  49556. {
  49557. name: "Normal",
  49558. height: math.unit(7 + 4/12, "feet"),
  49559. default: true
  49560. },
  49561. ]
  49562. ))
  49563. characterMakers.push(() => makeCharacter(
  49564. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49565. {
  49566. female: {
  49567. height: math.unit(9 + 4/12, "feet"),
  49568. weight: math.unit(398, "lb"),
  49569. name: "Female",
  49570. image: {
  49571. source: "./media/characters/kassandra/female.svg",
  49572. extra: 908/839,
  49573. bottom: 61/969
  49574. }
  49575. },
  49576. intersex: {
  49577. height: math.unit(9 + 4/12, "feet"),
  49578. weight: math.unit(398, "lb"),
  49579. name: "Intersex",
  49580. image: {
  49581. source: "./media/characters/kassandra/intersex.svg",
  49582. extra: 908/839,
  49583. bottom: 61/969
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Normal",
  49590. height: math.unit(9 + 4/12, "feet"),
  49591. default: true
  49592. },
  49593. ]
  49594. ))
  49595. characterMakers.push(() => makeCharacter(
  49596. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49597. {
  49598. front: {
  49599. height: math.unit(3, "meters"),
  49600. name: "Front",
  49601. image: {
  49602. source: "./media/characters/amy/front.svg",
  49603. extra: 1380/1343,
  49604. bottom: 70/1450
  49605. }
  49606. },
  49607. back: {
  49608. height: math.unit(3, "meters"),
  49609. name: "Back",
  49610. image: {
  49611. source: "./media/characters/amy/back.svg",
  49612. extra: 1380/1347,
  49613. bottom: 66/1446
  49614. }
  49615. },
  49616. },
  49617. [
  49618. {
  49619. name: "Normal",
  49620. height: math.unit(3, "meters"),
  49621. default: true
  49622. },
  49623. ]
  49624. ))
  49625. characterMakers.push(() => makeCharacter(
  49626. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49627. {
  49628. side: {
  49629. height: math.unit(47, "cm"),
  49630. weight: math.unit(10.8, "kg"),
  49631. name: "Side",
  49632. image: {
  49633. source: "./media/characters/alphaschakal/side.svg",
  49634. extra: 1058/568,
  49635. bottom: 62/1120
  49636. }
  49637. },
  49638. back: {
  49639. height: math.unit(78, "cm"),
  49640. weight: math.unit(10.8, "kg"),
  49641. name: "Back",
  49642. image: {
  49643. source: "./media/characters/alphaschakal/back.svg",
  49644. extra: 1102/942,
  49645. bottom: 185/1287
  49646. }
  49647. },
  49648. head: {
  49649. height: math.unit(28, "cm"),
  49650. name: "Head",
  49651. image: {
  49652. source: "./media/characters/alphaschakal/head.svg",
  49653. extra: 696/508,
  49654. bottom: 0/696
  49655. }
  49656. },
  49657. paw: {
  49658. height: math.unit(16, "cm"),
  49659. name: "Paw",
  49660. image: {
  49661. source: "./media/characters/alphaschakal/paw.svg"
  49662. }
  49663. },
  49664. },
  49665. [
  49666. {
  49667. name: "Normal",
  49668. height: math.unit(47, "cm"),
  49669. default: true
  49670. },
  49671. {
  49672. name: "Macro",
  49673. height: math.unit(340, "cm")
  49674. },
  49675. ]
  49676. ))
  49677. characterMakers.push(() => makeCharacter(
  49678. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49679. {
  49680. front: {
  49681. height: math.unit(36, "earths"),
  49682. name: "Front",
  49683. image: {
  49684. source: "./media/characters/ecobyss/front.svg",
  49685. extra: 1282/1215,
  49686. bottom: 11/1293
  49687. }
  49688. },
  49689. back: {
  49690. height: math.unit(36, "earths"),
  49691. name: "Back",
  49692. image: {
  49693. source: "./media/characters/ecobyss/back.svg",
  49694. extra: 1291/1222,
  49695. bottom: 8/1299
  49696. }
  49697. },
  49698. },
  49699. [
  49700. {
  49701. name: "Normal",
  49702. height: math.unit(36, "earths"),
  49703. default: true
  49704. },
  49705. ]
  49706. ))
  49707. characterMakers.push(() => makeCharacter(
  49708. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49709. {
  49710. front: {
  49711. height: math.unit(12, "feet"),
  49712. name: "Front",
  49713. image: {
  49714. source: "./media/characters/vasuk/front.svg",
  49715. extra: 1326/1207,
  49716. bottom: 64/1390
  49717. }
  49718. },
  49719. },
  49720. [
  49721. {
  49722. name: "Normal",
  49723. height: math.unit(12, "feet"),
  49724. default: true
  49725. },
  49726. ]
  49727. ))
  49728. characterMakers.push(() => makeCharacter(
  49729. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49730. {
  49731. side: {
  49732. height: math.unit(100, "feet"),
  49733. name: "Side",
  49734. image: {
  49735. source: "./media/characters/linneaus/side.svg",
  49736. extra: 987/807,
  49737. bottom: 47/1034
  49738. }
  49739. },
  49740. },
  49741. [
  49742. {
  49743. name: "Macro",
  49744. height: math.unit(100, "feet"),
  49745. default: true
  49746. },
  49747. ]
  49748. ))
  49749. characterMakers.push(() => makeCharacter(
  49750. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49751. {
  49752. front: {
  49753. height: math.unit(8, "feet"),
  49754. weight: math.unit(1200, "lb"),
  49755. name: "Front",
  49756. image: {
  49757. source: "./media/characters/nyterious-daligdig/front.svg",
  49758. extra: 1284/1094,
  49759. bottom: 84/1368
  49760. }
  49761. },
  49762. back: {
  49763. height: math.unit(8, "feet"),
  49764. weight: math.unit(1200, "lb"),
  49765. name: "Back",
  49766. image: {
  49767. source: "./media/characters/nyterious-daligdig/back.svg",
  49768. extra: 1301/1121,
  49769. bottom: 129/1430
  49770. }
  49771. },
  49772. mouth: {
  49773. height: math.unit(1.464, "feet"),
  49774. name: "Mouth",
  49775. image: {
  49776. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49777. }
  49778. },
  49779. },
  49780. [
  49781. {
  49782. name: "Small",
  49783. height: math.unit(8, "feet"),
  49784. default: true
  49785. },
  49786. {
  49787. name: "Normal",
  49788. height: math.unit(15, "feet")
  49789. },
  49790. {
  49791. name: "Macro",
  49792. height: math.unit(90, "feet")
  49793. },
  49794. ]
  49795. ))
  49796. characterMakers.push(() => makeCharacter(
  49797. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49798. {
  49799. front: {
  49800. height: math.unit(7 + 4/12, "feet"),
  49801. weight: math.unit(252, "lb"),
  49802. name: "Front",
  49803. image: {
  49804. source: "./media/characters/bandel/front.svg",
  49805. extra: 1946/1775,
  49806. bottom: 26/1972
  49807. }
  49808. },
  49809. back: {
  49810. height: math.unit(7 + 4/12, "feet"),
  49811. weight: math.unit(252, "lb"),
  49812. name: "Back",
  49813. image: {
  49814. source: "./media/characters/bandel/back.svg",
  49815. extra: 1940/1770,
  49816. bottom: 25/1965
  49817. }
  49818. },
  49819. maw: {
  49820. height: math.unit(2.15, "feet"),
  49821. name: "Maw",
  49822. image: {
  49823. source: "./media/characters/bandel/maw.svg"
  49824. }
  49825. },
  49826. stomach: {
  49827. height: math.unit(1.95, "feet"),
  49828. name: "Stomach",
  49829. image: {
  49830. source: "./media/characters/bandel/stomach.svg"
  49831. }
  49832. },
  49833. },
  49834. [
  49835. {
  49836. name: "Normal",
  49837. height: math.unit(7 + 4/12, "feet"),
  49838. default: true
  49839. },
  49840. ]
  49841. ))
  49842. characterMakers.push(() => makeCharacter(
  49843. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49844. {
  49845. front: {
  49846. height: math.unit(10 + 5/12, "feet"),
  49847. weight: math.unit(773.5, "kg"),
  49848. name: "Front",
  49849. image: {
  49850. source: "./media/characters/zed/front.svg",
  49851. extra: 987/941,
  49852. bottom: 52/1039
  49853. }
  49854. },
  49855. },
  49856. [
  49857. {
  49858. name: "Short",
  49859. height: math.unit(5 + 4/12, "feet")
  49860. },
  49861. {
  49862. name: "Average",
  49863. height: math.unit(10 + 5/12, "feet"),
  49864. default: true
  49865. },
  49866. {
  49867. name: "Mini-Macro",
  49868. height: math.unit(24 + 9/12, "feet")
  49869. },
  49870. {
  49871. name: "Macro",
  49872. height: math.unit(249, "feet")
  49873. },
  49874. {
  49875. name: "Mega-Macro",
  49876. height: math.unit(12490, "feet")
  49877. },
  49878. {
  49879. name: "Giga-Macro",
  49880. height: math.unit(24.9, "miles")
  49881. },
  49882. {
  49883. name: "Tera-Macro",
  49884. height: math.unit(24900, "miles")
  49885. },
  49886. {
  49887. name: "Cosmic Scale",
  49888. height: math.unit(38.9, "lightyears")
  49889. },
  49890. {
  49891. name: "Universal Scale",
  49892. height: math.unit(138e12, "lightyears")
  49893. },
  49894. ]
  49895. ))
  49896. characterMakers.push(() => makeCharacter(
  49897. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49898. {
  49899. front: {
  49900. height: math.unit(1561, "inches"),
  49901. name: "Front",
  49902. image: {
  49903. source: "./media/characters/ivan/front.svg",
  49904. extra: 1126/1071,
  49905. bottom: 26/1152
  49906. }
  49907. },
  49908. back: {
  49909. height: math.unit(1561, "inches"),
  49910. name: "Back",
  49911. image: {
  49912. source: "./media/characters/ivan/back.svg",
  49913. extra: 1134/1079,
  49914. bottom: 30/1164
  49915. }
  49916. },
  49917. },
  49918. [
  49919. {
  49920. name: "Normal",
  49921. height: math.unit(1561, "inches"),
  49922. default: true
  49923. },
  49924. ]
  49925. ))
  49926. characterMakers.push(() => makeCharacter(
  49927. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49928. {
  49929. front: {
  49930. height: math.unit(5 + 7/12, "feet"),
  49931. weight: math.unit(150, "lb"),
  49932. name: "Front",
  49933. image: {
  49934. source: "./media/characters/robin-arctic-hare/front.svg",
  49935. extra: 1148/974,
  49936. bottom: 20/1168
  49937. }
  49938. },
  49939. },
  49940. [
  49941. {
  49942. name: "Normal",
  49943. height: math.unit(5 + 7/12, "feet"),
  49944. default: true
  49945. },
  49946. ]
  49947. ))
  49948. characterMakers.push(() => makeCharacter(
  49949. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49950. {
  49951. side: {
  49952. height: math.unit(5, "feet"),
  49953. name: "Side",
  49954. image: {
  49955. source: "./media/characters/birch/side.svg",
  49956. extra: 985/796,
  49957. bottom: 111/1096
  49958. }
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(5, "feet"),
  49965. default: true
  49966. },
  49967. ]
  49968. ))
  49969. characterMakers.push(() => makeCharacter(
  49970. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49971. {
  49972. front: {
  49973. height: math.unit(4, "feet"),
  49974. name: "Front",
  49975. image: {
  49976. source: "./media/characters/rasp/front.svg",
  49977. extra: 561/478,
  49978. bottom: 74/635
  49979. }
  49980. },
  49981. },
  49982. [
  49983. {
  49984. name: "Normal",
  49985. height: math.unit(4, "feet"),
  49986. default: true
  49987. },
  49988. ]
  49989. ))
  49990. characterMakers.push(() => makeCharacter(
  49991. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49992. {
  49993. front: {
  49994. height: math.unit(4 + 6/12, "feet"),
  49995. name: "Front",
  49996. image: {
  49997. source: "./media/characters/agatha/front.svg",
  49998. extra: 947/933,
  49999. bottom: 42/989
  50000. }
  50001. },
  50002. back: {
  50003. height: math.unit(4 + 6/12, "feet"),
  50004. name: "Back",
  50005. image: {
  50006. source: "./media/characters/agatha/back.svg",
  50007. extra: 935/922,
  50008. bottom: 48/983
  50009. }
  50010. },
  50011. },
  50012. [
  50013. {
  50014. name: "Normal",
  50015. height: math.unit(4 + 6 /12, "feet"),
  50016. default: true
  50017. },
  50018. {
  50019. name: "Max Size",
  50020. height: math.unit(500, "feet")
  50021. },
  50022. ]
  50023. ))
  50024. characterMakers.push(() => makeCharacter(
  50025. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50026. {
  50027. side: {
  50028. height: math.unit(30, "feet"),
  50029. name: "Side",
  50030. image: {
  50031. source: "./media/characters/roggy/side.svg",
  50032. extra: 909/643,
  50033. bottom: 63/972
  50034. }
  50035. },
  50036. lounging: {
  50037. height: math.unit(20, "feet"),
  50038. name: "Lounging",
  50039. image: {
  50040. source: "./media/characters/roggy/lounging.svg",
  50041. extra: 643/479,
  50042. bottom: 145/788
  50043. }
  50044. },
  50045. handpaw: {
  50046. height: math.unit(13.1, "feet"),
  50047. name: "Handpaw",
  50048. image: {
  50049. source: "./media/characters/roggy/handpaw.svg"
  50050. }
  50051. },
  50052. footpaw: {
  50053. height: math.unit(15.8, "feet"),
  50054. name: "Footpaw",
  50055. image: {
  50056. source: "./media/characters/roggy/footpaw.svg"
  50057. }
  50058. },
  50059. },
  50060. [
  50061. {
  50062. name: "Menacing",
  50063. height: math.unit(30, "feet"),
  50064. default: true
  50065. },
  50066. ]
  50067. ))
  50068. characterMakers.push(() => makeCharacter(
  50069. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50070. {
  50071. front: {
  50072. height: math.unit(5 + 7/12, "feet"),
  50073. weight: math.unit(135, "lb"),
  50074. name: "Front",
  50075. image: {
  50076. source: "./media/characters/naomi/front.svg",
  50077. extra: 1209/1154,
  50078. bottom: 129/1338
  50079. }
  50080. },
  50081. back: {
  50082. height: math.unit(5 + 7/12, "feet"),
  50083. weight: math.unit(135, "lb"),
  50084. name: "Back",
  50085. image: {
  50086. source: "./media/characters/naomi/back.svg",
  50087. extra: 1252/1190,
  50088. bottom: 23/1275
  50089. }
  50090. },
  50091. },
  50092. [
  50093. {
  50094. name: "Normal",
  50095. height: math.unit(5 + 7 /12, "feet"),
  50096. default: true
  50097. },
  50098. ]
  50099. ))
  50100. characterMakers.push(() => makeCharacter(
  50101. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50102. {
  50103. side: {
  50104. height: math.unit(35, "meters"),
  50105. name: "Side",
  50106. image: {
  50107. source: "./media/characters/kimpi/side.svg",
  50108. extra: 419/382,
  50109. bottom: 63/482
  50110. }
  50111. },
  50112. hand: {
  50113. height: math.unit(8.96, "meters"),
  50114. name: "Hand",
  50115. image: {
  50116. source: "./media/characters/kimpi/hand.svg"
  50117. }
  50118. },
  50119. },
  50120. [
  50121. {
  50122. name: "Normal",
  50123. height: math.unit(35, "meters"),
  50124. default: true
  50125. },
  50126. ]
  50127. ))
  50128. characterMakers.push(() => makeCharacter(
  50129. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50130. {
  50131. front: {
  50132. height: math.unit(4 + 4/12, "feet"),
  50133. name: "Front",
  50134. image: {
  50135. source: "./media/characters/pepper-purrloin/front.svg",
  50136. extra: 1141/1024,
  50137. bottom: 21/1162
  50138. }
  50139. },
  50140. },
  50141. [
  50142. {
  50143. name: "Normal",
  50144. height: math.unit(4 + 4/12, "feet"),
  50145. default: true
  50146. },
  50147. ]
  50148. ))
  50149. characterMakers.push(() => makeCharacter(
  50150. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50151. {
  50152. front: {
  50153. height: math.unit(6 + 2/12, "feet"),
  50154. name: "Front",
  50155. image: {
  50156. source: "./media/characters/raphael/front.svg",
  50157. extra: 1101/962,
  50158. bottom: 59/1160
  50159. }
  50160. },
  50161. },
  50162. [
  50163. {
  50164. name: "Normal",
  50165. height: math.unit(6 + 2/12, "feet"),
  50166. default: true
  50167. },
  50168. ]
  50169. ))
  50170. characterMakers.push(() => makeCharacter(
  50171. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50172. {
  50173. front: {
  50174. height: math.unit(6, "feet"),
  50175. weight: math.unit(150, "lb"),
  50176. name: "Front",
  50177. image: {
  50178. source: "./media/characters/victor-williams/front.svg",
  50179. extra: 1894/1825,
  50180. bottom: 67/1961
  50181. }
  50182. },
  50183. },
  50184. [
  50185. {
  50186. name: "Normal",
  50187. height: math.unit(6, "feet"),
  50188. default: true
  50189. },
  50190. ]
  50191. ))
  50192. characterMakers.push(() => makeCharacter(
  50193. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50194. {
  50195. front: {
  50196. height: math.unit(5 + 8/12, "feet"),
  50197. weight: math.unit(150, "lb"),
  50198. name: "Front",
  50199. image: {
  50200. source: "./media/characters/rachel/front.svg",
  50201. extra: 1902/1787,
  50202. bottom: 46/1948
  50203. }
  50204. },
  50205. },
  50206. [
  50207. {
  50208. name: "Base Height",
  50209. height: math.unit(5 + 8/12, "feet"),
  50210. default: true
  50211. },
  50212. {
  50213. name: "Macro",
  50214. height: math.unit(200, "feet")
  50215. },
  50216. {
  50217. name: "Mega Macro",
  50218. height: math.unit(1, "mile")
  50219. },
  50220. {
  50221. name: "Giga Macro",
  50222. height: math.unit(1500, "miles")
  50223. },
  50224. {
  50225. name: "Tera Macro",
  50226. height: math.unit(8000, "miles")
  50227. },
  50228. {
  50229. name: "Tera Macro+",
  50230. height: math.unit(2e5, "miles")
  50231. },
  50232. ]
  50233. ))
  50234. characterMakers.push(() => makeCharacter(
  50235. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50236. {
  50237. front: {
  50238. height: math.unit(6.5, "feet"),
  50239. name: "Front",
  50240. image: {
  50241. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50242. extra: 860/819,
  50243. bottom: 307/1167
  50244. }
  50245. },
  50246. back: {
  50247. height: math.unit(6.5, "feet"),
  50248. name: "Back",
  50249. image: {
  50250. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50251. extra: 880/837,
  50252. bottom: 395/1275
  50253. }
  50254. },
  50255. sleeping: {
  50256. height: math.unit(2.79, "feet"),
  50257. name: "Sleeping",
  50258. image: {
  50259. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50260. extra: 465/383,
  50261. bottom: 263/728
  50262. }
  50263. },
  50264. maw: {
  50265. height: math.unit(2.52, "feet"),
  50266. name: "Maw",
  50267. image: {
  50268. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50269. }
  50270. },
  50271. },
  50272. [
  50273. {
  50274. name: "Normal",
  50275. height: math.unit(6.5, "feet"),
  50276. default: true
  50277. },
  50278. ]
  50279. ))
  50280. characterMakers.push(() => makeCharacter(
  50281. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50282. {
  50283. front: {
  50284. height: math.unit(5, "feet"),
  50285. name: "Front",
  50286. image: {
  50287. source: "./media/characters/nova-nerium/front.svg",
  50288. extra: 1548/1392,
  50289. bottom: 374/1922
  50290. }
  50291. },
  50292. back: {
  50293. height: math.unit(5, "feet"),
  50294. name: "Back",
  50295. image: {
  50296. source: "./media/characters/nova-nerium/back.svg",
  50297. extra: 1658/1468,
  50298. bottom: 257/1915
  50299. }
  50300. },
  50301. },
  50302. [
  50303. {
  50304. name: "Normal",
  50305. height: math.unit(5, "feet"),
  50306. default: true
  50307. },
  50308. ]
  50309. ))
  50310. characterMakers.push(() => makeCharacter(
  50311. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50312. {
  50313. front: {
  50314. height: math.unit(5 + 4/12, "feet"),
  50315. name: "Front",
  50316. image: {
  50317. source: "./media/characters/ashe-pyriph/front.svg",
  50318. extra: 1935/1747,
  50319. bottom: 60/1995
  50320. }
  50321. },
  50322. },
  50323. [
  50324. {
  50325. name: "Normal",
  50326. height: math.unit(5 + 4/12, "feet"),
  50327. default: true
  50328. },
  50329. ]
  50330. ))
  50331. characterMakers.push(() => makeCharacter(
  50332. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50333. {
  50334. front: {
  50335. height: math.unit(8.7, "feet"),
  50336. name: "Front",
  50337. image: {
  50338. source: "./media/characters/flicker-wisp/front.svg",
  50339. extra: 1835/1613,
  50340. bottom: 449/2284
  50341. }
  50342. },
  50343. side: {
  50344. height: math.unit(8.7, "feet"),
  50345. name: "Side",
  50346. image: {
  50347. source: "./media/characters/flicker-wisp/side.svg",
  50348. extra: 1841/1642,
  50349. bottom: 336/2177
  50350. },
  50351. default: true
  50352. },
  50353. maw: {
  50354. height: math.unit(3.35, "feet"),
  50355. name: "Maw",
  50356. image: {
  50357. source: "./media/characters/flicker-wisp/maw.svg",
  50358. extra: 2338/1506,
  50359. bottom: 0/2338
  50360. }
  50361. },
  50362. ovipositor: {
  50363. height: math.unit(4.95, "feet"),
  50364. name: "Ovipositor",
  50365. image: {
  50366. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50367. }
  50368. },
  50369. egg: {
  50370. height: math.unit(0.385, "feet"),
  50371. weight: math.unit(2, "lb"),
  50372. name: "Egg",
  50373. image: {
  50374. source: "./media/characters/flicker-wisp/egg.svg"
  50375. }
  50376. },
  50377. },
  50378. [
  50379. {
  50380. name: "Normal",
  50381. height: math.unit(8.7, "feet"),
  50382. default: true
  50383. },
  50384. ]
  50385. ))
  50386. characterMakers.push(() => makeCharacter(
  50387. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50388. {
  50389. side: {
  50390. height: math.unit(11, "feet"),
  50391. name: "Side",
  50392. image: {
  50393. source: "./media/characters/faefnul/side.svg",
  50394. extra: 1100/1007,
  50395. bottom: 0/1100
  50396. }
  50397. },
  50398. },
  50399. [
  50400. {
  50401. name: "Normal",
  50402. height: math.unit(11, "feet"),
  50403. default: true
  50404. },
  50405. ]
  50406. ))
  50407. characterMakers.push(() => makeCharacter(
  50408. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50409. {
  50410. front: {
  50411. height: math.unit(6 + 2/12, "feet"),
  50412. name: "Front",
  50413. image: {
  50414. source: "./media/characters/shady/front.svg",
  50415. extra: 502/461,
  50416. bottom: 9/511
  50417. }
  50418. },
  50419. kneeling: {
  50420. height: math.unit(4.6, "feet"),
  50421. name: "Kneeling",
  50422. image: {
  50423. source: "./media/characters/shady/kneeling.svg",
  50424. extra: 1328/1219,
  50425. bottom: 117/1445
  50426. }
  50427. },
  50428. maw: {
  50429. height: math.unit(2, "feet"),
  50430. name: "Maw",
  50431. image: {
  50432. source: "./media/characters/shady/maw.svg"
  50433. }
  50434. },
  50435. },
  50436. [
  50437. {
  50438. name: "Nano",
  50439. height: math.unit(1, "mm")
  50440. },
  50441. {
  50442. name: "Micro",
  50443. height: math.unit(12, "mm")
  50444. },
  50445. {
  50446. name: "Tiny",
  50447. height: math.unit(3, "inches")
  50448. },
  50449. {
  50450. name: "Normal",
  50451. height: math.unit(6 + 2/12, "feet"),
  50452. default: true
  50453. },
  50454. {
  50455. name: "Big",
  50456. height: math.unit(15, "feet")
  50457. },
  50458. {
  50459. name: "Macro",
  50460. height: math.unit(150, "feet")
  50461. },
  50462. {
  50463. name: "Titanic",
  50464. height: math.unit(500, "feet")
  50465. },
  50466. ]
  50467. ))
  50468. characterMakers.push(() => makeCharacter(
  50469. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50470. {
  50471. front: {
  50472. height: math.unit(12, "feet"),
  50473. name: "Front",
  50474. image: {
  50475. source: "./media/characters/fenrir/front.svg",
  50476. extra: 968/875,
  50477. bottom: 22/990
  50478. }
  50479. },
  50480. },
  50481. [
  50482. {
  50483. name: "Big",
  50484. height: math.unit(12, "feet"),
  50485. default: true
  50486. },
  50487. ]
  50488. ))
  50489. characterMakers.push(() => makeCharacter(
  50490. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50491. {
  50492. front: {
  50493. height: math.unit(5 + 4/12, "feet"),
  50494. name: "Front",
  50495. image: {
  50496. source: "./media/characters/makar/front.svg",
  50497. extra: 1181/1112,
  50498. bottom: 78/1259
  50499. }
  50500. },
  50501. },
  50502. [
  50503. {
  50504. name: "Normal",
  50505. height: math.unit(5 + 4/12, "feet"),
  50506. default: true
  50507. },
  50508. ]
  50509. ))
  50510. characterMakers.push(() => makeCharacter(
  50511. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50512. {
  50513. front: {
  50514. height: math.unit(5 + 7/12, "feet"),
  50515. name: "Front",
  50516. image: {
  50517. source: "./media/characters/callow/front.svg",
  50518. extra: 1482/1304,
  50519. bottom: 23/1505
  50520. }
  50521. },
  50522. back: {
  50523. height: math.unit(5 + 7/12, "feet"),
  50524. name: "Back",
  50525. image: {
  50526. source: "./media/characters/callow/back.svg",
  50527. extra: 1484/1296,
  50528. bottom: 25/1509
  50529. }
  50530. },
  50531. },
  50532. [
  50533. {
  50534. name: "Micro",
  50535. height: math.unit(3, "inches"),
  50536. default: true
  50537. },
  50538. {
  50539. name: "Normal",
  50540. height: math.unit(5 + 7/12, "feet")
  50541. },
  50542. ]
  50543. ))
  50544. characterMakers.push(() => makeCharacter(
  50545. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50546. {
  50547. front: {
  50548. height: math.unit(6 + 2/12, "feet"),
  50549. name: "Front",
  50550. image: {
  50551. source: "./media/characters/natel/front.svg",
  50552. extra: 1833/1692,
  50553. bottom: 166/1999
  50554. }
  50555. },
  50556. },
  50557. [
  50558. {
  50559. name: "Normal",
  50560. height: math.unit(6 + 2/12, "feet"),
  50561. default: true
  50562. },
  50563. ]
  50564. ))
  50565. characterMakers.push(() => makeCharacter(
  50566. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50567. {
  50568. front: {
  50569. height: math.unit(1.75, "meters"),
  50570. name: "Front",
  50571. image: {
  50572. source: "./media/characters/misu/front.svg",
  50573. extra: 1690/1558,
  50574. bottom: 234/1924
  50575. }
  50576. },
  50577. back: {
  50578. height: math.unit(1.75, "meters"),
  50579. name: "Back",
  50580. image: {
  50581. source: "./media/characters/misu/back.svg",
  50582. extra: 1762/1618,
  50583. bottom: 146/1908
  50584. }
  50585. },
  50586. frontNude: {
  50587. height: math.unit(1.75, "meters"),
  50588. name: "Front (Nude)",
  50589. image: {
  50590. source: "./media/characters/misu/front-nude.svg",
  50591. extra: 1690/1558,
  50592. bottom: 234/1924
  50593. }
  50594. },
  50595. backNude: {
  50596. height: math.unit(1.75, "meters"),
  50597. name: "Back (Nude)",
  50598. image: {
  50599. source: "./media/characters/misu/back-nude.svg",
  50600. extra: 1762/1618,
  50601. bottom: 146/1908
  50602. }
  50603. },
  50604. frontErect: {
  50605. height: math.unit(1.75, "meters"),
  50606. name: "Front (Erect)",
  50607. image: {
  50608. source: "./media/characters/misu/front-erect.svg",
  50609. extra: 1690/1558,
  50610. bottom: 234/1924
  50611. }
  50612. },
  50613. maw: {
  50614. height: math.unit(0.47, "meters"),
  50615. name: "Maw",
  50616. image: {
  50617. source: "./media/characters/misu/maw.svg"
  50618. }
  50619. },
  50620. head: {
  50621. height: math.unit(0.35, "meters"),
  50622. name: "Head",
  50623. image: {
  50624. source: "./media/characters/misu/head.svg"
  50625. }
  50626. },
  50627. rear: {
  50628. height: math.unit(0.47, "meters"),
  50629. name: "Rear",
  50630. image: {
  50631. source: "./media/characters/misu/rear.svg"
  50632. }
  50633. },
  50634. },
  50635. [
  50636. {
  50637. name: "Normal",
  50638. height: math.unit(1.75, "meters")
  50639. },
  50640. {
  50641. name: "Not good for the people",
  50642. height: math.unit(42, "meters")
  50643. },
  50644. {
  50645. name: "Not good for the neighborhood",
  50646. height: math.unit(135, "meters")
  50647. },
  50648. {
  50649. name: "Bit bigger problem",
  50650. height: math.unit(380, "meters"),
  50651. default: true
  50652. },
  50653. {
  50654. name: "Not good for the city",
  50655. height: math.unit(1.5, "km")
  50656. },
  50657. {
  50658. name: "Not good for the county",
  50659. height: math.unit(5.5, "km")
  50660. },
  50661. {
  50662. name: "Not good for the state",
  50663. height: math.unit(25, "km")
  50664. },
  50665. {
  50666. name: "Not good for the country",
  50667. height: math.unit(125, "km")
  50668. },
  50669. {
  50670. name: "Not good for the continent",
  50671. height: math.unit(2100, "km")
  50672. },
  50673. {
  50674. name: "Not good for the planet",
  50675. height: math.unit(35000, "km")
  50676. },
  50677. {
  50678. name: "Just no",
  50679. height: math.unit(8.5e18, "km")
  50680. },
  50681. ]
  50682. ))
  50683. characterMakers.push(() => makeCharacter(
  50684. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50685. {
  50686. front: {
  50687. height: math.unit(6.5, "feet"),
  50688. name: "Front",
  50689. image: {
  50690. source: "./media/characters/poppy/front.svg",
  50691. extra: 1878/1812,
  50692. bottom: 43/1921
  50693. }
  50694. },
  50695. feet: {
  50696. height: math.unit(1.06, "feet"),
  50697. name: "Feet",
  50698. image: {
  50699. source: "./media/characters/poppy/feet.svg",
  50700. extra: 1083/1083,
  50701. bottom: 87/1170
  50702. }
  50703. },
  50704. },
  50705. [
  50706. {
  50707. name: "Human",
  50708. height: math.unit(6.5, "feet")
  50709. },
  50710. {
  50711. name: "Default",
  50712. height: math.unit(300, "feet"),
  50713. default: true
  50714. },
  50715. {
  50716. name: "Huge",
  50717. height: math.unit(850, "feet")
  50718. },
  50719. {
  50720. name: "Mega",
  50721. height: math.unit(8000, "feet")
  50722. },
  50723. {
  50724. name: "Giga",
  50725. height: math.unit(300, "miles")
  50726. },
  50727. ]
  50728. ))
  50729. characterMakers.push(() => makeCharacter(
  50730. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50731. {
  50732. bipedal: {
  50733. height: math.unit(7, "feet"),
  50734. name: "Bipedal",
  50735. image: {
  50736. source: "./media/characters/zener/bipedal.svg",
  50737. extra: 874/805,
  50738. bottom: 109/983
  50739. }
  50740. },
  50741. quadrupedal: {
  50742. height: math.unit(4.64, "feet"),
  50743. name: "Quadrupedal",
  50744. image: {
  50745. source: "./media/characters/zener/quadrupedal.svg",
  50746. extra: 638/507,
  50747. bottom: 190/828
  50748. }
  50749. },
  50750. cock: {
  50751. height: math.unit(18, "inches"),
  50752. name: "Cock",
  50753. image: {
  50754. source: "./media/characters/zener/cock.svg"
  50755. }
  50756. },
  50757. },
  50758. [
  50759. {
  50760. name: "Normal",
  50761. height: math.unit(7, "feet"),
  50762. default: true
  50763. },
  50764. ]
  50765. ))
  50766. characterMakers.push(() => makeCharacter(
  50767. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50768. {
  50769. nude: {
  50770. height: math.unit(5 + 6/12, "feet"),
  50771. name: "Nude",
  50772. image: {
  50773. source: "./media/characters/charlie-dog/nude.svg",
  50774. extra: 768/734,
  50775. bottom: 26/794
  50776. }
  50777. },
  50778. dressed: {
  50779. height: math.unit(5 + 6/12, "feet"),
  50780. name: "Dressed",
  50781. image: {
  50782. source: "./media/characters/charlie-dog/dressed.svg",
  50783. extra: 768/734,
  50784. bottom: 26/794
  50785. }
  50786. },
  50787. },
  50788. [
  50789. {
  50790. name: "Normal",
  50791. height: math.unit(5 + 6/12, "feet"),
  50792. default: true
  50793. },
  50794. ]
  50795. ))
  50796. characterMakers.push(() => makeCharacter(
  50797. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50798. {
  50799. front: {
  50800. height: math.unit(6 + 4/12, "feet"),
  50801. name: "Front",
  50802. image: {
  50803. source: "./media/characters/ir'istrasz/front.svg",
  50804. extra: 1014/977,
  50805. bottom: 65/1079
  50806. }
  50807. },
  50808. back: {
  50809. height: math.unit(6 + 4/12, "feet"),
  50810. name: "Back",
  50811. image: {
  50812. source: "./media/characters/ir'istrasz/back.svg",
  50813. extra: 1024/992,
  50814. bottom: 34/1058
  50815. }
  50816. },
  50817. },
  50818. [
  50819. {
  50820. name: "Normal",
  50821. height: math.unit(6 + 4/12, "feet"),
  50822. default: true
  50823. },
  50824. ]
  50825. ))
  50826. characterMakers.push(() => makeCharacter(
  50827. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50828. {
  50829. front: {
  50830. height: math.unit(5 + 8/12, "feet"),
  50831. name: "Front",
  50832. image: {
  50833. source: "./media/characters/dee-ditto/front.svg",
  50834. extra: 1874/1785,
  50835. bottom: 68/1942
  50836. }
  50837. },
  50838. back: {
  50839. height: math.unit(5 + 8/12, "feet"),
  50840. name: "Back",
  50841. image: {
  50842. source: "./media/characters/dee-ditto/back.svg",
  50843. extra: 1870/1783,
  50844. bottom: 77/1947
  50845. }
  50846. },
  50847. },
  50848. [
  50849. {
  50850. name: "Normal",
  50851. height: math.unit(5 + 8/12, "feet"),
  50852. default: true
  50853. },
  50854. ]
  50855. ))
  50856. characterMakers.push(() => makeCharacter(
  50857. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50858. {
  50859. front: {
  50860. height: math.unit(7 + 6/12, "feet"),
  50861. name: "Front",
  50862. image: {
  50863. source: "./media/characters/fey/front.svg",
  50864. extra: 995/979,
  50865. bottom: 30/1025
  50866. }
  50867. },
  50868. back: {
  50869. height: math.unit(7 + 6/12, "feet"),
  50870. name: "Back",
  50871. image: {
  50872. source: "./media/characters/fey/back.svg",
  50873. extra: 1079/1008,
  50874. bottom: 5/1084
  50875. }
  50876. },
  50877. dressed: {
  50878. height: math.unit(7 + 6/12, "feet"),
  50879. name: "Dressed",
  50880. image: {
  50881. source: "./media/characters/fey/dressed.svg",
  50882. extra: 995/979,
  50883. bottom: 30/1025
  50884. }
  50885. },
  50886. },
  50887. [
  50888. {
  50889. name: "Normal",
  50890. height: math.unit(7 + 6/12, "feet"),
  50891. default: true
  50892. },
  50893. ]
  50894. ))
  50895. characterMakers.push(() => makeCharacter(
  50896. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50897. {
  50898. standing: {
  50899. height: math.unit(17, "feet"),
  50900. name: "Standing",
  50901. image: {
  50902. source: "./media/characters/aster/standing.svg",
  50903. extra: 1798/1598,
  50904. bottom: 117/1915
  50905. }
  50906. },
  50907. },
  50908. [
  50909. {
  50910. name: "Normal",
  50911. height: math.unit(17, "feet"),
  50912. default: true
  50913. },
  50914. {
  50915. name: "Homewrecker",
  50916. height: math.unit(95, "feet")
  50917. },
  50918. {
  50919. name: "Planet Devourer",
  50920. height: math.unit(1008000, "miles")
  50921. },
  50922. ]
  50923. ))
  50924. characterMakers.push(() => makeCharacter(
  50925. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50926. {
  50927. front: {
  50928. height: math.unit(6 + 5/12, "feet"),
  50929. weight: math.unit(265, "lb"),
  50930. name: "Front",
  50931. image: {
  50932. source: "./media/characters/devon-childs/front.svg",
  50933. extra: 1795/1721,
  50934. bottom: 41/1836
  50935. }
  50936. },
  50937. side: {
  50938. height: math.unit(6 + 5/12, "feet"),
  50939. weight: math.unit(265, "lb"),
  50940. name: "Side",
  50941. image: {
  50942. source: "./media/characters/devon-childs/side.svg",
  50943. extra: 1812/1738,
  50944. bottom: 30/1842
  50945. }
  50946. },
  50947. back: {
  50948. height: math.unit(6 + 5/12, "feet"),
  50949. weight: math.unit(265, "lb"),
  50950. name: "Back",
  50951. image: {
  50952. source: "./media/characters/devon-childs/back.svg",
  50953. extra: 1808/1735,
  50954. bottom: 23/1831
  50955. }
  50956. },
  50957. hand: {
  50958. height: math.unit(1.464, "feet"),
  50959. name: "Hand",
  50960. image: {
  50961. source: "./media/characters/devon-childs/hand.svg"
  50962. }
  50963. },
  50964. foot: {
  50965. height: math.unit(1.6, "feet"),
  50966. name: "Foot",
  50967. image: {
  50968. source: "./media/characters/devon-childs/foot.svg"
  50969. }
  50970. },
  50971. },
  50972. [
  50973. {
  50974. name: "Micro",
  50975. height: math.unit(7, "cm")
  50976. },
  50977. {
  50978. name: "Normal",
  50979. height: math.unit(6 + 5/12, "feet"),
  50980. default: true
  50981. },
  50982. {
  50983. name: "Macro",
  50984. height: math.unit(154, "feet")
  50985. },
  50986. ]
  50987. ))
  50988. characterMakers.push(() => makeCharacter(
  50989. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50990. {
  50991. front: {
  50992. height: math.unit(6, "feet"),
  50993. weight: math.unit(180, "lb"),
  50994. name: "Front",
  50995. image: {
  50996. source: "./media/characters/lydemox-vir/front.svg",
  50997. extra: 1632/1435,
  50998. bottom: 58/1690
  50999. }
  51000. },
  51001. frontSFW: {
  51002. height: math.unit(6, "feet"),
  51003. weight: math.unit(180, "lb"),
  51004. name: "Front (SFW)",
  51005. image: {
  51006. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51007. extra: 1632/1435,
  51008. bottom: 58/1690
  51009. }
  51010. },
  51011. back: {
  51012. height: math.unit(6, "feet"),
  51013. weight: math.unit(180, "lb"),
  51014. name: "Back",
  51015. image: {
  51016. source: "./media/characters/lydemox-vir/back.svg",
  51017. extra: 1593/1408,
  51018. bottom: 31/1624
  51019. }
  51020. },
  51021. paw: {
  51022. height: math.unit(1.85, "feet"),
  51023. name: "Paw",
  51024. image: {
  51025. source: "./media/characters/lydemox-vir/paw.svg"
  51026. }
  51027. },
  51028. dick: {
  51029. height: math.unit(1.8, "feet"),
  51030. name: "Dick",
  51031. image: {
  51032. source: "./media/characters/lydemox-vir/dick.svg"
  51033. }
  51034. },
  51035. },
  51036. [
  51037. {
  51038. name: "Macro",
  51039. height: math.unit(100, "feet"),
  51040. default: true
  51041. },
  51042. {
  51043. name: "Teramacro",
  51044. height: math.unit(1, "earth")
  51045. },
  51046. {
  51047. name: "Planetary",
  51048. height: math.unit(20, "earths")
  51049. },
  51050. ]
  51051. ))
  51052. characterMakers.push(() => makeCharacter(
  51053. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51054. {
  51055. front: {
  51056. height: math.unit(15 + 8/12, "feet"),
  51057. weight: math.unit(1237, "kg"),
  51058. name: "Front",
  51059. image: {
  51060. source: "./media/characters/mia/front.svg",
  51061. extra: 1573/1446,
  51062. bottom: 58/1631
  51063. }
  51064. },
  51065. },
  51066. [
  51067. {
  51068. name: "Small",
  51069. height: math.unit(9 + 5/12, "feet")
  51070. },
  51071. {
  51072. name: "Normal",
  51073. height: math.unit(15 + 8/12, "feet"),
  51074. default: true
  51075. },
  51076. ]
  51077. ))
  51078. characterMakers.push(() => makeCharacter(
  51079. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51080. {
  51081. front: {
  51082. height: math.unit(10 + 6/12, "feet"),
  51083. weight: math.unit(1.3, "tons"),
  51084. name: "Front",
  51085. image: {
  51086. source: "./media/characters/mr-graves/front.svg",
  51087. extra: 1779/1695,
  51088. bottom: 198/1977
  51089. }
  51090. },
  51091. },
  51092. [
  51093. {
  51094. name: "Normal",
  51095. height: math.unit(10 + 6 /12, "feet"),
  51096. default: true
  51097. },
  51098. ]
  51099. ))
  51100. characterMakers.push(() => makeCharacter(
  51101. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51102. {
  51103. dressedFront: {
  51104. height: math.unit(5 + 8/12, "feet"),
  51105. weight: math.unit(125, "lb"),
  51106. name: "Dressed (Front)",
  51107. image: {
  51108. source: "./media/characters/jess/dressed-front.svg",
  51109. extra: 1176/1152,
  51110. bottom: 42/1218
  51111. }
  51112. },
  51113. dressedSide: {
  51114. height: math.unit(5 + 8/12, "feet"),
  51115. weight: math.unit(125, "lb"),
  51116. name: "Dressed (Side)",
  51117. image: {
  51118. source: "./media/characters/jess/dressed-side.svg",
  51119. extra: 1204/1190,
  51120. bottom: 6/1210
  51121. }
  51122. },
  51123. nudeFront: {
  51124. height: math.unit(5 + 8/12, "feet"),
  51125. weight: math.unit(125, "lb"),
  51126. name: "Nude (Front)",
  51127. image: {
  51128. source: "./media/characters/jess/nude-front.svg",
  51129. extra: 1176/1152,
  51130. bottom: 42/1218
  51131. }
  51132. },
  51133. nudeSide: {
  51134. height: math.unit(5 + 8/12, "feet"),
  51135. weight: math.unit(125, "lb"),
  51136. name: "Nude (Side)",
  51137. image: {
  51138. source: "./media/characters/jess/nude-side.svg",
  51139. extra: 1204/1190,
  51140. bottom: 6/1210
  51141. }
  51142. },
  51143. organsFront: {
  51144. height: math.unit(2.83799342105, "feet"),
  51145. name: "Organs (Front)",
  51146. image: {
  51147. source: "./media/characters/jess/organs-front.svg"
  51148. }
  51149. },
  51150. organsSide: {
  51151. height: math.unit(2.64225290474, "feet"),
  51152. name: "Organs (Side)",
  51153. image: {
  51154. source: "./media/characters/jess/organs-side.svg"
  51155. }
  51156. },
  51157. digestiveTractFront: {
  51158. height: math.unit(2.8106580871, "feet"),
  51159. name: "Digestive Tract (Front)",
  51160. image: {
  51161. source: "./media/characters/jess/digestive-tract-front.svg"
  51162. }
  51163. },
  51164. digestiveTractSide: {
  51165. height: math.unit(2.54365045014, "feet"),
  51166. name: "Digestive Tract (Side)",
  51167. image: {
  51168. source: "./media/characters/jess/digestive-tract-side.svg"
  51169. }
  51170. },
  51171. respiratorySystemFront: {
  51172. height: math.unit(1.11196233456, "feet"),
  51173. name: "Respiratory System (Front)",
  51174. image: {
  51175. source: "./media/characters/jess/respiratory-system-front.svg"
  51176. }
  51177. },
  51178. respiratorySystemSide: {
  51179. height: math.unit(0.89327966297, "feet"),
  51180. name: "Respiratory System (Side)",
  51181. image: {
  51182. source: "./media/characters/jess/respiratory-system-side.svg"
  51183. }
  51184. },
  51185. urinaryTractFront: {
  51186. height: math.unit(1.16126356186, "feet"),
  51187. name: "Urinary Tract (Front)",
  51188. image: {
  51189. source: "./media/characters/jess/urinary-tract-front.svg"
  51190. }
  51191. },
  51192. urinaryTractSide: {
  51193. height: math.unit(1.20910039627, "feet"),
  51194. name: "Urinary Tract (Side)",
  51195. image: {
  51196. source: "./media/characters/jess/urinary-tract-side.svg"
  51197. }
  51198. },
  51199. reproductiveOrgansFront: {
  51200. height: math.unit(0.48422591566, "feet"),
  51201. name: "Reproductive Organs (Front)",
  51202. image: {
  51203. source: "./media/characters/jess/reproductive-organs-front.svg"
  51204. }
  51205. },
  51206. reproductiveOrgansSide: {
  51207. height: math.unit(0.61553314481, "feet"),
  51208. name: "Reproductive Organs (Side)",
  51209. image: {
  51210. source: "./media/characters/jess/reproductive-organs-side.svg"
  51211. }
  51212. },
  51213. breastsFront: {
  51214. height: math.unit(0.47690395121, "feet"),
  51215. name: "Breasts (Front)",
  51216. image: {
  51217. source: "./media/characters/jess/breasts-front.svg"
  51218. }
  51219. },
  51220. breastsSide: {
  51221. height: math.unit(0.30556998307, "feet"),
  51222. name: "Breasts (Side)",
  51223. image: {
  51224. source: "./media/characters/jess/breasts-side.svg"
  51225. }
  51226. },
  51227. heartFront: {
  51228. height: math.unit(0.53011022622, "feet"),
  51229. name: "Heart (Front)",
  51230. image: {
  51231. source: "./media/characters/jess/heart-front.svg"
  51232. }
  51233. },
  51234. heartSide: {
  51235. height: math.unit(0.51790695213, "feet"),
  51236. name: "Heart (Side)",
  51237. image: {
  51238. source: "./media/characters/jess/heart-side.svg"
  51239. }
  51240. },
  51241. earsAndNoseFront: {
  51242. height: math.unit(0.29385483995, "feet"),
  51243. name: "Ears and Nose (Front)",
  51244. image: {
  51245. source: "./media/characters/jess/ears-and-nose-front.svg"
  51246. }
  51247. },
  51248. earsAndNoseSide: {
  51249. height: math.unit(0.18109658741, "feet"),
  51250. name: "Ears and Nose (Side)",
  51251. image: {
  51252. source: "./media/characters/jess/ears-and-nose-side.svg"
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Normal",
  51259. height: math.unit(5 + 8/12, "feet"),
  51260. default: true
  51261. },
  51262. ]
  51263. ))
  51264. characterMakers.push(() => makeCharacter(
  51265. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51266. {
  51267. front: {
  51268. height: math.unit(6, "feet"),
  51269. weight: math.unit(6.64467e-7, "grams"),
  51270. name: "Front",
  51271. image: {
  51272. source: "./media/characters/wimpering/front.svg",
  51273. extra: 597/587,
  51274. bottom: 34/631
  51275. }
  51276. },
  51277. },
  51278. [
  51279. {
  51280. name: "Micro",
  51281. height: math.unit(0.4, "mm"),
  51282. default: true
  51283. },
  51284. ]
  51285. ))
  51286. characterMakers.push(() => makeCharacter(
  51287. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51288. {
  51289. front: {
  51290. height: math.unit(5 + 2/12, "feet"),
  51291. weight: math.unit(110, "lb"),
  51292. name: "Front",
  51293. image: {
  51294. source: "./media/characters/keltre/front.svg",
  51295. extra: 1099/1057,
  51296. bottom: 22/1121
  51297. }
  51298. },
  51299. back: {
  51300. height: math.unit(5 + 2/12, "feet"),
  51301. weight: math.unit(110, "lb"),
  51302. name: "Back",
  51303. image: {
  51304. source: "./media/characters/keltre/back.svg",
  51305. extra: 1095/1053,
  51306. bottom: 17/1112
  51307. }
  51308. },
  51309. dressed: {
  51310. height: math.unit(5 + 2/12, "feet"),
  51311. weight: math.unit(110, "lb"),
  51312. name: "Dressed",
  51313. image: {
  51314. source: "./media/characters/keltre/dressed.svg",
  51315. extra: 1099/1057,
  51316. bottom: 22/1121
  51317. }
  51318. },
  51319. winter: {
  51320. height: math.unit(5 + 2/12, "feet"),
  51321. weight: math.unit(110, "lb"),
  51322. name: "Winter",
  51323. image: {
  51324. source: "./media/characters/keltre/winter.svg",
  51325. extra: 1099/1057,
  51326. bottom: 22/1121
  51327. }
  51328. },
  51329. head: {
  51330. height: math.unit(1.61 * 0.86, "feet"),
  51331. name: "Head",
  51332. image: {
  51333. source: "./media/characters/keltre/head.svg",
  51334. extra: 534/421,
  51335. bottom: 0/534
  51336. }
  51337. },
  51338. hand: {
  51339. height: math.unit(1.3 * 0.86, "feet"),
  51340. name: "Hand",
  51341. image: {
  51342. source: "./media/characters/keltre/hand.svg"
  51343. }
  51344. },
  51345. foot: {
  51346. height: math.unit(1.8 * 0.86, "feet"),
  51347. name: "Foot",
  51348. image: {
  51349. source: "./media/characters/keltre/foot.svg"
  51350. }
  51351. },
  51352. },
  51353. [
  51354. {
  51355. name: "Fine",
  51356. height: math.unit(1, "inch")
  51357. },
  51358. {
  51359. name: "Dimnutive",
  51360. height: math.unit(4, "inches")
  51361. },
  51362. {
  51363. name: "Tiny",
  51364. height: math.unit(1, "foot")
  51365. },
  51366. {
  51367. name: "Small",
  51368. height: math.unit(3, "feet")
  51369. },
  51370. {
  51371. name: "Normal",
  51372. height: math.unit(5 + 2/12, "feet"),
  51373. default: true
  51374. },
  51375. ]
  51376. ))
  51377. characterMakers.push(() => makeCharacter(
  51378. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51379. {
  51380. front: {
  51381. height: math.unit(6 + 2/12, "feet"),
  51382. name: "Front",
  51383. image: {
  51384. source: "./media/characters/nox/front.svg",
  51385. extra: 1917/1830,
  51386. bottom: 74/1991
  51387. }
  51388. },
  51389. back: {
  51390. height: math.unit(6 + 2/12, "feet"),
  51391. name: "Back",
  51392. image: {
  51393. source: "./media/characters/nox/back.svg",
  51394. extra: 1896/1815,
  51395. bottom: 21/1917
  51396. }
  51397. },
  51398. head: {
  51399. height: math.unit(1.1, "feet"),
  51400. name: "Head",
  51401. image: {
  51402. source: "./media/characters/nox/head.svg",
  51403. extra: 874/704,
  51404. bottom: 0/874
  51405. }
  51406. },
  51407. tattoo: {
  51408. height: math.unit(0.729, "feet"),
  51409. name: "Tattoo",
  51410. image: {
  51411. source: "./media/characters/nox/tattoo.svg"
  51412. }
  51413. },
  51414. },
  51415. [
  51416. {
  51417. name: "Normal",
  51418. height: math.unit(6 + 2/12, "feet")
  51419. },
  51420. {
  51421. name: "Gigamacro",
  51422. height: math.unit(2, "earths"),
  51423. default: true
  51424. },
  51425. {
  51426. name: "Cosmic",
  51427. height: math.unit(867, "yottameters")
  51428. },
  51429. ]
  51430. ))
  51431. characterMakers.push(() => makeCharacter(
  51432. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51433. {
  51434. front: {
  51435. height: math.unit(6, "feet"),
  51436. weight: math.unit(150, "lb"),
  51437. name: "Front",
  51438. image: {
  51439. source: "./media/characters/caspian/front.svg",
  51440. extra: 1443/1359,
  51441. bottom: 0/1443
  51442. }
  51443. },
  51444. back: {
  51445. height: math.unit(6, "feet"),
  51446. weight: math.unit(150, "lb"),
  51447. name: "Back",
  51448. image: {
  51449. source: "./media/characters/caspian/back.svg",
  51450. extra: 1379/1309,
  51451. bottom: 0/1379
  51452. }
  51453. },
  51454. head: {
  51455. height: math.unit(0.9, "feet"),
  51456. name: "Head",
  51457. image: {
  51458. source: "./media/characters/caspian/head.svg",
  51459. extra: 692/492,
  51460. bottom: 0/692
  51461. }
  51462. },
  51463. headAlt: {
  51464. height: math.unit(0.95, "feet"),
  51465. name: "Head (Alt)",
  51466. image: {
  51467. source: "./media/characters/caspian/head-alt.svg",
  51468. extra: 668/508,
  51469. bottom: 0/668
  51470. }
  51471. },
  51472. hand: {
  51473. height: math.unit(0.8, "feet"),
  51474. name: "Hand",
  51475. image: {
  51476. source: "./media/characters/caspian/hand.svg"
  51477. }
  51478. },
  51479. paw: {
  51480. height: math.unit(0.95, "feet"),
  51481. name: "Paw",
  51482. image: {
  51483. source: "./media/characters/caspian/paw.svg"
  51484. }
  51485. },
  51486. },
  51487. [
  51488. {
  51489. name: "Normal",
  51490. height: math.unit(162, "feet"),
  51491. default: true
  51492. },
  51493. ]
  51494. ))
  51495. characterMakers.push(() => makeCharacter(
  51496. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51497. {
  51498. front: {
  51499. height: math.unit(6, "feet"),
  51500. name: "Front",
  51501. image: {
  51502. source: "./media/characters/myra-aisling/front.svg",
  51503. extra: 1268/1166,
  51504. bottom: 73/1341
  51505. }
  51506. },
  51507. back: {
  51508. height: math.unit(6, "feet"),
  51509. name: "Back",
  51510. image: {
  51511. source: "./media/characters/myra-aisling/back.svg",
  51512. extra: 1249/1149,
  51513. bottom: 79/1328
  51514. }
  51515. },
  51516. dressed: {
  51517. height: math.unit(6, "feet"),
  51518. name: "Dressed",
  51519. image: {
  51520. source: "./media/characters/myra-aisling/dressed.svg",
  51521. extra: 1290/1189,
  51522. bottom: 47/1337
  51523. }
  51524. },
  51525. hand: {
  51526. height: math.unit(1.1, "feet"),
  51527. name: "Hand",
  51528. image: {
  51529. source: "./media/characters/myra-aisling/hand.svg"
  51530. }
  51531. },
  51532. paw: {
  51533. height: math.unit(1.23, "feet"),
  51534. name: "Paw",
  51535. image: {
  51536. source: "./media/characters/myra-aisling/paw.svg"
  51537. }
  51538. },
  51539. },
  51540. [
  51541. {
  51542. name: "Normal",
  51543. height: math.unit(160, "feet"),
  51544. default: true
  51545. },
  51546. ]
  51547. ))
  51548. characterMakers.push(() => makeCharacter(
  51549. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51550. {
  51551. front: {
  51552. height: math.unit(6, "feet"),
  51553. name: "Front",
  51554. image: {
  51555. source: "./media/characters/tenley-sidero/front.svg",
  51556. extra: 1365/1276,
  51557. bottom: 47/1412
  51558. }
  51559. },
  51560. back: {
  51561. height: math.unit(6, "feet"),
  51562. name: "Back",
  51563. image: {
  51564. source: "./media/characters/tenley-sidero/back.svg",
  51565. extra: 1383/1283,
  51566. bottom: 35/1418
  51567. }
  51568. },
  51569. dressed: {
  51570. height: math.unit(6, "feet"),
  51571. name: "Dressed",
  51572. image: {
  51573. source: "./media/characters/tenley-sidero/dressed.svg",
  51574. extra: 1364/1275,
  51575. bottom: 42/1406
  51576. }
  51577. },
  51578. head: {
  51579. height: math.unit(1.47, "feet"),
  51580. name: "Head",
  51581. image: {
  51582. source: "./media/characters/tenley-sidero/head.svg",
  51583. extra: 610/490,
  51584. bottom: 0/610
  51585. }
  51586. },
  51587. },
  51588. [
  51589. {
  51590. name: "Normal",
  51591. height: math.unit(154, "feet"),
  51592. default: true
  51593. },
  51594. ]
  51595. ))
  51596. characterMakers.push(() => makeCharacter(
  51597. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51598. {
  51599. front: {
  51600. height: math.unit(5, "inches"),
  51601. name: "Front",
  51602. image: {
  51603. source: "./media/characters/mallory/front.svg",
  51604. extra: 1919/1678,
  51605. bottom: 29/1948
  51606. }
  51607. },
  51608. hand: {
  51609. height: math.unit(0.73, "inches"),
  51610. name: "Hand",
  51611. image: {
  51612. source: "./media/characters/mallory/hand.svg"
  51613. }
  51614. },
  51615. paw: {
  51616. height: math.unit(0.68, "inches"),
  51617. name: "Paw",
  51618. image: {
  51619. source: "./media/characters/mallory/paw.svg"
  51620. }
  51621. },
  51622. },
  51623. [
  51624. {
  51625. name: "Small",
  51626. height: math.unit(5, "inches"),
  51627. default: true
  51628. },
  51629. ]
  51630. ))
  51631. characterMakers.push(() => makeCharacter(
  51632. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51633. {
  51634. naked: {
  51635. height: math.unit(6, "feet"),
  51636. name: "Naked",
  51637. image: {
  51638. source: "./media/characters/mab/naked.svg",
  51639. extra: 1855/1757,
  51640. bottom: 208/2063
  51641. }
  51642. },
  51643. outside: {
  51644. height: math.unit(6, "feet"),
  51645. name: "Outside",
  51646. image: {
  51647. source: "./media/characters/mab/outside.svg",
  51648. extra: 1855/1757,
  51649. bottom: 208/2063
  51650. }
  51651. },
  51652. party: {
  51653. height: math.unit(6, "feet"),
  51654. name: "Party",
  51655. image: {
  51656. source: "./media/characters/mab/party.svg",
  51657. extra: 1855/1757,
  51658. bottom: 208/2063
  51659. }
  51660. },
  51661. },
  51662. [
  51663. {
  51664. name: "Normal",
  51665. height: math.unit(165, "feet"),
  51666. default: true
  51667. },
  51668. ]
  51669. ))
  51670. characterMakers.push(() => makeCharacter(
  51671. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51672. {
  51673. feral: {
  51674. height: math.unit(12, "feet"),
  51675. weight: math.unit(20000, "lb"),
  51676. name: "Side",
  51677. image: {
  51678. source: "./media/characters/winter/feral.svg",
  51679. extra: 1286/943,
  51680. bottom: 112/1398
  51681. },
  51682. form: "feral",
  51683. default: true
  51684. },
  51685. feralNsfw: {
  51686. height: math.unit(12, "feet"),
  51687. weight: math.unit(20000, "lb"),
  51688. name: "Side (NSFW)",
  51689. image: {
  51690. source: "./media/characters/winter/feral-nsfw.svg",
  51691. extra: 1286/943,
  51692. bottom: 112/1398
  51693. },
  51694. form: "feral"
  51695. },
  51696. dick: {
  51697. height: math.unit(3.79, "feet"),
  51698. name: "Dick",
  51699. image: {
  51700. source: "./media/characters/winter/dick.svg"
  51701. },
  51702. form: "feral"
  51703. },
  51704. anthro: {
  51705. height: math.unit(12, "feet"),
  51706. weight: math.unit(10, "tons"),
  51707. name: "Anthro",
  51708. image: {
  51709. source: "./media/characters/winter/anthro.svg",
  51710. extra: 1701/1553,
  51711. bottom: 64/1765
  51712. },
  51713. form: "anthro",
  51714. default: true
  51715. },
  51716. },
  51717. [
  51718. {
  51719. name: "Big",
  51720. height: math.unit(12, "feet"),
  51721. default: true,
  51722. form: "feral"
  51723. },
  51724. {
  51725. name: "Big",
  51726. height: math.unit(12, "feet"),
  51727. default: true,
  51728. form: "anthro"
  51729. },
  51730. ],
  51731. {
  51732. "feral": {
  51733. name: "Feral",
  51734. default: true
  51735. },
  51736. "anthro": {
  51737. name: "Anthro"
  51738. }
  51739. }
  51740. ))
  51741. characterMakers.push(() => makeCharacter(
  51742. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51743. {
  51744. front: {
  51745. height: math.unit(4.1, "inches"),
  51746. name: "Front",
  51747. image: {
  51748. source: "./media/characters/alto/front.svg",
  51749. extra: 736/627,
  51750. bottom: 90/826
  51751. }
  51752. },
  51753. },
  51754. [
  51755. {
  51756. name: "Normal",
  51757. height: math.unit(4.1, "inches"),
  51758. default: true
  51759. },
  51760. ]
  51761. ))
  51762. characterMakers.push(() => makeCharacter(
  51763. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51764. {
  51765. sitting: {
  51766. height: math.unit(3, "feet"),
  51767. name: "Sitting",
  51768. image: {
  51769. source: "./media/characters/ratstrid-v/sitting.svg",
  51770. extra: 355/310,
  51771. bottom: 136/491
  51772. }
  51773. },
  51774. },
  51775. [
  51776. {
  51777. name: "Normal",
  51778. height: math.unit(3, "feet"),
  51779. default: true
  51780. },
  51781. ]
  51782. ))
  51783. characterMakers.push(() => makeCharacter(
  51784. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51785. {
  51786. back: {
  51787. height: math.unit(6, "feet"),
  51788. weight: math.unit(450, "lb"),
  51789. name: "Back",
  51790. image: {
  51791. source: "./media/characters/siz/back.svg",
  51792. extra: 1449/1274,
  51793. bottom: 13/1462
  51794. }
  51795. },
  51796. },
  51797. [
  51798. {
  51799. name: "Smallest",
  51800. height: math.unit(18 + 3/12, "feet")
  51801. },
  51802. {
  51803. name: "Modest",
  51804. height: math.unit(56 + 8/12, "feet"),
  51805. default: true
  51806. },
  51807. {
  51808. name: "Largest",
  51809. height: math.unit(3590, "feet")
  51810. },
  51811. ]
  51812. ))
  51813. characterMakers.push(() => makeCharacter(
  51814. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51815. {
  51816. front: {
  51817. height: math.unit(5 + 9/12, "feet"),
  51818. weight: math.unit(150, "lb"),
  51819. name: "Front",
  51820. image: {
  51821. source: "./media/characters/ven/front.svg",
  51822. extra: 1372/1320,
  51823. bottom: 73/1445
  51824. }
  51825. },
  51826. side: {
  51827. height: math.unit(5 + 9/12, "feet"),
  51828. weight: math.unit(1150, "lb"),
  51829. name: "Side",
  51830. image: {
  51831. source: "./media/characters/ven/side.svg",
  51832. extra: 1119/1070,
  51833. bottom: 42/1161
  51834. },
  51835. default: true
  51836. },
  51837. },
  51838. [
  51839. {
  51840. name: "Normal",
  51841. height: math.unit(5 + 9/12, "feet"),
  51842. default: true
  51843. },
  51844. ]
  51845. ))
  51846. characterMakers.push(() => makeCharacter(
  51847. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51848. {
  51849. front: {
  51850. height: math.unit(12, "feet"),
  51851. weight: math.unit(1000, "kg"),
  51852. name: "Front",
  51853. image: {
  51854. source: "./media/characters/maple/front.svg",
  51855. extra: 1193/1081,
  51856. bottom: 22/1215
  51857. }
  51858. },
  51859. },
  51860. [
  51861. {
  51862. name: "Compressed",
  51863. height: math.unit(7, "feet")
  51864. },
  51865. {
  51866. name: "Normal",
  51867. height: math.unit(12, "feet"),
  51868. default: true
  51869. },
  51870. ]
  51871. ))
  51872. characterMakers.push(() => makeCharacter(
  51873. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51874. {
  51875. front: {
  51876. height: math.unit(9, "feet"),
  51877. weight: math.unit(1500, "lb"),
  51878. name: "Front",
  51879. image: {
  51880. source: "./media/characters/nora/front.svg",
  51881. extra: 1348/1286,
  51882. bottom: 218/1566
  51883. }
  51884. },
  51885. erect: {
  51886. height: math.unit(9, "feet"),
  51887. weight: math.unit(11500, "lb"),
  51888. name: "Erect",
  51889. image: {
  51890. source: "./media/characters/nora/erect.svg",
  51891. extra: 1488/1433,
  51892. bottom: 133/1621
  51893. }
  51894. },
  51895. },
  51896. [
  51897. {
  51898. name: "Normal",
  51899. height: math.unit(9, "feet"),
  51900. default: true
  51901. },
  51902. ]
  51903. ))
  51904. characterMakers.push(() => makeCharacter(
  51905. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51906. {
  51907. front: {
  51908. height: math.unit(25, "feet"),
  51909. weight: math.unit(27500, "lb"),
  51910. name: "Front",
  51911. image: {
  51912. source: "./media/characters/north-caudin/front.svg",
  51913. extra: 1184/1082,
  51914. bottom: 23/1207
  51915. }
  51916. },
  51917. },
  51918. [
  51919. {
  51920. name: "Compressed",
  51921. height: math.unit(10, "feet")
  51922. },
  51923. {
  51924. name: "Normal",
  51925. height: math.unit(25, "feet"),
  51926. default: true
  51927. },
  51928. ]
  51929. ))
  51930. characterMakers.push(() => makeCharacter(
  51931. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51932. {
  51933. front: {
  51934. height: math.unit(9, "feet"),
  51935. weight: math.unit(1250, "lb"),
  51936. name: "Front",
  51937. image: {
  51938. source: "./media/characters/merrian/front.svg",
  51939. extra: 2393/2304,
  51940. bottom: 40/2433
  51941. }
  51942. },
  51943. },
  51944. [
  51945. {
  51946. name: "Normal",
  51947. height: math.unit(9, "feet"),
  51948. default: true
  51949. },
  51950. ]
  51951. ))
  51952. characterMakers.push(() => makeCharacter(
  51953. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51954. {
  51955. front: {
  51956. height: math.unit(9, "feet"),
  51957. weight: math.unit(1000, "lb"),
  51958. name: "Front",
  51959. image: {
  51960. source: "./media/characters/hazel/front.svg",
  51961. extra: 2351/2298,
  51962. bottom: 38/2389
  51963. }
  51964. },
  51965. },
  51966. [
  51967. {
  51968. name: "Normal",
  51969. height: math.unit(9, "feet"),
  51970. default: true
  51971. },
  51972. ]
  51973. ))
  51974. characterMakers.push(() => makeCharacter(
  51975. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51976. {
  51977. front: {
  51978. height: math.unit(13, "feet"),
  51979. weight: math.unit(3200, "lb"),
  51980. name: "Front",
  51981. image: {
  51982. source: "./media/characters/emma/front.svg",
  51983. extra: 2263/2029,
  51984. bottom: 68/2331
  51985. }
  51986. },
  51987. },
  51988. [
  51989. {
  51990. name: "Normal",
  51991. height: math.unit(13, "feet"),
  51992. default: true
  51993. },
  51994. ]
  51995. ))
  51996. characterMakers.push(() => makeCharacter(
  51997. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51998. {
  51999. front: {
  52000. height: math.unit(11 + 9/12, "feet"),
  52001. weight: math.unit(2500, "lb"),
  52002. name: "Front",
  52003. image: {
  52004. source: "./media/characters/ilumina/front.svg",
  52005. extra: 2248/2209,
  52006. bottom: 164/2412
  52007. }
  52008. },
  52009. },
  52010. [
  52011. {
  52012. name: "Normal",
  52013. height: math.unit(11 + 9/12, "feet"),
  52014. default: true
  52015. },
  52016. ]
  52017. ))
  52018. characterMakers.push(() => makeCharacter(
  52019. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52020. {
  52021. front: {
  52022. height: math.unit(8 + 10/12, "feet"),
  52023. weight: math.unit(1350, "lb"),
  52024. name: "Front",
  52025. image: {
  52026. source: "./media/characters/moonshine/front.svg",
  52027. extra: 2395/2288,
  52028. bottom: 40/2435
  52029. }
  52030. },
  52031. },
  52032. [
  52033. {
  52034. name: "Normal",
  52035. height: math.unit(8 + 10/12, "feet"),
  52036. default: true
  52037. },
  52038. ]
  52039. ))
  52040. characterMakers.push(() => makeCharacter(
  52041. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52042. {
  52043. front: {
  52044. height: math.unit(14, "feet"),
  52045. weight: math.unit(3400, "lb"),
  52046. name: "Front",
  52047. image: {
  52048. source: "./media/characters/aletia/front.svg",
  52049. extra: 1185/1052,
  52050. bottom: 21/1206
  52051. }
  52052. },
  52053. },
  52054. [
  52055. {
  52056. name: "Compressed",
  52057. height: math.unit(8, "feet")
  52058. },
  52059. {
  52060. name: "Normal",
  52061. height: math.unit(14, "feet"),
  52062. default: true
  52063. },
  52064. ]
  52065. ))
  52066. characterMakers.push(() => makeCharacter(
  52067. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52068. {
  52069. front: {
  52070. height: math.unit(17, "feet"),
  52071. weight: math.unit(6500, "lb"),
  52072. name: "Front",
  52073. image: {
  52074. source: "./media/characters/deidra/front.svg",
  52075. extra: 1201/1081,
  52076. bottom: 16/1217
  52077. }
  52078. },
  52079. },
  52080. [
  52081. {
  52082. name: "Compressed",
  52083. height: math.unit(9 + 6/12, "feet")
  52084. },
  52085. {
  52086. name: "Normal",
  52087. height: math.unit(17, "feet"),
  52088. default: true
  52089. },
  52090. ]
  52091. ))
  52092. characterMakers.push(() => makeCharacter(
  52093. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52094. {
  52095. front: {
  52096. height: math.unit(7 + 4/12, "feet"),
  52097. weight: math.unit(280, "lb"),
  52098. name: "Front",
  52099. image: {
  52100. source: "./media/characters/freki-yrmori/front.svg",
  52101. extra: 1286/1182,
  52102. bottom: 29/1315
  52103. }
  52104. },
  52105. maw: {
  52106. height: math.unit(0.9, "feet"),
  52107. name: "Maw",
  52108. image: {
  52109. source: "./media/characters/freki-yrmori/maw.svg"
  52110. }
  52111. },
  52112. },
  52113. [
  52114. {
  52115. name: "Normal",
  52116. height: math.unit(7 + 4/12, "feet"),
  52117. default: true
  52118. },
  52119. {
  52120. name: "Macro",
  52121. height: math.unit(38.5, "meters")
  52122. },
  52123. ]
  52124. ))
  52125. characterMakers.push(() => makeCharacter(
  52126. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52127. {
  52128. side: {
  52129. height: math.unit(47.2, "meters"),
  52130. weight: math.unit(10000, "tons"),
  52131. name: "Side",
  52132. image: {
  52133. source: "./media/characters/aetherios/side.svg",
  52134. extra: 2363/642,
  52135. bottom: 221/2584
  52136. }
  52137. },
  52138. top: {
  52139. height: math.unit(240, "meters"),
  52140. weight: math.unit(10000, "tons"),
  52141. name: "Top",
  52142. image: {
  52143. source: "./media/characters/aetherios/top.svg"
  52144. }
  52145. },
  52146. bottom: {
  52147. height: math.unit(240, "meters"),
  52148. weight: math.unit(10000, "tons"),
  52149. name: "Bottom",
  52150. image: {
  52151. source: "./media/characters/aetherios/bottom.svg"
  52152. }
  52153. },
  52154. head: {
  52155. height: math.unit(38.6, "meters"),
  52156. name: "Head",
  52157. image: {
  52158. source: "./media/characters/aetherios/head.svg",
  52159. extra: 1335/1112,
  52160. bottom: 0/1335
  52161. }
  52162. },
  52163. front: {
  52164. height: math.unit(29, "meters"),
  52165. name: "Front",
  52166. image: {
  52167. source: "./media/characters/aetherios/front.svg",
  52168. extra: 1266/953,
  52169. bottom: 158/1424
  52170. }
  52171. },
  52172. maw: {
  52173. height: math.unit(16.37, "meters"),
  52174. name: "Maw",
  52175. image: {
  52176. source: "./media/characters/aetherios/maw.svg",
  52177. extra: 748/637,
  52178. bottom: 0/748
  52179. },
  52180. extraAttributes: {
  52181. preyCapacity: {
  52182. name: "Capacity",
  52183. power: 3,
  52184. type: "volume",
  52185. base: math.unit(1000, "people")
  52186. },
  52187. tongueSize: {
  52188. name: "Tongue Size",
  52189. power: 2,
  52190. type: "area",
  52191. base: math.unit(21, "m^2")
  52192. }
  52193. }
  52194. },
  52195. forepaw: {
  52196. height: math.unit(18, "meters"),
  52197. name: "Forepaw",
  52198. image: {
  52199. source: "./media/characters/aetherios/forepaw.svg"
  52200. }
  52201. },
  52202. hindpaw: {
  52203. height: math.unit(23, "meters"),
  52204. name: "Hindpaw",
  52205. image: {
  52206. source: "./media/characters/aetherios/hindpaw.svg"
  52207. }
  52208. },
  52209. genitals: {
  52210. height: math.unit(42, "meters"),
  52211. name: "Genitals",
  52212. image: {
  52213. source: "./media/characters/aetherios/genitals.svg"
  52214. }
  52215. },
  52216. },
  52217. [
  52218. {
  52219. name: "Normal",
  52220. height: math.unit(47.2, "meters"),
  52221. default: true
  52222. },
  52223. {
  52224. name: "Macro",
  52225. height: math.unit(160, "meters")
  52226. },
  52227. {
  52228. name: "Mega",
  52229. height: math.unit(1.87, "km")
  52230. },
  52231. {
  52232. name: "Giga",
  52233. height: math.unit(40000, "km")
  52234. },
  52235. {
  52236. name: "Stellar",
  52237. height: math.unit(158000000, "km")
  52238. },
  52239. {
  52240. name: "Cosmic",
  52241. height: math.unit(9.46e12, "km")
  52242. },
  52243. ]
  52244. ))
  52245. characterMakers.push(() => makeCharacter(
  52246. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52247. {
  52248. front: {
  52249. height: math.unit(5 + 4/12, "feet"),
  52250. weight: math.unit(80, "lb"),
  52251. name: "Front",
  52252. image: {
  52253. source: "./media/characters/mizu-gieeg/front.svg",
  52254. extra: 850/709,
  52255. bottom: 52/902
  52256. }
  52257. },
  52258. back: {
  52259. height: math.unit(5 + 4/12, "feet"),
  52260. weight: math.unit(80, "lb"),
  52261. name: "Back",
  52262. image: {
  52263. source: "./media/characters/mizu-gieeg/back.svg",
  52264. extra: 882/745,
  52265. bottom: 25/907
  52266. }
  52267. },
  52268. },
  52269. [
  52270. {
  52271. name: "Normal",
  52272. height: math.unit(5 + 4/12, "feet"),
  52273. default: true
  52274. },
  52275. ]
  52276. ))
  52277. characterMakers.push(() => makeCharacter(
  52278. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52279. {
  52280. front: {
  52281. height: math.unit(6, "feet"),
  52282. name: "Front",
  52283. image: {
  52284. source: "./media/characters/roselle-st-papier/front.svg",
  52285. extra: 1430/1280,
  52286. bottom: 37/1467
  52287. }
  52288. },
  52289. back: {
  52290. height: math.unit(6, "feet"),
  52291. name: "Back",
  52292. image: {
  52293. source: "./media/characters/roselle-st-papier/back.svg",
  52294. extra: 1491/1296,
  52295. bottom: 23/1514
  52296. }
  52297. },
  52298. ear: {
  52299. height: math.unit(1.26, "feet"),
  52300. name: "Ear",
  52301. image: {
  52302. source: "./media/characters/roselle-st-papier/ear.svg"
  52303. }
  52304. },
  52305. },
  52306. [
  52307. {
  52308. name: "Normal",
  52309. height: math.unit(150, "feet"),
  52310. default: true
  52311. },
  52312. ]
  52313. ))
  52314. characterMakers.push(() => makeCharacter(
  52315. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52316. {
  52317. front: {
  52318. height: math.unit(1, "inches"),
  52319. name: "Front",
  52320. image: {
  52321. source: "./media/characters/valargent/front.svg",
  52322. extra: 1825/1694,
  52323. bottom: 62/1887
  52324. }
  52325. },
  52326. back: {
  52327. height: math.unit(1, "inches"),
  52328. name: "Back",
  52329. image: {
  52330. source: "./media/characters/valargent/back.svg",
  52331. extra: 1775/1682,
  52332. bottom: 88/1863
  52333. }
  52334. },
  52335. },
  52336. [
  52337. {
  52338. name: "Micro",
  52339. height: math.unit(1, "inch"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52346. {
  52347. front: {
  52348. height: math.unit(3.4, "meters"),
  52349. name: "Front",
  52350. image: {
  52351. source: "./media/characters/zarina/front.svg",
  52352. extra: 1733/1425,
  52353. bottom: 93/1826
  52354. }
  52355. },
  52356. squatting: {
  52357. height: math.unit(2.14, "meters"),
  52358. name: "Squatting",
  52359. image: {
  52360. source: "./media/characters/zarina/squatting.svg",
  52361. extra: 1073/788,
  52362. bottom: 63/1136
  52363. }
  52364. },
  52365. back: {
  52366. height: math.unit(2.14, "meters"),
  52367. name: "Back",
  52368. image: {
  52369. source: "./media/characters/zarina/back.svg",
  52370. extra: 1128/885,
  52371. bottom: 0/1128
  52372. }
  52373. },
  52374. },
  52375. [
  52376. {
  52377. name: "Normal",
  52378. height: math.unit(3.4, "meters"),
  52379. default: true
  52380. },
  52381. {
  52382. name: "Big",
  52383. height: math.unit(5, "meters")
  52384. },
  52385. {
  52386. name: "Macro",
  52387. height: math.unit(110, "meters")
  52388. },
  52389. ]
  52390. ))
  52391. characterMakers.push(() => makeCharacter(
  52392. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52393. {
  52394. front: {
  52395. height: math.unit(7, "feet"),
  52396. name: "Front",
  52397. image: {
  52398. source: "./media/characters/ventus-astro-fox/front.svg",
  52399. extra: 1792/1623,
  52400. bottom: 28/1820
  52401. }
  52402. },
  52403. back: {
  52404. height: math.unit(7, "feet"),
  52405. name: "Back",
  52406. image: {
  52407. source: "./media/characters/ventus-astro-fox/back.svg",
  52408. extra: 1789/1620,
  52409. bottom: 31/1820
  52410. }
  52411. },
  52412. outfit: {
  52413. height: math.unit(7, "feet"),
  52414. name: "Outfit",
  52415. image: {
  52416. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52417. extra: 1054/925,
  52418. bottom: 15/1069
  52419. }
  52420. },
  52421. head: {
  52422. height: math.unit(1.12, "feet"),
  52423. name: "Head",
  52424. image: {
  52425. source: "./media/characters/ventus-astro-fox/head.svg",
  52426. extra: 866/504,
  52427. bottom: 0/866
  52428. }
  52429. },
  52430. hand: {
  52431. height: math.unit(1, "feet"),
  52432. name: "Hand",
  52433. image: {
  52434. source: "./media/characters/ventus-astro-fox/hand.svg"
  52435. }
  52436. },
  52437. paw: {
  52438. height: math.unit(1.5, "feet"),
  52439. name: "Paw",
  52440. image: {
  52441. source: "./media/characters/ventus-astro-fox/paw.svg"
  52442. }
  52443. },
  52444. },
  52445. [
  52446. {
  52447. name: "Normal",
  52448. height: math.unit(7, "feet"),
  52449. default: true
  52450. },
  52451. {
  52452. name: "Macro",
  52453. height: math.unit(200, "feet")
  52454. },
  52455. {
  52456. name: "Cosmic",
  52457. height: math.unit(3, "universes")
  52458. },
  52459. ]
  52460. ))
  52461. characterMakers.push(() => makeCharacter(
  52462. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52463. {
  52464. front: {
  52465. height: math.unit(3, "meters"),
  52466. weight: math.unit(7000, "lb"),
  52467. name: "Front",
  52468. image: {
  52469. source: "./media/characters/core-t/front.svg",
  52470. extra: 5729/4941,
  52471. bottom: 1129/6858
  52472. }
  52473. },
  52474. },
  52475. [
  52476. {
  52477. name: "Big",
  52478. height: math.unit(3, "meters"),
  52479. default: true
  52480. },
  52481. ]
  52482. ))
  52483. characterMakers.push(() => makeCharacter(
  52484. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52485. {
  52486. normal: {
  52487. height: math.unit(6 + 6/12, "feet"),
  52488. weight: math.unit(275, "lb"),
  52489. name: "Front",
  52490. image: {
  52491. source: "./media/characters/cadbunny/normal.svg",
  52492. extra: 1129/947,
  52493. bottom: 93/1222
  52494. },
  52495. default: true,
  52496. form: "normal"
  52497. },
  52498. gigantamax: {
  52499. height: math.unit(26, "feet"),
  52500. weight: math.unit(16000, "lb"),
  52501. name: "Front",
  52502. image: {
  52503. source: "./media/characters/cadbunny/gigantamax.svg",
  52504. extra: 1133/944,
  52505. bottom: 90/1223
  52506. },
  52507. default: true,
  52508. form: "gigantamax"
  52509. },
  52510. },
  52511. [
  52512. {
  52513. name: "Normal",
  52514. height: math.unit(6 + 6/12, "feet"),
  52515. default: true,
  52516. form: "normal"
  52517. },
  52518. {
  52519. name: "Small",
  52520. height: math.unit(26, "feet"),
  52521. default: true,
  52522. form: "gigantamax"
  52523. },
  52524. {
  52525. name: "Large",
  52526. height: math.unit(78, "feet"),
  52527. form: "gigantamax"
  52528. },
  52529. ],
  52530. {
  52531. "normal": {
  52532. name: "Normal",
  52533. default: true
  52534. },
  52535. "gigantamax": {
  52536. name: "Gigantamax"
  52537. }
  52538. }
  52539. ))
  52540. characterMakers.push(() => makeCharacter(
  52541. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52542. {
  52543. anthroFront: {
  52544. height: math.unit(8, "feet"),
  52545. weight: math.unit(300, "lb"),
  52546. name: "Front",
  52547. image: {
  52548. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52549. extra: 1272/1176,
  52550. bottom: 53/1325
  52551. },
  52552. form: "anthro",
  52553. default: true
  52554. },
  52555. feralSide: {
  52556. height: math.unit(4, "feet"),
  52557. weight: math.unit(250, "lb"),
  52558. name: "Side",
  52559. image: {
  52560. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52561. extra: 731/621,
  52562. bottom: 0/731
  52563. },
  52564. form: "feral",
  52565. default: true
  52566. },
  52567. },
  52568. [
  52569. {
  52570. name: "Regular",
  52571. height: math.unit(8, "feet"),
  52572. form: "anthro"
  52573. },
  52574. {
  52575. name: "Macro",
  52576. height: math.unit(250, "feet"),
  52577. form: "anthro",
  52578. default: true
  52579. },
  52580. {
  52581. name: "Regular",
  52582. height: math.unit(4, "feet"),
  52583. form: "feral"
  52584. },
  52585. {
  52586. name: "Macro",
  52587. height: math.unit(125, "feet"),
  52588. form: "feral",
  52589. default: true
  52590. },
  52591. ],
  52592. {
  52593. "anthro": {
  52594. name: "Anthro",
  52595. default: true
  52596. },
  52597. "feral": {
  52598. name: "Feral",
  52599. },
  52600. }
  52601. ))
  52602. characterMakers.push(() => makeCharacter(
  52603. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52604. {
  52605. front: {
  52606. height: math.unit(11 + 10/12, "feet"),
  52607. weight: math.unit(1587, "kg"),
  52608. name: "Front",
  52609. image: {
  52610. source: "./media/characters/maple-javira-dragon/front.svg",
  52611. extra: 1136/744,
  52612. bottom: 73/1209
  52613. }
  52614. },
  52615. side: {
  52616. height: math.unit(11 + 10/12, "feet"),
  52617. weight: math.unit(1587, "kg"),
  52618. name: "Side",
  52619. image: {
  52620. source: "./media/characters/maple-javira-dragon/side.svg",
  52621. extra: 712/505,
  52622. bottom: 17/729
  52623. }
  52624. },
  52625. head: {
  52626. height: math.unit(8.05, "feet"),
  52627. name: "Head",
  52628. image: {
  52629. source: "./media/characters/maple-javira-dragon/head.svg",
  52630. extra: 1420/1344,
  52631. bottom: 0/1420
  52632. }
  52633. },
  52634. },
  52635. [
  52636. {
  52637. name: "Normal",
  52638. height: math.unit(11 + 10/12, "feet"),
  52639. default: true
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52645. {
  52646. front: {
  52647. height: math.unit(117, "cm"),
  52648. weight: math.unit(50, "kg"),
  52649. name: "Front",
  52650. image: {
  52651. source: "./media/characters/sonia-wyverntail/front.svg",
  52652. extra: 708/592,
  52653. bottom: 25/733
  52654. }
  52655. },
  52656. },
  52657. [
  52658. {
  52659. name: "Normal",
  52660. height: math.unit(117, "cm"),
  52661. default: true
  52662. },
  52663. ]
  52664. ))
  52665. characterMakers.push(() => makeCharacter(
  52666. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52667. {
  52668. front: {
  52669. height: math.unit(6 + 5/12, "feet"),
  52670. name: "Front",
  52671. image: {
  52672. source: "./media/characters/micah/front.svg",
  52673. extra: 1758/1546,
  52674. bottom: 214/1972
  52675. }
  52676. },
  52677. },
  52678. [
  52679. {
  52680. name: "Normal",
  52681. height: math.unit(6 + 5/12, "feet"),
  52682. default: true
  52683. },
  52684. ]
  52685. ))
  52686. characterMakers.push(() => makeCharacter(
  52687. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52688. {
  52689. front: {
  52690. height: math.unit(1.75, "meters"),
  52691. weight: math.unit(100, "kg"),
  52692. name: "Front",
  52693. image: {
  52694. source: "./media/characters/zarya/front.svg",
  52695. extra: 741/735,
  52696. bottom: 44/785
  52697. },
  52698. extraAttributes: {
  52699. "tailLength": {
  52700. name: "Tail Length",
  52701. power: 1,
  52702. type: "length",
  52703. base: math.unit(180, "cm")
  52704. },
  52705. "pawLength": {
  52706. name: "Paw Length",
  52707. power: 1,
  52708. type: "length",
  52709. base: math.unit(31, "cm")
  52710. },
  52711. }
  52712. },
  52713. side: {
  52714. height: math.unit(1.75, "meters"),
  52715. weight: math.unit(100, "kg"),
  52716. name: "Side",
  52717. image: {
  52718. source: "./media/characters/zarya/side.svg",
  52719. extra: 776/770,
  52720. bottom: 17/793
  52721. },
  52722. extraAttributes: {
  52723. "tailLength": {
  52724. name: "Tail Length",
  52725. power: 1,
  52726. type: "length",
  52727. base: math.unit(180, "cm")
  52728. },
  52729. "pawLength": {
  52730. name: "Paw Length",
  52731. power: 1,
  52732. type: "length",
  52733. base: math.unit(31, "cm")
  52734. },
  52735. }
  52736. },
  52737. back: {
  52738. height: math.unit(1.75, "meters"),
  52739. weight: math.unit(100, "kg"),
  52740. name: "Back",
  52741. image: {
  52742. source: "./media/characters/zarya/back.svg",
  52743. extra: 741/735,
  52744. bottom: 44/785
  52745. },
  52746. extraAttributes: {
  52747. "tailLength": {
  52748. name: "Tail Length",
  52749. power: 1,
  52750. type: "length",
  52751. base: math.unit(180, "cm")
  52752. },
  52753. "pawLength": {
  52754. name: "Paw Length",
  52755. power: 1,
  52756. type: "length",
  52757. base: math.unit(31, "cm")
  52758. },
  52759. }
  52760. },
  52761. frontNoTail: {
  52762. height: math.unit(1.75, "meters"),
  52763. weight: math.unit(100, "kg"),
  52764. name: "Front (No Tail)",
  52765. image: {
  52766. source: "./media/characters/zarya/front-no-tail.svg",
  52767. extra: 741/735,
  52768. bottom: 44/785
  52769. },
  52770. extraAttributes: {
  52771. "tailLength": {
  52772. name: "Tail Length",
  52773. power: 1,
  52774. type: "length",
  52775. base: math.unit(180, "cm")
  52776. },
  52777. "pawLength": {
  52778. name: "Paw Length",
  52779. power: 1,
  52780. type: "length",
  52781. base: math.unit(31, "cm")
  52782. },
  52783. }
  52784. },
  52785. dressed: {
  52786. height: math.unit(1.75, "meters"),
  52787. weight: math.unit(100, "kg"),
  52788. name: "Dressed",
  52789. image: {
  52790. source: "./media/characters/zarya/dressed.svg",
  52791. extra: 683/672,
  52792. bottom: 79/762
  52793. },
  52794. extraAttributes: {
  52795. "tailLength": {
  52796. name: "Tail Length",
  52797. power: 1,
  52798. type: "length",
  52799. base: math.unit(180, "cm")
  52800. },
  52801. "pawLength": {
  52802. name: "Paw Length",
  52803. power: 1,
  52804. type: "length",
  52805. base: math.unit(31, "cm")
  52806. },
  52807. }
  52808. },
  52809. },
  52810. [
  52811. {
  52812. name: "Micro",
  52813. height: math.unit(5, "cm")
  52814. },
  52815. {
  52816. name: "Normal",
  52817. height: math.unit(1.75, "meters"),
  52818. default: true
  52819. },
  52820. {
  52821. name: "Macro",
  52822. height: math.unit(122, "meters")
  52823. },
  52824. ]
  52825. ))
  52826. characterMakers.push(() => makeCharacter(
  52827. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52828. {
  52829. front: {
  52830. height: math.unit(7.5, "feet"),
  52831. name: "Front",
  52832. image: {
  52833. source: "./media/characters/sven-hatisson/front.svg",
  52834. extra: 917/857,
  52835. bottom: 42/959
  52836. }
  52837. },
  52838. back: {
  52839. height: math.unit(7.5, "feet"),
  52840. name: "Back",
  52841. image: {
  52842. source: "./media/characters/sven-hatisson/back.svg",
  52843. extra: 903/856,
  52844. bottom: 15/918
  52845. }
  52846. },
  52847. },
  52848. [
  52849. {
  52850. name: "Base Height",
  52851. height: math.unit(7.5, "feet")
  52852. },
  52853. {
  52854. name: "Usual Height",
  52855. height: math.unit(13.5, "feet"),
  52856. default: true
  52857. },
  52858. {
  52859. name: "Smaller Macro",
  52860. height: math.unit(85, "feet")
  52861. },
  52862. {
  52863. name: "Moderate Macro",
  52864. height: math.unit(320, "feet")
  52865. },
  52866. {
  52867. name: "Large Macro",
  52868. height: math.unit(1000, "feet")
  52869. },
  52870. {
  52871. name: "Largest Size",
  52872. height: math.unit(2, "miles")
  52873. },
  52874. ]
  52875. ))
  52876. characterMakers.push(() => makeCharacter(
  52877. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52878. {
  52879. side: {
  52880. height: math.unit(1.8, "meters"),
  52881. weight: math.unit(275, "kg"),
  52882. name: "Side",
  52883. image: {
  52884. source: "./media/characters/terra/side.svg",
  52885. extra: 1273/1147,
  52886. bottom: 0/1273
  52887. }
  52888. },
  52889. },
  52890. [
  52891. {
  52892. name: "Normal",
  52893. height: math.unit(16.2, "meters"),
  52894. default: true
  52895. },
  52896. ]
  52897. ))
  52898. characterMakers.push(() => makeCharacter(
  52899. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52900. {
  52901. borzoiFront: {
  52902. height: math.unit(6 + 9/12, "feet"),
  52903. name: "Front",
  52904. image: {
  52905. source: "./media/characters/rae/borzoi-front.svg",
  52906. extra: 1161/1098,
  52907. bottom: 31/1192
  52908. },
  52909. form: "borzoi",
  52910. default: true
  52911. },
  52912. werewolfFront: {
  52913. height: math.unit(8 + 7/12, "feet"),
  52914. name: "Front",
  52915. image: {
  52916. source: "./media/characters/rae/werewolf-front.svg",
  52917. extra: 1411/1334,
  52918. bottom: 127/1538
  52919. },
  52920. form: "werewolf",
  52921. default: true
  52922. },
  52923. },
  52924. [
  52925. {
  52926. name: "Normal",
  52927. height: math.unit(6 + 9/12, "feet"),
  52928. default: true,
  52929. form: "borzoi"
  52930. },
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(8 + 7/12, "feet"),
  52934. default: true,
  52935. form: "werewolf"
  52936. },
  52937. ],
  52938. {
  52939. "borzoi": {
  52940. name: "Borzoi",
  52941. default: true
  52942. },
  52943. "werewolf": {
  52944. name: "Werewolf",
  52945. },
  52946. }
  52947. ))
  52948. characterMakers.push(() => makeCharacter(
  52949. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52950. {
  52951. front: {
  52952. height: math.unit(8 + 7/12, "feet"),
  52953. weight: math.unit(482, "lb"),
  52954. name: "Front",
  52955. image: {
  52956. source: "./media/characters/kit/front.svg",
  52957. extra: 1247/1103,
  52958. bottom: 41/1288
  52959. }
  52960. },
  52961. back: {
  52962. height: math.unit(8 + 7/12, "feet"),
  52963. weight: math.unit(482, "lb"),
  52964. name: "Back",
  52965. image: {
  52966. source: "./media/characters/kit/back.svg",
  52967. extra: 1252/1123,
  52968. bottom: 21/1273
  52969. }
  52970. },
  52971. paw: {
  52972. height: math.unit(1.46, "feet"),
  52973. name: "Paw",
  52974. image: {
  52975. source: "./media/characters/kit/paw.svg"
  52976. }
  52977. },
  52978. },
  52979. [
  52980. {
  52981. name: "Normal",
  52982. height: math.unit(2.61, "meters"),
  52983. default: true
  52984. },
  52985. {
  52986. name: "\"Tall\"",
  52987. height: math.unit(8.21, "meters")
  52988. },
  52989. {
  52990. name: "Tall",
  52991. height: math.unit(19.6, "meters")
  52992. },
  52993. {
  52994. name: "Very Tall",
  52995. height: math.unit(57.91, "meters")
  52996. },
  52997. {
  52998. name: "Semi-Macro",
  52999. height: math.unit(138.64, "meters")
  53000. },
  53001. {
  53002. name: "Macro",
  53003. height: math.unit(831.99, "meters")
  53004. },
  53005. {
  53006. name: "EX-Macro",
  53007. height: math.unit(96451121, "meters")
  53008. },
  53009. {
  53010. name: "S1-Omnipotent",
  53011. height: math.unit(4.42074e+9, "meters")
  53012. },
  53013. {
  53014. name: "S2-Omnipotent",
  53015. height: math.unit(9.42074e+17, "meters")
  53016. },
  53017. {
  53018. name: "Omnipotent",
  53019. height: math.unit(4.23112e+24, "meters")
  53020. },
  53021. {
  53022. name: "Hypergod",
  53023. height: math.unit(5.05176e+27, "meters")
  53024. },
  53025. {
  53026. name: "Hypergod-EX",
  53027. height: math.unit(9.45532e+49, "meters")
  53028. },
  53029. {
  53030. name: "Hypergod-SP",
  53031. height: math.unit(9.45532e+195, "meters")
  53032. },
  53033. ]
  53034. ))
  53035. characterMakers.push(() => makeCharacter(
  53036. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53037. {
  53038. side: {
  53039. height: math.unit(0.6, "meters"),
  53040. weight: math.unit(24, "kg"),
  53041. name: "Side",
  53042. image: {
  53043. source: "./media/characters/celeste/side.svg",
  53044. extra: 810/517,
  53045. bottom: 53/863
  53046. }
  53047. },
  53048. },
  53049. [
  53050. {
  53051. name: "Velociraptor",
  53052. height: math.unit(0.6, "meters"),
  53053. default: true
  53054. },
  53055. {
  53056. name: "Utahraptor",
  53057. height: math.unit(1.8, "meters")
  53058. },
  53059. {
  53060. name: "Gallimimus",
  53061. height: math.unit(4.0, "meters")
  53062. },
  53063. {
  53064. name: "Large",
  53065. height: math.unit(20, "meters")
  53066. },
  53067. {
  53068. name: "Planetary",
  53069. height: math.unit(50, "megameters")
  53070. },
  53071. {
  53072. name: "Stellar",
  53073. height: math.unit(1.5, "gigameters")
  53074. },
  53075. {
  53076. name: "Galactic",
  53077. height: math.unit(100, "exameters")
  53078. },
  53079. ]
  53080. ))
  53081. characterMakers.push(() => makeCharacter(
  53082. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53083. {
  53084. front: {
  53085. height: math.unit(6, "feet"),
  53086. weight: math.unit(210, "lb"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/glacia/front.svg",
  53090. extra: 958/901,
  53091. bottom: 45/1003
  53092. }
  53093. },
  53094. },
  53095. [
  53096. {
  53097. name: "Macro",
  53098. height: math.unit(1000, "meters"),
  53099. default: true
  53100. },
  53101. ]
  53102. ))
  53103. characterMakers.push(() => makeCharacter(
  53104. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53105. {
  53106. front: {
  53107. height: math.unit(4, "meters"),
  53108. name: "Front",
  53109. image: {
  53110. source: "./media/characters/giri/front.svg",
  53111. extra: 966/894,
  53112. bottom: 21/987
  53113. }
  53114. },
  53115. },
  53116. [
  53117. {
  53118. name: "Normal",
  53119. height: math.unit(4, "meters"),
  53120. default: true
  53121. },
  53122. ]
  53123. ))
  53124. characterMakers.push(() => makeCharacter(
  53125. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53126. {
  53127. back: {
  53128. height: math.unit(4, "feet"),
  53129. weight: math.unit(37, "lb"),
  53130. name: "Back",
  53131. image: {
  53132. source: "./media/characters/tin/back.svg",
  53133. extra: 845/780,
  53134. bottom: 28/873
  53135. }
  53136. },
  53137. },
  53138. [
  53139. {
  53140. name: "Normal",
  53141. height: math.unit(4, "feet"),
  53142. default: true
  53143. },
  53144. ]
  53145. ))
  53146. characterMakers.push(() => makeCharacter(
  53147. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53148. {
  53149. front: {
  53150. height: math.unit(25, "feet"),
  53151. name: "Front",
  53152. image: {
  53153. source: "./media/characters/cadenza-vivace/front.svg",
  53154. extra: 1842/1578,
  53155. bottom: 30/1872
  53156. }
  53157. },
  53158. },
  53159. [
  53160. {
  53161. name: "Macro",
  53162. height: math.unit(25, "feet"),
  53163. default: true
  53164. },
  53165. ]
  53166. ))
  53167. characterMakers.push(() => makeCharacter(
  53168. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53169. {
  53170. front: {
  53171. height: math.unit(10, "feet"),
  53172. weight: math.unit(625, "kg"),
  53173. name: "Front",
  53174. image: {
  53175. source: "./media/characters/zain/front.svg",
  53176. extra: 1682/1498,
  53177. bottom: 223/1905
  53178. }
  53179. },
  53180. back: {
  53181. height: math.unit(10, "feet"),
  53182. weight: math.unit(625, "kg"),
  53183. name: "Back",
  53184. image: {
  53185. source: "./media/characters/zain/back.svg",
  53186. extra: 1814/1657,
  53187. bottom: 152/1966
  53188. }
  53189. },
  53190. head: {
  53191. height: math.unit(10, "feet"),
  53192. weight: math.unit(625, "kg"),
  53193. name: "Head",
  53194. image: {
  53195. source: "./media/characters/zain/head.svg",
  53196. extra: 1059/762,
  53197. bottom: 0/1059
  53198. }
  53199. },
  53200. },
  53201. [
  53202. {
  53203. name: "Normal",
  53204. height: math.unit(10, "feet"),
  53205. default: true
  53206. },
  53207. ]
  53208. ))
  53209. characterMakers.push(() => makeCharacter(
  53210. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53211. {
  53212. front: {
  53213. height: math.unit(6 + 5/12, "feet"),
  53214. weight: math.unit(750, "lb"),
  53215. name: "Front",
  53216. image: {
  53217. source: "./media/characters/ruchex/front.svg",
  53218. extra: 877/820,
  53219. bottom: 17/894
  53220. },
  53221. extraAttributes: {
  53222. "width": {
  53223. name: "Width",
  53224. power: 1,
  53225. type: "length",
  53226. base: math.unit(4.757, "feet")
  53227. },
  53228. }
  53229. },
  53230. },
  53231. [
  53232. {
  53233. name: "Normal",
  53234. height: math.unit(6 + 5/12, "feet"),
  53235. default: true
  53236. },
  53237. ]
  53238. ))
  53239. characterMakers.push(() => makeCharacter(
  53240. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53241. {
  53242. dressedFront: {
  53243. height: math.unit(191, "cm"),
  53244. weight: math.unit(80, "kg"),
  53245. name: "Front",
  53246. image: {
  53247. source: "./media/characters/buster/dressed-front.svg",
  53248. extra: 1022/973,
  53249. bottom: 69/1091
  53250. }
  53251. },
  53252. dressedBack: {
  53253. height: math.unit(191, "cm"),
  53254. weight: math.unit(80, "kg"),
  53255. name: "Back",
  53256. image: {
  53257. source: "./media/characters/buster/dressed-back.svg",
  53258. extra: 1018/970,
  53259. bottom: 55/1073
  53260. }
  53261. },
  53262. nudeFront: {
  53263. height: math.unit(191, "cm"),
  53264. weight: math.unit(80, "kg"),
  53265. name: "Front (Nude)",
  53266. image: {
  53267. source: "./media/characters/buster/nude-front.svg",
  53268. extra: 1022/973,
  53269. bottom: 69/1091
  53270. }
  53271. },
  53272. nudeBack: {
  53273. height: math.unit(191, "cm"),
  53274. weight: math.unit(80, "kg"),
  53275. name: "Back (Nude)",
  53276. image: {
  53277. source: "./media/characters/buster/nude-back.svg",
  53278. extra: 1018/970,
  53279. bottom: 55/1073
  53280. }
  53281. },
  53282. dick: {
  53283. height: math.unit(2.59, "feet"),
  53284. name: "Dick",
  53285. image: {
  53286. source: "./media/characters/buster/dick.svg"
  53287. }
  53288. },
  53289. ass: {
  53290. height: math.unit(1.2, "feet"),
  53291. name: "Ass",
  53292. image: {
  53293. source: "./media/characters/buster/ass.svg"
  53294. }
  53295. },
  53296. },
  53297. [
  53298. {
  53299. name: "Normal",
  53300. height: math.unit(191, "cm"),
  53301. default: true
  53302. },
  53303. ]
  53304. ))
  53305. characterMakers.push(() => makeCharacter(
  53306. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53307. {
  53308. side: {
  53309. height: math.unit(8.1, "feet"),
  53310. weight: math.unit(3500, "lb"),
  53311. name: "Side",
  53312. image: {
  53313. source: "./media/characters/sonya/side.svg",
  53314. extra: 1730/1317,
  53315. bottom: 86/1816
  53316. }
  53317. },
  53318. },
  53319. [
  53320. {
  53321. name: "Normal",
  53322. height: math.unit(8.1, "feet"),
  53323. default: true
  53324. },
  53325. ]
  53326. ))
  53327. characterMakers.push(() => makeCharacter(
  53328. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53329. {
  53330. front: {
  53331. height: math.unit(6, "feet"),
  53332. weight: math.unit(150, "lb"),
  53333. name: "Front",
  53334. image: {
  53335. source: "./media/characters/cadence-andrysiak/front.svg",
  53336. extra: 1164/1121,
  53337. bottom: 60/1224
  53338. }
  53339. },
  53340. back: {
  53341. height: math.unit(6, "feet"),
  53342. weight: math.unit(150, "lb"),
  53343. name: "Back",
  53344. image: {
  53345. source: "./media/characters/cadence-andrysiak/back.svg",
  53346. extra: 1200/1165,
  53347. bottom: 9/1209
  53348. }
  53349. },
  53350. dressed: {
  53351. height: math.unit(6, "feet"),
  53352. weight: math.unit(150, "lb"),
  53353. name: "Dressed",
  53354. image: {
  53355. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53356. extra: 1164/1121,
  53357. bottom: 60/1224
  53358. }
  53359. },
  53360. },
  53361. [
  53362. {
  53363. name: "Micro",
  53364. height: math.unit(1, "mm")
  53365. },
  53366. {
  53367. name: "Normal",
  53368. height: math.unit(6, "feet"),
  53369. default: true
  53370. },
  53371. ]
  53372. ))
  53373. characterMakers.push(() => makeCharacter(
  53374. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53375. {
  53376. front: {
  53377. height: math.unit(60, "inches"),
  53378. weight: math.unit(16, "lb"),
  53379. preyCapacity: math.unit(80, "liters"),
  53380. name: "Front",
  53381. image: {
  53382. source: "./media/characters/penny-lynx/front.svg",
  53383. extra: 1959/1769,
  53384. bottom: 49/2008
  53385. }
  53386. },
  53387. },
  53388. [
  53389. {
  53390. name: "Nokia",
  53391. height: math.unit(2, "inches")
  53392. },
  53393. {
  53394. name: "Desktop",
  53395. height: math.unit(24, "inches")
  53396. },
  53397. {
  53398. name: "TV",
  53399. height: math.unit(60, "inches")
  53400. },
  53401. {
  53402. name: "Jumbotron",
  53403. height: math.unit(12, "feet")
  53404. },
  53405. {
  53406. name: "Billboard",
  53407. height: math.unit(48, "feet"),
  53408. default: true
  53409. },
  53410. {
  53411. name: "IMAX",
  53412. height: math.unit(96, "feet")
  53413. },
  53414. {
  53415. name: "SINGULARITY",
  53416. height: math.unit(864938, "miles")
  53417. },
  53418. ]
  53419. ))
  53420. characterMakers.push(() => makeCharacter(
  53421. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53422. {
  53423. front: {
  53424. height: math.unit(5 + 4/12, "feet"),
  53425. weight: math.unit(230, "lb"),
  53426. name: "Front",
  53427. image: {
  53428. source: "./media/characters/sukebe/front.svg",
  53429. extra: 2130/2038,
  53430. bottom: 90/2220
  53431. }
  53432. },
  53433. back: {
  53434. height: math.unit(3.48, "feet"),
  53435. weight: math.unit(230, "lb"),
  53436. name: "Back",
  53437. image: {
  53438. source: "./media/characters/sukebe/back.svg",
  53439. extra: 1670/1604,
  53440. bottom: 0/1670
  53441. }
  53442. },
  53443. },
  53444. [
  53445. {
  53446. name: "Normal",
  53447. height: math.unit(5 + 4/12, "feet"),
  53448. default: true
  53449. },
  53450. ]
  53451. ))
  53452. characterMakers.push(() => makeCharacter(
  53453. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53454. {
  53455. front: {
  53456. height: math.unit(6, "feet"),
  53457. name: "Front",
  53458. image: {
  53459. source: "./media/characters/nylla/front.svg",
  53460. extra: 1868/1699,
  53461. bottom: 97/1965
  53462. }
  53463. },
  53464. back: {
  53465. height: math.unit(6, "feet"),
  53466. name: "Back",
  53467. image: {
  53468. source: "./media/characters/nylla/back.svg",
  53469. extra: 1889/1712,
  53470. bottom: 93/1982
  53471. }
  53472. },
  53473. frontNsfw: {
  53474. height: math.unit(6, "feet"),
  53475. name: "Front (NSFW)",
  53476. image: {
  53477. source: "./media/characters/nylla/front-nsfw.svg",
  53478. extra: 1868/1699,
  53479. bottom: 97/1965
  53480. },
  53481. extraAttributes: {
  53482. "dickLength": {
  53483. name: "Dick Length",
  53484. power: 1,
  53485. type: "length",
  53486. base: math.unit(1.4, "feet")
  53487. },
  53488. "cumVolume": {
  53489. name: "Cum Volume",
  53490. power: 3,
  53491. type: "volume",
  53492. base: math.unit(100, "mL")
  53493. },
  53494. }
  53495. },
  53496. backNsfw: {
  53497. height: math.unit(6, "feet"),
  53498. name: "Back (NSFW)",
  53499. image: {
  53500. source: "./media/characters/nylla/back-nsfw.svg",
  53501. extra: 1889/1712,
  53502. bottom: 93/1982
  53503. }
  53504. },
  53505. maw: {
  53506. height: math.unit(2.10, "feet"),
  53507. name: "Maw",
  53508. image: {
  53509. source: "./media/characters/nylla/maw.svg"
  53510. }
  53511. },
  53512. paws: {
  53513. height: math.unit(2.06, "feet"),
  53514. name: "Paws",
  53515. image: {
  53516. source: "./media/characters/nylla/paws.svg"
  53517. }
  53518. },
  53519. muzzle: {
  53520. height: math.unit(0.61, "feet"),
  53521. name: "Muzzle",
  53522. image: {
  53523. source: "./media/characters/nylla/muzzle.svg"
  53524. }
  53525. },
  53526. sheath: {
  53527. height: math.unit(1.305, "feet"),
  53528. name: "Sheath",
  53529. image: {
  53530. source: "./media/characters/nylla/sheath.svg"
  53531. }
  53532. },
  53533. },
  53534. [
  53535. {
  53536. name: "Micro",
  53537. height: math.unit(7.5, "inches")
  53538. },
  53539. {
  53540. name: "Normal",
  53541. height: math.unit(7, "feet"),
  53542. default: true
  53543. },
  53544. {
  53545. name: "Macro",
  53546. height: math.unit(60, "feet")
  53547. },
  53548. {
  53549. name: "Mega",
  53550. height: math.unit(200, "feet")
  53551. },
  53552. ]
  53553. ))
  53554. characterMakers.push(() => makeCharacter(
  53555. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53556. {
  53557. front: {
  53558. height: math.unit(10, "feet"),
  53559. weight: math.unit(2300, "lb"),
  53560. name: "Front",
  53561. image: {
  53562. source: "./media/characters/hunt3r/front.svg",
  53563. extra: 1909/1742,
  53564. bottom: 46/1955
  53565. }
  53566. },
  53567. },
  53568. [
  53569. {
  53570. name: "Normal",
  53571. height: math.unit(10, "feet"),
  53572. default: true
  53573. },
  53574. ]
  53575. ))
  53576. characterMakers.push(() => makeCharacter(
  53577. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53578. {
  53579. dressed: {
  53580. height: math.unit(11, "feet"),
  53581. weight: math.unit(18500, "lb"),
  53582. preyCapacity: math.unit(9, "people"),
  53583. name: "Dressed",
  53584. image: {
  53585. source: "./media/characters/cylphis/dressed.svg",
  53586. extra: 1028/1003,
  53587. bottom: 75/1103
  53588. },
  53589. },
  53590. undressed: {
  53591. height: math.unit(11, "feet"),
  53592. weight: math.unit(18500, "lb"),
  53593. preyCapacity: math.unit(9, "people"),
  53594. name: "Undressed",
  53595. image: {
  53596. source: "./media/characters/cylphis/undressed.svg",
  53597. extra: 1028/1003,
  53598. bottom: 75/1103
  53599. }
  53600. },
  53601. full: {
  53602. height: math.unit(11, "feet"),
  53603. weight: math.unit(18500 + 150*9, "lb"),
  53604. preyCapacity: math.unit(9, "people"),
  53605. name: "Full",
  53606. image: {
  53607. source: "./media/characters/cylphis/full.svg",
  53608. extra: 1028/1003,
  53609. bottom: 75/1103
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Small",
  53616. height: math.unit(8, "feet")
  53617. },
  53618. {
  53619. name: "Normal",
  53620. height: math.unit(11, "feet"),
  53621. default: true
  53622. },
  53623. ]
  53624. ))
  53625. characterMakers.push(() => makeCharacter(
  53626. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53627. {
  53628. front: {
  53629. height: math.unit(2 + 7/12, "feet"),
  53630. name: "Front",
  53631. image: {
  53632. source: "./media/characters/orishan/front.svg",
  53633. extra: 1058/1023,
  53634. bottom: 23/1081
  53635. }
  53636. },
  53637. back: {
  53638. height: math.unit(2 + 7/12, "feet"),
  53639. name: "Back",
  53640. image: {
  53641. source: "./media/characters/orishan/back.svg",
  53642. extra: 1058/1023,
  53643. bottom: 23/1081
  53644. }
  53645. },
  53646. },
  53647. [
  53648. {
  53649. name: "Micro",
  53650. height: math.unit(2, "cm")
  53651. },
  53652. {
  53653. name: "Normal",
  53654. height: math.unit(2 + 7/12, "feet"),
  53655. default: true
  53656. },
  53657. ]
  53658. ))
  53659. characterMakers.push(() => makeCharacter(
  53660. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53661. {
  53662. front: {
  53663. height: math.unit(3, "meters"),
  53664. weight: math.unit(508, "kg"),
  53665. name: "Front",
  53666. image: {
  53667. source: "./media/characters/seranis/front.svg",
  53668. extra: 1478/1454,
  53669. bottom: 41/1519
  53670. }
  53671. },
  53672. },
  53673. [
  53674. {
  53675. name: "Normal",
  53676. height: math.unit(3, "meters"),
  53677. default: true
  53678. },
  53679. {
  53680. name: "Macro",
  53681. height: math.unit(108, "meters")
  53682. },
  53683. {
  53684. name: "Megamacro",
  53685. height: math.unit(1250, "meters")
  53686. },
  53687. ]
  53688. ))
  53689. characterMakers.push(() => makeCharacter(
  53690. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53691. {
  53692. undressed: {
  53693. height: math.unit(5 + 3/12, "feet"),
  53694. name: "Undressed",
  53695. image: {
  53696. source: "./media/characters/ankou/undressed.svg",
  53697. extra: 1301/1213,
  53698. bottom: 87/1388
  53699. }
  53700. },
  53701. dressed: {
  53702. height: math.unit(5 + 3/12, "feet"),
  53703. name: "Dressed",
  53704. image: {
  53705. source: "./media/characters/ankou/dressed.svg",
  53706. extra: 1301/1213,
  53707. bottom: 87/1388
  53708. }
  53709. },
  53710. head: {
  53711. height: math.unit(1.61, "feet"),
  53712. name: "Head",
  53713. image: {
  53714. source: "./media/characters/ankou/head.svg"
  53715. }
  53716. },
  53717. },
  53718. [
  53719. {
  53720. name: "Normal",
  53721. height: math.unit(5 + 3/12, "feet"),
  53722. default: true
  53723. },
  53724. ]
  53725. ))
  53726. characterMakers.push(() => makeCharacter(
  53727. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53728. {
  53729. side: {
  53730. height: math.unit(6 + 3/12, "feet"),
  53731. weight: math.unit(200, "kg"),
  53732. name: "Side",
  53733. image: {
  53734. source: "./media/characters/juniper-skunktaur/side.svg",
  53735. extra: 1574/1229,
  53736. bottom: 38/1612
  53737. }
  53738. },
  53739. front: {
  53740. height: math.unit(6 + 3/12, "feet"),
  53741. weight: math.unit(200, "kg"),
  53742. name: "Front",
  53743. image: {
  53744. source: "./media/characters/juniper-skunktaur/front.svg",
  53745. extra: 1337/1278,
  53746. bottom: 22/1359
  53747. }
  53748. },
  53749. back: {
  53750. height: math.unit(6 + 3/12, "feet"),
  53751. weight: math.unit(200, "kg"),
  53752. name: "Back",
  53753. image: {
  53754. source: "./media/characters/juniper-skunktaur/back.svg",
  53755. extra: 1618/1273,
  53756. bottom: 13/1631
  53757. }
  53758. },
  53759. top: {
  53760. height: math.unit(2.62, "feet"),
  53761. weight: math.unit(200, "kg"),
  53762. name: "Top",
  53763. image: {
  53764. source: "./media/characters/juniper-skunktaur/top.svg"
  53765. }
  53766. },
  53767. },
  53768. [
  53769. {
  53770. name: "Normal",
  53771. height: math.unit(6 + 3/12, "feet"),
  53772. default: true
  53773. },
  53774. ]
  53775. ))
  53776. characterMakers.push(() => makeCharacter(
  53777. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53778. {
  53779. front: {
  53780. height: math.unit(20.5, "feet"),
  53781. name: "Front",
  53782. image: {
  53783. source: "./media/characters/rei/front.svg",
  53784. extra: 1349/1195,
  53785. bottom: 31/1380
  53786. }
  53787. },
  53788. back: {
  53789. height: math.unit(20.5, "feet"),
  53790. name: "Back",
  53791. image: {
  53792. source: "./media/characters/rei/back.svg",
  53793. extra: 1358/1204,
  53794. bottom: 22/1380
  53795. }
  53796. },
  53797. pawsDigi: {
  53798. height: math.unit(3.45, "feet"),
  53799. name: "Paws (Digi)",
  53800. image: {
  53801. source: "./media/characters/rei/paws-digi.svg"
  53802. }
  53803. },
  53804. pawsPlanti: {
  53805. height: math.unit(3.45, "feet"),
  53806. name: "Paws (Planti)",
  53807. image: {
  53808. source: "./media/characters/rei/paws-planti.svg"
  53809. }
  53810. },
  53811. },
  53812. [
  53813. {
  53814. name: "Normal",
  53815. height: math.unit(20.5, "feet"),
  53816. default: true
  53817. },
  53818. ]
  53819. ))
  53820. characterMakers.push(() => makeCharacter(
  53821. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53822. {
  53823. front: {
  53824. height: math.unit(5 + 11/12, "feet"),
  53825. name: "Front",
  53826. image: {
  53827. source: "./media/characters/carina/front.svg",
  53828. extra: 1720/1449,
  53829. bottom: 14/1734
  53830. }
  53831. },
  53832. back: {
  53833. height: math.unit(5 + 11/12, "feet"),
  53834. name: "Back",
  53835. image: {
  53836. source: "./media/characters/carina/back.svg",
  53837. extra: 1493/1445,
  53838. bottom: 17/1510
  53839. }
  53840. },
  53841. paw: {
  53842. height: math.unit(0.92, "feet"),
  53843. name: "Paw",
  53844. image: {
  53845. source: "./media/characters/carina/paw.svg"
  53846. }
  53847. },
  53848. },
  53849. [
  53850. {
  53851. name: "Normal",
  53852. height: math.unit(5 + 11/12, "feet"),
  53853. default: true
  53854. },
  53855. ]
  53856. ))
  53857. characterMakers.push(() => makeCharacter(
  53858. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53859. {
  53860. normal_front: {
  53861. height: math.unit(4.88, "meters"),
  53862. name: "Front",
  53863. image: {
  53864. source: "./media/characters/maya/normal-front.svg",
  53865. extra: 1222/1145,
  53866. bottom: 57/1279
  53867. },
  53868. form: "normal",
  53869. default: true
  53870. },
  53871. monstrous_front: {
  53872. height: math.unit(10, "meters"),
  53873. name: "Front",
  53874. image: {
  53875. source: "./media/characters/maya/monstrous-front.svg",
  53876. extra: 1523/1109,
  53877. bottom: 113/1636
  53878. },
  53879. form: "monstrous",
  53880. extraAttributes: {
  53881. "swallowSize": {
  53882. name: "Tailmaw Bite Size",
  53883. power: 3,
  53884. type: "volume",
  53885. base: math.unit(43000, "liters")
  53886. },
  53887. }
  53888. },
  53889. taur_front: {
  53890. height: math.unit(10, "meters"),
  53891. name: "Front",
  53892. image: {
  53893. source: "./media/characters/maya/taur-front.svg",
  53894. extra: 743/506,
  53895. bottom: 101/844
  53896. },
  53897. form: "taur",
  53898. },
  53899. },
  53900. [
  53901. {
  53902. name: "Normal",
  53903. height: math.unit(4.88, "meters"),
  53904. default: true,
  53905. form: "normal"
  53906. },
  53907. {
  53908. name: "Macro",
  53909. height: math.unit(38.1, "meters"),
  53910. form: "normal"
  53911. },
  53912. {
  53913. name: "Macro+",
  53914. height: math.unit(152.4, "meters"),
  53915. form: "normal"
  53916. },
  53917. {
  53918. name: "Macro++",
  53919. height: math.unit(16.09, "km"),
  53920. form: "normal"
  53921. },
  53922. {
  53923. name: "Mega-macro",
  53924. height: math.unit(700, "megameters"),
  53925. form: "normal"
  53926. },
  53927. {
  53928. name: "Satiated",
  53929. height: math.unit(10, "meters"),
  53930. default: true,
  53931. form: "monstrous"
  53932. },
  53933. {
  53934. name: "Hungry",
  53935. height: math.unit(75, "meters"),
  53936. form: "monstrous"
  53937. },
  53938. {
  53939. name: "Ravenous",
  53940. height: math.unit(500, "meters"),
  53941. form: "monstrous"
  53942. },
  53943. {
  53944. name: "\"Normal\"",
  53945. height: math.unit(10, "meters"),
  53946. form: "taur"
  53947. },
  53948. {
  53949. name: "Macro",
  53950. height: math.unit(50, "meters"),
  53951. form: "taur"
  53952. },
  53953. ],
  53954. {
  53955. "normal": {
  53956. name: "Normal",
  53957. default: true
  53958. },
  53959. "monstrous": {
  53960. name: "Monstrous",
  53961. },
  53962. "taur": {
  53963. name: "Taur",
  53964. },
  53965. }
  53966. ))
  53967. characterMakers.push(() => makeCharacter(
  53968. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53969. {
  53970. front: {
  53971. height: math.unit(6 + 2/12, "feet"),
  53972. weight: math.unit(500, "lb"),
  53973. preyCapacity: math.unit(4, "people"),
  53974. name: "Front",
  53975. image: {
  53976. source: "./media/characters/yepir/front.svg"
  53977. }
  53978. },
  53979. side: {
  53980. height: math.unit(6 + 2/12, "feet"),
  53981. weight: math.unit(500, "lb"),
  53982. preyCapacity: math.unit(4, "people"),
  53983. name: "Side",
  53984. image: {
  53985. source: "./media/characters/yepir/side.svg"
  53986. }
  53987. },
  53988. paw: {
  53989. height: math.unit(1.05, "feet"),
  53990. name: "Paw",
  53991. image: {
  53992. source: "./media/characters/yepir/paw.svg"
  53993. }
  53994. },
  53995. },
  53996. [
  53997. {
  53998. name: "Normal",
  53999. height: math.unit(6 + 2/12, "feet"),
  54000. default: true
  54001. },
  54002. ]
  54003. ))
  54004. characterMakers.push(() => makeCharacter(
  54005. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54006. {
  54007. front: {
  54008. height: math.unit(5 + 4/12, "feet"),
  54009. name: "Front",
  54010. image: {
  54011. source: "./media/characters/russec/front.svg",
  54012. extra: 1926/1626,
  54013. bottom: 72/1998
  54014. }
  54015. },
  54016. back: {
  54017. height: math.unit(5 + 4/12, "feet"),
  54018. name: "Back",
  54019. image: {
  54020. source: "./media/characters/russec/back.svg",
  54021. extra: 1910/1591,
  54022. bottom: 48/1958
  54023. }
  54024. },
  54025. },
  54026. [
  54027. {
  54028. name: "Small",
  54029. height: math.unit(5 + 4/12, "feet")
  54030. },
  54031. {
  54032. name: "Normal",
  54033. height: math.unit(72, "feet"),
  54034. default: true
  54035. },
  54036. ]
  54037. ))
  54038. characterMakers.push(() => makeCharacter(
  54039. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54040. {
  54041. side: {
  54042. height: math.unit(12, "feet"),
  54043. name: "Side",
  54044. image: {
  54045. source: "./media/characters/cianus/side.svg",
  54046. extra: 808/526,
  54047. bottom: 61/869
  54048. }
  54049. },
  54050. },
  54051. [
  54052. {
  54053. name: "Normal",
  54054. height: math.unit(12, "feet"),
  54055. default: true
  54056. },
  54057. ]
  54058. ))
  54059. characterMakers.push(() => makeCharacter(
  54060. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54061. {
  54062. front: {
  54063. height: math.unit(9 + 6/12, "feet"),
  54064. weight: math.unit(300, "lb"),
  54065. name: "Front",
  54066. image: {
  54067. source: "./media/characters/ahab/front.svg",
  54068. extra: 1897/1868,
  54069. bottom: 121/2018
  54070. }
  54071. },
  54072. frontNsfw: {
  54073. height: math.unit(9 + 6/12, "feet"),
  54074. weight: math.unit(300, "lb"),
  54075. name: "Front-nsfw",
  54076. image: {
  54077. source: "./media/characters/ahab/front-nsfw.svg",
  54078. extra: 1897/1868,
  54079. bottom: 121/2018
  54080. }
  54081. },
  54082. },
  54083. [
  54084. {
  54085. name: "Normal",
  54086. height: math.unit(9 + 6/12, "feet")
  54087. },
  54088. {
  54089. name: "Macro",
  54090. height: math.unit(657, "feet"),
  54091. default: true
  54092. },
  54093. ]
  54094. ))
  54095. characterMakers.push(() => makeCharacter(
  54096. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54097. {
  54098. front: {
  54099. height: math.unit(2.69, "meters"),
  54100. weight: math.unit(132, "kg"),
  54101. name: "Front",
  54102. image: {
  54103. source: "./media/characters/aarkus/front.svg",
  54104. extra: 1400/1231,
  54105. bottom: 34/1434
  54106. }
  54107. },
  54108. back: {
  54109. height: math.unit(2.69, "meters"),
  54110. weight: math.unit(132, "kg"),
  54111. name: "Back",
  54112. image: {
  54113. source: "./media/characters/aarkus/back.svg",
  54114. extra: 1381/1218,
  54115. bottom: 30/1411
  54116. }
  54117. },
  54118. frontNsfw: {
  54119. height: math.unit(2.69, "meters"),
  54120. weight: math.unit(132, "kg"),
  54121. name: "Front (NSFW)",
  54122. image: {
  54123. source: "./media/characters/aarkus/front-nsfw.svg",
  54124. extra: 1400/1231,
  54125. bottom: 34/1434
  54126. }
  54127. },
  54128. foot: {
  54129. height: math.unit(1.45, "feet"),
  54130. name: "Foot",
  54131. image: {
  54132. source: "./media/characters/aarkus/foot.svg"
  54133. }
  54134. },
  54135. head: {
  54136. height: math.unit(2.85, "feet"),
  54137. name: "Head",
  54138. image: {
  54139. source: "./media/characters/aarkus/head.svg"
  54140. }
  54141. },
  54142. headAlt: {
  54143. height: math.unit(3.07, "feet"),
  54144. name: "Head (Alt)",
  54145. image: {
  54146. source: "./media/characters/aarkus/head-alt.svg"
  54147. }
  54148. },
  54149. mouth: {
  54150. height: math.unit(1.25, "feet"),
  54151. name: "Mouth",
  54152. image: {
  54153. source: "./media/characters/aarkus/mouth.svg"
  54154. }
  54155. },
  54156. dick: {
  54157. height: math.unit(1.77, "feet"),
  54158. name: "Dick",
  54159. image: {
  54160. source: "./media/characters/aarkus/dick.svg"
  54161. }
  54162. },
  54163. },
  54164. [
  54165. {
  54166. name: "Normal",
  54167. height: math.unit(2.69, "meters"),
  54168. default: true
  54169. },
  54170. {
  54171. name: "Macro",
  54172. height: math.unit(269, "meters")
  54173. },
  54174. {
  54175. name: "Macro+",
  54176. height: math.unit(672.5, "meters")
  54177. },
  54178. {
  54179. name: "Megamacro",
  54180. height: math.unit(2.017, "km")
  54181. },
  54182. ]
  54183. ))
  54184. characterMakers.push(() => makeCharacter(
  54185. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54186. {
  54187. front: {
  54188. height: math.unit(23.47, "cm"),
  54189. weight: math.unit(600, "grams"),
  54190. name: "Front",
  54191. image: {
  54192. source: "./media/characters/diode/front.svg",
  54193. extra: 1778/1396,
  54194. bottom: 95/1873
  54195. }
  54196. },
  54197. side: {
  54198. height: math.unit(23.47, "cm"),
  54199. weight: math.unit(600, "grams"),
  54200. name: "Side",
  54201. image: {
  54202. source: "./media/characters/diode/side.svg",
  54203. extra: 1831/1404,
  54204. bottom: 86/1917
  54205. }
  54206. },
  54207. wings: {
  54208. height: math.unit(0.683, "feet"),
  54209. name: "Wings",
  54210. image: {
  54211. source: "./media/characters/diode/wings.svg"
  54212. }
  54213. },
  54214. },
  54215. [
  54216. {
  54217. name: "Normal",
  54218. height: math.unit(23.47, "cm"),
  54219. default: true
  54220. },
  54221. ]
  54222. ))
  54223. characterMakers.push(() => makeCharacter(
  54224. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54225. {
  54226. front: {
  54227. height: math.unit(6 + 3/12, "feet"),
  54228. weight: math.unit(250, "lb"),
  54229. name: "Front",
  54230. image: {
  54231. source: "./media/characters/reika/front.svg",
  54232. extra: 1120/1078,
  54233. bottom: 86/1206
  54234. }
  54235. },
  54236. },
  54237. [
  54238. {
  54239. name: "Normal",
  54240. height: math.unit(6 + 3/12, "feet"),
  54241. default: true
  54242. },
  54243. ]
  54244. ))
  54245. characterMakers.push(() => makeCharacter(
  54246. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54247. {
  54248. front: {
  54249. height: math.unit(16 + 8/12, "feet"),
  54250. weight: math.unit(9000, "lb"),
  54251. name: "Front",
  54252. image: {
  54253. source: "./media/characters/lokuto-takama/front.svg",
  54254. extra: 1774/1632,
  54255. bottom: 147/1921
  54256. },
  54257. extraAttributes: {
  54258. "bustWidth": {
  54259. name: "Bust Width",
  54260. power: 1,
  54261. type: "length",
  54262. base: math.unit(2.4, "meters")
  54263. },
  54264. "breastWeight": {
  54265. name: "Breast Weight",
  54266. power: 3,
  54267. type: "mass",
  54268. base: math.unit(1000, "kg")
  54269. },
  54270. }
  54271. },
  54272. },
  54273. [
  54274. {
  54275. name: "Normal",
  54276. height: math.unit(16 + 8/12, "feet"),
  54277. default: true
  54278. },
  54279. ]
  54280. ))
  54281. characterMakers.push(() => makeCharacter(
  54282. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54283. {
  54284. front: {
  54285. height: math.unit(10, "cm"),
  54286. weight: math.unit(850, "grams"),
  54287. name: "Front",
  54288. image: {
  54289. source: "./media/characters/owak-bone/front.svg",
  54290. extra: 1965/1801,
  54291. bottom: 31/1996
  54292. }
  54293. },
  54294. },
  54295. [
  54296. {
  54297. name: "Normal",
  54298. height: math.unit(10, "cm"),
  54299. default: true
  54300. },
  54301. ]
  54302. ))
  54303. characterMakers.push(() => makeCharacter(
  54304. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54305. {
  54306. front: {
  54307. height: math.unit(2 + 6/12, "feet"),
  54308. weight: math.unit(9, "lb"),
  54309. name: "Front",
  54310. image: {
  54311. source: "./media/characters/muffin/front.svg",
  54312. extra: 1220/1195,
  54313. bottom: 84/1304
  54314. }
  54315. },
  54316. },
  54317. [
  54318. {
  54319. name: "Normal",
  54320. height: math.unit(2 + 6/12, "feet"),
  54321. default: true
  54322. },
  54323. ]
  54324. ))
  54325. characterMakers.push(() => makeCharacter(
  54326. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54327. {
  54328. front: {
  54329. height: math.unit(7, "feet"),
  54330. name: "Front",
  54331. image: {
  54332. source: "./media/characters/chimera/front.svg",
  54333. extra: 1752/1614,
  54334. bottom: 68/1820
  54335. }
  54336. },
  54337. },
  54338. [
  54339. {
  54340. name: "Normal",
  54341. height: math.unit(7, "feet")
  54342. },
  54343. {
  54344. name: "Gigamacro",
  54345. height: math.unit(2.9, "gigameters"),
  54346. default: true
  54347. },
  54348. {
  54349. name: "Universal",
  54350. height: math.unit(1.56e26, "yottameters")
  54351. },
  54352. ]
  54353. ))
  54354. characterMakers.push(() => makeCharacter(
  54355. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54356. {
  54357. front: {
  54358. height: math.unit(3, "feet"),
  54359. weight: math.unit(20, "lb"),
  54360. name: "Front",
  54361. image: {
  54362. source: "./media/characters/kit-fennec-fox/front.svg",
  54363. extra: 1027/932,
  54364. bottom: 16/1043
  54365. }
  54366. },
  54367. back: {
  54368. height: math.unit(3, "feet"),
  54369. weight: math.unit(20, "lb"),
  54370. name: "Back",
  54371. image: {
  54372. source: "./media/characters/kit-fennec-fox/back.svg",
  54373. extra: 1027/932,
  54374. bottom: 16/1043
  54375. }
  54376. },
  54377. },
  54378. [
  54379. {
  54380. name: "Normal",
  54381. height: math.unit(3, "feet"),
  54382. default: true
  54383. },
  54384. ]
  54385. ))
  54386. characterMakers.push(() => makeCharacter(
  54387. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54388. {
  54389. front: {
  54390. height: math.unit(167, "cm"),
  54391. name: "Front",
  54392. image: {
  54393. source: "./media/characters/blue-otter/front.svg",
  54394. extra: 1951/1920,
  54395. bottom: 31/1982
  54396. }
  54397. },
  54398. },
  54399. [
  54400. {
  54401. name: "Otter-Sized",
  54402. height: math.unit(100, "cm")
  54403. },
  54404. {
  54405. name: "Normal",
  54406. height: math.unit(167, "cm"),
  54407. default: true
  54408. },
  54409. ]
  54410. ))
  54411. characterMakers.push(() => makeCharacter(
  54412. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54413. {
  54414. front: {
  54415. height: math.unit(4 + 4/12, "feet"),
  54416. name: "Front",
  54417. image: {
  54418. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54419. extra: 1072/1067,
  54420. bottom: 117/1189
  54421. }
  54422. },
  54423. back: {
  54424. height: math.unit(4 + 4/12, "feet"),
  54425. name: "Back",
  54426. image: {
  54427. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54428. extra: 1135/1129,
  54429. bottom: 57/1192
  54430. }
  54431. },
  54432. head: {
  54433. height: math.unit(1.77, "feet"),
  54434. name: "Head",
  54435. image: {
  54436. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54437. }
  54438. },
  54439. },
  54440. [
  54441. {
  54442. name: "Normal",
  54443. height: math.unit(4 + 4/12, "feet"),
  54444. default: true
  54445. },
  54446. ]
  54447. ))
  54448. characterMakers.push(() => makeCharacter(
  54449. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54450. {
  54451. front: {
  54452. height: math.unit(2, "inches"),
  54453. name: "Front",
  54454. image: {
  54455. source: "./media/characters/carley-hartford/front.svg",
  54456. extra: 1035/988,
  54457. bottom: 23/1058
  54458. }
  54459. },
  54460. back: {
  54461. height: math.unit(2, "inches"),
  54462. name: "Back",
  54463. image: {
  54464. source: "./media/characters/carley-hartford/back.svg",
  54465. extra: 1035/988,
  54466. bottom: 23/1058
  54467. }
  54468. },
  54469. dressed: {
  54470. height: math.unit(2, "inches"),
  54471. name: "Dressed",
  54472. image: {
  54473. source: "./media/characters/carley-hartford/dressed.svg",
  54474. extra: 651/620,
  54475. bottom: 0/651
  54476. }
  54477. },
  54478. },
  54479. [
  54480. {
  54481. name: "Micro",
  54482. height: math.unit(2, "inches"),
  54483. default: true
  54484. },
  54485. {
  54486. name: "Macro",
  54487. height: math.unit(6 + 3/12, "feet")
  54488. },
  54489. ]
  54490. ))
  54491. characterMakers.push(() => makeCharacter(
  54492. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54493. {
  54494. front: {
  54495. height: math.unit(2 + 3/12, "feet"),
  54496. weight: math.unit(15 + 7/16, "lb"),
  54497. name: "Front",
  54498. image: {
  54499. source: "./media/characters/duke/front.svg",
  54500. extra: 910/815,
  54501. bottom: 30/940
  54502. }
  54503. },
  54504. },
  54505. [
  54506. {
  54507. name: "Normal",
  54508. height: math.unit(2 + 3/12, "feet"),
  54509. default: true
  54510. },
  54511. ]
  54512. ))
  54513. characterMakers.push(() => makeCharacter(
  54514. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54515. {
  54516. front: {
  54517. height: math.unit(5 + 4/12, "feet"),
  54518. weight: math.unit(156, "lb"),
  54519. name: "Front",
  54520. image: {
  54521. source: "./media/characters/dein/front.svg",
  54522. extra: 855/815,
  54523. bottom: 48/903
  54524. }
  54525. },
  54526. side: {
  54527. height: math.unit(5 + 4/12, "feet"),
  54528. weight: math.unit(156, "lb"),
  54529. name: "side",
  54530. image: {
  54531. source: "./media/characters/dein/side.svg",
  54532. extra: 846/803,
  54533. bottom: 25/871
  54534. }
  54535. },
  54536. maw: {
  54537. height: math.unit(1.45, "feet"),
  54538. name: "Maw",
  54539. image: {
  54540. source: "./media/characters/dein/maw.svg"
  54541. }
  54542. },
  54543. },
  54544. [
  54545. {
  54546. name: "Ferret Sized",
  54547. height: math.unit(2 + 5/12, "feet")
  54548. },
  54549. {
  54550. name: "Normal",
  54551. height: math.unit(5 + 4/12, "feet"),
  54552. default: true
  54553. },
  54554. ]
  54555. ))
  54556. characterMakers.push(() => makeCharacter(
  54557. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54558. {
  54559. front: {
  54560. height: math.unit(84 + 8/12, "feet"),
  54561. weight: math.unit(942180, "lb"),
  54562. name: "Front",
  54563. image: {
  54564. source: "./media/characters/daurine-arima/front.svg",
  54565. extra: 1989/1782,
  54566. bottom: 37/2026
  54567. }
  54568. },
  54569. side: {
  54570. height: math.unit(84 + 8/12, "feet"),
  54571. weight: math.unit(942180, "lb"),
  54572. name: "Side",
  54573. image: {
  54574. source: "./media/characters/daurine-arima/side.svg",
  54575. extra: 1997/1790,
  54576. bottom: 21/2018
  54577. }
  54578. },
  54579. back: {
  54580. height: math.unit(84 + 8/12, "feet"),
  54581. weight: math.unit(942180, "lb"),
  54582. name: "Back",
  54583. image: {
  54584. source: "./media/characters/daurine-arima/back.svg",
  54585. extra: 1992/1800,
  54586. bottom: 12/2004
  54587. }
  54588. },
  54589. head: {
  54590. height: math.unit(15.5, "feet"),
  54591. name: "Head",
  54592. image: {
  54593. source: "./media/characters/daurine-arima/head.svg"
  54594. }
  54595. },
  54596. headAlt: {
  54597. height: math.unit(19.19, "feet"),
  54598. name: "Head (Alt)",
  54599. image: {
  54600. source: "./media/characters/daurine-arima/head-alt.svg"
  54601. }
  54602. },
  54603. },
  54604. [
  54605. {
  54606. name: "Minimum height",
  54607. height: math.unit(8 + 10/12, "feet")
  54608. },
  54609. {
  54610. name: "Comfort height",
  54611. height: math.unit(19 + 6 /12, "feet")
  54612. },
  54613. {
  54614. name: "\"Normal\" height",
  54615. height: math.unit(28 + 10/12, "feet")
  54616. },
  54617. {
  54618. name: "Base height",
  54619. height: math.unit(84 + 8/12, "feet"),
  54620. default: true
  54621. },
  54622. {
  54623. name: "Mini-macro",
  54624. height: math.unit(2360, "feet")
  54625. },
  54626. {
  54627. name: "Macro",
  54628. height: math.unit(10, "miles")
  54629. },
  54630. {
  54631. name: "Goddess",
  54632. height: math.unit(9.99e40, "yottameters")
  54633. },
  54634. ]
  54635. ))
  54636. characterMakers.push(() => makeCharacter(
  54637. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54638. {
  54639. front: {
  54640. height: math.unit(2.3, "meters"),
  54641. name: "Front",
  54642. image: {
  54643. source: "./media/characters/cilenomon/front.svg",
  54644. extra: 1963/1778,
  54645. bottom: 54/2017
  54646. }
  54647. },
  54648. },
  54649. [
  54650. {
  54651. name: "Normal",
  54652. height: math.unit(2.3, "meters"),
  54653. default: true
  54654. },
  54655. {
  54656. name: "Big",
  54657. height: math.unit(5, "meters")
  54658. },
  54659. {
  54660. name: "Macro",
  54661. height: math.unit(30, "meters")
  54662. },
  54663. {
  54664. name: "True",
  54665. height: math.unit(1, "universe")
  54666. },
  54667. ]
  54668. ))
  54669. characterMakers.push(() => makeCharacter(
  54670. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54671. {
  54672. front: {
  54673. height: math.unit(5, "feet"),
  54674. name: "Front",
  54675. image: {
  54676. source: "./media/characters/sen-mink/front.svg",
  54677. extra: 1727/1675,
  54678. bottom: 35/1762
  54679. }
  54680. },
  54681. },
  54682. [
  54683. {
  54684. name: "Normal",
  54685. height: math.unit(5, "feet"),
  54686. default: true
  54687. },
  54688. ]
  54689. ))
  54690. characterMakers.push(() => makeCharacter(
  54691. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54692. {
  54693. front: {
  54694. height: math.unit(5.42999, "feet"),
  54695. weight: math.unit(100, "lb"),
  54696. name: "Front",
  54697. image: {
  54698. source: "./media/characters/ophois/front.svg",
  54699. extra: 1429/1286,
  54700. bottom: 60/1489
  54701. }
  54702. },
  54703. },
  54704. [
  54705. {
  54706. name: "Normal",
  54707. height: math.unit(5.42999, "feet"),
  54708. default: true
  54709. },
  54710. ]
  54711. ))
  54712. characterMakers.push(() => makeCharacter(
  54713. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54714. {
  54715. front: {
  54716. height: math.unit(2, "meters"),
  54717. name: "Front",
  54718. image: {
  54719. source: "./media/characters/riley/front.svg",
  54720. extra: 1779/1754,
  54721. bottom: 139/1918
  54722. }
  54723. },
  54724. },
  54725. [
  54726. {
  54727. name: "Normal",
  54728. height: math.unit(2, "meters"),
  54729. default: true
  54730. },
  54731. ]
  54732. ))
  54733. characterMakers.push(() => makeCharacter(
  54734. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54735. {
  54736. front: {
  54737. height: math.unit(6 + 2/12, "feet"),
  54738. weight: math.unit(195, "lb"),
  54739. preyCapacity: math.unit(6, "people"),
  54740. name: "Front",
  54741. image: {
  54742. source: "./media/characters/shuken-flash/front.svg",
  54743. extra: 1905/1739,
  54744. bottom: 65/1970
  54745. }
  54746. },
  54747. back: {
  54748. height: math.unit(6 + 2/12, "feet"),
  54749. weight: math.unit(195, "lb"),
  54750. preyCapacity: math.unit(6, "people"),
  54751. name: "Back",
  54752. image: {
  54753. source: "./media/characters/shuken-flash/back.svg",
  54754. extra: 1912/1751,
  54755. bottom: 13/1925
  54756. }
  54757. },
  54758. },
  54759. [
  54760. {
  54761. name: "Normal",
  54762. height: math.unit(6 + 2/12, "feet"),
  54763. default: true
  54764. },
  54765. ]
  54766. ))
  54767. characterMakers.push(() => makeCharacter(
  54768. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54769. {
  54770. front: {
  54771. height: math.unit(5 + 9/12, "feet"),
  54772. weight: math.unit(150, "lb"),
  54773. name: "Front",
  54774. image: {
  54775. source: "./media/characters/plat/front.svg",
  54776. extra: 1816/1703,
  54777. bottom: 43/1859
  54778. }
  54779. },
  54780. side: {
  54781. height: math.unit(5 + 9/12, "feet"),
  54782. weight: math.unit(300, "lb"),
  54783. name: "Side",
  54784. image: {
  54785. source: "./media/characters/plat/side.svg",
  54786. extra: 1824/1699,
  54787. bottom: 18/1842
  54788. }
  54789. },
  54790. },
  54791. [
  54792. {
  54793. name: "Normal",
  54794. height: math.unit(5 + 9/12, "feet"),
  54795. default: true
  54796. },
  54797. ]
  54798. ))
  54799. characterMakers.push(() => makeCharacter(
  54800. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54801. {
  54802. front: {
  54803. height: math.unit(9, "feet"),
  54804. weight: math.unit(1800, "lb"),
  54805. name: "Front",
  54806. image: {
  54807. source: "./media/characters/elaine/front.svg",
  54808. extra: 1833/1354,
  54809. bottom: 25/1858
  54810. }
  54811. },
  54812. back: {
  54813. height: math.unit(8.8, "feet"),
  54814. weight: math.unit(1800, "lb"),
  54815. name: "Back",
  54816. image: {
  54817. source: "./media/characters/elaine/back.svg",
  54818. extra: 1641/1233,
  54819. bottom: 53/1694
  54820. }
  54821. },
  54822. },
  54823. [
  54824. {
  54825. name: "Normal",
  54826. height: math.unit(9, "feet"),
  54827. default: true
  54828. },
  54829. ]
  54830. ))
  54831. characterMakers.push(() => makeCharacter(
  54832. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54833. {
  54834. front: {
  54835. height: math.unit(17 + 9/12, "feet"),
  54836. weight: math.unit(8000, "lb"),
  54837. name: "Front",
  54838. image: {
  54839. source: "./media/characters/vera-raven/front.svg",
  54840. extra: 1457/1412,
  54841. bottom: 121/1578
  54842. }
  54843. },
  54844. side: {
  54845. height: math.unit(17 + 9/12, "feet"),
  54846. weight: math.unit(8000, "lb"),
  54847. name: "Side",
  54848. image: {
  54849. source: "./media/characters/vera-raven/side.svg",
  54850. extra: 1510/1464,
  54851. bottom: 54/1564
  54852. }
  54853. },
  54854. },
  54855. [
  54856. {
  54857. name: "Normal",
  54858. height: math.unit(17 + 9/12, "feet"),
  54859. default: true
  54860. },
  54861. ]
  54862. ))
  54863. characterMakers.push(() => makeCharacter(
  54864. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54865. {
  54866. dressed: {
  54867. height: math.unit(6 + 9/12, "feet"),
  54868. name: "Dressed",
  54869. image: {
  54870. source: "./media/characters/nakisha/dressed.svg",
  54871. extra: 1909/1757,
  54872. bottom: 48/1957
  54873. }
  54874. },
  54875. nude: {
  54876. height: math.unit(6 + 9/12, "feet"),
  54877. name: "Nude",
  54878. image: {
  54879. source: "./media/characters/nakisha/nude.svg",
  54880. extra: 1917/1765,
  54881. bottom: 34/1951
  54882. }
  54883. },
  54884. },
  54885. [
  54886. {
  54887. name: "Normal",
  54888. height: math.unit(6 + 9/12, "feet"),
  54889. default: true
  54890. },
  54891. ]
  54892. ))
  54893. characterMakers.push(() => makeCharacter(
  54894. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54895. {
  54896. front: {
  54897. height: math.unit(87, "meters"),
  54898. name: "Front",
  54899. image: {
  54900. source: "./media/characters/serafin/front.svg",
  54901. extra: 1919/1776,
  54902. bottom: 65/1984
  54903. }
  54904. },
  54905. },
  54906. [
  54907. {
  54908. name: "Normal",
  54909. height: math.unit(87, "meters"),
  54910. default: true
  54911. },
  54912. ]
  54913. ))
  54914. characterMakers.push(() => makeCharacter(
  54915. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54916. {
  54917. front: {
  54918. height: math.unit(6, "feet"),
  54919. weight: math.unit(200, "lb"),
  54920. name: "Front",
  54921. image: {
  54922. source: "./media/characters/poptart/front.svg",
  54923. extra: 615/583,
  54924. bottom: 23/638
  54925. }
  54926. },
  54927. back: {
  54928. height: math.unit(6, "feet"),
  54929. weight: math.unit(200, "lb"),
  54930. name: "Back",
  54931. image: {
  54932. source: "./media/characters/poptart/back.svg",
  54933. extra: 617/584,
  54934. bottom: 22/639
  54935. }
  54936. },
  54937. frontNsfw: {
  54938. height: math.unit(6, "feet"),
  54939. weight: math.unit(200, "lb"),
  54940. name: "Front (NSFW)",
  54941. image: {
  54942. source: "./media/characters/poptart/front-nsfw.svg",
  54943. extra: 615/583,
  54944. bottom: 23/638
  54945. }
  54946. },
  54947. backNsfw: {
  54948. height: math.unit(6, "feet"),
  54949. weight: math.unit(200, "lb"),
  54950. name: "Back (NSFW)",
  54951. image: {
  54952. source: "./media/characters/poptart/back-nsfw.svg",
  54953. extra: 617/584,
  54954. bottom: 22/639
  54955. }
  54956. },
  54957. hand: {
  54958. height: math.unit(1.14, "feet"),
  54959. name: "Hand",
  54960. image: {
  54961. source: "./media/characters/poptart/hand.svg"
  54962. }
  54963. },
  54964. foot: {
  54965. height: math.unit(1.5, "feet"),
  54966. name: "Foot",
  54967. image: {
  54968. source: "./media/characters/poptart/foot.svg"
  54969. }
  54970. },
  54971. },
  54972. [
  54973. {
  54974. name: "Normal",
  54975. height: math.unit(6, "feet"),
  54976. default: true
  54977. },
  54978. {
  54979. name: "Grande",
  54980. height: math.unit(350, "feet")
  54981. },
  54982. {
  54983. name: "Massif",
  54984. height: math.unit(967, "feet")
  54985. },
  54986. ]
  54987. ))
  54988. characterMakers.push(() => makeCharacter(
  54989. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54990. {
  54991. hyenaSide: {
  54992. height: math.unit(120, "cm"),
  54993. weight: math.unit(120, "lb"),
  54994. name: "Side",
  54995. image: {
  54996. source: "./media/characters/trance/hyena-side.svg",
  54997. extra: 998/904,
  54998. bottom: 76/1074
  54999. }
  55000. },
  55001. },
  55002. [
  55003. {
  55004. name: "Normal",
  55005. height: math.unit(120, "cm"),
  55006. default: true
  55007. },
  55008. {
  55009. name: "Dire",
  55010. height: math.unit(230, "cm")
  55011. },
  55012. {
  55013. name: "Macro",
  55014. height: math.unit(37, "feet")
  55015. },
  55016. ]
  55017. ))
  55018. characterMakers.push(() => makeCharacter(
  55019. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55020. {
  55021. front: {
  55022. height: math.unit(6 + 3/12, "feet"),
  55023. name: "Front",
  55024. image: {
  55025. source: "./media/characters/michael-berretta/front.svg",
  55026. extra: 515/494,
  55027. bottom: 20/535
  55028. }
  55029. },
  55030. back: {
  55031. height: math.unit(6 + 3/12, "feet"),
  55032. name: "Back",
  55033. image: {
  55034. source: "./media/characters/michael-berretta/back.svg",
  55035. extra: 520/497,
  55036. bottom: 21/541
  55037. }
  55038. },
  55039. frontNsfw: {
  55040. height: math.unit(6 + 3/12, "feet"),
  55041. name: "Front (NSFW)",
  55042. image: {
  55043. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55044. extra: 515/494,
  55045. bottom: 20/535
  55046. }
  55047. },
  55048. dick: {
  55049. height: math.unit(1, "feet"),
  55050. name: "Dick",
  55051. image: {
  55052. source: "./media/characters/michael-berretta/dick.svg"
  55053. }
  55054. },
  55055. },
  55056. [
  55057. {
  55058. name: "Normal",
  55059. height: math.unit(6 + 3/12, "feet"),
  55060. default: true
  55061. },
  55062. {
  55063. name: "Big",
  55064. height: math.unit(12, "feet")
  55065. },
  55066. {
  55067. name: "Macro",
  55068. height: math.unit(187.5, "feet")
  55069. },
  55070. ]
  55071. ))
  55072. characterMakers.push(() => makeCharacter(
  55073. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55074. {
  55075. front: {
  55076. height: math.unit(9 + 9/12, "feet"),
  55077. weight: math.unit(1244, "lb"),
  55078. name: "Front",
  55079. image: {
  55080. source: "./media/characters/stella-edgecomb/front.svg",
  55081. extra: 1835/1706,
  55082. bottom: 49/1884
  55083. }
  55084. },
  55085. pen: {
  55086. height: math.unit(0.95, "feet"),
  55087. name: "Pen",
  55088. image: {
  55089. source: "./media/characters/stella-edgecomb/pen.svg"
  55090. }
  55091. },
  55092. },
  55093. [
  55094. {
  55095. name: "Cozy Bear",
  55096. height: math.unit(0.5, "inches")
  55097. },
  55098. {
  55099. name: "Normal",
  55100. height: math.unit(9 + 9/12, "feet"),
  55101. default: true
  55102. },
  55103. {
  55104. name: "Giga Bear",
  55105. height: math.unit(1, "mile")
  55106. },
  55107. {
  55108. name: "Great Bear",
  55109. height: math.unit(53, "miles")
  55110. },
  55111. {
  55112. name: "Goddess Bear",
  55113. height: math.unit(40000, "miles")
  55114. },
  55115. {
  55116. name: "Sun Bear",
  55117. height: math.unit(900000, "miles")
  55118. },
  55119. ]
  55120. ))
  55121. characterMakers.push(() => makeCharacter(
  55122. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55123. {
  55124. anthroFront: {
  55125. height: math.unit(556, "cm"),
  55126. weight: math.unit(2650, "kg"),
  55127. preyCapacity: math.unit(3, "people"),
  55128. name: "Front",
  55129. image: {
  55130. source: "./media/characters/ash´iika/front.svg",
  55131. extra: 710/673,
  55132. bottom: 15/725
  55133. },
  55134. form: "anthro",
  55135. default: true
  55136. },
  55137. anthroSide: {
  55138. height: math.unit(556, "cm"),
  55139. weight: math.unit(2650, "kg"),
  55140. preyCapacity: math.unit(3, "people"),
  55141. name: "Side",
  55142. image: {
  55143. source: "./media/characters/ash´iika/side.svg",
  55144. extra: 696/676,
  55145. bottom: 13/709
  55146. },
  55147. form: "anthro"
  55148. },
  55149. anthroDressed: {
  55150. height: math.unit(556, "cm"),
  55151. weight: math.unit(2650, "kg"),
  55152. preyCapacity: math.unit(3, "people"),
  55153. name: "Dressed",
  55154. image: {
  55155. source: "./media/characters/ash´iika/dressed.svg",
  55156. extra: 710/673,
  55157. bottom: 15/725
  55158. },
  55159. form: "anthro"
  55160. },
  55161. anthroHead: {
  55162. height: math.unit(3.5, "feet"),
  55163. name: "Head",
  55164. image: {
  55165. source: "./media/characters/ash´iika/head.svg",
  55166. extra: 348/291,
  55167. bottom: 45/393
  55168. },
  55169. form: "anthro"
  55170. },
  55171. feralSide: {
  55172. height: math.unit(870, "cm"),
  55173. weight: math.unit(17500, "kg"),
  55174. preyCapacity: math.unit(15, "people"),
  55175. name: "Side",
  55176. image: {
  55177. source: "./media/characters/ash´iika/feral.svg",
  55178. extra: 595/199,
  55179. bottom: 7/602
  55180. },
  55181. form: "feral",
  55182. default: true,
  55183. },
  55184. },
  55185. [
  55186. {
  55187. name: "Normal",
  55188. height: math.unit(556, "cm"),
  55189. default: true,
  55190. form: "anthro"
  55191. },
  55192. {
  55193. name: "Macro",
  55194. height: math.unit(88, "meters"),
  55195. form: "anthro"
  55196. },
  55197. {
  55198. name: "Normal",
  55199. height: math.unit(870, "cm"),
  55200. default: true,
  55201. form: "feral"
  55202. },
  55203. {
  55204. name: "Large",
  55205. height: math.unit(25, "meters"),
  55206. form: "feral"
  55207. },
  55208. ],
  55209. {
  55210. "anthro": {
  55211. name: "Anthro",
  55212. default: true
  55213. },
  55214. "feral": {
  55215. name: "Feral",
  55216. },
  55217. }
  55218. ))
  55219. characterMakers.push(() => makeCharacter(
  55220. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55221. {
  55222. front: {
  55223. height: math.unit(10, "feet"),
  55224. weight: math.unit(800, "lb"),
  55225. name: "Front",
  55226. image: {
  55227. source: "./media/characters/yen/front.svg",
  55228. extra: 443/411,
  55229. bottom: 6/449
  55230. }
  55231. },
  55232. sleeping: {
  55233. height: math.unit(10, "feet"),
  55234. weight: math.unit(800, "lb"),
  55235. name: "Sleeping",
  55236. image: {
  55237. source: "./media/characters/yen/sleeping.svg",
  55238. extra: 470/422,
  55239. bottom: 0/470
  55240. }
  55241. },
  55242. head: {
  55243. height: math.unit(2.2, "feet"),
  55244. name: "Head",
  55245. image: {
  55246. source: "./media/characters/yen/head.svg"
  55247. }
  55248. },
  55249. headAlt: {
  55250. height: math.unit(2.1, "feet"),
  55251. name: "Head (Alt)",
  55252. image: {
  55253. source: "./media/characters/yen/head-alt.svg"
  55254. }
  55255. },
  55256. },
  55257. [
  55258. {
  55259. name: "Normal",
  55260. height: math.unit(10, "feet"),
  55261. default: true
  55262. },
  55263. ]
  55264. ))
  55265. characterMakers.push(() => makeCharacter(
  55266. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55267. {
  55268. front: {
  55269. height: math.unit(12, "feet"),
  55270. name: "Front",
  55271. image: {
  55272. source: "./media/characters/citra/front.svg",
  55273. extra: 1950/1710,
  55274. bottom: 47/1997
  55275. }
  55276. },
  55277. },
  55278. [
  55279. {
  55280. name: "Normal",
  55281. height: math.unit(12, "feet"),
  55282. default: true
  55283. },
  55284. ]
  55285. ))
  55286. characterMakers.push(() => makeCharacter(
  55287. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55288. {
  55289. side: {
  55290. height: math.unit(7 + 10/12, "feet"),
  55291. name: "Side",
  55292. image: {
  55293. source: "./media/characters/sholstim/side.svg",
  55294. extra: 786/682,
  55295. bottom: 40/826
  55296. }
  55297. },
  55298. },
  55299. [
  55300. {
  55301. name: "Normal",
  55302. height: math.unit(7 + 10/12, "feet"),
  55303. default: true
  55304. },
  55305. ]
  55306. ))
  55307. characterMakers.push(() => makeCharacter(
  55308. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55309. {
  55310. front: {
  55311. height: math.unit(3.10, "meters"),
  55312. name: "Front",
  55313. image: {
  55314. source: "./media/characters/aggyn/front.svg",
  55315. extra: 1188/963,
  55316. bottom: 24/1212
  55317. }
  55318. },
  55319. },
  55320. [
  55321. {
  55322. name: "Normal",
  55323. height: math.unit(3.10, "meters"),
  55324. default: true
  55325. },
  55326. ]
  55327. ))
  55328. characterMakers.push(() => makeCharacter(
  55329. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55330. {
  55331. front: {
  55332. height: math.unit(7 + 5/12, "feet"),
  55333. weight: math.unit(687, "lb"),
  55334. name: "Front",
  55335. image: {
  55336. source: "./media/characters/alsandair-hergenroether/front.svg",
  55337. extra: 1251/1186,
  55338. bottom: 75/1326
  55339. }
  55340. },
  55341. back: {
  55342. height: math.unit(7 + 5/12, "feet"),
  55343. weight: math.unit(687, "lb"),
  55344. name: "Back",
  55345. image: {
  55346. source: "./media/characters/alsandair-hergenroether/back.svg",
  55347. extra: 1290/1229,
  55348. bottom: 17/1307
  55349. }
  55350. },
  55351. },
  55352. [
  55353. {
  55354. name: "Max Compression",
  55355. height: math.unit(7 + 5/12, "feet"),
  55356. default: true
  55357. },
  55358. {
  55359. name: "\"Normal\"",
  55360. height: math.unit(2, "universes")
  55361. },
  55362. ]
  55363. ))
  55364. characterMakers.push(() => makeCharacter(
  55365. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55366. {
  55367. front: {
  55368. height: math.unit(4 + 1/12, "feet"),
  55369. weight: math.unit(92, "lb"),
  55370. name: "Front",
  55371. image: {
  55372. source: "./media/characters/ie/front.svg",
  55373. extra: 1585/1352,
  55374. bottom: 91/1676
  55375. }
  55376. },
  55377. },
  55378. [
  55379. {
  55380. name: "Normal",
  55381. height: math.unit(4 + 1/12, "feet"),
  55382. default: true
  55383. },
  55384. ]
  55385. ))
  55386. characterMakers.push(() => makeCharacter(
  55387. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55388. {
  55389. anthro: {
  55390. height: math.unit(6, "feet"),
  55391. weight: math.unit(150, "lb"),
  55392. name: "Front",
  55393. image: {
  55394. source: "./media/characters/willow/anthro.svg",
  55395. extra: 1073/986,
  55396. bottom: 34/1107
  55397. },
  55398. form: "anthro",
  55399. default: true
  55400. },
  55401. taur: {
  55402. height: math.unit(6, "feet"),
  55403. weight: math.unit(150, "lb"),
  55404. name: "Side",
  55405. image: {
  55406. source: "./media/characters/willow/taur.svg",
  55407. extra: 647/512,
  55408. bottom: 136/783
  55409. },
  55410. form: "taur",
  55411. default: true
  55412. },
  55413. },
  55414. [
  55415. {
  55416. name: "Humanoid",
  55417. height: math.unit(2.7, "meters"),
  55418. form: "anthro"
  55419. },
  55420. {
  55421. name: "Normal",
  55422. height: math.unit(9, "meters"),
  55423. form: "anthro",
  55424. default: true
  55425. },
  55426. {
  55427. name: "Humanoid",
  55428. height: math.unit(2.1, "meters"),
  55429. form: "taur"
  55430. },
  55431. {
  55432. name: "Normal",
  55433. height: math.unit(7, "meters"),
  55434. form: "taur",
  55435. default: true
  55436. },
  55437. ],
  55438. {
  55439. "anthro": {
  55440. name: "Anthro",
  55441. default: true
  55442. },
  55443. "taur": {
  55444. name: "Taur",
  55445. },
  55446. }
  55447. ))
  55448. characterMakers.push(() => makeCharacter(
  55449. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55450. {
  55451. front: {
  55452. height: math.unit(2 + 5/12, "feet"),
  55453. name: "Front",
  55454. image: {
  55455. source: "./media/characters/kyan/front.svg",
  55456. extra: 460/334,
  55457. bottom: 23/483
  55458. },
  55459. extraAttributes: {
  55460. "toeLength": {
  55461. name: "Toe Length",
  55462. power: 1,
  55463. type: "length",
  55464. base: math.unit(7, "cm")
  55465. },
  55466. "toeclawLength": {
  55467. name: "Toeclaw Length",
  55468. power: 1,
  55469. type: "length",
  55470. base: math.unit(4.7, "cm")
  55471. },
  55472. "earHeight": {
  55473. name: "Ear Height",
  55474. power: 1,
  55475. type: "length",
  55476. base: math.unit(14.1, "cm")
  55477. },
  55478. }
  55479. },
  55480. paws: {
  55481. height: math.unit(0.45, "feet"),
  55482. name: "Paws",
  55483. image: {
  55484. source: "./media/characters/kyan/paws.svg",
  55485. extra: 581/581,
  55486. bottom: 114/695
  55487. }
  55488. },
  55489. },
  55490. [
  55491. {
  55492. name: "Normal",
  55493. height: math.unit(2 + 5/12, "feet"),
  55494. default: true
  55495. },
  55496. ]
  55497. ))
  55498. characterMakers.push(() => makeCharacter(
  55499. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55500. {
  55501. front: {
  55502. height: math.unit(2 + 2/3, "feet"),
  55503. name: "Front",
  55504. image: {
  55505. source: "./media/characters/xazzon/front.svg",
  55506. extra: 1109/984,
  55507. bottom: 42/1151
  55508. }
  55509. },
  55510. back: {
  55511. height: math.unit(2 + 2/3, "feet"),
  55512. name: "Back",
  55513. image: {
  55514. source: "./media/characters/xazzon/back.svg",
  55515. extra: 1095/971,
  55516. bottom: 23/1118
  55517. }
  55518. },
  55519. },
  55520. [
  55521. {
  55522. name: "Normal",
  55523. height: math.unit(2 + 2/3, "feet"),
  55524. default: true
  55525. },
  55526. ]
  55527. ))
  55528. characterMakers.push(() => makeCharacter(
  55529. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55530. {
  55531. front: {
  55532. height: math.unit(8, "feet"),
  55533. weight: math.unit(300, "lb"),
  55534. name: "Front",
  55535. image: {
  55536. source: "./media/characters/khyla-shadowsong/front.svg",
  55537. extra: 861/798,
  55538. bottom: 32/893
  55539. }
  55540. },
  55541. side: {
  55542. height: math.unit(8, "feet"),
  55543. weight: math.unit(300, "lb"),
  55544. name: "Side",
  55545. image: {
  55546. source: "./media/characters/khyla-shadowsong/side.svg",
  55547. extra: 790/750,
  55548. bottom: 87/877
  55549. }
  55550. },
  55551. back: {
  55552. height: math.unit(8, "feet"),
  55553. weight: math.unit(300, "lb"),
  55554. name: "Back",
  55555. image: {
  55556. source: "./media/characters/khyla-shadowsong/back.svg",
  55557. extra: 855/808,
  55558. bottom: 14/869
  55559. }
  55560. },
  55561. head: {
  55562. height: math.unit(2.7, "feet"),
  55563. name: "Head",
  55564. image: {
  55565. source: "./media/characters/khyla-shadowsong/head.svg"
  55566. }
  55567. },
  55568. },
  55569. [
  55570. {
  55571. name: "Micro",
  55572. height: math.unit(6, "inches")
  55573. },
  55574. {
  55575. name: "Normal",
  55576. height: math.unit(8, "feet"),
  55577. default: true
  55578. },
  55579. ]
  55580. ))
  55581. characterMakers.push(() => makeCharacter(
  55582. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55583. {
  55584. hyperFront: {
  55585. height: math.unit(9 + 4/12, "feet"),
  55586. weight: math.unit(2000, "lb"),
  55587. name: "Front",
  55588. image: {
  55589. source: "./media/characters/tiden/hyper-front.svg",
  55590. extra: 400/382,
  55591. bottom: 6/406
  55592. },
  55593. form: "hyper",
  55594. },
  55595. regularFront: {
  55596. height: math.unit(7 + 10/12, "feet"),
  55597. weight: math.unit(470, "lb"),
  55598. name: "Front",
  55599. image: {
  55600. source: "./media/characters/tiden/regular-front.svg",
  55601. extra: 468/442,
  55602. bottom: 6/474
  55603. },
  55604. form: "regular",
  55605. },
  55606. },
  55607. [
  55608. {
  55609. name: "Normal",
  55610. height: math.unit(9 + 4/12, "feet"),
  55611. default: true,
  55612. form: "hyper"
  55613. },
  55614. {
  55615. name: "Normal",
  55616. height: math.unit(7 + 10/12, "feet"),
  55617. default: true,
  55618. form: "regular"
  55619. },
  55620. ],
  55621. {
  55622. "hyper": {
  55623. name: "Hyper",
  55624. default: true
  55625. },
  55626. "regular": {
  55627. name: "Regular",
  55628. },
  55629. }
  55630. ))
  55631. characterMakers.push(() => makeCharacter(
  55632. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55633. {
  55634. side: {
  55635. height: math.unit(6, "feet"),
  55636. weight: math.unit(150, "lb"),
  55637. name: "Side",
  55638. image: {
  55639. source: "./media/characters/jason-crowe/side.svg",
  55640. extra: 1771/766,
  55641. bottom: 219/1990
  55642. }
  55643. },
  55644. },
  55645. [
  55646. {
  55647. name: "Pocket Gryphon",
  55648. height: math.unit(6, "cm")
  55649. },
  55650. {
  55651. name: "Raven",
  55652. height: math.unit(60, "cm")
  55653. },
  55654. {
  55655. name: "Normal",
  55656. height: math.unit(1, "meter"),
  55657. default: true
  55658. },
  55659. ]
  55660. ))
  55661. characterMakers.push(() => makeCharacter(
  55662. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55663. {
  55664. front: {
  55665. height: math.unit(9 + 6/12, "feet"),
  55666. weight: math.unit(1100, "lb"),
  55667. name: "Front",
  55668. image: {
  55669. source: "./media/characters/django/front.svg",
  55670. extra: 1231/1136,
  55671. bottom: 34/1265
  55672. }
  55673. },
  55674. side: {
  55675. height: math.unit(9 + 6/12, "feet"),
  55676. weight: math.unit(1100, "lb"),
  55677. name: "Side",
  55678. image: {
  55679. source: "./media/characters/django/side.svg",
  55680. extra: 1267/1174,
  55681. bottom: 9/1276
  55682. }
  55683. },
  55684. },
  55685. [
  55686. {
  55687. name: "Normal",
  55688. height: math.unit(9 + 6/12, "feet"),
  55689. default: true
  55690. },
  55691. {
  55692. name: "Macro 1",
  55693. height: math.unit(50, "feet")
  55694. },
  55695. {
  55696. name: "Macro 2",
  55697. height: math.unit(500, "feet")
  55698. },
  55699. {
  55700. name: "Mega Macro",
  55701. height: math.unit(5300, "feet")
  55702. },
  55703. ]
  55704. ))
  55705. characterMakers.push(() => makeCharacter(
  55706. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55707. {
  55708. frontSfw: {
  55709. height: math.unit(120, "cm"),
  55710. weight: math.unit(15, "kg"),
  55711. name: "Front (SFW)",
  55712. image: {
  55713. source: "./media/characters/eri/front-sfw.svg",
  55714. extra: 1014/939,
  55715. bottom: 37/1051
  55716. },
  55717. form: "moth",
  55718. },
  55719. frontNsfw: {
  55720. height: math.unit(120, "cm"),
  55721. weight: math.unit(15, "kg"),
  55722. name: "Front (NSFW)",
  55723. image: {
  55724. source: "./media/characters/eri/front-nsfw.svg",
  55725. extra: 1014/939,
  55726. bottom: 37/1051
  55727. },
  55728. form: "moth",
  55729. default: true
  55730. },
  55731. egg: {
  55732. height: math.unit(10, "cm"),
  55733. name: "Egg",
  55734. image: {
  55735. source: "./media/characters/eri/egg.svg"
  55736. },
  55737. form: "egg",
  55738. default: true
  55739. },
  55740. },
  55741. [
  55742. {
  55743. name: "Normal",
  55744. height: math.unit(120, "cm"),
  55745. default: true,
  55746. form: "moth"
  55747. },
  55748. {
  55749. name: "Normal",
  55750. height: math.unit(10, "cm"),
  55751. default: true,
  55752. form: "egg"
  55753. },
  55754. ],
  55755. {
  55756. "moth": {
  55757. name: "Moth",
  55758. default: true
  55759. },
  55760. "egg": {
  55761. name: "Egg",
  55762. },
  55763. }
  55764. ))
  55765. characterMakers.push(() => makeCharacter(
  55766. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55767. {
  55768. front: {
  55769. height: math.unit(200, "feet"),
  55770. name: "Front",
  55771. image: {
  55772. source: "./media/characters/bishop-dowser/front.svg",
  55773. extra: 933/868,
  55774. bottom: 106/1039
  55775. }
  55776. },
  55777. },
  55778. [
  55779. {
  55780. name: "Giant",
  55781. height: math.unit(200, "feet"),
  55782. default: true
  55783. },
  55784. ]
  55785. ))
  55786. characterMakers.push(() => makeCharacter(
  55787. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55788. {
  55789. front: {
  55790. height: math.unit(2, "meters"),
  55791. preyCapacity: math.unit(3, "people"),
  55792. name: "Front",
  55793. image: {
  55794. source: "./media/characters/fryra/front.svg",
  55795. extra: 1025/948,
  55796. bottom: 30/1055
  55797. },
  55798. extraAttributes: {
  55799. "breastVolume": {
  55800. name: "Breast Volume",
  55801. power: 3,
  55802. type: "volume",
  55803. base: math.unit(8, "liters")
  55804. },
  55805. }
  55806. },
  55807. back: {
  55808. height: math.unit(2, "meters"),
  55809. preyCapacity: math.unit(3, "people"),
  55810. name: "Back",
  55811. image: {
  55812. source: "./media/characters/fryra/back.svg",
  55813. extra: 993/938,
  55814. bottom: 38/1031
  55815. },
  55816. extraAttributes: {
  55817. "breastVolume": {
  55818. name: "Breast Volume",
  55819. power: 3,
  55820. type: "volume",
  55821. base: math.unit(8, "liters")
  55822. },
  55823. }
  55824. },
  55825. head: {
  55826. height: math.unit(1.33, "feet"),
  55827. name: "Head",
  55828. image: {
  55829. source: "./media/characters/fryra/head.svg"
  55830. }
  55831. },
  55832. maw: {
  55833. height: math.unit(0.56, "feet"),
  55834. name: "Maw",
  55835. image: {
  55836. source: "./media/characters/fryra/maw.svg"
  55837. }
  55838. },
  55839. },
  55840. [
  55841. {
  55842. name: "Micro",
  55843. height: math.unit(5, "cm")
  55844. },
  55845. {
  55846. name: "Normal",
  55847. height: math.unit(2, "meters"),
  55848. default: true
  55849. },
  55850. {
  55851. name: "Small Macro",
  55852. height: math.unit(8, "meters")
  55853. },
  55854. {
  55855. name: "Macro",
  55856. height: math.unit(50, "meters")
  55857. },
  55858. {
  55859. name: "Megamacro",
  55860. height: math.unit(1, "km")
  55861. },
  55862. {
  55863. name: "Planetary",
  55864. height: math.unit(300000, "km")
  55865. },
  55866. {
  55867. name: "Universal",
  55868. height: math.unit(250, "lightyears")
  55869. },
  55870. {
  55871. name: "Fabric of Reality",
  55872. height: math.unit(1000, "multiverses")
  55873. },
  55874. ]
  55875. ))
  55876. characterMakers.push(() => makeCharacter(
  55877. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55878. {
  55879. frontDressed: {
  55880. height: math.unit(6 + 2/12, "feet"),
  55881. name: "Front (Dressed)",
  55882. image: {
  55883. source: "./media/characters/fiera/front-dressed.svg",
  55884. extra: 1883/1793,
  55885. bottom: 70/1953
  55886. }
  55887. },
  55888. backDressed: {
  55889. height: math.unit(6 + 2/12, "feet"),
  55890. name: "Back (Dressed)",
  55891. image: {
  55892. source: "./media/characters/fiera/back-dressed.svg",
  55893. extra: 1847/1780,
  55894. bottom: 70/1917
  55895. }
  55896. },
  55897. frontNude: {
  55898. height: math.unit(6 + 2/12, "feet"),
  55899. name: "Front (Nude)",
  55900. image: {
  55901. source: "./media/characters/fiera/front-nude.svg",
  55902. extra: 1875/1785,
  55903. bottom: 66/1941
  55904. }
  55905. },
  55906. backNude: {
  55907. height: math.unit(6 + 2/12, "feet"),
  55908. name: "Back (Nude)",
  55909. image: {
  55910. source: "./media/characters/fiera/back-nude.svg",
  55911. extra: 1855/1788,
  55912. bottom: 44/1899
  55913. }
  55914. },
  55915. maw: {
  55916. height: math.unit(1.3, "feet"),
  55917. name: "Maw",
  55918. image: {
  55919. source: "./media/characters/fiera/maw.svg"
  55920. }
  55921. },
  55922. paw: {
  55923. height: math.unit(1, "feet"),
  55924. name: "Paw",
  55925. image: {
  55926. source: "./media/characters/fiera/paw.svg"
  55927. }
  55928. },
  55929. shoe: {
  55930. height: math.unit(1.05, "feet"),
  55931. name: "Shoe",
  55932. image: {
  55933. source: "./media/characters/fiera/shoe.svg"
  55934. }
  55935. },
  55936. },
  55937. [
  55938. {
  55939. name: "Normal",
  55940. height: math.unit(6 + 2/12, "feet"),
  55941. default: true
  55942. },
  55943. {
  55944. name: "Size Difference",
  55945. height: math.unit(13, "feet")
  55946. },
  55947. {
  55948. name: "Macro",
  55949. height: math.unit(60, "feet")
  55950. },
  55951. {
  55952. name: "Mega Macro",
  55953. height: math.unit(200, "feet")
  55954. },
  55955. ]
  55956. ))
  55957. characterMakers.push(() => makeCharacter(
  55958. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55959. {
  55960. back: {
  55961. height: math.unit(6, "feet"),
  55962. name: "Back",
  55963. image: {
  55964. source: "./media/characters/flare/back.svg",
  55965. extra: 1883/1765,
  55966. bottom: 32/1915
  55967. }
  55968. },
  55969. },
  55970. [
  55971. {
  55972. name: "Normal",
  55973. height: math.unit(6 + 2/12, "feet"),
  55974. default: true
  55975. },
  55976. {
  55977. name: "Size Difference",
  55978. height: math.unit(13, "feet")
  55979. },
  55980. {
  55981. name: "Macro",
  55982. height: math.unit(60, "feet")
  55983. },
  55984. {
  55985. name: "Macro 2",
  55986. height: math.unit(100, "feet")
  55987. },
  55988. {
  55989. name: "Mega Macro",
  55990. height: math.unit(200, "feet")
  55991. },
  55992. ]
  55993. ))
  55994. characterMakers.push(() => makeCharacter(
  55995. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55996. {
  55997. front: {
  55998. height: math.unit(2.2, "m"),
  55999. weight: math.unit(300, "kg"),
  56000. name: "Front",
  56001. image: {
  56002. source: "./media/characters/hanna/front.svg",
  56003. extra: 1696/1502,
  56004. bottom: 206/1902
  56005. }
  56006. },
  56007. },
  56008. [
  56009. {
  56010. name: "Humanoid",
  56011. height: math.unit(2.2, "meters")
  56012. },
  56013. {
  56014. name: "Normal",
  56015. height: math.unit(4.8, "meters"),
  56016. default: true
  56017. },
  56018. ]
  56019. ))
  56020. characterMakers.push(() => makeCharacter(
  56021. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56022. {
  56023. front: {
  56024. height: math.unit(2.8, "meters"),
  56025. name: "Front",
  56026. image: {
  56027. source: "./media/characters/argo/front.svg",
  56028. extra: 731/518,
  56029. bottom: 84/815
  56030. }
  56031. },
  56032. },
  56033. [
  56034. {
  56035. name: "Normal",
  56036. height: math.unit(3, "meters"),
  56037. default: true
  56038. },
  56039. ]
  56040. ))
  56041. characterMakers.push(() => makeCharacter(
  56042. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56043. {
  56044. side: {
  56045. height: math.unit(3.8, "meters"),
  56046. name: "Side",
  56047. image: {
  56048. source: "./media/characters/sybil/side.svg",
  56049. extra: 382/361,
  56050. bottom: 25/407
  56051. }
  56052. },
  56053. },
  56054. [
  56055. {
  56056. name: "Normal",
  56057. height: math.unit(3.8, "meters"),
  56058. default: true
  56059. },
  56060. ]
  56061. ))
  56062. characterMakers.push(() => makeCharacter(
  56063. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56064. {
  56065. side: {
  56066. height: math.unit(6, "meters"),
  56067. name: "Side",
  56068. image: {
  56069. source: "./media/characters/plum/side.svg",
  56070. extra: 858/755,
  56071. bottom: 45/903
  56072. },
  56073. form: "taur",
  56074. default: true
  56075. },
  56076. back: {
  56077. height: math.unit(6.3, "meters"),
  56078. name: "Back",
  56079. image: {
  56080. source: "./media/characters/plum/back.svg",
  56081. extra: 887/813,
  56082. bottom: 32/919
  56083. },
  56084. form: "taur",
  56085. },
  56086. feral: {
  56087. height: math.unit(5.5, "meter"),
  56088. name: "Front",
  56089. image: {
  56090. source: "./media/characters/plum/feral.svg",
  56091. extra: 568/403,
  56092. bottom: 51/619
  56093. },
  56094. form: "feral",
  56095. default: true
  56096. },
  56097. head: {
  56098. height: math.unit(1.46, "meter"),
  56099. name: "Head",
  56100. image: {
  56101. source: "./media/characters/plum/head.svg"
  56102. },
  56103. form: "taur"
  56104. },
  56105. tailTop: {
  56106. height: math.unit(5.6, "meter"),
  56107. name: "Tail (Top)",
  56108. image: {
  56109. source: "./media/characters/plum/tail-top.svg"
  56110. },
  56111. form: "taur",
  56112. },
  56113. tailBottom: {
  56114. height: math.unit(5.6, "meter"),
  56115. name: "Tail (Bottom)",
  56116. image: {
  56117. source: "./media/characters/plum/tail-bottom.svg"
  56118. },
  56119. form: "taur",
  56120. },
  56121. feralHead: {
  56122. height: math.unit(2.56549521, "meter"),
  56123. name: "Head",
  56124. image: {
  56125. source: "./media/characters/plum/head.svg"
  56126. },
  56127. form: "feral"
  56128. },
  56129. feralTailTop: {
  56130. height: math.unit(5.44728435, "meter"),
  56131. name: "Tail (Top)",
  56132. image: {
  56133. source: "./media/characters/plum/tail-top.svg"
  56134. },
  56135. form: "feral",
  56136. },
  56137. feralTailBottom: {
  56138. height: math.unit(5.44728435, "meter"),
  56139. name: "Tail (Bottom)",
  56140. image: {
  56141. source: "./media/characters/plum/tail-bottom.svg"
  56142. },
  56143. form: "feral",
  56144. },
  56145. },
  56146. [
  56147. {
  56148. name: "Normal",
  56149. height: math.unit(6, "meters"),
  56150. default: true,
  56151. form: "taur"
  56152. },
  56153. {
  56154. name: "Normal",
  56155. height: math.unit(5.5, "meters"),
  56156. default: true,
  56157. form: "feral"
  56158. },
  56159. ],
  56160. {
  56161. "taur": {
  56162. name: "Taur",
  56163. default: true
  56164. },
  56165. "feral": {
  56166. name: "Feral",
  56167. },
  56168. }
  56169. ))
  56170. characterMakers.push(() => makeCharacter(
  56171. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56172. {
  56173. front: {
  56174. height: math.unit(6, "feet"),
  56175. weight: math.unit(115, "lb"),
  56176. name: "Front",
  56177. image: {
  56178. source: "./media/characters/celeste-kitsune/front.svg",
  56179. extra: 393/366,
  56180. bottom: 7/400
  56181. }
  56182. },
  56183. side: {
  56184. height: math.unit(6, "feet"),
  56185. weight: math.unit(115, "lb"),
  56186. name: "Side",
  56187. image: {
  56188. source: "./media/characters/celeste-kitsune/side.svg",
  56189. extra: 818/765,
  56190. bottom: 40/858
  56191. }
  56192. },
  56193. },
  56194. [
  56195. {
  56196. name: "Megamacro",
  56197. height: math.unit(1500, "miles"),
  56198. default: true
  56199. },
  56200. ]
  56201. ))
  56202. characterMakers.push(() => makeCharacter(
  56203. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56204. {
  56205. front: {
  56206. height: math.unit(8, "meters"),
  56207. name: "Front",
  56208. image: {
  56209. source: "./media/characters/io/front.svg",
  56210. extra: 865/722,
  56211. bottom: 58/923
  56212. }
  56213. },
  56214. back: {
  56215. height: math.unit(8, "meters"),
  56216. name: "Back",
  56217. image: {
  56218. source: "./media/characters/io/back.svg",
  56219. extra: 920/776,
  56220. bottom: 42/962
  56221. }
  56222. },
  56223. head: {
  56224. height: math.unit(5.09, "meters"),
  56225. name: "Head",
  56226. image: {
  56227. source: "./media/characters/io/head.svg"
  56228. }
  56229. },
  56230. hand: {
  56231. height: math.unit(1.6, "meters"),
  56232. name: "Hand",
  56233. image: {
  56234. source: "./media/characters/io/hand.svg"
  56235. }
  56236. },
  56237. foot: {
  56238. height: math.unit(2.4, "meters"),
  56239. name: "Foot",
  56240. image: {
  56241. source: "./media/characters/io/foot.svg"
  56242. }
  56243. },
  56244. },
  56245. [
  56246. {
  56247. name: "Normal",
  56248. height: math.unit(8, "meters"),
  56249. default: true
  56250. },
  56251. ]
  56252. ))
  56253. characterMakers.push(() => makeCharacter(
  56254. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56255. {
  56256. side: {
  56257. height: math.unit(6 + 3/12, "feet"),
  56258. weight: math.unit(225, "lb"),
  56259. name: "Side",
  56260. image: {
  56261. source: "./media/characters/silas/side.svg",
  56262. extra: 703/653,
  56263. bottom: 23/726
  56264. },
  56265. extraAttributes: {
  56266. "pawLength": {
  56267. name: "Paw Length",
  56268. power: 1,
  56269. type: "length",
  56270. base: math.unit(12, "inches")
  56271. },
  56272. "pawWidth": {
  56273. name: "Paw Width",
  56274. power: 1,
  56275. type: "length",
  56276. base: math.unit(4.5, "inches")
  56277. },
  56278. "pawArea": {
  56279. name: "Paw Area",
  56280. power: 2,
  56281. type: "area",
  56282. base: math.unit(12 * 4.5, "inches^2")
  56283. },
  56284. }
  56285. },
  56286. },
  56287. [
  56288. {
  56289. name: "Normal",
  56290. height: math.unit(6 + 3/12, "feet"),
  56291. default: true
  56292. },
  56293. ]
  56294. ))
  56295. characterMakers.push(() => makeCharacter(
  56296. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56297. {
  56298. back: {
  56299. height: math.unit(1.6, "meters"),
  56300. weight: math.unit(150, "lb"),
  56301. name: "Back",
  56302. image: {
  56303. source: "./media/characters/zari/back.svg",
  56304. extra: 424/411,
  56305. bottom: 32/456
  56306. },
  56307. extraAttributes: {
  56308. "bladderCapacity": {
  56309. name: "Bladder Size",
  56310. power: 3,
  56311. type: "volume",
  56312. base: math.unit(500, "mL")
  56313. },
  56314. "bladderFlow": {
  56315. name: "Flow Rate",
  56316. power: 3,
  56317. type: "volume",
  56318. base: math.unit(25, "mL")
  56319. },
  56320. }
  56321. },
  56322. },
  56323. [
  56324. {
  56325. name: "Normal",
  56326. height: math.unit(1.6, "meters"),
  56327. default: true
  56328. },
  56329. ]
  56330. ))
  56331. characterMakers.push(() => makeCharacter(
  56332. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56333. {
  56334. front: {
  56335. height: math.unit(25, "feet"),
  56336. weight: math.unit(5, "tons"),
  56337. name: "Front",
  56338. image: {
  56339. source: "./media/characters/charlie-human/front.svg",
  56340. extra: 1870/1740,
  56341. bottom: 102/1972
  56342. },
  56343. extraAttributes: {
  56344. "dickLength": {
  56345. name: "Dick Length",
  56346. power: 1,
  56347. type: "length",
  56348. base: math.unit(9, "feet")
  56349. },
  56350. }
  56351. },
  56352. back: {
  56353. height: math.unit(25, "feet"),
  56354. weight: math.unit(5, "tons"),
  56355. name: "Back",
  56356. image: {
  56357. source: "./media/characters/charlie-human/back.svg",
  56358. extra: 1858/1733,
  56359. bottom: 105/1963
  56360. },
  56361. extraAttributes: {
  56362. "dickLength": {
  56363. name: "Dick Length",
  56364. power: 1,
  56365. type: "length",
  56366. base: math.unit(9, "feet")
  56367. },
  56368. }
  56369. },
  56370. },
  56371. [
  56372. {
  56373. name: "\"Normal\"",
  56374. height: math.unit(6 + 4/12, "feet")
  56375. },
  56376. {
  56377. name: "Big",
  56378. height: math.unit(25, "feet"),
  56379. default: true
  56380. },
  56381. ]
  56382. ))
  56383. characterMakers.push(() => makeCharacter(
  56384. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56385. {
  56386. front: {
  56387. height: math.unit(6 + 4/12, "feet"),
  56388. weight: math.unit(320, "lb"),
  56389. name: "Front",
  56390. image: {
  56391. source: "./media/characters/ookitsu/front.svg",
  56392. extra: 1160/976,
  56393. bottom: 38/1198
  56394. }
  56395. },
  56396. frontNsfw: {
  56397. height: math.unit(6 + 4/12, "feet"),
  56398. weight: math.unit(320, "lb"),
  56399. name: "Front (NSFW)",
  56400. image: {
  56401. source: "./media/characters/ookitsu/front-nsfw.svg",
  56402. extra: 1160/976,
  56403. bottom: 38/1198
  56404. }
  56405. },
  56406. back: {
  56407. height: math.unit(6 + 4/12, "feet"),
  56408. weight: math.unit(320, "lb"),
  56409. name: "Back",
  56410. image: {
  56411. source: "./media/characters/ookitsu/back.svg",
  56412. extra: 1030/975,
  56413. bottom: 70/1100
  56414. }
  56415. },
  56416. head: {
  56417. height: math.unit(1.79, "feet"),
  56418. name: "Head",
  56419. image: {
  56420. source: "./media/characters/ookitsu/head.svg"
  56421. }
  56422. },
  56423. hand: {
  56424. height: math.unit(0.92, "feet"),
  56425. name: "Hand",
  56426. image: {
  56427. source: "./media/characters/ookitsu/hand.svg"
  56428. }
  56429. },
  56430. tails: {
  56431. height: math.unit(3.3, "feet"),
  56432. name: "Tails",
  56433. image: {
  56434. source: "./media/characters/ookitsu/tails.svg"
  56435. }
  56436. },
  56437. dick: {
  56438. height: math.unit(1.10833, "feet"),
  56439. name: "Dick",
  56440. image: {
  56441. source: "./media/characters/ookitsu/dick.svg"
  56442. }
  56443. },
  56444. },
  56445. [
  56446. {
  56447. name: "Normal",
  56448. height: math.unit(6 + 4/12, "feet"),
  56449. default: true
  56450. },
  56451. {
  56452. name: "Macro",
  56453. height: math.unit(30, "feet")
  56454. },
  56455. ]
  56456. ))
  56457. characterMakers.push(() => makeCharacter(
  56458. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56459. {
  56460. anthroFront: {
  56461. height: math.unit(6, "feet"),
  56462. weight: math.unit(250, "lb"),
  56463. name: "Front",
  56464. image: {
  56465. source: "./media/characters/jhusky/anthro-front.svg",
  56466. extra: 474/439,
  56467. bottom: 7/481
  56468. },
  56469. form: "anthro",
  56470. default: true
  56471. },
  56472. taurSideSfw: {
  56473. height: math.unit(6 + 4/12, "feet"),
  56474. weight: math.unit(500, "lb"),
  56475. name: "Side (SFW)",
  56476. image: {
  56477. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56478. extra: 1741/1629,
  56479. bottom: 196/1937
  56480. },
  56481. form: "taur",
  56482. default: true
  56483. },
  56484. taurSideNsfw: {
  56485. height: math.unit(6 + 4/12, "feet"),
  56486. weight: math.unit(500, "lb"),
  56487. name: "Taur (NSFW)",
  56488. image: {
  56489. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56490. extra: 1741/1629,
  56491. bottom: 196/1937
  56492. },
  56493. form: "taur",
  56494. },
  56495. },
  56496. [
  56497. {
  56498. name: "Huge",
  56499. height: math.unit(500, "feet"),
  56500. form: "anthro"
  56501. },
  56502. {
  56503. name: "Macro",
  56504. height: math.unit(1000, "feet"),
  56505. default: true,
  56506. form: "anthro"
  56507. },
  56508. {
  56509. name: "Megamacro",
  56510. height: math.unit(10000, "feet"),
  56511. form: "anthro"
  56512. },
  56513. {
  56514. name: "Huge",
  56515. height: math.unit(528, "feet"),
  56516. form: "taur"
  56517. },
  56518. {
  56519. name: "Macro",
  56520. height: math.unit(1056, "feet"),
  56521. default: true,
  56522. form: "taur"
  56523. },
  56524. {
  56525. name: "Megamacro",
  56526. height: math.unit(10556, "feet"),
  56527. form: "taur"
  56528. },
  56529. ],
  56530. {
  56531. "anthro": {
  56532. name: "Anthro",
  56533. default: true
  56534. },
  56535. "taur": {
  56536. name: "Taur",
  56537. },
  56538. }
  56539. ))
  56540. characterMakers.push(() => makeCharacter(
  56541. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56542. {
  56543. front: {
  56544. height: math.unit(8, "feet"),
  56545. weight: math.unit(500, "lb"),
  56546. name: "Front",
  56547. image: {
  56548. source: "./media/characters/armail/front.svg",
  56549. extra: 1753/1669,
  56550. bottom: 155/1908
  56551. }
  56552. },
  56553. back: {
  56554. height: math.unit(8, "feet"),
  56555. weight: math.unit(500, "lb"),
  56556. name: "Back",
  56557. image: {
  56558. source: "./media/characters/armail/back.svg",
  56559. extra: 1872/1803,
  56560. bottom: 63/1935
  56561. }
  56562. },
  56563. },
  56564. [
  56565. {
  56566. name: "Micro",
  56567. height: math.unit(0.25, "feet")
  56568. },
  56569. {
  56570. name: "Normal",
  56571. height: math.unit(8, "feet"),
  56572. default: true
  56573. },
  56574. {
  56575. name: "Mini-macro",
  56576. height: math.unit(30, "feet")
  56577. },
  56578. {
  56579. name: "Macro",
  56580. height: math.unit(400, "feet")
  56581. },
  56582. {
  56583. name: "Mega-macro",
  56584. height: math.unit(6000, "feet")
  56585. },
  56586. ]
  56587. ))
  56588. characterMakers.push(() => makeCharacter(
  56589. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56590. {
  56591. front: {
  56592. height: math.unit(6 + 7/12, "feet"),
  56593. weight: math.unit(210, "lb"),
  56594. name: "Front",
  56595. image: {
  56596. source: "./media/characters/wilfred-t-buxton/front.svg",
  56597. extra: 1068/882,
  56598. bottom: 28/1096
  56599. }
  56600. },
  56601. },
  56602. [
  56603. {
  56604. name: "Normal",
  56605. height: math.unit(6 + 7/12, "feet"),
  56606. default: true
  56607. },
  56608. ]
  56609. ))
  56610. characterMakers.push(() => makeCharacter(
  56611. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56612. {
  56613. front: {
  56614. height: math.unit(5 + 2/12, "feet"),
  56615. weight: math.unit(120, "lb"),
  56616. name: "Front",
  56617. image: {
  56618. source: "./media/characters/leighton-marrow/front.svg",
  56619. extra: 441/409,
  56620. bottom: 37/478
  56621. }
  56622. },
  56623. },
  56624. [
  56625. {
  56626. name: "Normal",
  56627. height: math.unit(5 + 2/12, "feet"),
  56628. default: true
  56629. },
  56630. ]
  56631. ))
  56632. characterMakers.push(() => makeCharacter(
  56633. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56634. {
  56635. front: {
  56636. height: math.unit(4, "meters"),
  56637. weight: math.unit(1200, "kg"),
  56638. name: "Front",
  56639. image: {
  56640. source: "./media/characters/licos/front.svg",
  56641. extra: 1727/1604,
  56642. bottom: 101/1828
  56643. },
  56644. form: "anthro",
  56645. default: true
  56646. },
  56647. taur_side: {
  56648. height: math.unit(20, "meters"),
  56649. weight: math.unit(1100000, "kg"),
  56650. name: "Side",
  56651. image: {
  56652. source: "./media/characters/licos/taur.svg",
  56653. extra: 1158/1091,
  56654. bottom: 80/1238
  56655. },
  56656. form: "taur",
  56657. default: true
  56658. },
  56659. },
  56660. [
  56661. {
  56662. name: "Normal",
  56663. height: math.unit(4, "meters"),
  56664. default: true,
  56665. form: "anthro"
  56666. },
  56667. {
  56668. name: "Normal",
  56669. height: math.unit(20, "meters"),
  56670. default: true,
  56671. form: "taur"
  56672. },
  56673. ],
  56674. {
  56675. "anthro": {
  56676. name: "Anthro",
  56677. default: true
  56678. },
  56679. "taur": {
  56680. name: "Taur",
  56681. },
  56682. }
  56683. ))
  56684. characterMakers.push(() => makeCharacter(
  56685. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56686. {
  56687. front: {
  56688. height: math.unit(10 + 3/12, "feet"),
  56689. name: "Front",
  56690. image: {
  56691. source: "./media/characters/theo-monkey/front.svg",
  56692. extra: 1735/1658,
  56693. bottom: 73/1808
  56694. }
  56695. },
  56696. back: {
  56697. height: math.unit(10 + 3/12, "feet"),
  56698. name: "Back",
  56699. image: {
  56700. source: "./media/characters/theo-monkey/back.svg",
  56701. extra: 1742/1664,
  56702. bottom: 33/1775
  56703. }
  56704. },
  56705. head: {
  56706. height: math.unit(2.29, "feet"),
  56707. name: "Head",
  56708. image: {
  56709. source: "./media/characters/theo-monkey/head.svg"
  56710. }
  56711. },
  56712. handPalm: {
  56713. height: math.unit(1.73, "feet"),
  56714. name: "Hand (Palm)",
  56715. image: {
  56716. source: "./media/characters/theo-monkey/hand-palm.svg"
  56717. }
  56718. },
  56719. handBack: {
  56720. height: math.unit(1.63, "feet"),
  56721. name: "Hand (Back)",
  56722. image: {
  56723. source: "./media/characters/theo-monkey/hand-back.svg"
  56724. }
  56725. },
  56726. footSole: {
  56727. height: math.unit(2.15, "feet"),
  56728. name: "Foot (Sole)",
  56729. image: {
  56730. source: "./media/characters/theo-monkey/foot-sole.svg"
  56731. }
  56732. },
  56733. footSide: {
  56734. height: math.unit(1.6, "feet"),
  56735. name: "Foot (Side)",
  56736. image: {
  56737. source: "./media/characters/theo-monkey/foot-side.svg"
  56738. }
  56739. },
  56740. },
  56741. [
  56742. {
  56743. name: "Normal",
  56744. height: math.unit(10 + 3/12, "feet"),
  56745. default: true
  56746. },
  56747. ]
  56748. ))
  56749. characterMakers.push(() => makeCharacter(
  56750. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56751. {
  56752. front: {
  56753. height: math.unit(11, "feet"),
  56754. weight: math.unit(3000, "lb"),
  56755. preyCapacity: math.unit(10, "people"),
  56756. name: "Front",
  56757. image: {
  56758. source: "./media/characters/brook/front.svg",
  56759. extra: 909/835,
  56760. bottom: 108/1017
  56761. }
  56762. },
  56763. back: {
  56764. height: math.unit(11, "feet"),
  56765. weight: math.unit(3000, "lb"),
  56766. preyCapacity: math.unit(10, "people"),
  56767. name: "Back",
  56768. image: {
  56769. source: "./media/characters/brook/back.svg",
  56770. extra: 976/916,
  56771. bottom: 34/1010
  56772. }
  56773. },
  56774. backAlt: {
  56775. height: math.unit(11, "feet"),
  56776. weight: math.unit(3000, "lb"),
  56777. preyCapacity: math.unit(10, "people"),
  56778. name: "Back (Alt)",
  56779. image: {
  56780. source: "./media/characters/brook/back-alt.svg",
  56781. extra: 1283/1213,
  56782. bottom: 35/1318
  56783. }
  56784. },
  56785. bust: {
  56786. height: math.unit(9.0859030837, "feet"),
  56787. weight: math.unit(3000, "lb"),
  56788. preyCapacity: math.unit(10, "people"),
  56789. name: "Bust",
  56790. image: {
  56791. source: "./media/characters/brook/bust.svg",
  56792. extra: 2043/1923,
  56793. bottom: 0/2043
  56794. }
  56795. },
  56796. },
  56797. [
  56798. {
  56799. name: "Small",
  56800. height: math.unit(11, "feet"),
  56801. default: true
  56802. },
  56803. {
  56804. name: "Towering",
  56805. height: math.unit(5, "km")
  56806. },
  56807. {
  56808. name: "Enormous",
  56809. height: math.unit(25, "earths")
  56810. },
  56811. ]
  56812. ))
  56813. characterMakers.push(() => makeCharacter(
  56814. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56815. {
  56816. front: {
  56817. height: math.unit(4, "feet"),
  56818. weight: math.unit(150, "lb"),
  56819. name: "Front",
  56820. image: {
  56821. source: "./media/characters/squishi/front.svg",
  56822. extra: 1428/1271,
  56823. bottom: 30/1458
  56824. },
  56825. extraAttributes: {
  56826. "pawSize": {
  56827. name: "Paw Size",
  56828. power: 1,
  56829. type: "length",
  56830. base: math.unit(14, "ShoeSizeMensUS"),
  56831. defaultUnit: "ShoeSizeMensUS"
  56832. },
  56833. }
  56834. },
  56835. side: {
  56836. height: math.unit(4, "feet"),
  56837. weight: math.unit(150, "lb"),
  56838. name: "Side",
  56839. image: {
  56840. source: "./media/characters/squishi/side.svg",
  56841. extra: 1428/1271,
  56842. bottom: 30/1458
  56843. },
  56844. extraAttributes: {
  56845. "pawSize": {
  56846. name: "Paw Size",
  56847. power: 1,
  56848. type: "length",
  56849. base: math.unit(14, "ShoeSizeMensUS"),
  56850. defaultUnit: "ShoeSizeMensUS"
  56851. },
  56852. }
  56853. },
  56854. back: {
  56855. height: math.unit(4, "feet"),
  56856. weight: math.unit(150, "lb"),
  56857. name: "Back",
  56858. image: {
  56859. source: "./media/characters/squishi/back.svg",
  56860. extra: 1428/1271,
  56861. bottom: 30/1458
  56862. },
  56863. extraAttributes: {
  56864. "pawSize": {
  56865. name: "Paw Size",
  56866. power: 1,
  56867. type: "length",
  56868. base: math.unit(14, "ShoeSizeMensUS"),
  56869. defaultUnit: "ShoeSizeMensUS"
  56870. },
  56871. }
  56872. },
  56873. },
  56874. [
  56875. {
  56876. name: "Normal",
  56877. height: math.unit(4, "feet"),
  56878. default: true
  56879. },
  56880. ]
  56881. ))
  56882. characterMakers.push(() => makeCharacter(
  56883. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56884. {
  56885. front: {
  56886. height: math.unit(7 + 8/12, "feet"),
  56887. weight: math.unit(333, "lb"),
  56888. name: "Front",
  56889. image: {
  56890. source: "./media/characters/vincent-vasroc/front.svg",
  56891. extra: 1962/1860,
  56892. bottom: 41/2003
  56893. }
  56894. },
  56895. back: {
  56896. height: math.unit(7 + 8/12, "feet"),
  56897. weight: math.unit(333, "lb"),
  56898. name: "Back",
  56899. image: {
  56900. source: "./media/characters/vincent-vasroc/back.svg",
  56901. extra: 1952/1815,
  56902. bottom: 33/1985
  56903. }
  56904. },
  56905. paw: {
  56906. height: math.unit(1.24, "feet"),
  56907. name: "Paw",
  56908. image: {
  56909. source: "./media/characters/vincent-vasroc/paw.svg"
  56910. }
  56911. },
  56912. ear: {
  56913. height: math.unit(0.75, "feet"),
  56914. name: "Ear",
  56915. image: {
  56916. source: "./media/characters/vincent-vasroc/ear.svg"
  56917. }
  56918. },
  56919. },
  56920. [
  56921. {
  56922. name: "Nano",
  56923. height: math.unit(92, "micrometers")
  56924. },
  56925. {
  56926. name: "Normal",
  56927. height: math.unit(7 + 8/12, "feet"),
  56928. default: true
  56929. },
  56930. ]
  56931. ))
  56932. characterMakers.push(() => makeCharacter(
  56933. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56934. {
  56935. frontNsfw: {
  56936. height: math.unit(40, "feet"),
  56937. weight: math.unit(58, "tons"),
  56938. name: "Front (NSFW)",
  56939. image: {
  56940. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56941. extra: 1265/965,
  56942. bottom: 155/1420
  56943. }
  56944. },
  56945. frontSfw: {
  56946. height: math.unit(40, "feet"),
  56947. weight: math.unit(58, "tons"),
  56948. name: "Front (SFW)",
  56949. image: {
  56950. source: "./media/characters/ru-kahn/front-sfw.svg",
  56951. extra: 1265/965,
  56952. bottom: 80/1345
  56953. }
  56954. },
  56955. },
  56956. [
  56957. {
  56958. name: "Small",
  56959. height: math.unit(4, "feet")
  56960. },
  56961. {
  56962. name: "Normal",
  56963. height: math.unit(40, "feet"),
  56964. default: true
  56965. },
  56966. {
  56967. name: "Macro",
  56968. height: math.unit(400, "feet")
  56969. },
  56970. ]
  56971. ))
  56972. characterMakers.push(() => makeCharacter(
  56973. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56974. {
  56975. frontNude: {
  56976. height: math.unit(6 + 5/12, "feet"),
  56977. name: "Front (Nude)",
  56978. image: {
  56979. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56980. extra: 1369/1366,
  56981. bottom: 68/1437
  56982. }
  56983. },
  56984. frontDressed: {
  56985. height: math.unit(6 + 5/12, "feet"),
  56986. name: "Front (Dressed)",
  56987. image: {
  56988. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56989. extra: 1369/1366,
  56990. bottom: 68/1437
  56991. }
  56992. },
  56993. },
  56994. [
  56995. {
  56996. name: "Normal",
  56997. height: math.unit(6 + 5/12, "feet"),
  56998. default: true
  56999. },
  57000. {
  57001. name: "Maximum",
  57002. height: math.unit(1930, "feet")
  57003. },
  57004. ]
  57005. ))
  57006. characterMakers.push(() => makeCharacter(
  57007. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57008. {
  57009. front: {
  57010. height: math.unit(5 + 6/12, "feet"),
  57011. name: "Front",
  57012. image: {
  57013. source: "./media/characters/kaja/front.svg",
  57014. extra: 1874/1514,
  57015. bottom: 117/1991
  57016. }
  57017. },
  57018. },
  57019. [
  57020. {
  57021. name: "Normal",
  57022. height: math.unit(5 + 6/12, "feet"),
  57023. default: true
  57024. },
  57025. ]
  57026. ))
  57027. characterMakers.push(() => makeCharacter(
  57028. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57029. {
  57030. front: {
  57031. height: math.unit(5 + 9/12, "feet"),
  57032. weight: math.unit(200, "lb"),
  57033. name: "Front",
  57034. image: {
  57035. source: "./media/characters/mark-smith/front.svg",
  57036. extra: 1004/943,
  57037. bottom: 58/1062
  57038. }
  57039. },
  57040. back: {
  57041. height: math.unit(5 + 9/12, "feet"),
  57042. weight: math.unit(200, "lb"),
  57043. name: "Back",
  57044. image: {
  57045. source: "./media/characters/mark-smith/back.svg",
  57046. extra: 1023/953,
  57047. bottom: 24/1047
  57048. }
  57049. },
  57050. head: {
  57051. height: math.unit(1.82, "feet"),
  57052. name: "Head",
  57053. image: {
  57054. source: "./media/characters/mark-smith/head.svg"
  57055. }
  57056. },
  57057. hand: {
  57058. height: math.unit(1.4, "feet"),
  57059. name: "Hand",
  57060. image: {
  57061. source: "./media/characters/mark-smith/hand.svg"
  57062. }
  57063. },
  57064. paw: {
  57065. height: math.unit(1.69, "feet"),
  57066. name: "Paw",
  57067. image: {
  57068. source: "./media/characters/mark-smith/paw.svg"
  57069. }
  57070. },
  57071. },
  57072. [
  57073. {
  57074. name: "Micro",
  57075. height: math.unit(0.25, "inches")
  57076. },
  57077. {
  57078. name: "Normal",
  57079. height: math.unit(5 + 9/12, "feet"),
  57080. default: true
  57081. },
  57082. {
  57083. name: "Macro",
  57084. height: math.unit(500, "feet")
  57085. },
  57086. ]
  57087. ))
  57088. characterMakers.push(() => makeCharacter(
  57089. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57090. {
  57091. frontNude: {
  57092. height: math.unit(6, "feet"),
  57093. name: "Front (Nude)",
  57094. image: {
  57095. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57096. extra: 1384/1321,
  57097. bottom: 57/1441
  57098. }
  57099. },
  57100. frontDressed: {
  57101. height: math.unit(6, "feet"),
  57102. name: "Front (Dressed)",
  57103. image: {
  57104. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57105. extra: 1384/1321,
  57106. bottom: 57/1441
  57107. }
  57108. },
  57109. },
  57110. [
  57111. {
  57112. name: "Normal",
  57113. height: math.unit(6, "feet"),
  57114. default: true
  57115. },
  57116. {
  57117. name: "Maximum",
  57118. height: math.unit(1776, "feet")
  57119. },
  57120. ]
  57121. ))
  57122. characterMakers.push(() => makeCharacter(
  57123. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57124. {
  57125. front: {
  57126. height: math.unit(2 + 4/12, "feet"),
  57127. weight: math.unit(350, "lb"),
  57128. name: "Front",
  57129. image: {
  57130. source: "./media/characters/devos/front.svg",
  57131. extra: 958/852,
  57132. bottom: 143/1101
  57133. }
  57134. },
  57135. },
  57136. [
  57137. {
  57138. name: "Base",
  57139. height: math.unit(2 + 4/12, "feet"),
  57140. default: true
  57141. },
  57142. ]
  57143. ))
  57144. characterMakers.push(() => makeCharacter(
  57145. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57146. {
  57147. front: {
  57148. height: math.unit(9 + 2/12, "feet"),
  57149. name: "Front",
  57150. image: {
  57151. source: "./media/characters/hiveheart/front.svg",
  57152. extra: 394/364,
  57153. bottom: 65/459
  57154. }
  57155. },
  57156. back: {
  57157. height: math.unit(9 + 2/12, "feet"),
  57158. name: "Back",
  57159. image: {
  57160. source: "./media/characters/hiveheart/back.svg",
  57161. extra: 374/357,
  57162. bottom: 63/437
  57163. }
  57164. },
  57165. },
  57166. [
  57167. {
  57168. name: "Base",
  57169. height: math.unit(9 + 2/12, "feet"),
  57170. default: true
  57171. },
  57172. ]
  57173. ))
  57174. characterMakers.push(() => makeCharacter(
  57175. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57176. {
  57177. front: {
  57178. height: math.unit(2.5, "inches"),
  57179. weight: math.unit(0.6, "oz"),
  57180. name: "Front",
  57181. image: {
  57182. source: "./media/characters/bryn/front.svg",
  57183. extra: 1484/1119,
  57184. bottom: 66/1550
  57185. }
  57186. },
  57187. back: {
  57188. height: math.unit(2.5, "inches"),
  57189. weight: math.unit(0.6, "oz"),
  57190. name: "Back",
  57191. image: {
  57192. source: "./media/characters/bryn/back.svg",
  57193. extra: 1472/1170,
  57194. bottom: 32/1504
  57195. }
  57196. },
  57197. wings: {
  57198. height: math.unit(2.5, "inches"),
  57199. weight: math.unit(0.6, "oz"),
  57200. name: "Wings",
  57201. image: {
  57202. source: "./media/characters/bryn/wings.svg",
  57203. extra: 567/448,
  57204. bottom: 10/577
  57205. }
  57206. },
  57207. dressed: {
  57208. height: math.unit(2.5, "inches"),
  57209. weight: math.unit(0.6, "oz"),
  57210. name: "Dressed",
  57211. image: {
  57212. source: "./media/characters/bryn/dressed.svg",
  57213. extra: 719/589,
  57214. bottom: 54/773
  57215. }
  57216. },
  57217. head: {
  57218. height: math.unit(1.75, "inches"),
  57219. name: "Head",
  57220. image: {
  57221. source: "./media/characters/bryn/head.svg"
  57222. }
  57223. },
  57224. foot: {
  57225. height: math.unit(0.4, "inches"),
  57226. name: "Foot",
  57227. image: {
  57228. source: "./media/characters/bryn/foot.svg"
  57229. }
  57230. },
  57231. },
  57232. [
  57233. {
  57234. name: "Normal",
  57235. height: math.unit(2.5, "inches"),
  57236. default: true
  57237. },
  57238. ]
  57239. ))
  57240. characterMakers.push(() => makeCharacter(
  57241. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57242. {
  57243. side: {
  57244. height: math.unit(7, "feet"),
  57245. weight: math.unit(657, "kg"),
  57246. name: "Side",
  57247. image: {
  57248. source: "./media/characters/delta/side.svg",
  57249. extra: 781/212,
  57250. bottom: 7/788
  57251. },
  57252. extraAttributes: {
  57253. "wingspan": {
  57254. name: "Wingspan",
  57255. power: 1,
  57256. type: "length",
  57257. base: math.unit(48, "feet")
  57258. },
  57259. "length": {
  57260. name: "Length",
  57261. power: 1,
  57262. type: "length",
  57263. base: math.unit(21, "feet")
  57264. },
  57265. "pawSize": {
  57266. name: "Paw Size",
  57267. power: 2,
  57268. type: "area",
  57269. base: math.unit(1.5*1.4, "feet^2")
  57270. },
  57271. }
  57272. },
  57273. },
  57274. [
  57275. {
  57276. name: "Normal",
  57277. height: math.unit(6, "feet"),
  57278. default: true
  57279. },
  57280. ]
  57281. ))
  57282. characterMakers.push(() => makeCharacter(
  57283. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57284. {
  57285. front: {
  57286. height: math.unit(6, "feet"),
  57287. name: "Front",
  57288. image: {
  57289. source: "./media/characters/pyrow/front.svg",
  57290. extra: 513/486,
  57291. bottom: 14/527
  57292. }
  57293. },
  57294. frontWing: {
  57295. height: math.unit(6, "feet"),
  57296. name: "Front (Wing)",
  57297. image: {
  57298. source: "./media/characters/pyrow/front-wing.svg",
  57299. extra: 539/383,
  57300. bottom: 20/559
  57301. }
  57302. },
  57303. back: {
  57304. height: math.unit(6, "feet"),
  57305. name: "Back",
  57306. image: {
  57307. source: "./media/characters/pyrow/back.svg",
  57308. extra: 500/473,
  57309. bottom: 9/509
  57310. }
  57311. },
  57312. },
  57313. [
  57314. {
  57315. name: "Normal",
  57316. height: math.unit(6, "feet"),
  57317. default: true
  57318. },
  57319. ]
  57320. ))
  57321. characterMakers.push(() => makeCharacter(
  57322. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57323. {
  57324. front: {
  57325. height: math.unit(5, "meters"),
  57326. weight: math.unit(3, "tonnes"),
  57327. name: "Front",
  57328. image: {
  57329. source: "./media/characters/velikan/front.svg",
  57330. extra: 867/744,
  57331. bottom: 71/938
  57332. },
  57333. extraAttributes: {
  57334. "shoeSize": {
  57335. name: "Shoe Size",
  57336. power: 1,
  57337. type: "length",
  57338. base: math.unit(135, "ShoeSizeUK"),
  57339. defaultUnit: "ShoeSizeUK"
  57340. },
  57341. }
  57342. },
  57343. },
  57344. [
  57345. {
  57346. name: "Normal",
  57347. height: math.unit(5, "meters"),
  57348. default: true
  57349. },
  57350. {
  57351. name: "Macro",
  57352. height: math.unit(1, "km")
  57353. },
  57354. {
  57355. name: "Mega Macro",
  57356. height: math.unit(100, "km")
  57357. },
  57358. {
  57359. name: "Giga Macro",
  57360. height: math.unit(2, "megameters")
  57361. },
  57362. {
  57363. name: "Planetary",
  57364. height: math.unit(22, "megameters")
  57365. },
  57366. {
  57367. name: "Solar",
  57368. height: math.unit(8, "gigameters")
  57369. },
  57370. {
  57371. name: "Cosmic",
  57372. height: math.unit(10, "zettameters")
  57373. },
  57374. {
  57375. name: "Omni",
  57376. height: math.unit(9e260, "multiverses")
  57377. },
  57378. ]
  57379. ))
  57380. characterMakers.push(() => makeCharacter(
  57381. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57382. {
  57383. front: {
  57384. height: math.unit(4 + 3/12, "feet"),
  57385. weight: math.unit(90, "lb"),
  57386. name: "Front",
  57387. image: {
  57388. source: "./media/characters/sabiki/front.svg",
  57389. extra: 1662/1423,
  57390. bottom: 65/1727
  57391. }
  57392. },
  57393. },
  57394. [
  57395. {
  57396. name: "Normal",
  57397. height: math.unit(4 + 3/12, "feet"),
  57398. default: true
  57399. },
  57400. ]
  57401. ))
  57402. characterMakers.push(() => makeCharacter(
  57403. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57404. {
  57405. frontSfw: {
  57406. height: math.unit(2, "mm"),
  57407. name: "Front (SFW)",
  57408. image: {
  57409. source: "./media/characters/carmel/front-sfw.svg",
  57410. extra: 1131/1006,
  57411. bottom: 66/1197
  57412. }
  57413. },
  57414. frontNsfw: {
  57415. height: math.unit(2, "mm"),
  57416. name: "Front (NSFW)",
  57417. image: {
  57418. source: "./media/characters/carmel/front-nsfw.svg",
  57419. extra: 1131/1006,
  57420. bottom: 66/1197
  57421. }
  57422. },
  57423. foot: {
  57424. height: math.unit(0.3, "mm"),
  57425. name: "Foot",
  57426. image: {
  57427. source: "./media/characters/carmel/foot.svg"
  57428. }
  57429. },
  57430. tongue: {
  57431. height: math.unit(0.71, "mm"),
  57432. name: "Tongue",
  57433. image: {
  57434. source: "./media/characters/carmel/tongue.svg"
  57435. }
  57436. },
  57437. dick: {
  57438. height: math.unit(0.085, "mm"),
  57439. name: "Dick",
  57440. image: {
  57441. source: "./media/characters/carmel/dick.svg"
  57442. }
  57443. },
  57444. },
  57445. [
  57446. {
  57447. name: "Micro",
  57448. height: math.unit(2, "mm"),
  57449. default: true
  57450. },
  57451. {
  57452. name: "Normal",
  57453. height: math.unit(4 + 8/12, "feet")
  57454. },
  57455. {
  57456. name: "Mega Macro",
  57457. height: math.unit(250, "feet")
  57458. },
  57459. {
  57460. name: "BIGGER",
  57461. height: math.unit(1000, "feet")
  57462. },
  57463. {
  57464. name: "BIGGEST",
  57465. height: math.unit(2, "miles")
  57466. },
  57467. ]
  57468. ))
  57469. characterMakers.push(() => makeCharacter(
  57470. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57471. {
  57472. front: {
  57473. height: math.unit(6.5, "feet"),
  57474. weight: math.unit(198, "lb"),
  57475. name: "Front",
  57476. image: {
  57477. source: "./media/characters/tamani/anthro.svg",
  57478. extra: 930/890,
  57479. bottom: 34/964
  57480. },
  57481. form: "anthro",
  57482. default: true
  57483. },
  57484. side: {
  57485. height: math.unit(6, "feet"),
  57486. weight: math.unit(198*2, "lb"),
  57487. name: "Side",
  57488. image: {
  57489. source: "./media/characters/tamani/feral.svg",
  57490. extra: 559/519,
  57491. bottom: 43/602
  57492. },
  57493. form: "feral"
  57494. },
  57495. },
  57496. [
  57497. {
  57498. name: "Normal",
  57499. height: math.unit(6.5, "feet"),
  57500. default: true,
  57501. form: "anthro"
  57502. },
  57503. {
  57504. name: "Normal",
  57505. height: math.unit(6, "feet"),
  57506. default: true,
  57507. form: "feral"
  57508. },
  57509. ],
  57510. {
  57511. "anthro": {
  57512. name: "Anthro",
  57513. default: true
  57514. },
  57515. "feral": {
  57516. name: "Feral",
  57517. },
  57518. }
  57519. ))
  57520. characterMakers.push(() => makeCharacter(
  57521. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57522. {
  57523. front: {
  57524. height: math.unit(4 + 1/12, "feet"),
  57525. weight: math.unit(114, "lb"),
  57526. name: "Front",
  57527. image: {
  57528. source: "./media/characters/dex/front.svg",
  57529. extra: 787/680,
  57530. bottom: 18/805
  57531. }
  57532. },
  57533. side: {
  57534. height: math.unit(4 + 1/12, "feet"),
  57535. weight: math.unit(114, "lb"),
  57536. name: "Side",
  57537. image: {
  57538. source: "./media/characters/dex/side.svg",
  57539. extra: 785/680,
  57540. bottom: 12/797
  57541. }
  57542. },
  57543. back: {
  57544. height: math.unit(4 + 1/12, "feet"),
  57545. weight: math.unit(114, "lb"),
  57546. name: "Back",
  57547. image: {
  57548. source: "./media/characters/dex/back.svg",
  57549. extra: 785/681,
  57550. bottom: 17/802
  57551. }
  57552. },
  57553. loungewear: {
  57554. height: math.unit(4 + 1/12, "feet"),
  57555. weight: math.unit(114, "lb"),
  57556. name: "Loungewear",
  57557. image: {
  57558. source: "./media/characters/dex/loungewear.svg",
  57559. extra: 787/680,
  57560. bottom: 18/805
  57561. }
  57562. },
  57563. workout: {
  57564. height: math.unit(4 + 1/12, "feet"),
  57565. weight: math.unit(114, "lb"),
  57566. name: "Workout",
  57567. image: {
  57568. source: "./media/characters/dex/workout.svg",
  57569. extra: 787/680,
  57570. bottom: 18/805
  57571. }
  57572. },
  57573. schoolUniform: {
  57574. height: math.unit(4 + 1/12, "feet"),
  57575. weight: math.unit(114, "lb"),
  57576. name: "School-uniform",
  57577. image: {
  57578. source: "./media/characters/dex/school-uniform.svg",
  57579. extra: 787/680,
  57580. bottom: 18/805
  57581. }
  57582. },
  57583. maw: {
  57584. height: math.unit(0.55, "feet"),
  57585. name: "Maw",
  57586. image: {
  57587. source: "./media/characters/dex/maw.svg"
  57588. }
  57589. },
  57590. paw: {
  57591. height: math.unit(0.87, "feet"),
  57592. name: "Paw",
  57593. image: {
  57594. source: "./media/characters/dex/paw.svg"
  57595. }
  57596. },
  57597. bust: {
  57598. height: math.unit(1.67, "feet"),
  57599. name: "Bust",
  57600. image: {
  57601. source: "./media/characters/dex/bust.svg"
  57602. }
  57603. },
  57604. },
  57605. [
  57606. {
  57607. name: "Normal",
  57608. height: math.unit(4 + 1/12, "feet"),
  57609. default: true
  57610. },
  57611. ]
  57612. ))
  57613. characterMakers.push(() => makeCharacter(
  57614. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57615. {
  57616. front: {
  57617. height: math.unit(4 + 3/12, "feet"),
  57618. weight: math.unit(60, "lb"),
  57619. name: "Front",
  57620. image: {
  57621. source: "./media/characters/silke/front.svg",
  57622. extra: 1334/1122,
  57623. bottom: 21/1355
  57624. }
  57625. },
  57626. back: {
  57627. height: math.unit(4 + 3/12, "feet"),
  57628. weight: math.unit(60, "lb"),
  57629. name: "Back",
  57630. image: {
  57631. source: "./media/characters/silke/back.svg",
  57632. extra: 1328/1092,
  57633. bottom: 16/1344
  57634. }
  57635. },
  57636. dressed: {
  57637. height: math.unit(4 + 3/12, "feet"),
  57638. weight: math.unit(60, "lb"),
  57639. name: "Dressed",
  57640. image: {
  57641. source: "./media/characters/silke/dressed.svg",
  57642. extra: 1334/1122,
  57643. bottom: 43/1377
  57644. }
  57645. },
  57646. },
  57647. [
  57648. {
  57649. name: "Normal",
  57650. height: math.unit(4 + 3/12, "feet"),
  57651. default: true
  57652. },
  57653. ]
  57654. ))
  57655. characterMakers.push(() => makeCharacter(
  57656. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57657. {
  57658. front: {
  57659. height: math.unit(1.58, "meters"),
  57660. weight: math.unit(47, "kg"),
  57661. name: "Front",
  57662. image: {
  57663. source: "./media/characters/wireshark/front.svg",
  57664. extra: 883/838,
  57665. bottom: 66/949
  57666. }
  57667. },
  57668. },
  57669. [
  57670. {
  57671. name: "Normal",
  57672. height: math.unit(1.58, "meters"),
  57673. default: true
  57674. },
  57675. ]
  57676. ))
  57677. characterMakers.push(() => makeCharacter(
  57678. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57679. {
  57680. front: {
  57681. height: math.unit(6, "meters"),
  57682. weight: math.unit(15000, "kg"),
  57683. name: "Front",
  57684. image: {
  57685. source: "./media/characters/gallagher/front.svg",
  57686. extra: 532/493,
  57687. bottom: 0/532
  57688. }
  57689. },
  57690. },
  57691. [
  57692. {
  57693. name: "Normal",
  57694. height: math.unit(6, "meters"),
  57695. default: true
  57696. },
  57697. ]
  57698. ))
  57699. characterMakers.push(() => makeCharacter(
  57700. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57701. {
  57702. front: {
  57703. height: math.unit(2.4, "meters"),
  57704. weight: math.unit(270, "kg"),
  57705. name: "Front",
  57706. image: {
  57707. source: "./media/characters/alice/front.svg",
  57708. extra: 950/900,
  57709. bottom: 36/986
  57710. }
  57711. },
  57712. side: {
  57713. height: math.unit(2.4, "meters"),
  57714. weight: math.unit(270, "kg"),
  57715. name: "Side",
  57716. image: {
  57717. source: "./media/characters/alice/side.svg",
  57718. extra: 921/876,
  57719. bottom: 19/940
  57720. }
  57721. },
  57722. dressed: {
  57723. height: math.unit(2.4, "meters"),
  57724. weight: math.unit(270, "kg"),
  57725. name: "Dressed",
  57726. image: {
  57727. source: "./media/characters/alice/dressed.svg",
  57728. extra: 905/850,
  57729. bottom: 81/986
  57730. }
  57731. },
  57732. fishnet: {
  57733. height: math.unit(2.4, "meters"),
  57734. weight: math.unit(270, "kg"),
  57735. name: "Fishnet",
  57736. image: {
  57737. source: "./media/characters/alice/fishnet.svg",
  57738. extra: 905/850,
  57739. bottom: 81/986
  57740. }
  57741. },
  57742. },
  57743. [
  57744. {
  57745. name: "Normal",
  57746. height: math.unit(2.4, "meters"),
  57747. default: true
  57748. },
  57749. ]
  57750. ))
  57751. characterMakers.push(() => makeCharacter(
  57752. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57753. {
  57754. front: {
  57755. height: math.unit(175.25, "feet"),
  57756. name: "Front",
  57757. image: {
  57758. source: "./media/characters/fio/front.svg",
  57759. extra: 1883/1591,
  57760. bottom: 34/1917
  57761. }
  57762. },
  57763. },
  57764. [
  57765. {
  57766. name: "Normal",
  57767. height: math.unit(175.25, "cm"),
  57768. default: true
  57769. },
  57770. ]
  57771. ))
  57772. characterMakers.push(() => makeCharacter(
  57773. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57774. {
  57775. side: {
  57776. height: math.unit(6, "meters"),
  57777. weight: math.unit(3400, "kg"),
  57778. preyCapacity: math.unit(1700, "liters"),
  57779. name: "Side",
  57780. image: {
  57781. source: "./media/characters/hass/side.svg",
  57782. extra: 1058/997,
  57783. bottom: 177/1235
  57784. }
  57785. },
  57786. feeding: {
  57787. height: math.unit(6*0.63, "meters"),
  57788. weight: math.unit(3400, "kg"),
  57789. preyCapacity: math.unit(1700, "liters"),
  57790. name: "Feeding",
  57791. image: {
  57792. source: "./media/characters/hass/feeding.svg",
  57793. extra: 689/579,
  57794. bottom: 146/835
  57795. }
  57796. },
  57797. guts: {
  57798. height: math.unit(6, "meters"),
  57799. weight: math.unit(3400, "kg"),
  57800. name: "Guts",
  57801. image: {
  57802. source: "./media/characters/hass/guts.svg",
  57803. extra: 1223/1198,
  57804. bottom: 182/1405
  57805. }
  57806. },
  57807. dickFront: {
  57808. height: math.unit(1.4, "meters"),
  57809. name: "Dick (Front)",
  57810. image: {
  57811. source: "./media/characters/hass/dick-front.svg"
  57812. }
  57813. },
  57814. dickSide: {
  57815. height: math.unit(1.3, "meters"),
  57816. name: "Dick (Side)",
  57817. image: {
  57818. source: "./media/characters/hass/dick-side.svg"
  57819. }
  57820. },
  57821. dickBack: {
  57822. height: math.unit(1.4, "meters"),
  57823. name: "Dick (Back)",
  57824. image: {
  57825. source: "./media/characters/hass/dick-back.svg"
  57826. }
  57827. },
  57828. },
  57829. [
  57830. {
  57831. name: "Normal",
  57832. height: math.unit(6, "meters"),
  57833. default: true
  57834. },
  57835. ]
  57836. ))
  57837. characterMakers.push(() => makeCharacter(
  57838. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57839. {
  57840. front: {
  57841. height: math.unit(4, "feet"),
  57842. weight: math.unit(60, "lb"),
  57843. name: "Front",
  57844. image: {
  57845. source: "./media/characters/hickory-finnegan/front.svg",
  57846. extra: 444/411,
  57847. bottom: 10/454
  57848. }
  57849. },
  57850. side: {
  57851. height: math.unit(4, "feet"),
  57852. weight: math.unit(60, "lb"),
  57853. name: "Side",
  57854. image: {
  57855. source: "./media/characters/hickory-finnegan/side.svg",
  57856. extra: 444/411,
  57857. bottom: 10/454
  57858. }
  57859. },
  57860. back: {
  57861. height: math.unit(4, "feet"),
  57862. weight: math.unit(60, "lb"),
  57863. name: "Back",
  57864. image: {
  57865. source: "./media/characters/hickory-finnegan/back.svg",
  57866. extra: 444/411,
  57867. bottom: 10/454
  57868. }
  57869. },
  57870. },
  57871. [
  57872. {
  57873. name: "Normal",
  57874. height: math.unit(4, "feet"),
  57875. default: true
  57876. },
  57877. ]
  57878. ))
  57879. characterMakers.push(() => makeCharacter(
  57880. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57881. {
  57882. snivy_front: {
  57883. height: math.unit(2, "feet"),
  57884. weight: math.unit(17.9, "lb"),
  57885. name: "Front",
  57886. image: {
  57887. source: "./media/characters/robin-phox/snivy-front.svg",
  57888. extra: 569/504,
  57889. bottom: 33/602
  57890. },
  57891. form: "snivy",
  57892. default: true
  57893. },
  57894. snivy_frontNsfw: {
  57895. height: math.unit(2, "feet"),
  57896. weight: math.unit(17.9, "lb"),
  57897. name: "Front (NSFW)",
  57898. image: {
  57899. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57900. extra: 569/504,
  57901. bottom: 33/602
  57902. },
  57903. form: "snivy",
  57904. },
  57905. snivy_back: {
  57906. height: math.unit(2, "feet"),
  57907. weight: math.unit(17.9, "lb"),
  57908. name: "Back",
  57909. image: {
  57910. source: "./media/characters/robin-phox/snivy-back.svg",
  57911. extra: 577/508,
  57912. bottom: 21/598
  57913. },
  57914. form: "snivy",
  57915. },
  57916. snivy_foot: {
  57917. height: math.unit(0.68, "feet"),
  57918. name: "Foot",
  57919. image: {
  57920. source: "./media/characters/robin-phox/snivy-foot.svg"
  57921. },
  57922. form: "snivy",
  57923. },
  57924. snivy_sole: {
  57925. height: math.unit(0.68, "feet"),
  57926. name: "Sole",
  57927. image: {
  57928. source: "./media/characters/robin-phox/snivy-sole.svg"
  57929. },
  57930. form: "snivy",
  57931. },
  57932. yoshi_front: {
  57933. height: math.unit(6, "feet"),
  57934. weight: math.unit(150, "lb"),
  57935. name: "Front",
  57936. image: {
  57937. source: "./media/characters/robin-phox/yoshi-front.svg",
  57938. extra: 890/792,
  57939. bottom: 29/919
  57940. },
  57941. form: "yoshi",
  57942. default: true
  57943. },
  57944. yoshi_frontNsfw: {
  57945. height: math.unit(6, "feet"),
  57946. weight: math.unit(150, "lb"),
  57947. name: "Front (NSFW)",
  57948. image: {
  57949. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57950. extra: 890/792,
  57951. bottom: 29/919
  57952. },
  57953. form: "yoshi",
  57954. },
  57955. yoshi_back: {
  57956. height: math.unit(6, "feet"),
  57957. weight: math.unit(150, "lb"),
  57958. name: "Back",
  57959. image: {
  57960. source: "./media/characters/robin-phox/yoshi-back.svg",
  57961. extra: 890/792,
  57962. bottom: 29/919
  57963. },
  57964. form: "yoshi",
  57965. },
  57966. yoshi_foot: {
  57967. height: math.unit(1.5, "feet"),
  57968. name: "Foot",
  57969. image: {
  57970. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57971. },
  57972. form: "yoshi",
  57973. },
  57974. delphox_front: {
  57975. height: math.unit(4 + 11/12, "feet"),
  57976. weight: math.unit(86, "lb"),
  57977. name: "Front",
  57978. image: {
  57979. source: "./media/characters/robin-phox/delphox-front.svg",
  57980. extra: 1266/1069,
  57981. bottom: 32/1298
  57982. },
  57983. form: "delphox",
  57984. default: true
  57985. },
  57986. delphox_frontNsfw: {
  57987. height: math.unit(4 + 11/12, "feet"),
  57988. weight: math.unit(86, "lb"),
  57989. name: "Front (NSFW)",
  57990. image: {
  57991. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57992. extra: 1266/1069,
  57993. bottom: 32/1298
  57994. },
  57995. form: "delphox",
  57996. },
  57997. delphox_back: {
  57998. height: math.unit(4 + 11/12, "feet"),
  57999. weight: math.unit(86, "lb"),
  58000. name: "Back",
  58001. image: {
  58002. source: "./media/characters/robin-phox/delphox-back.svg",
  58003. extra: 1269/1083,
  58004. bottom: 15/1284
  58005. },
  58006. form: "delphox",
  58007. },
  58008. mienshao_front: {
  58009. height: math.unit(4 + 7/12, "feet"),
  58010. weight: math.unit(78.3, "lb"),
  58011. name: "Front",
  58012. image: {
  58013. source: "./media/characters/robin-phox/mienshao-front.svg",
  58014. extra: 1052/970,
  58015. bottom: 108/1160
  58016. },
  58017. form: "mienshao",
  58018. default: true
  58019. },
  58020. mienshao_frontNsfw: {
  58021. height: math.unit(4 + 7/12, "feet"),
  58022. weight: math.unit(78.3, "lb"),
  58023. name: "Front (NSFW)",
  58024. image: {
  58025. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58026. extra: 1052/970,
  58027. bottom: 108/1160
  58028. },
  58029. form: "mienshao",
  58030. },
  58031. mienshao_back: {
  58032. height: math.unit(4 + 7/12, "feet"),
  58033. weight: math.unit(78.3, "lb"),
  58034. name: "Back",
  58035. image: {
  58036. source: "./media/characters/robin-phox/mienshao-back.svg",
  58037. extra: 1102/982,
  58038. bottom: 32/1134
  58039. },
  58040. form: "mienshao",
  58041. },
  58042. inteleon_front: {
  58043. height: math.unit(6 + 3/12, "feet"),
  58044. weight: math.unit(99.6, "lb"),
  58045. name: "Front",
  58046. image: {
  58047. source: "./media/characters/robin-phox/inteleon-front.svg",
  58048. extra: 910/799,
  58049. bottom: 76/986
  58050. },
  58051. form: "inteleon",
  58052. default: true
  58053. },
  58054. inteleon_frontNsfw: {
  58055. height: math.unit(6 + 3/12, "feet"),
  58056. weight: math.unit(99.6, "lb"),
  58057. name: "Front (NSFW)",
  58058. image: {
  58059. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58060. extra: 910/799,
  58061. bottom: 76/986
  58062. },
  58063. form: "inteleon",
  58064. },
  58065. inteleon_back: {
  58066. height: math.unit(6 + 3/12, "feet"),
  58067. weight: math.unit(99.6, "lb"),
  58068. name: "Back",
  58069. image: {
  58070. source: "./media/characters/robin-phox/inteleon-back.svg",
  58071. extra: 907/796,
  58072. bottom: 25/932
  58073. },
  58074. form: "inteleon",
  58075. },
  58076. reshiram_front: {
  58077. height: math.unit(10 + 6/12, "feet"),
  58078. weight: math.unit(727.5, "lb"),
  58079. name: "Front",
  58080. image: {
  58081. source: "./media/characters/robin-phox/reshiram-front.svg",
  58082. extra: 1198/940,
  58083. bottom: 123/1321
  58084. },
  58085. form: "reshiram",
  58086. },
  58087. reshiram_frontNsfw: {
  58088. height: math.unit(10 + 6/12, "feet"),
  58089. weight: math.unit(727.5, "lb"),
  58090. name: "Front-nsfw",
  58091. image: {
  58092. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58093. extra: 1198/940,
  58094. bottom: 123/1321
  58095. },
  58096. form: "reshiram",
  58097. },
  58098. reshiram_back: {
  58099. height: math.unit(10 + 6/12, "feet"),
  58100. weight: math.unit(727.5, "lb"),
  58101. name: "Back",
  58102. image: {
  58103. source: "./media/characters/robin-phox/reshiram-back.svg",
  58104. extra: 1024/904,
  58105. bottom: 85/1109
  58106. },
  58107. form: "reshiram",
  58108. },
  58109. samurott_front: {
  58110. height: math.unit(8, "feet"),
  58111. weight: math.unit(208.6, "lb"),
  58112. name: "Front",
  58113. image: {
  58114. source: "./media/characters/robin-phox/samurott-front.svg",
  58115. extra: 1048/984,
  58116. bottom: 100/1148
  58117. },
  58118. form: "samurott",
  58119. },
  58120. samurott_frontNsfw: {
  58121. height: math.unit(8, "feet"),
  58122. weight: math.unit(208.6, "lb"),
  58123. name: "Front-nsfw",
  58124. image: {
  58125. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58126. extra: 1048/984,
  58127. bottom: 100/1148
  58128. },
  58129. form: "samurott",
  58130. },
  58131. samurott_back: {
  58132. height: math.unit(8, "feet"),
  58133. weight: math.unit(208.6, "lb"),
  58134. name: "Back",
  58135. image: {
  58136. source: "./media/characters/robin-phox/samurott-back.svg",
  58137. extra: 1110/1042,
  58138. bottom: 12/1122
  58139. },
  58140. form: "samurott",
  58141. },
  58142. samurott_feral: {
  58143. height: math.unit(4 + 11/12, "feet"),
  58144. weight: math.unit(208.6, "lb"),
  58145. name: "Feral",
  58146. image: {
  58147. source: "./media/characters/robin-phox/samurott-feral.svg",
  58148. extra: 766/681,
  58149. bottom: 108/874
  58150. },
  58151. form: "samurott",
  58152. },
  58153. },
  58154. [
  58155. {
  58156. name: "Normal",
  58157. height: math.unit(2, "feet"),
  58158. default: true,
  58159. form: "snivy"
  58160. },
  58161. {
  58162. name: "Normal",
  58163. height: math.unit(6, "feet"),
  58164. default: true,
  58165. form: "yoshi"
  58166. },
  58167. {
  58168. name: "Normal",
  58169. height: math.unit(4 + 11/12, "feet"),
  58170. default: true,
  58171. form: "delphox"
  58172. },
  58173. {
  58174. name: "Normal",
  58175. height: math.unit(4 + 7/12, "feet"),
  58176. default: true,
  58177. form: "mienshao"
  58178. },
  58179. {
  58180. name: "Normal",
  58181. height: math.unit(6 + 3/12, "feet"),
  58182. default: true,
  58183. form: "inteleon"
  58184. },
  58185. {
  58186. name: "Normal",
  58187. height: math.unit(10 + 6/12, "feet"),
  58188. default: true,
  58189. form: "reshiram"
  58190. },
  58191. {
  58192. name: "Normal",
  58193. height: math.unit(8, "feet"),
  58194. default: true,
  58195. form: "samurott"
  58196. },
  58197. {
  58198. name: "Macro",
  58199. height: math.unit(500, "feet"),
  58200. allForms: true
  58201. },
  58202. {
  58203. name: "Mega Macro",
  58204. height: math.unit(10, "earths"),
  58205. allForms: true
  58206. },
  58207. {
  58208. name: "Giga Macro",
  58209. height: math.unit(1, "galaxy"),
  58210. allForms: true
  58211. },
  58212. {
  58213. name: "Godly Macro",
  58214. height: math.unit(1e10, "multiverses"),
  58215. allForms: true
  58216. },
  58217. ],
  58218. {
  58219. "snivy": {
  58220. name: "Snivy",
  58221. default: true
  58222. },
  58223. "yoshi": {
  58224. name: "Yoshi",
  58225. },
  58226. "delphox": {
  58227. name: "Delphox",
  58228. },
  58229. "mienshao": {
  58230. name: "Mienshao",
  58231. },
  58232. "inteleon": {
  58233. name: "Inteleon",
  58234. },
  58235. "reshiram": {
  58236. name: "Reshiram",
  58237. },
  58238. "samurott": {
  58239. name: "Samurott",
  58240. },
  58241. }
  58242. ))
  58243. characterMakers.push(() => makeCharacter(
  58244. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58245. {
  58246. front: {
  58247. height: math.unit(4, "feet"),
  58248. name: "Front",
  58249. image: {
  58250. source: "./media/characters/ash-leung/front.svg",
  58251. extra: 1916/1792,
  58252. bottom: 50/1966
  58253. }
  58254. },
  58255. },
  58256. [
  58257. {
  58258. name: "Atomic",
  58259. height: math.unit(1, "angstrom")
  58260. },
  58261. {
  58262. name: "Microscopic",
  58263. height: math.unit(4000, "angstroms")
  58264. },
  58265. {
  58266. name: "Speck",
  58267. height: math.unit(1, "mm")
  58268. },
  58269. {
  58270. name: "Small",
  58271. height: math.unit(1, "inch")
  58272. },
  58273. {
  58274. name: "Normal",
  58275. height: math.unit(4, "feet"),
  58276. default: true
  58277. },
  58278. ]
  58279. ))
  58280. characterMakers.push(() => makeCharacter(
  58281. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58282. {
  58283. frontDressed: {
  58284. height: math.unit(2.08, "meters"),
  58285. weight: math.unit(175, "lb"),
  58286. name: "Front (Dressed)",
  58287. image: {
  58288. source: "./media/characters/carie/front-dressed.svg",
  58289. extra: 456/417,
  58290. bottom: 7/463
  58291. }
  58292. },
  58293. backDressed: {
  58294. height: math.unit(2.08, "meters"),
  58295. weight: math.unit(175, "lb"),
  58296. name: "Back (Dressed)",
  58297. image: {
  58298. source: "./media/characters/carie/back-dressed.svg",
  58299. extra: 455/414,
  58300. bottom: 11/466
  58301. }
  58302. },
  58303. front: {
  58304. height: math.unit(2, "meters"),
  58305. weight: math.unit(175, "lb"),
  58306. name: "Front",
  58307. image: {
  58308. source: "./media/characters/carie/front.svg",
  58309. extra: 438/399,
  58310. bottom: 12/450
  58311. }
  58312. },
  58313. back: {
  58314. height: math.unit(2, "meters"),
  58315. weight: math.unit(175, "lb"),
  58316. name: "Back",
  58317. image: {
  58318. source: "./media/characters/carie/back.svg",
  58319. extra: 438/397,
  58320. bottom: 7/445
  58321. }
  58322. },
  58323. },
  58324. [
  58325. {
  58326. name: "Normal",
  58327. height: math.unit(2.08, "meters"),
  58328. default: true
  58329. },
  58330. {
  58331. name: "Macro",
  58332. height: math.unit(2.08e3, "meters")
  58333. },
  58334. {
  58335. name: "Mega Macro",
  58336. height: math.unit(2.08e6, "meters")
  58337. },
  58338. {
  58339. name: "Giga Macro",
  58340. height: math.unit(2.08e9, "meters")
  58341. },
  58342. {
  58343. name: "Tera Macro",
  58344. height: math.unit(2.08e12, "meters")
  58345. },
  58346. {
  58347. name: "Peta Macro",
  58348. height: math.unit(2.08e15, "meters")
  58349. },
  58350. {
  58351. name: "Exa Macro",
  58352. height: math.unit(2.08e18, "meters")
  58353. },
  58354. {
  58355. name: "Zetta Macro",
  58356. height: math.unit(2.08e21, "meters")
  58357. },
  58358. {
  58359. name: "Yotta Macro",
  58360. height: math.unit(2.08e24, "meters")
  58361. },
  58362. ]
  58363. ))
  58364. characterMakers.push(() => makeCharacter(
  58365. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58366. {
  58367. front: {
  58368. height: math.unit(5 + 2/12, "feet"),
  58369. weight: math.unit(120, "lb"),
  58370. name: "Front",
  58371. image: {
  58372. source: "./media/characters/sai-bree/front.svg",
  58373. extra: 1843/1702,
  58374. bottom: 91/1934
  58375. }
  58376. },
  58377. back: {
  58378. height: math.unit(5 + 2/12, "feet"),
  58379. weight: math.unit(120, "lb"),
  58380. name: "Back",
  58381. image: {
  58382. source: "./media/characters/sai-bree/back.svg",
  58383. extra: 1809/1637,
  58384. bottom: 56/1865
  58385. }
  58386. },
  58387. },
  58388. [
  58389. {
  58390. name: "Normal",
  58391. height: math.unit(5 + 2/12, "feet"),
  58392. default: true
  58393. },
  58394. {
  58395. name: "Macro",
  58396. height: math.unit(500, "feet")
  58397. },
  58398. ]
  58399. ))
  58400. characterMakers.push(() => makeCharacter(
  58401. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58402. {
  58403. side: {
  58404. height: math.unit(0.77, "meters"),
  58405. weight: math.unit(120, "lb"),
  58406. name: "Side",
  58407. image: {
  58408. source: "./media/characters/davwyn/side.svg",
  58409. extra: 1557/1225,
  58410. bottom: 131/1688
  58411. }
  58412. },
  58413. front: {
  58414. height: math.unit(0.835410, "meters"),
  58415. weight: math.unit(120, "lb"),
  58416. name: "Front",
  58417. image: {
  58418. source: "./media/characters/davwyn/front.svg",
  58419. extra: 870/843,
  58420. bottom: 175/1045
  58421. }
  58422. },
  58423. },
  58424. [
  58425. {
  58426. name: "Minidrake",
  58427. height: math.unit(0.77/4, "meters")
  58428. },
  58429. {
  58430. name: "Normal",
  58431. height: math.unit(0.77, "meters"),
  58432. default: true
  58433. },
  58434. ]
  58435. ))
  58436. characterMakers.push(() => makeCharacter(
  58437. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58438. {
  58439. front: {
  58440. height: math.unit(10 + 3/12, "feet"),
  58441. weight: math.unit(2857, "lb"),
  58442. name: "Front",
  58443. image: {
  58444. source: "./media/characters/balans/front.svg",
  58445. extra: 427/402,
  58446. bottom: 26/453
  58447. }
  58448. },
  58449. side: {
  58450. height: math.unit(10 + 3/12, "feet"),
  58451. weight: math.unit(2857, "lb"),
  58452. name: "Side",
  58453. image: {
  58454. source: "./media/characters/balans/side.svg",
  58455. extra: 397/371,
  58456. bottom: 17/414
  58457. }
  58458. },
  58459. back: {
  58460. height: math.unit(10 + 3/12, "feet"),
  58461. weight: math.unit(2857, "lb"),
  58462. name: "Back",
  58463. image: {
  58464. source: "./media/characters/balans/back.svg",
  58465. extra: 408/381,
  58466. bottom: 14/422
  58467. }
  58468. },
  58469. hand: {
  58470. height: math.unit(1.15, "feet"),
  58471. name: "Hand",
  58472. image: {
  58473. source: "./media/characters/balans/hand.svg"
  58474. }
  58475. },
  58476. footRest: {
  58477. height: math.unit(3.1, "feet"),
  58478. name: "Foot (Rest)",
  58479. image: {
  58480. source: "./media/characters/balans/foot-rest.svg"
  58481. }
  58482. },
  58483. footActive: {
  58484. height: math.unit(3.5, "feet"),
  58485. name: "Foot (Active)",
  58486. image: {
  58487. source: "./media/characters/balans/foot-active.svg"
  58488. }
  58489. },
  58490. },
  58491. [
  58492. {
  58493. name: "Normal",
  58494. height: math.unit(10 + 3/12, "feet"),
  58495. default: true
  58496. },
  58497. ]
  58498. ))
  58499. characterMakers.push(() => makeCharacter(
  58500. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58501. {
  58502. side: {
  58503. height: math.unit(9, "meters"),
  58504. weight: math.unit(114, "tonnes"),
  58505. name: "Side",
  58506. image: {
  58507. source: "./media/characters/eldkveikir/side.svg",
  58508. extra: 1927/338,
  58509. bottom: 42/1969
  58510. }
  58511. },
  58512. sitting: {
  58513. height: math.unit(13.4, "meters"),
  58514. weight: math.unit(114, "tonnes"),
  58515. name: "Sitting",
  58516. image: {
  58517. source: "./media/characters/eldkveikir/sitting.svg",
  58518. extra: 1108/963,
  58519. bottom: 610/1718
  58520. }
  58521. },
  58522. maw: {
  58523. height: math.unit(8.36, "meters"),
  58524. name: "Maw",
  58525. image: {
  58526. source: "./media/characters/eldkveikir/maw.svg"
  58527. }
  58528. },
  58529. hand: {
  58530. height: math.unit(4.84, "meters"),
  58531. name: "Hand",
  58532. image: {
  58533. source: "./media/characters/eldkveikir/hand.svg"
  58534. }
  58535. },
  58536. foot: {
  58537. height: math.unit(6.9, "meters"),
  58538. name: "Foot",
  58539. image: {
  58540. source: "./media/characters/eldkveikir/foot.svg"
  58541. }
  58542. },
  58543. genitals: {
  58544. height: math.unit(9.6, "meters"),
  58545. name: "Genitals",
  58546. image: {
  58547. source: "./media/characters/eldkveikir/genitals.svg"
  58548. }
  58549. },
  58550. },
  58551. [
  58552. {
  58553. name: "Normal",
  58554. height: math.unit(9, "meters"),
  58555. default: true
  58556. },
  58557. ]
  58558. ))
  58559. characterMakers.push(() => makeCharacter(
  58560. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58561. {
  58562. front: {
  58563. height: math.unit(14, "feet"),
  58564. weight: math.unit(4100, "lb"),
  58565. name: "Front",
  58566. image: {
  58567. source: "./media/characters/arrow/front.svg",
  58568. extra: 330/318,
  58569. bottom: 56/386
  58570. }
  58571. },
  58572. },
  58573. [
  58574. {
  58575. name: "Normal",
  58576. height: math.unit(14, "feet"),
  58577. default: true
  58578. },
  58579. {
  58580. name: "Minimacro",
  58581. height: math.unit(63, "feet")
  58582. },
  58583. {
  58584. name: "Macro",
  58585. height: math.unit(630, "feet")
  58586. },
  58587. {
  58588. name: "Megamacro",
  58589. height: math.unit(12600, "feet")
  58590. },
  58591. {
  58592. name: "Gigamacro",
  58593. height: math.unit(18000, "miles")
  58594. },
  58595. ]
  58596. ))
  58597. characterMakers.push(() => makeCharacter(
  58598. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58599. {
  58600. front: {
  58601. height: math.unit(10, "feet"),
  58602. weight: math.unit(2.4, "tons"),
  58603. name: "Front",
  58604. image: {
  58605. source: "./media/characters/3yk-k0-unit/front.svg",
  58606. extra: 573/561,
  58607. bottom: 33/606
  58608. }
  58609. },
  58610. back: {
  58611. height: math.unit(10, "feet"),
  58612. weight: math.unit(2.4, "tons"),
  58613. name: "Back",
  58614. image: {
  58615. source: "./media/characters/3yk-k0-unit/back.svg",
  58616. extra: 614/573,
  58617. bottom: 32/646
  58618. }
  58619. },
  58620. maw: {
  58621. height: math.unit(2.15, "feet"),
  58622. name: "Maw",
  58623. image: {
  58624. source: "./media/characters/3yk-k0-unit/maw.svg"
  58625. }
  58626. },
  58627. },
  58628. [
  58629. {
  58630. name: "Normal",
  58631. height: math.unit(10, "feet"),
  58632. default: true
  58633. },
  58634. ]
  58635. ))
  58636. characterMakers.push(() => makeCharacter(
  58637. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58638. {
  58639. front: {
  58640. height: math.unit(8 + 8/12, "feet"),
  58641. name: "Front",
  58642. image: {
  58643. source: "./media/characters/nemo/front.svg",
  58644. extra: 1308/1217,
  58645. bottom: 57/1365
  58646. }
  58647. },
  58648. },
  58649. [
  58650. {
  58651. name: "Normal",
  58652. height: math.unit(8 + 8/12, "feet"),
  58653. default: true
  58654. },
  58655. ]
  58656. ))
  58657. characterMakers.push(() => makeCharacter(
  58658. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58659. {
  58660. front: {
  58661. height: math.unit(8, "feet"),
  58662. weight: math.unit(760, "lb"),
  58663. name: "Front",
  58664. image: {
  58665. source: "./media/characters/rexx/front.svg",
  58666. extra: 786/750,
  58667. bottom: 17/803
  58668. },
  58669. extraAttributes: {
  58670. "pawLength": {
  58671. name: "Paw Length",
  58672. power: 1,
  58673. type: "length",
  58674. base: math.unit(27, "inches")
  58675. },
  58676. }
  58677. },
  58678. },
  58679. [
  58680. {
  58681. name: "Micro",
  58682. height: math.unit(2, "inches")
  58683. },
  58684. {
  58685. name: "Normal",
  58686. height: math.unit(8, "feet"),
  58687. default: true
  58688. },
  58689. {
  58690. name: "Macro",
  58691. height: math.unit(150, "feet")
  58692. },
  58693. ]
  58694. ))
  58695. characterMakers.push(() => makeCharacter(
  58696. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58697. {
  58698. front: {
  58699. height: math.unit(18, "feet"),
  58700. weight: math.unit(1975, "lb"),
  58701. name: "Front",
  58702. image: {
  58703. source: "./media/characters/draco/front.svg",
  58704. extra: 1325/1241,
  58705. bottom: 83/1408
  58706. }
  58707. },
  58708. back: {
  58709. height: math.unit(18, "feet"),
  58710. weight: math.unit(1975, "lb"),
  58711. name: "Back",
  58712. image: {
  58713. source: "./media/characters/draco/back.svg",
  58714. extra: 1332/1250,
  58715. bottom: 43/1375
  58716. }
  58717. },
  58718. dick: {
  58719. height: math.unit(7.5, "feet"),
  58720. name: "Dick",
  58721. image: {
  58722. source: "./media/characters/draco/dick.svg"
  58723. }
  58724. },
  58725. },
  58726. [
  58727. {
  58728. name: "Normal",
  58729. height: math.unit(18, "feet"),
  58730. default: true
  58731. },
  58732. ]
  58733. ))
  58734. characterMakers.push(() => makeCharacter(
  58735. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58736. {
  58737. front: {
  58738. height: math.unit(3.2, "meters"),
  58739. name: "Front",
  58740. image: {
  58741. source: "./media/characters/harriett/front.svg",
  58742. extra: 1966/1915,
  58743. bottom: 9/1975
  58744. }
  58745. },
  58746. },
  58747. [
  58748. {
  58749. name: "Normal",
  58750. height: math.unit(3.2, "meters"),
  58751. default: true
  58752. },
  58753. ]
  58754. ))
  58755. characterMakers.push(() => makeCharacter(
  58756. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58757. {
  58758. standing: {
  58759. height: math.unit(180, "cm"),
  58760. weight: math.unit(185, "lb"),
  58761. name: "Standing",
  58762. image: {
  58763. source: "./media/characters/serpentus/standing.svg",
  58764. extra: 882/878,
  58765. bottom: 16/898
  58766. }
  58767. },
  58768. sitting: {
  58769. height: math.unit(0.8, "meter"),
  58770. weight: math.unit(155, "lb"),
  58771. name: "Sitting",
  58772. image: {
  58773. source: "./media/characters/serpentus/sitting.svg",
  58774. extra: 293/290,
  58775. bottom: 140/433
  58776. }
  58777. },
  58778. },
  58779. [
  58780. {
  58781. name: "Normal",
  58782. height: math.unit(1.8, "meter"),
  58783. default: true
  58784. },
  58785. ]
  58786. ))
  58787. characterMakers.push(() => makeCharacter(
  58788. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58789. {
  58790. front: {
  58791. height: math.unit(5.7174385736, "feet"),
  58792. name: "Front",
  58793. image: {
  58794. source: "./media/characters/nova-polecat/front.svg",
  58795. extra: 1317/1216,
  58796. bottom: 92/1409
  58797. }
  58798. },
  58799. },
  58800. [
  58801. {
  58802. name: "Normal",
  58803. height: math.unit(5.7174385736, "feet"),
  58804. default: true
  58805. },
  58806. ]
  58807. ))
  58808. characterMakers.push(() => makeCharacter(
  58809. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58810. {
  58811. front: {
  58812. height: math.unit(5 + 4/12, "feet"),
  58813. weight: math.unit(250, "lb"),
  58814. name: "Front",
  58815. image: {
  58816. source: "./media/characters/mook/front.svg",
  58817. extra: 1088/1037,
  58818. bottom: 132/1220
  58819. }
  58820. },
  58821. back: {
  58822. height: math.unit(5 + 1/12, "feet"),
  58823. weight: math.unit(250, "lb"),
  58824. name: "Back",
  58825. image: {
  58826. source: "./media/characters/mook/back.svg",
  58827. extra: 1184/905,
  58828. bottom: 96/1280
  58829. }
  58830. },
  58831. head: {
  58832. height: math.unit(1.85, "feet"),
  58833. name: "Head",
  58834. image: {
  58835. source: "./media/characters/mook/head.svg"
  58836. }
  58837. },
  58838. hand: {
  58839. height: math.unit(1.9, "feet"),
  58840. name: "Hand",
  58841. image: {
  58842. source: "./media/characters/mook/hand.svg"
  58843. }
  58844. },
  58845. palm: {
  58846. height: math.unit(1.84, "feet"),
  58847. name: "Palm",
  58848. image: {
  58849. source: "./media/characters/mook/palm.svg"
  58850. }
  58851. },
  58852. foot: {
  58853. height: math.unit(1.44, "feet"),
  58854. name: "Foot",
  58855. image: {
  58856. source: "./media/characters/mook/foot.svg"
  58857. }
  58858. },
  58859. sole: {
  58860. height: math.unit(1.44, "feet"),
  58861. name: "Sole",
  58862. image: {
  58863. source: "./media/characters/mook/sole.svg"
  58864. }
  58865. },
  58866. },
  58867. [
  58868. {
  58869. name: "Normal",
  58870. height: math.unit(5 + 4/12, "feet"),
  58871. default: true
  58872. },
  58873. {
  58874. name: "Big",
  58875. height: math.unit(12, "feet")
  58876. },
  58877. ]
  58878. ))
  58879. characterMakers.push(() => makeCharacter(
  58880. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58881. {
  58882. front: {
  58883. height: math.unit(6 + 10/12, "feet"),
  58884. weight: math.unit(233, "lb"),
  58885. name: "Front",
  58886. image: {
  58887. source: "./media/characters/kayla/front.svg",
  58888. extra: 1850/1775,
  58889. bottom: 65/1915
  58890. }
  58891. },
  58892. },
  58893. [
  58894. {
  58895. name: "Normal",
  58896. height: math.unit(6 + 10/12, "feet"),
  58897. default: true
  58898. },
  58899. {
  58900. name: "Amazonian",
  58901. height: math.unit(12 + 5/12, "feet")
  58902. },
  58903. {
  58904. name: "Mini Giantess",
  58905. height: math.unit(26, "feet")
  58906. },
  58907. {
  58908. name: "Giantess",
  58909. height: math.unit(200, "feet")
  58910. },
  58911. {
  58912. name: "Mega Giantess",
  58913. height: math.unit(2500, "feet")
  58914. },
  58915. {
  58916. name: "City Sized",
  58917. height: math.unit(50, "miles")
  58918. },
  58919. {
  58920. name: "Country Sized",
  58921. height: math.unit(500, "miles")
  58922. },
  58923. {
  58924. name: "Continent Sized",
  58925. height: math.unit(2500, "miles")
  58926. },
  58927. {
  58928. name: "Planet Sized",
  58929. height: math.unit(10000, "miles")
  58930. },
  58931. {
  58932. name: "Star Sized",
  58933. height: math.unit(5e6, "miles")
  58934. },
  58935. {
  58936. name: "Solar System Sized",
  58937. height: math.unit(125, "AU")
  58938. },
  58939. {
  58940. name: "Galaxy Sized",
  58941. height: math.unit(300e3, "lightyears")
  58942. },
  58943. {
  58944. name: "Universe Sized",
  58945. height: math.unit(200e9, "lightyears")
  58946. },
  58947. {
  58948. name: "Multiverse Sized",
  58949. height: math.unit(20, "exauniverses")
  58950. },
  58951. {
  58952. name: "Mother of Existence",
  58953. height: math.unit(1e6, "yottauniverses")
  58954. },
  58955. ]
  58956. ))
  58957. characterMakers.push(() => makeCharacter(
  58958. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58959. {
  58960. side: {
  58961. height: math.unit(9.5, "meters"),
  58962. name: "Side",
  58963. image: {
  58964. source: "./media/characters/kulve-ragnarok/side.svg",
  58965. extra: 364/326,
  58966. bottom: 50/414
  58967. }
  58968. },
  58969. },
  58970. [
  58971. {
  58972. name: "Normal",
  58973. height: math.unit(9.5, "meters"),
  58974. default: true
  58975. },
  58976. ]
  58977. ))
  58978. characterMakers.push(() => makeCharacter(
  58979. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58980. {
  58981. front: {
  58982. height: math.unit(8 + 9/12, "feet"),
  58983. name: "Front",
  58984. image: {
  58985. source: "./media/characters/atlas-goat/front.svg",
  58986. extra: 1462/1323,
  58987. bottom: 12/1474
  58988. }
  58989. },
  58990. },
  58991. [
  58992. {
  58993. name: "Normal",
  58994. height: math.unit(8 + 9/12, "feet"),
  58995. default: true
  58996. },
  58997. {
  58998. name: "Skyline",
  58999. height: math.unit(845, "feet")
  59000. },
  59001. {
  59002. name: "Orbital",
  59003. height: math.unit(93000, "miles")
  59004. },
  59005. {
  59006. name: "Constellation",
  59007. height: math.unit(27000, "lightyears")
  59008. },
  59009. ]
  59010. ))
  59011. characterMakers.push(() => makeCharacter(
  59012. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59013. {
  59014. side: {
  59015. height: math.unit(1.8, "meters"),
  59016. weight: math.unit(120, "kg"),
  59017. name: "Side",
  59018. image: {
  59019. source: "./media/characters/xie-ling/side.svg",
  59020. extra: 646/574,
  59021. bottom: 44/690
  59022. }
  59023. },
  59024. },
  59025. [
  59026. {
  59027. name: "Tiny",
  59028. height: math.unit(1.80, "meters")
  59029. },
  59030. {
  59031. name: "Small",
  59032. height: math.unit(6, "meters")
  59033. },
  59034. {
  59035. name: "Medium",
  59036. height: math.unit(15, "meters")
  59037. },
  59038. {
  59039. name: "Normal",
  59040. height: math.unit(30, "meters"),
  59041. default: true
  59042. },
  59043. {
  59044. name: "Above Normal",
  59045. height: math.unit(60, "meters")
  59046. },
  59047. {
  59048. name: "Big",
  59049. height: math.unit(220, "meters")
  59050. },
  59051. {
  59052. name: "Giant",
  59053. height: math.unit(2.2, "km")
  59054. },
  59055. {
  59056. name: "Macro",
  59057. height: math.unit(25, "km")
  59058. },
  59059. {
  59060. name: "Mega Macro",
  59061. height: math.unit(350, "km")
  59062. },
  59063. {
  59064. name: "Mega Macro+",
  59065. height: math.unit(5000, "km")
  59066. },
  59067. {
  59068. name: "Goddess",
  59069. height: math.unit(3, "multiverses")
  59070. },
  59071. ]
  59072. ))
  59073. characterMakers.push(() => makeCharacter(
  59074. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59075. {
  59076. frontSfw: {
  59077. height: math.unit(5 + 11/12, "feet"),
  59078. weight: math.unit(210, "lb"),
  59079. name: "Front",
  59080. image: {
  59081. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59082. extra: 1928/1821,
  59083. bottom: 45/1973
  59084. }
  59085. },
  59086. backSfw: {
  59087. height: math.unit(5 + 11/12, "feet"),
  59088. weight: math.unit(210, "lb"),
  59089. name: "Back",
  59090. image: {
  59091. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59092. extra: 1920/1813,
  59093. bottom: 34/1954
  59094. }
  59095. },
  59096. frontNsfw: {
  59097. height: math.unit(5 + 11/12, "feet"),
  59098. weight: math.unit(210, "lb"),
  59099. name: "Front (NSFW)",
  59100. image: {
  59101. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59102. extra: 1928/1821,
  59103. bottom: 45/1973
  59104. }
  59105. },
  59106. backNsfw: {
  59107. height: math.unit(5 + 11/12, "feet"),
  59108. weight: math.unit(210, "lb"),
  59109. name: "Back (NSFW)",
  59110. image: {
  59111. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59112. extra: 1920/1813,
  59113. bottom: 34/1954
  59114. }
  59115. },
  59116. },
  59117. [
  59118. {
  59119. name: "Normal",
  59120. height: math.unit(5 + 11/12, "feet"),
  59121. default: true
  59122. },
  59123. {
  59124. name: "Goddess",
  59125. height: math.unit(20 + 3/12, "feet")
  59126. },
  59127. {
  59128. name: "Breaker of Man",
  59129. height: math.unit(329 + 9/12, "feet")
  59130. },
  59131. {
  59132. name: "Solar Justice",
  59133. height: math.unit(0.6, "solarradii")
  59134. },
  59135. {
  59136. name: "She Who Judges",
  59137. height: math.unit(1, "universe")
  59138. },
  59139. ]
  59140. ))
  59141. characterMakers.push(() => makeCharacter(
  59142. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59143. {
  59144. casual_front: {
  59145. height: math.unit(6 + 1/12, "feet"),
  59146. weight: math.unit(190, "lb"),
  59147. preyCapacity: math.unit(1, "people"),
  59148. name: "Front",
  59149. image: {
  59150. source: "./media/characters/managarmr/casual-front.svg",
  59151. extra: 411/381,
  59152. bottom: 15/426
  59153. },
  59154. extraAttributes: {
  59155. "pawSize": {
  59156. name: "Paw Size",
  59157. power: 1,
  59158. type: "length",
  59159. base: math.unit(0.2, "meters")
  59160. },
  59161. },
  59162. form: "casual",
  59163. },
  59164. casual_back: {
  59165. height: math.unit(6 + 1/12, "feet"),
  59166. weight: math.unit(190, "lb"),
  59167. preyCapacity: math.unit(1, "people"),
  59168. name: "Back",
  59169. image: {
  59170. source: "./media/characters/managarmr/casual-back.svg",
  59171. extra: 413/383,
  59172. bottom: 13/426
  59173. },
  59174. extraAttributes: {
  59175. "pawSize": {
  59176. name: "Paw Size",
  59177. power: 1,
  59178. type: "length",
  59179. base: math.unit(0.2, "meters")
  59180. },
  59181. },
  59182. form: "casual",
  59183. },
  59184. base_front: {
  59185. height: math.unit(7, "feet"),
  59186. weight: math.unit(210, "lb"),
  59187. preyCapacity: math.unit(2, "people"),
  59188. name: "Front",
  59189. image: {
  59190. source: "./media/characters/managarmr/base-front.svg",
  59191. extra: 580/485,
  59192. bottom: 32/612
  59193. },
  59194. extraAttributes: {
  59195. "wingspan": {
  59196. name: "Wingspan",
  59197. power: 1,
  59198. type: "length",
  59199. base: math.unit(4, "meters")
  59200. },
  59201. "pawSize": {
  59202. name: "Paw Size",
  59203. power: 1,
  59204. type: "length",
  59205. base: math.unit(0.2, "meters")
  59206. },
  59207. },
  59208. form: "base",
  59209. },
  59210. "true-divine_front": {
  59211. height: math.unit(40, "feet"),
  59212. weight: math.unit(39000, "lb"),
  59213. preyCapacity: math.unit(375, "people"),
  59214. name: "Front",
  59215. image: {
  59216. source: "./media/characters/managarmr/true-divine-front.svg",
  59217. extra: 725/573,
  59218. bottom: 120/845
  59219. },
  59220. extraAttributes: {
  59221. "wingspan": {
  59222. name: "Wingspan",
  59223. power: 1,
  59224. type: "length",
  59225. base: math.unit(20, "meters")
  59226. },
  59227. "pawSize": {
  59228. name: "Paw Size",
  59229. power: 1,
  59230. type: "length",
  59231. base: math.unit(1.5, "meters")
  59232. },
  59233. },
  59234. form: "true-divine",
  59235. },
  59236. },
  59237. [
  59238. {
  59239. name: "Normal",
  59240. height: math.unit(6 + 1/12, "feet"),
  59241. form: "casual",
  59242. default: true
  59243. },
  59244. {
  59245. name: "Normal",
  59246. height: math.unit(7, "feet"),
  59247. form: "base",
  59248. default: true
  59249. },
  59250. ],
  59251. {
  59252. "casual": {
  59253. name: "Casual",
  59254. default: true
  59255. },
  59256. "base": {
  59257. name: "Base",
  59258. },
  59259. "true-divine": {
  59260. name: "True Divine",
  59261. },
  59262. }
  59263. ))
  59264. characterMakers.push(() => makeCharacter(
  59265. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59266. {
  59267. front: {
  59268. height: math.unit(1.8, "meters"),
  59269. weight: math.unit(110, "kg"),
  59270. name: "Front",
  59271. image: {
  59272. source: "./media/characters/mystra/front.svg",
  59273. extra: 529/442,
  59274. bottom: 31/560
  59275. }
  59276. },
  59277. frontLewd: {
  59278. height: math.unit(1.8, "meters"),
  59279. weight: math.unit(110, "kg"),
  59280. name: "Front (Lewd)",
  59281. image: {
  59282. source: "./media/characters/mystra/front-lewd.svg",
  59283. extra: 529/442,
  59284. bottom: 31/560
  59285. }
  59286. },
  59287. head: {
  59288. height: math.unit(1.63, "feet"),
  59289. name: "Head",
  59290. image: {
  59291. source: "./media/characters/mystra/head.svg"
  59292. }
  59293. },
  59294. paw: {
  59295. height: math.unit(1.9, "feet"),
  59296. name: "Paw",
  59297. image: {
  59298. source: "./media/characters/mystra/paw.svg"
  59299. }
  59300. },
  59301. },
  59302. [
  59303. {
  59304. name: "Incognito",
  59305. height: math.unit(2.3, "meters")
  59306. },
  59307. {
  59308. name: "Small Macro",
  59309. height: math.unit(300, "meters")
  59310. },
  59311. {
  59312. name: "Small Mega",
  59313. height: math.unit(2, "km")
  59314. },
  59315. {
  59316. name: "Mega",
  59317. height: math.unit(30, "km")
  59318. },
  59319. {
  59320. name: "Small Giga",
  59321. height: math.unit(100, "km")
  59322. },
  59323. {
  59324. name: "Giga",
  59325. height: math.unit(1000, "km"),
  59326. default: true
  59327. },
  59328. {
  59329. name: "Continental",
  59330. height: math.unit(5000, "km")
  59331. },
  59332. {
  59333. name: "Terra",
  59334. height: math.unit(20000, "km")
  59335. },
  59336. {
  59337. name: "Solar",
  59338. height: math.unit(2e6, "km")
  59339. },
  59340. {
  59341. name: "Galactic",
  59342. height: math.unit(528502, "lightyears")
  59343. },
  59344. {
  59345. name: "Universal",
  59346. height: math.unit(20, "universes")
  59347. },
  59348. ]
  59349. ))
  59350. characterMakers.push(() => makeCharacter(
  59351. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59352. {
  59353. front: {
  59354. height: math.unit(2, "meters"),
  59355. weight: math.unit(140, "kg"),
  59356. name: "Front",
  59357. image: {
  59358. source: "./media/characters/caleb/front.svg",
  59359. extra: 873/817,
  59360. bottom: 47/920
  59361. }
  59362. },
  59363. back: {
  59364. height: math.unit(2, "meters"),
  59365. weight: math.unit(140, "kg"),
  59366. name: "Back",
  59367. image: {
  59368. source: "./media/characters/caleb/back.svg",
  59369. extra: 877/828,
  59370. bottom: 24/901
  59371. }
  59372. },
  59373. snakeTail: {
  59374. height: math.unit(1.44, "feet"),
  59375. name: "Snake Tail",
  59376. image: {
  59377. source: "./media/characters/caleb/snake-tail.svg"
  59378. }
  59379. },
  59380. dick: {
  59381. height: math.unit(2.6, "feet"),
  59382. name: "Dick",
  59383. image: {
  59384. source: "./media/characters/caleb/dick.svg"
  59385. }
  59386. },
  59387. },
  59388. [
  59389. {
  59390. name: "Incognito",
  59391. height: math.unit(3, "meters")
  59392. },
  59393. {
  59394. name: "Home Size",
  59395. height: math.unit(200, "meters"),
  59396. default: true
  59397. },
  59398. {
  59399. name: "Macro",
  59400. height: math.unit(500, "meters")
  59401. },
  59402. {
  59403. name: "Big Macro",
  59404. height: math.unit(5, "km")
  59405. },
  59406. {
  59407. name: "Giga",
  59408. height: math.unit(250, "km")
  59409. },
  59410. {
  59411. name: "Giga+",
  59412. height: math.unit(5000, "km")
  59413. },
  59414. {
  59415. name: "Small Terra",
  59416. height: math.unit(35e3, "km")
  59417. },
  59418. {
  59419. name: "Terra",
  59420. height: math.unit(2e6, "km")
  59421. },
  59422. {
  59423. name: "Terra+",
  59424. height: math.unit(1.5e6, "km")
  59425. },
  59426. ]
  59427. ))
  59428. characterMakers.push(() => makeCharacter(
  59429. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59430. {
  59431. front: {
  59432. height: math.unit(2, "meters"),
  59433. weight: math.unit(120, "kg"),
  59434. name: "Front",
  59435. image: {
  59436. source: "./media/characters/gilirian/front.svg",
  59437. extra: 805/737,
  59438. bottom: 13/818
  59439. }
  59440. },
  59441. side: {
  59442. height: math.unit(2, "meters"),
  59443. weight: math.unit(120, "kg"),
  59444. name: "Side",
  59445. image: {
  59446. source: "./media/characters/gilirian/side.svg",
  59447. extra: 810/746,
  59448. bottom: 6/816
  59449. }
  59450. },
  59451. back: {
  59452. height: math.unit(2, "meters"),
  59453. weight: math.unit(120, "kg"),
  59454. name: "Back",
  59455. image: {
  59456. source: "./media/characters/gilirian/back.svg",
  59457. extra: 815/745,
  59458. bottom: 15/830
  59459. }
  59460. },
  59461. frontNsfw: {
  59462. height: math.unit(2, "meters"),
  59463. weight: math.unit(120, "kg"),
  59464. name: "Front (NSFW)",
  59465. image: {
  59466. source: "./media/characters/gilirian/front-nsfw.svg",
  59467. extra: 805/737,
  59468. bottom: 13/818
  59469. }
  59470. },
  59471. sideNsfw: {
  59472. height: math.unit(2, "meters"),
  59473. weight: math.unit(120, "kg"),
  59474. name: "Side (NSFW)",
  59475. image: {
  59476. source: "./media/characters/gilirian/side-nsfw.svg",
  59477. extra: 810/746,
  59478. bottom: 6/816
  59479. }
  59480. },
  59481. },
  59482. [
  59483. {
  59484. name: "Incognito",
  59485. height: math.unit(2, "meters"),
  59486. default: true
  59487. },
  59488. {
  59489. name: "Macro",
  59490. height: math.unit(250, "meters")
  59491. },
  59492. {
  59493. name: "Big Macro",
  59494. height: math.unit(1500, "meters")
  59495. },
  59496. {
  59497. name: "Mega",
  59498. height: math.unit(40, "km")
  59499. },
  59500. {
  59501. name: "Giga",
  59502. height: math.unit(300, "km")
  59503. },
  59504. {
  59505. name: "Extra Giga",
  59506. height: math.unit(5000, "km")
  59507. },
  59508. {
  59509. name: "Small Terra",
  59510. height: math.unit(10e3, "km")
  59511. },
  59512. {
  59513. name: "Terra",
  59514. height: math.unit(3e5, "km")
  59515. },
  59516. {
  59517. name: "Galactic",
  59518. height: math.unit(369950, "lightyears")
  59519. },
  59520. ]
  59521. ))
  59522. characterMakers.push(() => makeCharacter(
  59523. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59524. {
  59525. front: {
  59526. height: math.unit(2.5, "meters"),
  59527. weight: math.unit(230, "lb"),
  59528. name: "Front",
  59529. image: {
  59530. source: "./media/characters/tarken/front.svg",
  59531. extra: 764/720,
  59532. bottom: 49/813
  59533. }
  59534. },
  59535. back: {
  59536. height: math.unit(2.5, "meters"),
  59537. weight: math.unit(230, "lb"),
  59538. name: "Back",
  59539. image: {
  59540. source: "./media/characters/tarken/back.svg",
  59541. extra: 756/720,
  59542. bottom: 35/791
  59543. }
  59544. },
  59545. frontNsfw: {
  59546. height: math.unit(2.5, "meters"),
  59547. weight: math.unit(230, "lb"),
  59548. name: "Front (NSFW)",
  59549. image: {
  59550. source: "./media/characters/tarken/front-nsfw.svg",
  59551. extra: 764/720,
  59552. bottom: 49/813
  59553. }
  59554. },
  59555. backNsfw: {
  59556. height: math.unit(2.5, "meters"),
  59557. weight: math.unit(230, "lb"),
  59558. name: "Back (NSFW)",
  59559. image: {
  59560. source: "./media/characters/tarken/back-nsfw.svg",
  59561. extra: 756/720,
  59562. bottom: 35/791
  59563. }
  59564. },
  59565. head: {
  59566. height: math.unit(2.22, "feet"),
  59567. name: "Head",
  59568. image: {
  59569. source: "./media/characters/tarken/head.svg"
  59570. }
  59571. },
  59572. tail: {
  59573. height: math.unit(5.25, "feet"),
  59574. name: "Tail",
  59575. image: {
  59576. source: "./media/characters/tarken/tail.svg"
  59577. }
  59578. },
  59579. dick: {
  59580. height: math.unit(1.95, "feet"),
  59581. name: "Dick",
  59582. image: {
  59583. source: "./media/characters/tarken/dick.svg"
  59584. }
  59585. },
  59586. hand: {
  59587. height: math.unit(1.78, "feet"),
  59588. name: "Hand",
  59589. image: {
  59590. source: "./media/characters/tarken/hand.svg"
  59591. }
  59592. },
  59593. beam: {
  59594. height: math.unit(1.5, "feet"),
  59595. name: "Beam",
  59596. image: {
  59597. source: "./media/characters/tarken/beam.svg"
  59598. }
  59599. },
  59600. },
  59601. [
  59602. {
  59603. name: "Original Size",
  59604. height: math.unit(2.5, "meters")
  59605. },
  59606. {
  59607. name: "Macro",
  59608. height: math.unit(150, "meters"),
  59609. default: true
  59610. },
  59611. {
  59612. name: "Macro+",
  59613. height: math.unit(300, "meters")
  59614. },
  59615. {
  59616. name: "Mega",
  59617. height: math.unit(2, "km")
  59618. },
  59619. {
  59620. name: "Mega+",
  59621. height: math.unit(35, "km")
  59622. },
  59623.  {
  59624. name: "Mega++",
  59625. height: math.unit(60, "km")
  59626. },
  59627. {
  59628. name: "Giga",
  59629. height: math.unit(200, "km")
  59630. },
  59631. {
  59632. name: "Giga+",
  59633. height: math.unit(2500, "km")
  59634. },
  59635. {
  59636. name: "Giga++",
  59637. height: math.unit(6600, "km")
  59638. },
  59639. {
  59640. name: "Terra",
  59641. height: math.unit(20000, "km")
  59642. },
  59643. {
  59644. name: "Terra+",
  59645. height: math.unit(300000, "km")
  59646. },
  59647. ]
  59648. ))
  59649. characterMakers.push(() => makeCharacter(
  59650. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59651. {
  59652. magpie_dressed: {
  59653. height: math.unit(1.7, "meters"),
  59654. weight: math.unit(70, "kg"),
  59655. name: "Dressed",
  59656. image: {
  59657. source: "./media/characters/otreus/magpie-dressed.svg",
  59658. extra: 691/672,
  59659. bottom: 116/807
  59660. },
  59661. form: "magpie",
  59662. default: true
  59663. },
  59664. magpie_nude: {
  59665. height: math.unit(1.7, "meters"),
  59666. weight: math.unit(70, "kg"),
  59667. name: "Nude",
  59668. image: {
  59669. source: "./media/characters/otreus/magpie-nude.svg",
  59670. extra: 691/672,
  59671. bottom: 116/807
  59672. },
  59673. form: "magpie",
  59674. },
  59675. magpie_dressedLewd: {
  59676. height: math.unit(1.7, "meters"),
  59677. weight: math.unit(70, "kg"),
  59678. name: "Dressed (Lewd)",
  59679. image: {
  59680. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59681. extra: 691/672,
  59682. bottom: 116/807
  59683. },
  59684. form: "magpie",
  59685. },
  59686. magpie_nudeLewd: {
  59687. height: math.unit(1.7, "meters"),
  59688. weight: math.unit(70, "kg"),
  59689. name: "Nude (Lewd)",
  59690. image: {
  59691. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59692. extra: 691/672,
  59693. bottom: 116/807
  59694. },
  59695. form: "magpie",
  59696. },
  59697. magpie_leftFoot: {
  59698. height: math.unit(1.58, "feet"),
  59699. name: "Left Foot",
  59700. image: {
  59701. source: "./media/characters/otreus/magpie-left-foot.svg"
  59702. },
  59703. form: "magpie",
  59704. },
  59705. magpie_rightFoot: {
  59706. height: math.unit(1.58, "feet"),
  59707. name: "Right Foot",
  59708. image: {
  59709. source: "./media/characters/otreus/magpie-right-foot.svg"
  59710. },
  59711. form: "magpie",
  59712. },
  59713. magpie_wingspan: {
  59714. height: math.unit(2, "meters"),
  59715. weight: math.unit(70, "kg"),
  59716. name: "Wingspan",
  59717. image: {
  59718. source: "./media/characters/otreus/magpie-wingspan.svg"
  59719. },
  59720. extraAttributes: {
  59721. "wingspan": {
  59722. name: "Wingspan",
  59723. power: 1,
  59724. type: "length",
  59725. base: math.unit(3.35, "meters")
  59726. },
  59727. },
  59728. form: "magpie",
  59729. },
  59730. hippogriff_dressed: {
  59731. height: math.unit(1.7, "meters"),
  59732. weight: math.unit(70, "kg"),
  59733. name: "Dressed",
  59734. image: {
  59735. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59736. extra: 710/689,
  59737. bottom: 67/777
  59738. },
  59739. form: "hippogriff",
  59740. default: true
  59741. },
  59742. hippogriff_nude: {
  59743. height: math.unit(1.7, "meters"),
  59744. weight: math.unit(70, "kg"),
  59745. name: "Nude",
  59746. image: {
  59747. source: "./media/characters/otreus/hippogriff-nude.svg",
  59748. extra: 710/689,
  59749. bottom: 67/777
  59750. },
  59751. form: "hippogriff",
  59752. },
  59753. hippogriff_dressedLewd: {
  59754. height: math.unit(1.7, "meters"),
  59755. weight: math.unit(70, "kg"),
  59756. name: "Dressed (Lewd)",
  59757. image: {
  59758. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59759. extra: 710/689,
  59760. bottom: 67/777
  59761. },
  59762. form: "hippogriff",
  59763. },
  59764. hippogriff_nudeLewd: {
  59765. height: math.unit(1.7, "meters"),
  59766. weight: math.unit(70, "kg"),
  59767. name: "Nude (Lewd)",
  59768. image: {
  59769. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59770. extra: 710/689,
  59771. bottom: 67/777
  59772. },
  59773. form: "hippogriff",
  59774. },
  59775. },
  59776. [
  59777. {
  59778. name: "Original Size",
  59779. height: math.unit(1.7, "meters"),
  59780. allForms: true
  59781. },
  59782. {
  59783. name: "Incognito Size",
  59784. height: math.unit(2, "meters"),
  59785. allForms: true
  59786. },
  59787. {
  59788. name: "Mega",
  59789. height: math.unit(2, "km"),
  59790. allForms: true
  59791. },
  59792. {
  59793. name: "Mega+",
  59794. height: math.unit(40, "km"),
  59795. allForms: true
  59796. },
  59797. {
  59798. name: "Giga",
  59799. height: math.unit(250, "km"),
  59800. allForms: true
  59801. },
  59802. {
  59803. name: "Giga+",
  59804. height: math.unit(3000, "km"),
  59805. allForms: true
  59806. },
  59807. {
  59808. name: "Terra",
  59809. height: math.unit(20000, "km"),
  59810. allForms: true
  59811. },
  59812. {
  59813. name: "Solar (Home Size)",
  59814. height: math.unit(3e6, "km"),
  59815. allForms: true,
  59816. default: true
  59817. },
  59818. ],
  59819. {
  59820. "magpie": {
  59821. name: "Magpie",
  59822. default: true
  59823. },
  59824. "hippogriff": {
  59825. name: "Hippogriff",
  59826. },
  59827. }
  59828. ))
  59829. characterMakers.push(() => makeCharacter(
  59830. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59831. {
  59832. frontDressed: {
  59833. height: math.unit(1.8, "meters"),
  59834. weight: math.unit(90, "kg"),
  59835. name: "Front (Dressed)",
  59836. image: {
  59837. source: "./media/characters/thalia/front-dressed.svg",
  59838. extra: 478/402,
  59839. bottom: 55/533
  59840. }
  59841. },
  59842. backDressed: {
  59843. height: math.unit(1.8, "meters"),
  59844. weight: math.unit(90, "kg"),
  59845. name: "Back (Dressed)",
  59846. image: {
  59847. source: "./media/characters/thalia/back-dressed.svg",
  59848. extra: 500/424,
  59849. bottom: 15/515
  59850. }
  59851. },
  59852. frontNude: {
  59853. height: math.unit(1.8, "meters"),
  59854. weight: math.unit(90, "kg"),
  59855. name: "Front (Nude)",
  59856. image: {
  59857. source: "./media/characters/thalia/front-nude.svg",
  59858. extra: 478/402,
  59859. bottom: 55/533
  59860. }
  59861. },
  59862. backNude: {
  59863. height: math.unit(1.8, "meters"),
  59864. weight: math.unit(90, "kg"),
  59865. name: "Back (Nude)",
  59866. image: {
  59867. source: "./media/characters/thalia/back-nude.svg",
  59868. extra: 500/424,
  59869. bottom: 15/515
  59870. }
  59871. },
  59872. },
  59873. [
  59874. {
  59875. name: "Incognito",
  59876. height: math.unit(3, "meters")
  59877. },
  59878. {
  59879. name: "Macro",
  59880. height: math.unit(500, "meters")
  59881. },
  59882. {
  59883. name: "Mega",
  59884. height: math.unit(5, "km")
  59885. },
  59886. {
  59887. name: "Mega+",
  59888. height: math.unit(30, "km")
  59889. },
  59890. {
  59891. name: "Giga",
  59892. height: math.unit(350, "km")
  59893. },
  59894. {
  59895. name: "Giga+",
  59896. height: math.unit(4000, "km")
  59897. },
  59898. {
  59899. name: "Terra",
  59900. height: math.unit(35000, "km")
  59901. },
  59902. {
  59903. name: "Original Size",
  59904. height: math.unit(130000, "km")
  59905. },
  59906. {
  59907. name: "Solar (Home Size)",
  59908. height: math.unit(4e6, "km"),
  59909. default: true
  59910. },
  59911. ]
  59912. ))
  59913. characterMakers.push(() => makeCharacter(
  59914. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59915. {
  59916. front: {
  59917. height: math.unit(1.8, "meters"),
  59918. weight: math.unit(95, "kg"),
  59919. name: "Front",
  59920. image: {
  59921. source: "./media/characters/shango/front.svg",
  59922. extra: 1925/1774,
  59923. bottom: 67/1992
  59924. }
  59925. },
  59926. back: {
  59927. height: math.unit(1.8, "meters"),
  59928. weight: math.unit(95, "kg"),
  59929. name: "Back",
  59930. image: {
  59931. source: "./media/characters/shango/back.svg",
  59932. extra: 1915/1766,
  59933. bottom: 52/1967
  59934. }
  59935. },
  59936. frontLewd: {
  59937. height: math.unit(1.8, "meters"),
  59938. weight: math.unit(95, "kg"),
  59939. name: "Front (Lewd)",
  59940. image: {
  59941. source: "./media/characters/shango/front-lewd.svg",
  59942. extra: 1925/1774,
  59943. bottom: 67/1992
  59944. }
  59945. },
  59946. backLewd: {
  59947. height: math.unit(1.8, "meters"),
  59948. weight: math.unit(95, "kg"),
  59949. name: "Back (Lewd)",
  59950. image: {
  59951. source: "./media/characters/shango/back-lewd.svg",
  59952. extra: 1915/1766,
  59953. bottom: 52/1967
  59954. }
  59955. },
  59956. maw: {
  59957. height: math.unit(1.64, "feet"),
  59958. name: "Maw",
  59959. image: {
  59960. source: "./media/characters/shango/maw.svg"
  59961. }
  59962. },
  59963. dick: {
  59964. height: math.unit(2.14, "feet"),
  59965. name: "Dick",
  59966. image: {
  59967. source: "./media/characters/shango/dick.svg"
  59968. }
  59969. },
  59970. },
  59971. [
  59972. {
  59973. name: "Incognito",
  59974. height: math.unit(1.8, "meters")
  59975. },
  59976. {
  59977. name: "Home Size",
  59978. height: math.unit(60, "meters"),
  59979. default: true
  59980. },
  59981. {
  59982. name: "Macro",
  59983. height: math.unit(450, "meters")
  59984. },
  59985. {
  59986. name: "Mega",
  59987. height: math.unit(6, "km")
  59988. },
  59989. {
  59990. name: "Mega+",
  59991. height: math.unit(35, "km")
  59992. },
  59993. {
  59994. name: "Giga",
  59995. height: math.unit(500, "km")
  59996. },
  59997. {
  59998. name: "Giga+",
  59999. height: math.unit(5000, "km")
  60000. },
  60001. {
  60002. name: "Terra",
  60003. height: math.unit(60000, "km")
  60004. },
  60005. {
  60006. name: "Terra+",
  60007. height: math.unit(400000, "km")
  60008. },
  60009. ]
  60010. ))
  60011. characterMakers.push(() => makeCharacter(
  60012. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60013. {
  60014. front: {
  60015. height: math.unit(2, "meters"),
  60016. weight: math.unit(95, "kg"),
  60017. name: "Front",
  60018. image: {
  60019. source: "./media/characters/osiris-gryphon/front.svg",
  60020. extra: 1508/1313,
  60021. bottom: 87/1595
  60022. }
  60023. },
  60024. back: {
  60025. height: math.unit(2, "meters"),
  60026. weight: math.unit(95, "kg"),
  60027. name: "Back",
  60028. image: {
  60029. source: "./media/characters/osiris-gryphon/back.svg",
  60030. extra: 1436/1309,
  60031. bottom: 64/1500
  60032. }
  60033. },
  60034. frontLewd: {
  60035. height: math.unit(2, "meters"),
  60036. weight: math.unit(95, "kg"),
  60037. name: "Front-lewd",
  60038. image: {
  60039. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60040. extra: 1508/1313,
  60041. bottom: 87/1595
  60042. }
  60043. },
  60044. wing: {
  60045. height: math.unit(6.3333, "feet"),
  60046. name: "Wing",
  60047. image: {
  60048. source: "./media/characters/osiris-gryphon/wing.svg"
  60049. }
  60050. },
  60051. },
  60052. [
  60053. {
  60054. name: "Incognito",
  60055. height: math.unit(2, "meters")
  60056. },
  60057. {
  60058. name: "Home Size",
  60059. height: math.unit(30, "meters"),
  60060. default: true
  60061. },
  60062. {
  60063. name: "Macro",
  60064. height: math.unit(100, "meters")
  60065. },
  60066. {
  60067. name: "Macro+",
  60068. height: math.unit(350, "meters")
  60069. },
  60070. {
  60071. name: "Mega",
  60072. height: math.unit(40, "km")
  60073. },
  60074. {
  60075. name: "Giga",
  60076. height: math.unit(300, "km")
  60077. },
  60078. {
  60079. name: "Giga+",
  60080. height: math.unit(2000, "km")
  60081. },
  60082. {
  60083. name: "Terra",
  60084. height: math.unit(30000, "km")
  60085. },
  60086. ]
  60087. ))
  60088. characterMakers.push(() => makeCharacter(
  60089. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60090. {
  60091. front: {
  60092. height: math.unit(2.5, "meters"),
  60093. weight: math.unit(200, "kg"),
  60094. name: "Front",
  60095. image: {
  60096. source: "./media/characters/atlas-dragon/front.svg",
  60097. extra: 745/462,
  60098. bottom: 36/781
  60099. }
  60100. },
  60101. back: {
  60102. height: math.unit(2.5, "meters"),
  60103. weight: math.unit(200, "kg"),
  60104. name: "Back",
  60105. image: {
  60106. source: "./media/characters/atlas-dragon/back.svg",
  60107. extra: 848/822,
  60108. bottom: 57/905
  60109. }
  60110. },
  60111. frontLewd: {
  60112. height: math.unit(2.5, "meters"),
  60113. weight: math.unit(200, "kg"),
  60114. name: "Front (Lewd)",
  60115. image: {
  60116. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60117. extra: 745/462,
  60118. bottom: 36/781
  60119. }
  60120. },
  60121. backLewd: {
  60122. height: math.unit(2.5, "meters"),
  60123. weight: math.unit(200, "kg"),
  60124. name: "Back (Lewd)",
  60125. image: {
  60126. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60127. extra: 848/822,
  60128. bottom: 57/905
  60129. }
  60130. },
  60131. },
  60132. [
  60133. {
  60134. name: "Incognito",
  60135. height: math.unit(2.5, "meters")
  60136. },
  60137. {
  60138. name: "Small Macro",
  60139. height: math.unit(50, "meters")
  60140. },
  60141. {
  60142. name: "Macro",
  60143. height: math.unit(350, "meters")
  60144. },
  60145. {
  60146. name: "Mega",
  60147. height: math.unit(5.5, "kilometers")
  60148. },
  60149. {
  60150. name: "Mega+",
  60151. height: math.unit(50, "km")
  60152. },
  60153. {
  60154. name: "Giga",
  60155. height: math.unit(350, "km")
  60156. },
  60157. {
  60158. name: "Giga+",
  60159. height: math.unit(2000, "km")
  60160. },
  60161. {
  60162. name: "Giga++",
  60163. height: math.unit(6500, "km")
  60164. },
  60165. {
  60166. name: "Terra",
  60167. height: math.unit(30000, "km")
  60168. },
  60169. {
  60170. name: "Terra+",
  60171. height: math.unit(250000, "km")
  60172. },
  60173. {
  60174. name: "True Size",
  60175. height: math.unit(100, "multiverses"),
  60176. default: true
  60177. },
  60178. ]
  60179. ))
  60180. characterMakers.push(() => makeCharacter(
  60181. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60182. {
  60183. front: {
  60184. height: math.unit(1.8, "m"),
  60185. weight: math.unit(120, "kg"),
  60186. name: "Front",
  60187. image: {
  60188. source: "./media/characters/chey/front.svg",
  60189. extra: 1359/1270,
  60190. bottom: 18/1377
  60191. }
  60192. },
  60193. arm: {
  60194. height: math.unit(2.05, "feet"),
  60195. name: "Arm",
  60196. image: {
  60197. source: "./media/characters/chey/arm.svg"
  60198. }
  60199. },
  60200. head: {
  60201. height: math.unit(1.89, "feet"),
  60202. name: "Head",
  60203. image: {
  60204. source: "./media/characters/chey/head.svg"
  60205. }
  60206. },
  60207. },
  60208. [
  60209. {
  60210. name: "Original Size",
  60211. height: math.unit(5, "cm")
  60212. },
  60213. {
  60214. name: "Incognito Size",
  60215. height: math.unit(2.4, "m")
  60216. },
  60217. {
  60218. name: "Home Size",
  60219. height: math.unit(200, "meters"),
  60220. default: true
  60221. },
  60222. {
  60223. name: "Mega",
  60224. height: math.unit(2, "km")
  60225. },
  60226. {
  60227. name: "Giga (Preferred Size)",
  60228. height: math.unit(2000, "km")
  60229. },
  60230. {
  60231. name: "Giga+",
  60232. height: math.unit(6000, "km")
  60233. },
  60234. {
  60235. name: "Terra",
  60236. height: math.unit(17000, "km")
  60237. },
  60238. {
  60239. name: "Terra+",
  60240. height: math.unit(75000, "km")
  60241. },
  60242. {
  60243. name: "Terra++",
  60244. height: math.unit(225000, "km")
  60245. },
  60246. ]
  60247. ))
  60248. characterMakers.push(() => makeCharacter(
  60249. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60250. {
  60251. side: {
  60252. height: math.unit(7.8, "meters"),
  60253. name: "Side",
  60254. image: {
  60255. source: "./media/characters/ragnarok/side.svg",
  60256. extra: 725/621,
  60257. bottom: 72/797
  60258. }
  60259. },
  60260. },
  60261. [
  60262. {
  60263. name: "Normal",
  60264. height: math.unit(7.8, "meters"),
  60265. default: true
  60266. },
  60267. ]
  60268. ))
  60269. characterMakers.push(() => makeCharacter(
  60270. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60271. {
  60272. hyena_front: {
  60273. height: math.unit(2.1, "meters"),
  60274. weight: math.unit(110, "kg"),
  60275. name: "Front",
  60276. image: {
  60277. source: "./media/characters/nima/hyena-front.svg",
  60278. extra: 1904/1796,
  60279. bottom: 67/1971
  60280. },
  60281. form: "hyena",
  60282. },
  60283. hyena_back: {
  60284. height: math.unit(2.1, "meters"),
  60285. weight: math.unit(110, "kg"),
  60286. name: "Back",
  60287. image: {
  60288. source: "./media/characters/nima/hyena-back.svg",
  60289. extra: 1964/1884,
  60290. bottom: 35/1999
  60291. },
  60292. form: "hyena",
  60293. },
  60294. shark_front: {
  60295. height: math.unit(1.95, "meters"),
  60296. weight: math.unit(110, "kg"),
  60297. name: "Front",
  60298. image: {
  60299. source: "./media/characters/nima/shark-front.svg",
  60300. extra: 2238/2013,
  60301. bottom: 0/223
  60302. },
  60303. form: "shark",
  60304. },
  60305. paw: {
  60306. height: math.unit(1, "feet"),
  60307. name: "Paw",
  60308. image: {
  60309. source: "./media/characters/nima/paw.svg"
  60310. }
  60311. },
  60312. circlet: {
  60313. height: math.unit(0.3, "feet"),
  60314. name: "Circlet",
  60315. image: {
  60316. source: "./media/characters/nima/circlet.svg"
  60317. }
  60318. },
  60319. necklace: {
  60320. height: math.unit(1.2, "feet"),
  60321. name: "Necklace",
  60322. image: {
  60323. source: "./media/characters/nima/necklace.svg"
  60324. }
  60325. },
  60326. bracelet: {
  60327. height: math.unit(0.51, "feet"),
  60328. name: "Bracelet",
  60329. image: {
  60330. source: "./media/characters/nima/bracelet.svg"
  60331. }
  60332. },
  60333. armband: {
  60334. height: math.unit(1.3, "feet"),
  60335. name: "Armband",
  60336. image: {
  60337. source: "./media/characters/nima/armband.svg"
  60338. }
  60339. },
  60340. },
  60341. [
  60342. {
  60343. name: "Incognito",
  60344. height: math.unit(2.1, "meters"),
  60345. allForms: true
  60346. },
  60347. {
  60348. name: "Small Macro",
  60349. height: math.unit(50, "meters"),
  60350. allForms: true
  60351. },
  60352. {
  60353. name: "Macro",
  60354. height: math.unit(200, "meters"),
  60355. allForms: true
  60356. },
  60357. {
  60358. name: "Mega",
  60359. height: math.unit(2.5, "km"),
  60360. allForms: true
  60361. },
  60362. {
  60363. name: "Mega+",
  60364. height: math.unit(30, "km"),
  60365. allForms: true
  60366. },
  60367. {
  60368. name: "Giga (Home Size)",
  60369. height: math.unit(400, "km"),
  60370. allForms: true,
  60371. default: true
  60372. },
  60373. {
  60374. name: "Giga+",
  60375. height: math.unit(2500, "km"),
  60376. allForms: true
  60377. },
  60378. {
  60379. name: "Giga++",
  60380. height: math.unit(8000, "km"),
  60381. allForms: true
  60382. },
  60383. {
  60384. name: "Terra",
  60385. height: math.unit(20000, "km"),
  60386. allForms: true
  60387. },
  60388. {
  60389. name: "Terra+",
  60390. height: math.unit(70000, "km"),
  60391. allForms: true
  60392. },
  60393. {
  60394. name: "Terra++",
  60395. height: math.unit(600000, "km"),
  60396. allForms: true
  60397. },
  60398. {
  60399. name: "Galactic",
  60400. height: math.unit(40, "galaxies"),
  60401. allForms: true
  60402. },
  60403. {
  60404. name: "Universal",
  60405. height: math.unit(40, "universes"),
  60406. allForms: true
  60407. },
  60408. ],
  60409. {
  60410. "hyena": {
  60411. name: "Hyena",
  60412. default: true
  60413. },
  60414. "shark": {
  60415. name: "Shark",
  60416. },
  60417. }
  60418. ))
  60419. characterMakers.push(() => makeCharacter(
  60420. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60421. {
  60422. anthro_front: {
  60423. height: math.unit(1.5, "meters"),
  60424. name: "Front",
  60425. image: {
  60426. source: "./media/characters/adelaide/anthro-front.svg",
  60427. extra: 860/783,
  60428. bottom: 60/920
  60429. },
  60430. form: "anthro",
  60431. default: true
  60432. },
  60433. hand: {
  60434. height: math.unit(0.65, "feet"),
  60435. name: "Hand",
  60436. image: {
  60437. source: "./media/characters/adelaide/hand.svg"
  60438. },
  60439. form: "anthro"
  60440. },
  60441. foot: {
  60442. height: math.unit(1.38 * 259 / 314, "feet"),
  60443. name: "Foot",
  60444. image: {
  60445. source: "./media/characters/adelaide/foot.svg",
  60446. extra: 259/259,
  60447. bottom: 55/314
  60448. },
  60449. form: "anthro"
  60450. },
  60451. feather: {
  60452. height: math.unit(0.85, "feet"),
  60453. name: "Feather",
  60454. image: {
  60455. source: "./media/characters/adelaide/feather.svg"
  60456. },
  60457. form: "anthro"
  60458. },
  60459. feral_side: {
  60460. height: math.unit(1, "meters"),
  60461. name: "Side",
  60462. image: {
  60463. source: "./media/characters/adelaide/feral-side.svg",
  60464. extra: 550/467,
  60465. bottom: 37/587
  60466. },
  60467. form: "feral",
  60468. default: true
  60469. },
  60470. feral_hand: {
  60471. height: math.unit(0.58, "feet"),
  60472. name: "Hand",
  60473. image: {
  60474. source: "./media/characters/adelaide/hand.svg"
  60475. },
  60476. form: "feral"
  60477. },
  60478. feral_foot: {
  60479. height: math.unit(1.2 * 259 / 314, "feet"),
  60480. name: "Foot",
  60481. image: {
  60482. source: "./media/characters/adelaide/foot.svg",
  60483. extra: 259/259,
  60484. bottom: 55/314
  60485. },
  60486. form: "feral"
  60487. },
  60488. feral_feather: {
  60489. height: math.unit(0.63, "feet"),
  60490. name: "Feather",
  60491. image: {
  60492. source: "./media/characters/adelaide/feather.svg"
  60493. },
  60494. form: "feral"
  60495. },
  60496. },
  60497. [
  60498. {
  60499. name: "Normal",
  60500. height: math.unit(1.5, "meters"),
  60501. form: "anthro",
  60502. default: true
  60503. },
  60504. {
  60505. name: "Normal",
  60506. height: math.unit(1, "meters"),
  60507. form: "feral",
  60508. default: true
  60509. },
  60510. ],
  60511. {
  60512. "anthro": {
  60513. name: "Anthro",
  60514. default: true
  60515. },
  60516. "feral": {
  60517. name: "Feral",
  60518. },
  60519. }
  60520. ))
  60521. characterMakers.push(() => makeCharacter(
  60522. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60523. {
  60524. front: {
  60525. height: math.unit(2.5, "meters"),
  60526. name: "Front",
  60527. image: {
  60528. source: "./media/characters/goa/front.svg",
  60529. extra: 1109/1013,
  60530. bottom: 150/1259
  60531. }
  60532. },
  60533. },
  60534. [
  60535. {
  60536. name: "Normal",
  60537. height: math.unit(2.5, "meters"),
  60538. default: true
  60539. },
  60540. ]
  60541. ))
  60542. characterMakers.push(() => makeCharacter(
  60543. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60544. {
  60545. front: {
  60546. height: math.unit(2, "meters"),
  60547. weight: math.unit(100, "kg"),
  60548. name: "Front",
  60549. image: {
  60550. source: "./media/characters/kiki-weavile/front.svg",
  60551. extra: 357/332,
  60552. bottom: 60/417
  60553. }
  60554. },
  60555. },
  60556. [
  60557. {
  60558. name: "Normal",
  60559. height: math.unit(2, "meters"),
  60560. default: true
  60561. },
  60562. ]
  60563. ))
  60564. characterMakers.push(() => makeCharacter(
  60565. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60566. {
  60567. side: {
  60568. height: math.unit(1.6, "meters"),
  60569. name: "Side",
  60570. image: {
  60571. source: "./media/characters/liza/side.svg",
  60572. extra: 943/915,
  60573. bottom: 72/1015
  60574. }
  60575. },
  60576. },
  60577. [
  60578. {
  60579. name: "Normal",
  60580. height: math.unit(1.6, "meters"),
  60581. default: true
  60582. },
  60583. ]
  60584. ))
  60585. characterMakers.push(() => makeCharacter(
  60586. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60587. {
  60588. side: {
  60589. height: math.unit(2.5, "meters"),
  60590. preyCapacity: math.unit(1, "people"),
  60591. name: "Side",
  60592. image: {
  60593. source: "./media/characters/persephone-sweetbreath/side.svg",
  60594. extra: 796/700,
  60595. bottom: 44/840
  60596. }
  60597. },
  60598. sideVore: {
  60599. height: math.unit(2.5, "meters"),
  60600. preyCapacity: math.unit(1, "people"),
  60601. name: "Side (Full)",
  60602. image: {
  60603. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60604. extra: 796/700,
  60605. bottom: 44/840
  60606. }
  60607. },
  60608. },
  60609. [
  60610. {
  60611. name: "Normal",
  60612. height: math.unit(2.5, "meters"),
  60613. default: true
  60614. },
  60615. ]
  60616. ))
  60617. characterMakers.push(() => makeCharacter(
  60618. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60619. {
  60620. front: {
  60621. height: math.unit(32, "meters"),
  60622. name: "Front",
  60623. image: {
  60624. source: "./media/characters/pierce/front.svg",
  60625. extra: 1695/1475,
  60626. bottom: 185/1880
  60627. }
  60628. },
  60629. side: {
  60630. height: math.unit(32, "meters"),
  60631. name: "Side",
  60632. image: {
  60633. source: "./media/characters/pierce/side.svg",
  60634. extra: 974/859,
  60635. bottom: 43/1017
  60636. }
  60637. },
  60638. frontWingless: {
  60639. height: math.unit(32, "meters"),
  60640. name: "Front (Wingless)",
  60641. image: {
  60642. source: "./media/characters/pierce/front-wingless.svg",
  60643. extra: 1695/1475,
  60644. bottom: 185/1880
  60645. }
  60646. },
  60647. sideWingless: {
  60648. height: math.unit(32, "meters"),
  60649. name: "Side (Wingless)",
  60650. image: {
  60651. source: "./media/characters/pierce/side-wingless.svg",
  60652. extra: 974/859,
  60653. bottom: 43/1017
  60654. }
  60655. },
  60656. maw: {
  60657. height: math.unit(19.3, "meters"),
  60658. name: "Maw",
  60659. image: {
  60660. source: "./media/characters/pierce/maw.svg"
  60661. }
  60662. },
  60663. },
  60664. [
  60665. {
  60666. name: "Small",
  60667. height: math.unit(8.5, "meters")
  60668. },
  60669. {
  60670. name: "Normal",
  60671. height: math.unit(32, "meters"),
  60672. default: true
  60673. },
  60674. ]
  60675. ))
  60676. characterMakers.push(() => makeCharacter(
  60677. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60678. {
  60679. front: {
  60680. height: math.unit(2.3, "meters"),
  60681. weight: math.unit(165, "kg"),
  60682. name: "Front",
  60683. image: {
  60684. source: "./media/characters/shira/front.svg",
  60685. extra: 924/919,
  60686. bottom: 17/941
  60687. },
  60688. form: "cobra",
  60689. default: true
  60690. },
  60691. back: {
  60692. height: math.unit(2.3, "meters"),
  60693. weight: math.unit(165, "kg"),
  60694. name: "Back",
  60695. image: {
  60696. source: "./media/characters/shira/back.svg",
  60697. extra: 928/922,
  60698. bottom: 18/946
  60699. },
  60700. form: "cobra"
  60701. },
  60702. frontLewd: {
  60703. height: math.unit(2.3, "meters"),
  60704. weight: math.unit(165, "kg"),
  60705. name: "Front (Lewd)",
  60706. image: {
  60707. source: "./media/characters/shira/front-lewd.svg",
  60708. extra: 924/919,
  60709. bottom: 17/941
  60710. },
  60711. form: "cobra"
  60712. },
  60713. backLewd: {
  60714. height: math.unit(2.3, "meters"),
  60715. weight: math.unit(165, "kg"),
  60716. name: "Back (Lewd)",
  60717. image: {
  60718. source: "./media/characters/shira/back-lewd.svg",
  60719. extra: 928/922,
  60720. bottom: 18/946
  60721. },
  60722. form: "cobra"
  60723. },
  60724. maw: {
  60725. height: math.unit(1.14, "feet"),
  60726. name: "Maw",
  60727. image: {
  60728. source: "./media/characters/shira/maw.svg"
  60729. },
  60730. form: "cobra"
  60731. },
  60732. magma_front: {
  60733. height: math.unit(2.3, "meters"),
  60734. weight: math.unit(165, "kg"),
  60735. name: "Front",
  60736. image: {
  60737. source: "./media/characters/shira/magma-front.svg",
  60738. extra: 1870/1693,
  60739. bottom: 24/1894
  60740. },
  60741. form: "magma",
  60742. },
  60743. magma_back: {
  60744. height: math.unit(2.3, "meters"),
  60745. weight: math.unit(165, "kg"),
  60746. name: "Back",
  60747. image: {
  60748. source: "./media/characters/shira/magma-back.svg",
  60749. extra: 1918/1756,
  60750. bottom: 46/1964
  60751. },
  60752. form: "magma",
  60753. },
  60754. },
  60755. [
  60756. {
  60757. name: "Incognito",
  60758. height: math.unit(2.3, "meters"),
  60759. allForms: true
  60760. },
  60761. {
  60762. name: "Home Size",
  60763. height: math.unit(150, "meters"),
  60764. default: true,
  60765. allForms: true
  60766. },
  60767. {
  60768. name: "Macro",
  60769. height: math.unit(2, "km"),
  60770. allForms: true
  60771. },
  60772. {
  60773. name: "Mega",
  60774. height: math.unit(30, "km"),
  60775. allForms: true
  60776. },
  60777. {
  60778. name: "Giga",
  60779. height: math.unit(450, "km"),
  60780. allForms: true
  60781. },
  60782. {
  60783. name: "Giga+",
  60784. height: math.unit(3000, "km"),
  60785. allForms: true
  60786. },
  60787. {
  60788. name: "Giga++",
  60789. height: math.unit(6000, "km"),
  60790. allForms: true
  60791. },
  60792. {
  60793. name: "Terra",
  60794. height: math.unit(80000, "km"),
  60795. allForms: true
  60796. },
  60797. {
  60798. name: "Terra+",
  60799. height: math.unit(350000, "km"),
  60800. allForms: true
  60801. },
  60802. {
  60803. name: "Solar",
  60804. height: math.unit(1e6, "km"),
  60805. allForms: true
  60806. },
  60807. ],
  60808. {
  60809. "cobra": {
  60810. name: "Cobra",
  60811. default: true
  60812. },
  60813. "magma": {
  60814. name: "Magma Dragon",
  60815. },
  60816. }
  60817. ))
  60818. characterMakers.push(() => makeCharacter(
  60819. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60820. {
  60821. front: {
  60822. height: math.unit(2, "meters"),
  60823. weight: math.unit(160, "kg"),
  60824. name: "Front",
  60825. image: {
  60826. source: "./media/characters/daxerios/front.svg",
  60827. extra: 1334/1277,
  60828. bottom: 45/1379
  60829. }
  60830. },
  60831. frontLewd: {
  60832. height: math.unit(2, "meters"),
  60833. weight: math.unit(160, "kg"),
  60834. name: "Front (Lewd)",
  60835. image: {
  60836. source: "./media/characters/daxerios/front-lewd.svg",
  60837. extra: 1334/1277,
  60838. bottom: 45/1379
  60839. }
  60840. },
  60841. dick: {
  60842. height: math.unit(2.35, "feet"),
  60843. name: "Dick",
  60844. image: {
  60845. source: "./media/characters/daxerios/dick.svg"
  60846. }
  60847. },
  60848. },
  60849. [
  60850. {
  60851. name: "\"Small\"",
  60852. height: math.unit(5, "meters")
  60853. },
  60854. {
  60855. name: "Original Size",
  60856. height: math.unit(500, "meters"),
  60857. default: true
  60858. },
  60859. {
  60860. name: "Mega",
  60861. height: math.unit(2, "km")
  60862. },
  60863. {
  60864. name: "Mega+",
  60865. height: math.unit(35, "km")
  60866. },
  60867. {
  60868. name: "Giga",
  60869. height: math.unit(250, "km")
  60870. },
  60871. {
  60872. name: "Giga+",
  60873. height: math.unit(3000, "km")
  60874. },
  60875. {
  60876. name: "Terra",
  60877. height: math.unit(25000, "km")
  60878. },
  60879. {
  60880. name: "Terra+",
  60881. height: math.unit(300000, "km")
  60882. },
  60883. {
  60884. name: "Solar",
  60885. height: math.unit(1e6, "km")
  60886. },
  60887. ]
  60888. ))
  60889. characterMakers.push(() => makeCharacter(
  60890. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60891. {
  60892. front: {
  60893. height: math.unit(8 + 4/12, "feet"),
  60894. weight: math.unit(464, "lb"),
  60895. name: "Front",
  60896. image: {
  60897. source: "./media/characters/caveat/front.svg",
  60898. extra: 1861/1678,
  60899. bottom: 40/1901
  60900. }
  60901. },
  60902. },
  60903. [
  60904. {
  60905. name: "Normal",
  60906. height: math.unit(8 + 4/12, "feet"),
  60907. default: true
  60908. },
  60909. ]
  60910. ))
  60911. characterMakers.push(() => makeCharacter(
  60912. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60913. {
  60914. front: {
  60915. height: math.unit(12, "feet"),
  60916. weight: math.unit(1800, "lb"),
  60917. name: "Front",
  60918. image: {
  60919. source: "./media/characters/centbair/front.svg",
  60920. extra: 781/663,
  60921. bottom: 25/806
  60922. }
  60923. },
  60924. frontNsfw: {
  60925. height: math.unit(12, "feet"),
  60926. weight: math.unit(1800, "lb"),
  60927. name: "Front (NSFW)",
  60928. image: {
  60929. source: "./media/characters/centbair/front-nsfw.svg",
  60930. extra: 781/663,
  60931. bottom: 25/806
  60932. }
  60933. },
  60934. back: {
  60935. height: math.unit(12, "feet"),
  60936. weight: math.unit(1800, "lb"),
  60937. name: "Back",
  60938. image: {
  60939. source: "./media/characters/centbair/back.svg",
  60940. extra: 808/761,
  60941. bottom: 19/827
  60942. }
  60943. },
  60944. dick: {
  60945. height: math.unit(6.5, "feet"),
  60946. name: "Dick",
  60947. image: {
  60948. source: "./media/characters/centbair/dick.svg"
  60949. }
  60950. },
  60951. slit: {
  60952. height: math.unit(3.25, "feet"),
  60953. name: "Slit",
  60954. image: {
  60955. source: "./media/characters/centbair/slit.svg"
  60956. }
  60957. },
  60958. },
  60959. [
  60960. {
  60961. name: "Normal",
  60962. height: math.unit(12, "feet"),
  60963. default: true
  60964. },
  60965. ]
  60966. ))
  60967. characterMakers.push(() => makeCharacter(
  60968. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60969. {
  60970. front: {
  60971. height: math.unit(5 + 7/12, "feet"),
  60972. name: "Front",
  60973. image: {
  60974. source: "./media/characters/andy/front.svg",
  60975. extra: 634/588,
  60976. bottom: 36/670
  60977. },
  60978. extraAttributes: {
  60979. "pawLength": {
  60980. name: "Paw Length",
  60981. power: 1,
  60982. type: "length",
  60983. base: math.unit(1, "feet")
  60984. },
  60985. }
  60986. },
  60987. side: {
  60988. height: math.unit(5 + 7/12, "feet"),
  60989. name: "Side",
  60990. image: {
  60991. source: "./media/characters/andy/side.svg",
  60992. extra: 641/596,
  60993. bottom: 34/675
  60994. },
  60995. extraAttributes: {
  60996. "pawLength": {
  60997. name: "Paw Length",
  60998. power: 1,
  60999. type: "length",
  61000. base: math.unit(1, "feet")
  61001. },
  61002. }
  61003. },
  61004. back: {
  61005. height: math.unit(5 + 7/12, "feet"),
  61006. name: "Back",
  61007. image: {
  61008. source: "./media/characters/andy/back.svg",
  61009. extra: 618/583,
  61010. bottom: 39/657
  61011. },
  61012. extraAttributes: {
  61013. "pawLength": {
  61014. name: "Paw Length",
  61015. power: 1,
  61016. type: "length",
  61017. base: math.unit(1, "feet")
  61018. },
  61019. }
  61020. },
  61021. paw: {
  61022. height: math.unit(1.13, "feet"),
  61023. name: "Paw",
  61024. image: {
  61025. source: "./media/characters/andy/paw.svg"
  61026. }
  61027. },
  61028. },
  61029. [
  61030. {
  61031. name: "Micro",
  61032. height: math.unit(4, "inches")
  61033. },
  61034. {
  61035. name: "Normal",
  61036. height: math.unit(5 + 7/12, "feet"),
  61037. default: true
  61038. },
  61039. {
  61040. name: "Macro",
  61041. height: math.unit(390.42, "feet")
  61042. },
  61043. ]
  61044. ))
  61045. characterMakers.push(() => makeCharacter(
  61046. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61047. {
  61048. front: {
  61049. height: math.unit(7, "feet"),
  61050. weight: math.unit(250, "lb"),
  61051. name: "Front",
  61052. image: {
  61053. source: "./media/characters/vix-titan/front.svg",
  61054. extra: 460/428,
  61055. bottom: 15/475
  61056. },
  61057. extraAttributes: {
  61058. "pawWidth": {
  61059. name: "Paw Width",
  61060. power: 1,
  61061. type: "length",
  61062. base: math.unit(0.75, "feet")
  61063. },
  61064. }
  61065. },
  61066. },
  61067. [
  61068. {
  61069. name: "Normal",
  61070. height: math.unit(7, "feet"),
  61071. default: true
  61072. },
  61073. {
  61074. name: "Giant",
  61075. height: math.unit(1500, "feet")
  61076. },
  61077. {
  61078. name: "Mega",
  61079. height: math.unit(10, "miles")
  61080. },
  61081. {
  61082. name: "Giga",
  61083. height: math.unit(150, "miles")
  61084. },
  61085. {
  61086. name: "Tera",
  61087. height: math.unit(144000, "miles")
  61088. },
  61089. ]
  61090. ))
  61091. characterMakers.push(() => makeCharacter(
  61092. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61093. {
  61094. front: {
  61095. height: math.unit(6 + 2/12, "feet"),
  61096. name: "Front",
  61097. image: {
  61098. source: "./media/characters/reiku/front.svg",
  61099. extra: 1910/1757,
  61100. bottom: 103/2013
  61101. },
  61102. extraAttributes: {
  61103. "thighThickness": {
  61104. name: "Thigh Thickness",
  61105. power: 1,
  61106. type: "length",
  61107. base: math.unit(1.12, "feet")
  61108. },
  61109. "assThickness": {
  61110. name: "Ass Thickness",
  61111. power: 1,
  61112. type: "length",
  61113. base: math.unit(1.12*2, "feet")
  61114. },
  61115. }
  61116. },
  61117. side: {
  61118. height: math.unit(6 + 2/12, "feet"),
  61119. name: "Side",
  61120. image: {
  61121. source: "./media/characters/reiku/side.svg",
  61122. extra: 1846/1748,
  61123. bottom: 99/1945
  61124. },
  61125. extraAttributes: {
  61126. "thighThickness": {
  61127. name: "Thigh Thickness",
  61128. power: 1,
  61129. type: "length",
  61130. base: math.unit(1.12, "feet")
  61131. },
  61132. "assThickness": {
  61133. name: "Ass Thickness",
  61134. power: 1,
  61135. type: "length",
  61136. base: math.unit(1.12*2, "feet")
  61137. },
  61138. }
  61139. },
  61140. back: {
  61141. height: math.unit(6 + 2/12, "feet"),
  61142. name: "Back",
  61143. image: {
  61144. source: "./media/characters/reiku/back.svg",
  61145. extra: 1941/1786,
  61146. bottom: 34/1975
  61147. },
  61148. extraAttributes: {
  61149. "thighThickness": {
  61150. name: "Thigh Thickness",
  61151. power: 1,
  61152. type: "length",
  61153. base: math.unit(1.12, "feet")
  61154. },
  61155. "assThickness": {
  61156. name: "Ass Thickness",
  61157. power: 1,
  61158. type: "length",
  61159. base: math.unit(1.12*2, "feet")
  61160. },
  61161. }
  61162. },
  61163. head: {
  61164. height: math.unit(1.8, "feet"),
  61165. name: "Head",
  61166. image: {
  61167. source: "./media/characters/reiku/head.svg"
  61168. }
  61169. },
  61170. tailTop: {
  61171. height: math.unit(8.4, "feet"),
  61172. name: "Tail (Top)",
  61173. image: {
  61174. source: "./media/characters/reiku/tail-top.svg"
  61175. }
  61176. },
  61177. tailBottom: {
  61178. height: math.unit(8.4, "feet"),
  61179. name: "Tail (Bottom)",
  61180. image: {
  61181. source: "./media/characters/reiku/tail-bottom.svg"
  61182. }
  61183. },
  61184. foot: {
  61185. height: math.unit(2.6, "feet"),
  61186. name: "Foot",
  61187. image: {
  61188. source: "./media/characters/reiku/foot.svg"
  61189. }
  61190. },
  61191. footCurled: {
  61192. height: math.unit(2.3, "feet"),
  61193. name: "Foot (Curled)",
  61194. image: {
  61195. source: "./media/characters/reiku/foot-curled.svg"
  61196. }
  61197. },
  61198. footSide: {
  61199. height: math.unit(1.26, "feet"),
  61200. name: "Foot (Side)",
  61201. image: {
  61202. source: "./media/characters/reiku/foot-side.svg"
  61203. }
  61204. },
  61205. },
  61206. [
  61207. {
  61208. name: "Normal",
  61209. height: math.unit(6 + 2/12, "feet"),
  61210. default: true
  61211. },
  61212. ]
  61213. ))
  61214. characterMakers.push(() => makeCharacter(
  61215. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61216. {
  61217. front: {
  61218. height: math.unit(7, "feet"),
  61219. weight: math.unit(500, "kg"),
  61220. name: "Front",
  61221. image: {
  61222. source: "./media/characters/cialda/front.svg",
  61223. extra: 912/745,
  61224. bottom: 55/967
  61225. }
  61226. },
  61227. },
  61228. [
  61229. {
  61230. name: "Normal",
  61231. height: math.unit(7, "feet"),
  61232. default: true
  61233. },
  61234. ]
  61235. ))
  61236. characterMakers.push(() => makeCharacter(
  61237. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61238. {
  61239. side: {
  61240. height: math.unit(6, "feet"),
  61241. weight: math.unit(600, "lb"),
  61242. preyCapacity: math.unit(25, "liters"),
  61243. name: "Side",
  61244. image: {
  61245. source: "./media/characters/darkkin/side.svg",
  61246. extra: 1597/1447,
  61247. bottom: 101/1698
  61248. }
  61249. },
  61250. },
  61251. [
  61252. {
  61253. name: "Canon Height",
  61254. height: math.unit(568, "feet"),
  61255. default: true
  61256. },
  61257. ]
  61258. ))
  61259. characterMakers.push(() => makeCharacter(
  61260. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61261. {
  61262. front: {
  61263. height: math.unit(6, "feet"),
  61264. weight: math.unit(1500, "lb"),
  61265. preyCapacity: math.unit(3, "people"),
  61266. name: "Front",
  61267. image: {
  61268. source: "./media/characters/livnia/front.svg",
  61269. extra: 934/932,
  61270. bottom: 83/1017
  61271. }
  61272. },
  61273. back: {
  61274. height: math.unit(6, "feet"),
  61275. weight: math.unit(1500, "lb"),
  61276. preyCapacity: math.unit(3, "people"),
  61277. name: "Back",
  61278. image: {
  61279. source: "./media/characters/livnia/back.svg",
  61280. extra: 916/915,
  61281. bottom: 58/974
  61282. }
  61283. },
  61284. head: {
  61285. height: math.unit(1.53, "feet"),
  61286. name: "Head",
  61287. image: {
  61288. source: "./media/characters/livnia/head.svg"
  61289. }
  61290. },
  61291. maw: {
  61292. height: math.unit(0.78, "feet"),
  61293. name: "Maw",
  61294. image: {
  61295. source: "./media/characters/livnia/maw.svg"
  61296. }
  61297. },
  61298. genitals: {
  61299. height: math.unit(0.35, "feet"),
  61300. name: "Genitals",
  61301. image: {
  61302. source: "./media/characters/livnia/genitals.svg"
  61303. }
  61304. },
  61305. },
  61306. [
  61307. {
  61308. name: "Normal",
  61309. height: math.unit(1000, "feet"),
  61310. default: true
  61311. },
  61312. ]
  61313. ))
  61314. characterMakers.push(() => makeCharacter(
  61315. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61316. {
  61317. front: {
  61318. height: math.unit(4, "feet"),
  61319. weight: math.unit(73, "lb"),
  61320. name: "Front",
  61321. image: {
  61322. source: "./media/characters/hayaku/front.svg",
  61323. extra: 1011/888,
  61324. bottom: 33/1044
  61325. }
  61326. },
  61327. back: {
  61328. height: math.unit(4, "feet"),
  61329. weight: math.unit(73, "lb"),
  61330. name: "Back",
  61331. image: {
  61332. source: "./media/characters/hayaku/back.svg",
  61333. extra: 1040/930,
  61334. bottom: 20/1060
  61335. }
  61336. },
  61337. },
  61338. [
  61339. {
  61340. name: "Normal",
  61341. height: math.unit(4, "feet"),
  61342. default: true
  61343. },
  61344. ]
  61345. ))
  61346. characterMakers.push(() => makeCharacter(
  61347. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61348. {
  61349. front: {
  61350. height: math.unit(6 + 7/12, "feet"),
  61351. weight: math.unit(300, "lb"),
  61352. name: "Front",
  61353. image: {
  61354. source: "./media/characters/athena-bryzant/front.svg",
  61355. extra: 870/835,
  61356. bottom: 33/903
  61357. }
  61358. },
  61359. back: {
  61360. height: math.unit(6 + 7/12, "feet"),
  61361. weight: math.unit(300, "lb"),
  61362. name: "Back",
  61363. image: {
  61364. source: "./media/characters/athena-bryzant/back.svg",
  61365. extra: 858/823,
  61366. bottom: 30/888
  61367. }
  61368. },
  61369. head: {
  61370. height: math.unit(2.38, "feet"),
  61371. name: "Head",
  61372. image: {
  61373. source: "./media/characters/athena-bryzant/head.svg"
  61374. }
  61375. },
  61376. wings: {
  61377. height: math.unit(2.85, "feet"),
  61378. name: "Wings",
  61379. image: {
  61380. source: "./media/characters/athena-bryzant/wings.svg"
  61381. }
  61382. },
  61383. },
  61384. [
  61385. {
  61386. name: "Normal",
  61387. height: math.unit(6 + 7/12, "feet"),
  61388. default: true
  61389. },
  61390. {
  61391. name: "Big",
  61392. height: math.unit(8, "feet")
  61393. },
  61394. {
  61395. name: "Very Big",
  61396. height: math.unit(11, "feet")
  61397. },
  61398. ]
  61399. ))
  61400. characterMakers.push(() => makeCharacter(
  61401. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61402. {
  61403. side: {
  61404. height: math.unit(3, "meters"),
  61405. weight: math.unit(7500, "kg"),
  61406. preyCapacity: math.unit(1e12, "people"),
  61407. name: "Side",
  61408. image: {
  61409. source: "./media/characters/zel-kesh/side.svg",
  61410. extra: 910/407,
  61411. bottom: 147/1057
  61412. }
  61413. },
  61414. },
  61415. [
  61416. {
  61417. name: "Normal",
  61418. height: math.unit(3, "meters"),
  61419. default: true
  61420. },
  61421. ]
  61422. ))
  61423. characterMakers.push(() => makeCharacter(
  61424. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61425. {
  61426. front: {
  61427. height: math.unit(2, "meters"),
  61428. weight: math.unit(95, "kg"),
  61429. name: "Front",
  61430. image: {
  61431. source: "./media/characters/kane-fox/front.svg",
  61432. extra: 945/888,
  61433. bottom: 27/972
  61434. }
  61435. },
  61436. back: {
  61437. height: math.unit(2, "meters"),
  61438. weight: math.unit(95, "kg"),
  61439. name: "Back",
  61440. image: {
  61441. source: "./media/characters/kane-fox/back.svg",
  61442. extra: 959/914,
  61443. bottom: 15/974
  61444. }
  61445. },
  61446. frontLewd: {
  61447. height: math.unit(2, "meters"),
  61448. weight: math.unit(95, "kg"),
  61449. name: "Front (Lewd)",
  61450. image: {
  61451. source: "./media/characters/kane-fox/front-lewd.svg",
  61452. extra: 945/888,
  61453. bottom: 27/972
  61454. }
  61455. },
  61456. },
  61457. [
  61458. {
  61459. name: "Home Size",
  61460. height: math.unit(2, "meters"),
  61461. default: true
  61462. },
  61463. {
  61464. name: "Macro",
  61465. height: math.unit(200, "meters")
  61466. },
  61467. {
  61468. name: "Small Mega",
  61469. height: math.unit(3, "km")
  61470. },
  61471. {
  61472. name: "Mega",
  61473. height: math.unit(50, "km")
  61474. },
  61475. {
  61476. name: "Giga",
  61477. height: math.unit(200, "km")
  61478. },
  61479. {
  61480. name: "Giga+",
  61481. height: math.unit(2500, "km")
  61482. },
  61483. {
  61484. name: "Terra",
  61485. height: math.unit(70000, "km")
  61486. },
  61487. {
  61488. name: "Terra+",
  61489. height: math.unit(150000, "km")
  61490. },
  61491. {
  61492. name: "Terra++",
  61493. height: math.unit(400000, "km")
  61494. },
  61495. ]
  61496. ))
  61497. characterMakers.push(() => makeCharacter(
  61498. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61499. {
  61500. otter_front: {
  61501. height: math.unit(1.8, "meters"),
  61502. weight: math.unit(90, "kg"),
  61503. name: "Front",
  61504. image: {
  61505. source: "./media/characters/ayranus/otter-front.svg",
  61506. extra: 468/452,
  61507. bottom: 43/511
  61508. },
  61509. form: "otter",
  61510. },
  61511. otter_frontLewd: {
  61512. height: math.unit(1.8, "meters"),
  61513. weight: math.unit(90, "kg"),
  61514. name: "Front (Lewd)",
  61515. image: {
  61516. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61517. extra: 468/452,
  61518. bottom: 43/511
  61519. },
  61520. form: "otter",
  61521. },
  61522. lionbat_front: {
  61523. height: math.unit(1.8, "meters"),
  61524. weight: math.unit(90, "kg"),
  61525. name: "Front (Lewd)",
  61526. image: {
  61527. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61528. extra: 797/740,
  61529. bottom: 78/875
  61530. },
  61531. form: "lionbat",
  61532. },
  61533. paw: {
  61534. height: math.unit(1.5, "feet"),
  61535. name: "Paw",
  61536. image: {
  61537. source: "./media/characters/ayranus/paw.svg"
  61538. },
  61539. },
  61540. },
  61541. [
  61542. {
  61543. name: "Incognito",
  61544. height: math.unit(1.8, "meters"),
  61545. allForms: true
  61546. },
  61547. {
  61548. name: "Macro",
  61549. height: math.unit(60, "meters"),
  61550. allForms: true
  61551. },
  61552. {
  61553. name: "Macro+",
  61554. height: math.unit(200, "meters"),
  61555. allForms: true
  61556. },
  61557. {
  61558. name: "Mega",
  61559. height: math.unit(35, "km"),
  61560. allForms: true
  61561. },
  61562. {
  61563. name: "Giga",
  61564. height: math.unit(220, "km"),
  61565. allForms: true
  61566. },
  61567. {
  61568. name: "Giga+",
  61569. height: math.unit(1500, "km"),
  61570. allForms: true
  61571. },
  61572. {
  61573. name: "Terra",
  61574. height: math.unit(13000, "km"),
  61575. allForms: true
  61576. },
  61577. {
  61578. name: "Terra+",
  61579. height: math.unit(500000, "km"),
  61580. allForms: true
  61581. },
  61582. {
  61583. name: "Galactic",
  61584. height: math.unit(486080, "parsecs"),
  61585. default: true,
  61586. allForms: true
  61587. },
  61588. ],
  61589. {
  61590. "otter": {
  61591. name: "Otter",
  61592. default: true
  61593. },
  61594. "lionbat": {
  61595. name: "Lionbat",
  61596. },
  61597. }
  61598. ))
  61599. characterMakers.push(() => makeCharacter(
  61600. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61601. {
  61602. front: {
  61603. height: math.unit(7 + 4/12, "feet"),
  61604. weight: math.unit(400, "lb"),
  61605. name: "Front",
  61606. image: {
  61607. source: "./media/characters/proxy/front.svg",
  61608. extra: 1605/1542,
  61609. bottom: 55/1660
  61610. }
  61611. },
  61612. side: {
  61613. height: math.unit(7 + 4/12, "feet"),
  61614. weight: math.unit(400, "lb"),
  61615. name: "Side",
  61616. image: {
  61617. source: "./media/characters/proxy/side.svg",
  61618. extra: 794/759,
  61619. bottom: 6/800
  61620. }
  61621. },
  61622. hand: {
  61623. height: math.unit(1.54, "feet"),
  61624. name: "Hand",
  61625. image: {
  61626. source: "./media/characters/proxy/hand.svg"
  61627. }
  61628. },
  61629. paw: {
  61630. height: math.unit(1.53, "feet"),
  61631. name: "Paw",
  61632. image: {
  61633. source: "./media/characters/proxy/paw.svg"
  61634. }
  61635. },
  61636. maw: {
  61637. height: math.unit(1.9, "feet"),
  61638. name: "Maw",
  61639. image: {
  61640. source: "./media/characters/proxy/maw.svg"
  61641. }
  61642. },
  61643. },
  61644. [
  61645. {
  61646. name: "Normal",
  61647. height: math.unit(7 + 4/12, "feet"),
  61648. default: true
  61649. },
  61650. ]
  61651. ))
  61652. characterMakers.push(() => makeCharacter(
  61653. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61654. {
  61655. front: {
  61656. height: math.unit(4, "meters"),
  61657. name: "Front",
  61658. image: {
  61659. source: "./media/characters/crocozilla/front.svg",
  61660. extra: 1790/1742,
  61661. bottom: 78/1868
  61662. }
  61663. },
  61664. },
  61665. [
  61666. {
  61667. name: "Normal",
  61668. height: math.unit(4, "meters"),
  61669. default: true
  61670. },
  61671. ]
  61672. ))
  61673. characterMakers.push(() => makeCharacter(
  61674. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61675. {
  61676. front: {
  61677. height: math.unit(1.8, "meters"),
  61678. weight: math.unit(120, "kg"),
  61679. name: "Front",
  61680. image: {
  61681. source: "./media/characters/kurz/front.svg",
  61682. extra: 1960/1824,
  61683. bottom: 41/2001
  61684. }
  61685. },
  61686. back: {
  61687. height: math.unit(1.8, "meters"),
  61688. weight: math.unit(120, "kg"),
  61689. name: "Back",
  61690. image: {
  61691. source: "./media/characters/kurz/back.svg",
  61692. extra: 1906/1787,
  61693. bottom: 60/1966
  61694. }
  61695. },
  61696. frontLewd: {
  61697. height: math.unit(1.8, "meters"),
  61698. weight: math.unit(120, "kg"),
  61699. name: "Front (Lewd)",
  61700. image: {
  61701. source: "./media/characters/kurz/front-lewd.svg",
  61702. extra: 1960/1824,
  61703. bottom: 41/2001
  61704. }
  61705. },
  61706. maw: {
  61707. height: math.unit(0.69, "meters"),
  61708. name: "Maw",
  61709. image: {
  61710. source: "./media/characters/kurz/maw.svg"
  61711. }
  61712. },
  61713. },
  61714. [
  61715. {
  61716. name: "Original Size",
  61717. height: math.unit(1.8, "meters")
  61718. },
  61719. {
  61720. name: "Incognito Size",
  61721. height: math.unit(2.4, "meters"),
  61722. default: true
  61723. },
  61724. {
  61725. name: "Macro",
  61726. height: math.unit(30, "meters")
  61727. },
  61728. {
  61729. name: "Macro+",
  61730. height: math.unit(250, "meters")
  61731. },
  61732. {
  61733. name: "Mega",
  61734. height: math.unit(2, "km")
  61735. },
  61736. {
  61737. name: "Mega+",
  61738. height: math.unit(35, "km")
  61739. },
  61740. {
  61741. name: "Mega++",
  61742. height: math.unit(75, "km")
  61743. },
  61744. {
  61745. name: "Giga",
  61746. height: math.unit(250, "km")
  61747. },
  61748. {
  61749. name: "Terra",
  61750. height: math.unit(15000, "km")
  61751. },
  61752. {
  61753. name: "Terra+",
  61754. height: math.unit(2250000, "km")
  61755. },
  61756. ]
  61757. ))
  61758. characterMakers.push(() => makeCharacter(
  61759. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61760. {
  61761. front: {
  61762. height: math.unit(16 + 3/12, "feet"),
  61763. weight: math.unit(3575, "lb"),
  61764. name: "Front",
  61765. image: {
  61766. source: "./media/characters/nikita/front.svg",
  61767. extra: 1064/955,
  61768. bottom: 47/1111
  61769. }
  61770. },
  61771. },
  61772. [
  61773. {
  61774. name: "Normal",
  61775. height: math.unit(16 + 3/12, "feet"),
  61776. default: true
  61777. },
  61778. {
  61779. name: "Big",
  61780. height: math.unit(21, "feet")
  61781. },
  61782. {
  61783. name: "Biggest",
  61784. height: math.unit(50, "feet")
  61785. },
  61786. ]
  61787. ))
  61788. characterMakers.push(() => makeCharacter(
  61789. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61790. {
  61791. front: {
  61792. height: math.unit(1.92, "m"),
  61793. weight: math.unit(76, "kg"),
  61794. name: "Front",
  61795. image: {
  61796. source: "./media/characters/kyara/front.svg",
  61797. extra: 1550/1438,
  61798. bottom: 139/1689
  61799. }
  61800. },
  61801. back: {
  61802. height: math.unit(1.92, "m"),
  61803. weight: math.unit(76, "kg"),
  61804. name: "Back",
  61805. image: {
  61806. source: "./media/characters/kyara/back.svg",
  61807. extra: 1523/1427,
  61808. bottom: 83/1606
  61809. }
  61810. },
  61811. head: {
  61812. height: math.unit(1.22, "feet"),
  61813. name: "Head",
  61814. image: {
  61815. source: "./media/characters/kyara/head.svg"
  61816. }
  61817. },
  61818. maw: {
  61819. height: math.unit(0.73, "feet"),
  61820. name: "Maw",
  61821. image: {
  61822. source: "./media/characters/kyara/maw.svg"
  61823. }
  61824. },
  61825. paws: {
  61826. height: math.unit(0.95, "feet"),
  61827. name: "Paws",
  61828. image: {
  61829. source: "./media/characters/kyara/paws.svg"
  61830. }
  61831. },
  61832. },
  61833. [
  61834. {
  61835. name: "Normal",
  61836. height: math.unit(1.92, "meters"),
  61837. default: true
  61838. },
  61839. {
  61840. name: "Mini Macro",
  61841. height: math.unit(192, "meters")
  61842. },
  61843. {
  61844. name: "Macro",
  61845. height: math.unit(480, "meters")
  61846. },
  61847. {
  61848. name: "Mega Macro",
  61849. height: math.unit(1440, "meters")
  61850. },
  61851. ]
  61852. ))
  61853. characterMakers.push(() => makeCharacter(
  61854. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61855. {
  61856. front: {
  61857. height: math.unit(6, "feet"),
  61858. weight: math.unit(160, "lbs"),
  61859. preyCapacity: math.unit(0.05, "people"),
  61860. name: "Front",
  61861. image: {
  61862. source: "./media/characters/layla-amari/front.svg",
  61863. extra: 1922/1723,
  61864. bottom: 90/2012
  61865. }
  61866. },
  61867. back: {
  61868. height: math.unit(6, "feet"),
  61869. weight: math.unit(160, "lbs"),
  61870. preyCapacity: math.unit(0.05, "people"),
  61871. name: "Back",
  61872. image: {
  61873. source: "./media/characters/layla-amari/back.svg",
  61874. extra: 1917/1718,
  61875. bottom: 50/1967
  61876. }
  61877. },
  61878. frontDressed: {
  61879. height: math.unit(6, "feet"),
  61880. weight: math.unit(160, "lbs"),
  61881. preyCapacity: math.unit(0.05, "people"),
  61882. name: "Front (Dressed)",
  61883. image: {
  61884. source: "./media/characters/layla-amari/front-dressed.svg",
  61885. extra: 1922/1723,
  61886. bottom: 90/2012
  61887. }
  61888. },
  61889. face: {
  61890. height: math.unit(0.93, "feet"),
  61891. name: "Face",
  61892. image: {
  61893. source: "./media/characters/layla-amari/face.svg"
  61894. }
  61895. },
  61896. hand: {
  61897. height: math.unit(0.66 , "feet"),
  61898. name: "Hand",
  61899. image: {
  61900. source: "./media/characters/layla-amari/hand.svg"
  61901. }
  61902. },
  61903. foot: {
  61904. height: math.unit(1, "feet"),
  61905. name: "Foot",
  61906. image: {
  61907. source: "./media/characters/layla-amari/foot.svg"
  61908. }
  61909. },
  61910. necklace: {
  61911. height: math.unit(0.32, "feet"),
  61912. name: "Necklace",
  61913. image: {
  61914. source: "./media/characters/layla-amari/necklace.svg"
  61915. }
  61916. },
  61917. nipple: {
  61918. height: math.unit(0.2, "feet"),
  61919. name: "Nipple",
  61920. image: {
  61921. source: "./media/characters/layla-amari/nipple.svg"
  61922. }
  61923. },
  61924. slit: {
  61925. height: math.unit(0.26, "feet"),
  61926. name: "Slit",
  61927. image: {
  61928. source: "./media/characters/layla-amari/slit.svg"
  61929. }
  61930. },
  61931. },
  61932. [
  61933. {
  61934. name: "Natural",
  61935. height: math.unit(825, "feet"),
  61936. default: true
  61937. },
  61938. {
  61939. name: "Enhanced",
  61940. height: math.unit(8250, "feet")
  61941. },
  61942. {
  61943. name: "Apparent Size",
  61944. height: math.unit(9.04363e+8, "meters")
  61945. },
  61946. ]
  61947. ))
  61948. characterMakers.push(() => makeCharacter(
  61949. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61950. {
  61951. front: {
  61952. height: math.unit(1.3, "meters"),
  61953. name: "Front",
  61954. image: {
  61955. source: "./media/characters/percy/front.svg",
  61956. extra: 1444/1289,
  61957. bottom: 54/1498
  61958. }
  61959. },
  61960. },
  61961. [
  61962. {
  61963. name: "Normal",
  61964. height: math.unit(1.3, "meters"),
  61965. default: true
  61966. },
  61967. ]
  61968. ))
  61969. characterMakers.push(() => makeCharacter(
  61970. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61971. {
  61972. side: {
  61973. height: math.unit(10, "meters"),
  61974. name: "Side",
  61975. image: {
  61976. source: "./media/characters/grev/side.svg",
  61977. extra: 653/266,
  61978. bottom: 77/730
  61979. }
  61980. },
  61981. head: {
  61982. height: math.unit(16.2, "m"),
  61983. name: "Head",
  61984. image: {
  61985. source: "./media/characters/grev/head.svg"
  61986. }
  61987. },
  61988. dick: {
  61989. height: math.unit(2.8135932034, "m"),
  61990. name: "Dick",
  61991. image: {
  61992. source: "./media/characters/grev/dick.svg"
  61993. }
  61994. },
  61995. },
  61996. [
  61997. {
  61998. name: "Friend-Sized",
  61999. height: math.unit(80, "cm")
  62000. },
  62001. {
  62002. name: "Normal",
  62003. height: math.unit(10, "meters"),
  62004. default: true
  62005. },
  62006. {
  62007. name: "Macro",
  62008. height: math.unit(200, "meters")
  62009. },
  62010. ]
  62011. ))
  62012. characterMakers.push(() => makeCharacter(
  62013. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62014. {
  62015. front: {
  62016. height: math.unit(19.75, "feet"),
  62017. weight: math.unit(20000, "lb"),
  62018. name: "Front",
  62019. image: {
  62020. source: "./media/characters/azuuca/front.svg",
  62021. extra: 1593/1511,
  62022. bottom: 55/1648
  62023. }
  62024. },
  62025. },
  62026. [
  62027. {
  62028. name: "Normal",
  62029. height: math.unit(19.75, "feet"),
  62030. default: true
  62031. },
  62032. ]
  62033. ))
  62034. characterMakers.push(() => makeCharacter(
  62035. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62036. {
  62037. front: {
  62038. height: math.unit(15, "feet"),
  62039. weight: math.unit(1500, "lb"),
  62040. name: "Front",
  62041. image: {
  62042. source: "./media/characters/valuria/front.svg",
  62043. extra: 1588/1486,
  62044. bottom: 31/1619
  62045. }
  62046. },
  62047. },
  62048. [
  62049. {
  62050. name: "Normal",
  62051. height: math.unit(15, "feet"),
  62052. default: true
  62053. },
  62054. {
  62055. name: "Small",
  62056. height: math.unit(500, "feet")
  62057. },
  62058. {
  62059. name: "Macro",
  62060. height: math.unit(4000, "feet")
  62061. },
  62062. {
  62063. name: "Mega Macro",
  62064. height: math.unit(2000, "miles")
  62065. },
  62066. {
  62067. name: "Giga Macro",
  62068. height: math.unit(3e6, "miles")
  62069. },
  62070. ]
  62071. ))
  62072. characterMakers.push(() => makeCharacter(
  62073. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62074. {
  62075. front: {
  62076. height: math.unit(3500, "solarradii"),
  62077. name: "Front",
  62078. image: {
  62079. source: "./media/characters/terigaia/front.svg",
  62080. extra: 1531/1451,
  62081. bottom: 98/1629
  62082. }
  62083. },
  62084. },
  62085. [
  62086. {
  62087. name: "Normal",
  62088. height: math.unit(3500, "solarradii"),
  62089. default: true
  62090. },
  62091. ]
  62092. ))
  62093. characterMakers.push(() => makeCharacter(
  62094. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62095. {
  62096. front: {
  62097. height: math.unit(9.34, "feet"),
  62098. weight: math.unit(600, "lb"),
  62099. name: "Front",
  62100. image: {
  62101. source: "./media/characters/blair-blaziken/front.svg",
  62102. extra: 1557/1462,
  62103. bottom: 55/1612
  62104. }
  62105. },
  62106. },
  62107. [
  62108. {
  62109. name: "Normal",
  62110. height: math.unit(9.34, "feet"),
  62111. default: true
  62112. },
  62113. ]
  62114. ))
  62115. characterMakers.push(() => makeCharacter(
  62116. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62117. {
  62118. pistrogre_front: {
  62119. height: math.unit(10, "feet"),
  62120. weight: math.unit(10, "tons"),
  62121. name: "Front",
  62122. image: {
  62123. source: "./media/characters/braxia/pistrogre-front.svg",
  62124. extra: 1531/1334,
  62125. bottom: 114/1645
  62126. },
  62127. form: "pistrogre",
  62128. default: true
  62129. },
  62130. human_front: {
  62131. height: math.unit(10, "feet"),
  62132. weight: math.unit(10, "tons"),
  62133. name: "Front",
  62134. image: {
  62135. source: "./media/characters/braxia/human-front.svg",
  62136. extra: 1574/1501,
  62137. bottom: 37/1611
  62138. },
  62139. form: "human",
  62140. default: true
  62141. },
  62142. },
  62143. [
  62144. {
  62145. name: "Normal",
  62146. height: math.unit(10, "feet"),
  62147. default: true,
  62148. allForms: true
  62149. },
  62150. {
  62151. name: "Macro",
  62152. height: math.unit(1000, "feet"),
  62153. allForms: true
  62154. },
  62155. {
  62156. name: "Mega Macro",
  62157. height: math.unit(100, "miles"),
  62158. allForms: true
  62159. },
  62160. {
  62161. name: "Cosmic",
  62162. height: math.unit(1000000, "lightyears"),
  62163. allForms: true
  62164. },
  62165. {
  62166. name: "ϐѮԆԬӁꭍϞԢ",
  62167. height: math.unit(1000, "multiverses"),
  62168. allForms: true
  62169. },
  62170. ],
  62171. {
  62172. "pistrogre": {
  62173. name: "Pistrogre",
  62174. default: true
  62175. },
  62176. "human": {
  62177. name: "Human",
  62178. },
  62179. }
  62180. ))
  62181. characterMakers.push(() => makeCharacter(
  62182. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62183. {
  62184. front: {
  62185. height: math.unit(6 + 1/12, "feet"),
  62186. weight: math.unit(280, "lb"),
  62187. name: "Front",
  62188. image: {
  62189. source: "./media/characters/kiriga-yato/front.svg",
  62190. extra: 445/394,
  62191. bottom: 11/456
  62192. }
  62193. },
  62194. },
  62195. [
  62196. {
  62197. name: "Descended",
  62198. height: math.unit(3, "feet")
  62199. },
  62200. {
  62201. name: "Average",
  62202. height: math.unit(6 + 1/12, "feet"),
  62203. default: true
  62204. },
  62205. {
  62206. name: "Ascended",
  62207. height: math.unit(9 + 2/12, "feet")
  62208. },
  62209. ]
  62210. ))
  62211. characterMakers.push(() => makeCharacter(
  62212. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62213. {
  62214. front: {
  62215. height: math.unit(6, "feet"),
  62216. weight: math.unit(150, "lb"),
  62217. name: "Front",
  62218. image: {
  62219. source: "./media/characters/kylie/front.svg",
  62220. extra: 1114/1046,
  62221. bottom: 65/1179
  62222. },
  62223. extraAttributes: {
  62224. "hoofSize": {
  62225. name: "Hoof Size",
  62226. power: 2,
  62227. type: "area",
  62228. base: math.unit(0.034, "m^2")
  62229. },
  62230. "footSize": {
  62231. name: "Foot Size",
  62232. power: 2,
  62233. type: "area",
  62234. base: math.unit(0.75, "m^2")
  62235. },
  62236. }
  62237. },
  62238. side: {
  62239. height: math.unit(6, "feet"),
  62240. weight: math.unit(150, "lb"),
  62241. name: "Side",
  62242. image: {
  62243. source: "./media/characters/kylie/side.svg",
  62244. extra: 1178/1110,
  62245. bottom: 21/1199
  62246. },
  62247. extraAttributes: {
  62248. "hoofSize": {
  62249. name: "Hoof Size",
  62250. power: 2,
  62251. type: "area",
  62252. base: math.unit(0.034, "m^2")
  62253. },
  62254. "footSize": {
  62255. name: "Foot Size",
  62256. power: 2,
  62257. type: "area",
  62258. base: math.unit(0.75, "m^2")
  62259. },
  62260. }
  62261. },
  62262. back: {
  62263. height: math.unit(6, "feet"),
  62264. weight: math.unit(150, "lb"),
  62265. name: "Back",
  62266. image: {
  62267. source: "./media/characters/kylie/back.svg",
  62268. extra: 1115/1047,
  62269. bottom: 66/1181
  62270. },
  62271. extraAttributes: {
  62272. "hoofSize": {
  62273. name: "Hoof Size",
  62274. power: 2,
  62275. type: "area",
  62276. base: math.unit(0.034, "m^2")
  62277. },
  62278. "footSize": {
  62279. name: "Foot Size",
  62280. power: 2,
  62281. type: "area",
  62282. base: math.unit(0.75, "m^2")
  62283. },
  62284. }
  62285. },
  62286. head: {
  62287. height: math.unit(1.85, "feet"),
  62288. name: "Head",
  62289. image: {
  62290. source: "./media/characters/kylie/head.svg"
  62291. }
  62292. },
  62293. },
  62294. [
  62295. {
  62296. name: "Normal",
  62297. height: math.unit(90, "meters"),
  62298. default: true
  62299. },
  62300. ]
  62301. ))
  62302. characterMakers.push(() => makeCharacter(
  62303. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62304. {
  62305. front: {
  62306. height: math.unit(245, "feet"),
  62307. weight: math.unit(400000, "lb"),
  62308. name: "Front",
  62309. image: {
  62310. source: "./media/characters/sabado/front.svg",
  62311. extra: 1309/1164,
  62312. bottom: 29/1338
  62313. }
  62314. },
  62315. },
  62316. [
  62317. {
  62318. name: "Normal",
  62319. height: math.unit(245, "feet"),
  62320. default: true
  62321. },
  62322. ]
  62323. ))
  62324. characterMakers.push(() => makeCharacter(
  62325. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62326. {
  62327. shark_front: {
  62328. height: math.unit(2, "meters"),
  62329. weight: math.unit(200, "kg"),
  62330. name: "Front",
  62331. image: {
  62332. source: "./media/characters/zechal/shark-front.svg",
  62333. extra: 969/925,
  62334. bottom: 74/1043
  62335. },
  62336. form: "shark",
  62337. },
  62338. shark_back: {
  62339. height: math.unit(2, "meters"),
  62340. weight: math.unit(200, "kg"),
  62341. name: "Back",
  62342. image: {
  62343. source: "./media/characters/zechal/shark-back.svg",
  62344. extra: 994/949,
  62345. bottom: 176/1170
  62346. },
  62347. form: "shark",
  62348. },
  62349. shark_frontLewd: {
  62350. height: math.unit(2, "meters"),
  62351. weight: math.unit(200, "kg"),
  62352. name: "Front (Lewd)",
  62353. image: {
  62354. source: "./media/characters/zechal/shark-front-lewd.svg",
  62355. extra: 969/925,
  62356. bottom: 74/1043
  62357. },
  62358. form: "shark",
  62359. },
  62360. shark_side: {
  62361. height: math.unit(1.56, "meters"),
  62362. weight: math.unit(200, "kg"),
  62363. name: "Side",
  62364. image: {
  62365. source: "./media/characters/zechal/shark-side.svg"
  62366. },
  62367. form: "shark",
  62368. },
  62369. dragon_front: {
  62370. height: math.unit(2, "meters"),
  62371. weight: math.unit(200, "kg"),
  62372. name: "Front",
  62373. image: {
  62374. source: "./media/characters/zechal/dragon-front.svg",
  62375. extra: 1041/925,
  62376. bottom: 74/1115
  62377. },
  62378. form: "dragon",
  62379. },
  62380. dragon_back: {
  62381. height: math.unit(2, "meters"),
  62382. weight: math.unit(200, "kg"),
  62383. name: "Back",
  62384. image: {
  62385. source: "./media/characters/zechal/dragon-back.svg",
  62386. extra: 1061/949,
  62387. bottom: 176/1237
  62388. },
  62389. form: "dragon",
  62390. },
  62391. dragon_frontLewd: {
  62392. height: math.unit(2, "meters"),
  62393. weight: math.unit(200, "kg"),
  62394. name: "Front (Lewd)",
  62395. image: {
  62396. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62397. extra: 1041/925,
  62398. bottom: 74/1115
  62399. },
  62400. form: "dragon",
  62401. },
  62402. dragon_side: {
  62403. height: math.unit(1.56, "meters"),
  62404. weight: math.unit(200, "kg"),
  62405. name: "Side",
  62406. image: {
  62407. source: "./media/characters/zechal/dragon-side.svg"
  62408. },
  62409. form: "dragon",
  62410. },
  62411. foot: {
  62412. height: math.unit(0.5, "meters"),
  62413. name: "Foot",
  62414. image: {
  62415. source: "./media/characters/zechal/foot.svg"
  62416. }
  62417. },
  62418. sheathFront: {
  62419. height: math.unit(0.45, "meters"),
  62420. name: "Sheath (Front)",
  62421. image: {
  62422. source: "./media/characters/zechal/sheath-front.svg"
  62423. }
  62424. },
  62425. sheathSide: {
  62426. height: math.unit(0.45, "meters"),
  62427. name: "Sheath (Side)",
  62428. image: {
  62429. source: "./media/characters/zechal/sheath-side.svg"
  62430. }
  62431. },
  62432. },
  62433. [
  62434. {
  62435. name: "Incognito",
  62436. height: math.unit(2, "meters"),
  62437. allForms: true
  62438. },
  62439. {
  62440. name: "Small Rampage",
  62441. height: math.unit(25, "meters"),
  62442. allForms: true
  62443. },
  62444. {
  62445. name: "Home Size",
  62446. height: math.unit(250, "meters"),
  62447. allForms: true,
  62448. default: true
  62449. },
  62450. {
  62451. name: "Macro+",
  62452. height: math.unit(700, "meters"),
  62453. allForms: true
  62454. },
  62455. {
  62456. name: "Small Mega",
  62457. height: math.unit(3, "km"),
  62458. allForms: true
  62459. },
  62460. {
  62461. name: "Mega",
  62462. height: math.unit(15, "km"),
  62463. allForms: true
  62464. },
  62465. {
  62466. name: "Giga",
  62467. height: math.unit(300, "km"),
  62468. allForms: true
  62469. },
  62470. {
  62471. name: "Giga+",
  62472. height: math.unit(1750, "km"),
  62473. allForms: true
  62474. },
  62475. {
  62476. name: "Continental",
  62477. height: math.unit(5000, "km"),
  62478. allForms: true
  62479. },
  62480. {
  62481. name: "Terra",
  62482. height: math.unit(20000, "km"),
  62483. allForms: true
  62484. },
  62485. {
  62486. name: "Terra+",
  62487. height: math.unit(300000, "km"),
  62488. allForms: true
  62489. },
  62490. {
  62491. name: "Solar",
  62492. height: math.unit(40000000, "km"),
  62493. allForms: true
  62494. },
  62495. {
  62496. name: "Galactic",
  62497. height: math.unit(810133, "parsecs"),
  62498. allForms: true
  62499. },
  62500. {
  62501. name: "Universal",
  62502. height: math.unit(25, "universes"),
  62503. allForms: true
  62504. },
  62505. ],
  62506. {
  62507. "shark": {
  62508. name: "Shark",
  62509. default: true
  62510. },
  62511. "dragon": {
  62512. name: "Dragon",
  62513. },
  62514. }
  62515. ))
  62516. characterMakers.push(() => makeCharacter(
  62517. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62518. {
  62519. front: {
  62520. height: math.unit(2.2, "meters"),
  62521. weight: math.unit(150, "kg"),
  62522. name: "Front",
  62523. image: {
  62524. source: "./media/characters/sergis/front.svg",
  62525. extra: 1314/1312,
  62526. bottom: 112/1426
  62527. }
  62528. },
  62529. back: {
  62530. height: math.unit(2.2, "meters"),
  62531. weight: math.unit(150, "kg"),
  62532. name: "Back",
  62533. image: {
  62534. source: "./media/characters/sergis/back.svg",
  62535. extra: 1335/1333,
  62536. bottom: 19/1354
  62537. }
  62538. },
  62539. frontLewd: {
  62540. height: math.unit(2.2, "meters"),
  62541. weight: math.unit(150, "kg"),
  62542. name: "Front (Lewd)",
  62543. image: {
  62544. source: "./media/characters/sergis/front-lewd.svg",
  62545. extra: 1314/1312,
  62546. bottom: 112/1426
  62547. }
  62548. },
  62549. frontDressed: {
  62550. height: math.unit(2.2, "meters"),
  62551. weight: math.unit(150, "kg"),
  62552. name: "Front (Dressed)",
  62553. image: {
  62554. source: "./media/characters/sergis/front-dressed.svg",
  62555. extra: 1330/1328,
  62556. bottom: 95/1425
  62557. }
  62558. },
  62559. frontDressedLewd: {
  62560. height: math.unit(2.2, "meters"),
  62561. weight: math.unit(150, "kg"),
  62562. name: "Front (Dressed, Lewd)",
  62563. image: {
  62564. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62565. extra: 1330/1328,
  62566. bottom: 95/1425
  62567. }
  62568. },
  62569. maw: {
  62570. height: math.unit(0.48, "meters"),
  62571. name: "Maw",
  62572. image: {
  62573. source: "./media/characters/sergis/maw.svg"
  62574. }
  62575. },
  62576. sheath: {
  62577. height: math.unit(0.38, "meters"),
  62578. name: "Sheath",
  62579. image: {
  62580. source: "./media/characters/sergis/sheath.svg"
  62581. }
  62582. },
  62583. },
  62584. [
  62585. {
  62586. name: "Incognito Size",
  62587. height: math.unit(2.2, "meters")
  62588. },
  62589. {
  62590. name: "Small Macro",
  62591. height: math.unit(40, "meters")
  62592. },
  62593. {
  62594. name: "Macro",
  62595. height: math.unit(150, "meters")
  62596. },
  62597. {
  62598. name: "Macro+",
  62599. height: math.unit(300, "meters")
  62600. },
  62601. {
  62602. name: "Mega",
  62603. height: math.unit(2.5, "km")
  62604. },
  62605. {
  62606. name: "Mega+",
  62607. height: math.unit(30, "km")
  62608. },
  62609. {
  62610. name: "Home Size",
  62611. height: math.unit(300, "km"),
  62612. default: true
  62613. },
  62614. {
  62615. name: "Giga+",
  62616. height: math.unit(1000, "km")
  62617. },
  62618. {
  62619. name: "Giga++",
  62620. height: math.unit(6000, "km")
  62621. },
  62622. {
  62623. name: "Terra",
  62624. height: math.unit(70000, "km")
  62625. },
  62626. {
  62627. name: "Terra+",
  62628. height: math.unit(200000, "km")
  62629. },
  62630. {
  62631. name: "Galactic",
  62632. height: math.unit(634200, "lightyears")
  62633. },
  62634. ]
  62635. ))
  62636. characterMakers.push(() => makeCharacter(
  62637. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62638. {
  62639. standard: {
  62640. height: math.unit(1 + 5/12, "feet"),
  62641. name: "Standard",
  62642. image: {
  62643. source: "./media/characters/spade/standard.svg",
  62644. extra: 1794/1703,
  62645. bottom: 115/1909
  62646. }
  62647. },
  62648. disguised: {
  62649. height: math.unit(1 + 5/12, "feet"),
  62650. name: "Disguised",
  62651. image: {
  62652. source: "./media/characters/spade/disguised.svg",
  62653. extra: 1794/1700,
  62654. bottom: 98/1892
  62655. }
  62656. },
  62657. },
  62658. [
  62659. {
  62660. name: "Normal",
  62661. height: math.unit(1 + 5/12, "feet"),
  62662. default: true
  62663. },
  62664. ]
  62665. ))
  62666. characterMakers.push(() => makeCharacter(
  62667. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62668. {
  62669. frontNsfw: {
  62670. height: math.unit(5, "meters"),
  62671. weight: math.unit(2000, "kg"),
  62672. preyCapacity: math.unit(5, "people"),
  62673. name: "Front (NSFW)",
  62674. image: {
  62675. source: "./media/characters/zeanlain/front-nsfw.svg",
  62676. extra: 1087/938,
  62677. bottom: 93/1180
  62678. },
  62679. extraAttributes: {
  62680. "wingspan": {
  62681. name: "Wingspan",
  62682. power: 1,
  62683. type: "length",
  62684. base: math.unit(10, "meters")
  62685. },
  62686. "footSize": {
  62687. name: "Foot Size",
  62688. power: 1,
  62689. type: "length",
  62690. base: math.unit(0.68, "meters")
  62691. },
  62692. "cockLength": {
  62693. name: "Cock Length",
  62694. power: 1,
  62695. type: "length",
  62696. base: math.unit(1.69, "meters")
  62697. },
  62698. "ballVolume": {
  62699. name: "Ball Volume",
  62700. power: 3,
  62701. type: "volume",
  62702. base: math.unit(0.028, "m^3")
  62703. },
  62704. }
  62705. },
  62706. front: {
  62707. height: math.unit(5, "meters"),
  62708. weight: math.unit(2000, "kg"),
  62709. preyCapacity: math.unit(3, "people"),
  62710. name: "Front",
  62711. image: {
  62712. source: "./media/characters/zeanlain/front.svg",
  62713. extra: 1087/938,
  62714. bottom: 93/1180
  62715. },
  62716. extraAttributes: {
  62717. "wingspan": {
  62718. name: "Wingspan",
  62719. power: 1,
  62720. type: "length",
  62721. base: math.unit(10, "meters")
  62722. },
  62723. "footSize": {
  62724. name: "Foot Size",
  62725. power: 1,
  62726. type: "length",
  62727. base: math.unit(0.68, "meters")
  62728. },
  62729. }
  62730. },
  62731. },
  62732. [
  62733. {
  62734. name: "Normal",
  62735. height: math.unit(5, "meters"),
  62736. default: true
  62737. },
  62738. ]
  62739. ))
  62740. characterMakers.push(() => makeCharacter(
  62741. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62742. {
  62743. front: {
  62744. height: math.unit(10, "meters"),
  62745. weight: math.unit(250000, "kg"),
  62746. name: "Front",
  62747. image: {
  62748. source: "./media/characters/airamis/front.svg",
  62749. extra: 865/835,
  62750. bottom: 13/878
  62751. }
  62752. },
  62753. },
  62754. [
  62755. {
  62756. name: "Normal",
  62757. height: math.unit(10, "meters"),
  62758. default: true
  62759. },
  62760. ]
  62761. ))
  62762. characterMakers.push(() => makeCharacter(
  62763. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62764. {
  62765. front: {
  62766. height: math.unit(3 + 3/12, "feet"),
  62767. weight: math.unit(75, "lb"),
  62768. name: "Front",
  62769. image: {
  62770. source: "./media/characters/corra-tourmaline/front.svg",
  62771. extra: 1037/864,
  62772. bottom: 39/1076
  62773. }
  62774. },
  62775. back: {
  62776. height: math.unit(3 + 3/12, "feet"),
  62777. weight: math.unit(75, "lb"),
  62778. name: "Back",
  62779. image: {
  62780. source: "./media/characters/corra-tourmaline/back.svg",
  62781. extra: 1022/849,
  62782. bottom: 26/1048
  62783. }
  62784. },
  62785. dressed: {
  62786. height: math.unit(3 + 3/12, "feet"),
  62787. weight: math.unit(75, "lb"),
  62788. name: "Dressed",
  62789. image: {
  62790. source: "./media/characters/corra-tourmaline/dressed.svg",
  62791. extra: 1037/864,
  62792. bottom: 39/1076
  62793. }
  62794. },
  62795. beans: {
  62796. height: math.unit(0.37, "feet"),
  62797. name: "Beans",
  62798. image: {
  62799. source: "./media/characters/corra-tourmaline/beans.svg"
  62800. }
  62801. },
  62802. },
  62803. [
  62804. {
  62805. name: "Normal",
  62806. height: math.unit(3 + 3/12, "feet"),
  62807. default: true
  62808. },
  62809. {
  62810. name: "Macro",
  62811. height: math.unit(32, "feet")
  62812. },
  62813. ]
  62814. ))
  62815. characterMakers.push(() => makeCharacter(
  62816. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62817. {
  62818. front: {
  62819. height: math.unit(6 + 2/12, "feet"),
  62820. weight: math.unit(203, "lb"),
  62821. name: "Front",
  62822. image: {
  62823. source: "./media/characters/maki-kawa/front.svg",
  62824. extra: 950/890,
  62825. bottom: 62/1012
  62826. }
  62827. },
  62828. back: {
  62829. height: math.unit(6 + 2/12, "feet"),
  62830. weight: math.unit(203, "lb"),
  62831. name: "Back",
  62832. image: {
  62833. source: "./media/characters/maki-kawa/back.svg",
  62834. extra: 953/878,
  62835. bottom: 49/1002
  62836. }
  62837. },
  62838. frontBarista: {
  62839. height: math.unit(6 + 2/12, "feet"),
  62840. weight: math.unit(203, "lb"),
  62841. name: "Front (Barista)",
  62842. image: {
  62843. source: "./media/characters/maki-kawa/front-barista.svg",
  62844. extra: 943/883,
  62845. bottom: 69/1012
  62846. }
  62847. },
  62848. backBarista: {
  62849. height: math.unit(6 + 2/12, "feet"),
  62850. weight: math.unit(203, "lb"),
  62851. name: "Back (Barista)",
  62852. image: {
  62853. source: "./media/characters/maki-kawa/back-barista.svg",
  62854. extra: 953/878,
  62855. bottom: 49/1002
  62856. }
  62857. },
  62858. frontWrestler: {
  62859. height: math.unit(6 + 2/12, "feet"),
  62860. weight: math.unit(203, "lb"),
  62861. name: "Front (Wrestler)",
  62862. image: {
  62863. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62864. extra: 950/890,
  62865. bottom: 62/1012
  62866. }
  62867. },
  62868. backWrestler: {
  62869. height: math.unit(6 + 2/12, "feet"),
  62870. weight: math.unit(203, "lb"),
  62871. name: "Back (Wrestler)",
  62872. image: {
  62873. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62874. extra: 953/878,
  62875. bottom: 49/1002
  62876. }
  62877. },
  62878. headFront: {
  62879. height: math.unit(1.64, "feet"),
  62880. name: "Head (Front)",
  62881. image: {
  62882. source: "./media/characters/maki-kawa/head-front.svg"
  62883. }
  62884. },
  62885. headSide: {
  62886. height: math.unit(1.59, "feet"),
  62887. name: "Head (Side)",
  62888. image: {
  62889. source: "./media/characters/maki-kawa/head-side.svg"
  62890. }
  62891. },
  62892. paw: {
  62893. height: math.unit(0.9, "feet"),
  62894. name: "Paw",
  62895. image: {
  62896. source: "./media/characters/maki-kawa/paw.svg"
  62897. }
  62898. },
  62899. },
  62900. [
  62901. {
  62902. name: "Normal",
  62903. height: math.unit(6 + 2/12, "feet"),
  62904. default: true
  62905. },
  62906. {
  62907. name: "Macro",
  62908. height: math.unit(617, "feet")
  62909. },
  62910. ]
  62911. ))
  62912. characterMakers.push(() => makeCharacter(
  62913. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62914. {
  62915. frontNsfw: {
  62916. height: math.unit(10, "feet"),
  62917. weight: math.unit(1500, "lb"),
  62918. name: "Front (NSFW)",
  62919. image: {
  62920. source: "./media/characters/lennox/front-nsfw.svg",
  62921. extra: 1623/1496,
  62922. bottom: 18/1641
  62923. },
  62924. extraAttributes: {
  62925. "cumVolume": {
  62926. name: "Cum Volume",
  62927. power: 3,
  62928. type: "volume",
  62929. base: math.unit(75, "liters")
  62930. },
  62931. }
  62932. },
  62933. backNsfw: {
  62934. height: math.unit(10, "feet"),
  62935. weight: math.unit(1500, "lb"),
  62936. name: "Back (NSFW)",
  62937. image: {
  62938. source: "./media/characters/lennox/back-nsfw.svg",
  62939. extra: 1641/1481,
  62940. bottom: 13/1654
  62941. },
  62942. extraAttributes: {
  62943. "cumVolume": {
  62944. name: "Cum Volume",
  62945. power: 3,
  62946. type: "volume",
  62947. base: math.unit(75, "liters")
  62948. },
  62949. }
  62950. },
  62951. frontSfw: {
  62952. height: math.unit(10, "feet"),
  62953. weight: math.unit(1500, "lb"),
  62954. name: "Front (SFW)",
  62955. image: {
  62956. source: "./media/characters/lennox/front-sfw.svg",
  62957. extra: 1623/1496,
  62958. bottom: 18/1641
  62959. }
  62960. },
  62961. backSfw: {
  62962. height: math.unit(10, "feet"),
  62963. weight: math.unit(1500, "lb"),
  62964. name: "Back (SFW)",
  62965. image: {
  62966. source: "./media/characters/lennox/back-sfw.svg",
  62967. extra: 1641/1481,
  62968. bottom: 13/1654
  62969. }
  62970. },
  62971. maw: {
  62972. height: math.unit(2.94, "feet"),
  62973. name: "Maw",
  62974. image: {
  62975. source: "./media/characters/lennox/maw.svg"
  62976. }
  62977. },
  62978. dick: {
  62979. height: math.unit(0.8323, "meters"),
  62980. weight: math.unit(0.07315728637*1000, "kg"),
  62981. name: "Dick",
  62982. image: {
  62983. source: "./media/characters/lennox/dick.svg"
  62984. },
  62985. extraAttributes: {
  62986. "thickness": {
  62987. name: "Thickness",
  62988. power: 1,
  62989. type: "length",
  62990. base: math.unit(0.330, "meters")
  62991. },
  62992. "length": {
  62993. name: "Length",
  62994. power: 1,
  62995. type: "length",
  62996. base: math.unit(0.8, "meters")
  62997. },
  62998. "cumVolume": {
  62999. name: "Cum Volume",
  63000. power: 3,
  63001. type: "volume",
  63002. base: math.unit(75, "liters")
  63003. },
  63004. }
  63005. },
  63006. },
  63007. [
  63008. {
  63009. name: "Micro",
  63010. height: math.unit(1, "inch")
  63011. },
  63012. {
  63013. name: "Normal",
  63014. height: math.unit(10, "feet"),
  63015. default: true
  63016. },
  63017. {
  63018. name: "Macro",
  63019. height: math.unit(200, "feet")
  63020. },
  63021. ]
  63022. ))
  63023. characterMakers.push(() => makeCharacter(
  63024. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63025. {
  63026. frontDressed: {
  63027. height: math.unit(15 + 7/12, "feet"),
  63028. weight: math.unit(5000, "lb"),
  63029. name: "Front (Dressed)",
  63030. image: {
  63031. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63032. extra: 1136/1023,
  63033. bottom: 51/1187
  63034. }
  63035. },
  63036. backDressed: {
  63037. height: math.unit(15 + 7/12, "feet"),
  63038. weight: math.unit(5000, "lb"),
  63039. name: "Back (Dressed)",
  63040. image: {
  63041. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63042. extra: 2359/2143,
  63043. bottom: 103/2462
  63044. }
  63045. },
  63046. front: {
  63047. height: math.unit(15 + 7/12, "feet"),
  63048. weight: math.unit(5000, "lb"),
  63049. name: "Front",
  63050. image: {
  63051. source: "./media/characters/vyse-iron-thunder/front.svg",
  63052. extra: 1136/1023,
  63053. bottom: 51/1187
  63054. }
  63055. },
  63056. hand: {
  63057. height: math.unit(2.36, "feet"),
  63058. name: "Hand",
  63059. image: {
  63060. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63061. }
  63062. },
  63063. foot: {
  63064. height: math.unit(1.72, "feet"),
  63065. name: "Foot",
  63066. image: {
  63067. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63068. }
  63069. },
  63070. mouth: {
  63071. height: math.unit(2, "feet"),
  63072. name: "Mouth",
  63073. image: {
  63074. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63075. }
  63076. },
  63077. eye: {
  63078. height: math.unit(0.58, "feet"),
  63079. name: "Eye",
  63080. image: {
  63081. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63082. }
  63083. },
  63084. },
  63085. [
  63086. {
  63087. name: "Normal",
  63088. height: math.unit(15 + 7/12, "feet"),
  63089. default: true
  63090. },
  63091. {
  63092. name: "Macro",
  63093. height: math.unit(157, "feet")
  63094. },
  63095. {
  63096. name: "Macro+",
  63097. height: math.unit(1570, "feet")
  63098. },
  63099. {
  63100. name: "Macro++",
  63101. height: math.unit(15700, "feet")
  63102. },
  63103. {
  63104. name: "Macro+++",
  63105. height: math.unit(157000, "feet")
  63106. },
  63107. {
  63108. name: "Macro++++",
  63109. height: math.unit(1570000, "feet")
  63110. },
  63111. ]
  63112. ))
  63113. characterMakers.push(() => makeCharacter(
  63114. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63115. {
  63116. side: {
  63117. height: math.unit(6, "feet"),
  63118. weight: math.unit(115, "lb"),
  63119. name: "Side",
  63120. image: {
  63121. source: "./media/characters/moonbeam/side.svg",
  63122. extra: 839/485,
  63123. bottom: 60/899
  63124. }
  63125. },
  63126. },
  63127. [
  63128. {
  63129. name: "Normal",
  63130. height: math.unit(6, "feet"),
  63131. default: true
  63132. },
  63133. ]
  63134. ))
  63135. characterMakers.push(() => makeCharacter(
  63136. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63137. {
  63138. front: {
  63139. height: math.unit(3500, "miles"),
  63140. weight: math.unit(1659, "petatonnes"),
  63141. name: "Front",
  63142. image: {
  63143. source: "./media/characters/baltica/front.svg",
  63144. extra: 429/428,
  63145. bottom: 41/470
  63146. }
  63147. },
  63148. back: {
  63149. height: math.unit(3500, "miles"),
  63150. weight: math.unit(1659, "petatonnes"),
  63151. name: "Back",
  63152. image: {
  63153. source: "./media/characters/baltica/back.svg",
  63154. extra: 452/451,
  63155. bottom: 8/460
  63156. }
  63157. },
  63158. },
  63159. [
  63160. {
  63161. name: "Gigamacro",
  63162. height: math.unit(3500, "miles"),
  63163. default: true
  63164. },
  63165. ]
  63166. ))
  63167. characterMakers.push(() => makeCharacter(
  63168. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63169. {
  63170. front: {
  63171. height: math.unit(6 + 10/12, "feet"),
  63172. weight: math.unit(200, "lb"),
  63173. name: "Front",
  63174. image: {
  63175. source: "./media/characters/shadow-wolf/front.svg",
  63176. extra: 1931/1760,
  63177. bottom: 88/2019
  63178. }
  63179. },
  63180. },
  63181. [
  63182. {
  63183. name: "Normal",
  63184. height: math.unit(6 + 10/12, "feet"),
  63185. default: true
  63186. },
  63187. ]
  63188. ))
  63189. characterMakers.push(() => makeCharacter(
  63190. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63191. {
  63192. front: {
  63193. height: math.unit(5 + 10/12, "feet"),
  63194. name: "Front",
  63195. image: {
  63196. source: "./media/characters/quincy-praying-mantis/front.svg",
  63197. extra: 1055/891,
  63198. bottom: 92/1147
  63199. }
  63200. },
  63201. soles: {
  63202. height: math.unit(0.85, "feet"),
  63203. name: "Soles",
  63204. image: {
  63205. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63206. extra: 429/324,
  63207. bottom: 89/518
  63208. },
  63209. extraAttributes: {
  63210. "shoeSize": {
  63211. name: "Shoe Size",
  63212. power: 1,
  63213. type: "length",
  63214. base: math.unit(23, "ShoeSizeMensUS"),
  63215. defaultUnit: "ShoeSizeMensUS"
  63216. },
  63217. }
  63218. },
  63219. foot: {
  63220. height: math.unit(0.72, "feet"),
  63221. name: "Foot",
  63222. image: {
  63223. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63224. extra: 349/349,
  63225. bottom: 76/425
  63226. }
  63227. },
  63228. },
  63229. [
  63230. {
  63231. name: "Normal",
  63232. height: math.unit(5 + 10/12, "feet"),
  63233. default: true
  63234. },
  63235. ]
  63236. ))
  63237. characterMakers.push(() => makeCharacter(
  63238. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63239. {
  63240. front: {
  63241. height: math.unit(6, "feet"),
  63242. name: "Front",
  63243. image: {
  63244. source: "./media/characters/christopher-redwood/front.svg",
  63245. extra: 1402/1341,
  63246. bottom: 23/1425
  63247. }
  63248. },
  63249. back: {
  63250. height: math.unit(6, "feet"),
  63251. name: "Back",
  63252. image: {
  63253. source: "./media/characters/christopher-redwood/back.svg",
  63254. extra: 1406/1345,
  63255. bottom: 36/1442
  63256. }
  63257. },
  63258. head: {
  63259. height: math.unit(1.685, "feet"),
  63260. name: "Head",
  63261. image: {
  63262. source: "./media/characters/christopher-redwood/head.svg"
  63263. }
  63264. },
  63265. },
  63266. [
  63267. {
  63268. name: "Normal",
  63269. height: math.unit(6, "feet"),
  63270. default: true
  63271. },
  63272. ]
  63273. ))
  63274. characterMakers.push(() => makeCharacter(
  63275. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63276. {
  63277. front: {
  63278. height: math.unit(1.9, "meters"),
  63279. weight: math.unit(140, "lb"),
  63280. name: "Front",
  63281. image: {
  63282. source: "./media/characters/kara-fox/front.svg",
  63283. extra: 766/711,
  63284. bottom: 41/807
  63285. }
  63286. },
  63287. back: {
  63288. height: math.unit(1.9, "meters"),
  63289. weight: math.unit(140, "lb"),
  63290. name: "Back",
  63291. image: {
  63292. source: "./media/characters/kara-fox/back.svg",
  63293. extra: 766/596,
  63294. bottom: 29/795
  63295. }
  63296. },
  63297. maw: {
  63298. height: math.unit(0.78, "feet"),
  63299. name: "Maw",
  63300. image: {
  63301. source: "./media/characters/kara-fox/maw.svg"
  63302. }
  63303. },
  63304. pawpads: {
  63305. height: math.unit(0.96, "feet"),
  63306. name: "Pawpads",
  63307. image: {
  63308. source: "./media/characters/kara-fox/pawpads.svg"
  63309. }
  63310. },
  63311. },
  63312. [
  63313. {
  63314. name: "Normal",
  63315. height: math.unit(1.9, "meters"),
  63316. default: true
  63317. },
  63318. {
  63319. name: "Giantess",
  63320. height: math.unit(80, "meters")
  63321. },
  63322. ]
  63323. ))
  63324. characterMakers.push(() => makeCharacter(
  63325. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63326. {
  63327. front: {
  63328. height: math.unit(12, "feet"),
  63329. name: "Front",
  63330. image: {
  63331. source: "./media/characters/naomi-espeon/front.svg",
  63332. extra: 892/797,
  63333. bottom: 5/897
  63334. }
  63335. },
  63336. back: {
  63337. height: math.unit(12, "feet"),
  63338. name: "Back",
  63339. image: {
  63340. source: "./media/characters/naomi-espeon/back.svg",
  63341. extra: 890/785,
  63342. bottom: 12/902
  63343. }
  63344. },
  63345. },
  63346. [
  63347. {
  63348. name: "Normal",
  63349. height: math.unit(12, "feet"),
  63350. default: true
  63351. },
  63352. ]
  63353. ))
  63354. characterMakers.push(() => makeCharacter(
  63355. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63356. {
  63357. anthro_front: {
  63358. height: math.unit(8, "feet"),
  63359. weight: math.unit(625, "lb"),
  63360. name: "Front",
  63361. image: {
  63362. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63363. extra: 638/574,
  63364. bottom: 73/711
  63365. },
  63366. form: "anthro",
  63367. default: true
  63368. },
  63369. anthro_back: {
  63370. height: math.unit(8, "feet"),
  63371. weight: math.unit(625, "lb"),
  63372. name: "Back",
  63373. image: {
  63374. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63375. extra: 674/614,
  63376. bottom: 7/681
  63377. },
  63378. form: "anthro",
  63379. },
  63380. taur_side: {
  63381. height: math.unit(16, "feet"),
  63382. weight: math.unit(4.5, "tons"),
  63383. name: "Side",
  63384. image: {
  63385. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63386. extra: 704/646,
  63387. bottom: 132/836
  63388. },
  63389. form: "taur",
  63390. default: true
  63391. },
  63392. },
  63393. [
  63394. {
  63395. name: "Normal",
  63396. height: math.unit(8, "feet"),
  63397. default: true,
  63398. form: "anthro"
  63399. },
  63400. {
  63401. name: "Normal",
  63402. height: math.unit(16, "feet"),
  63403. default: true,
  63404. form: "taur"
  63405. },
  63406. ],
  63407. {
  63408. "anthro": {
  63409. name: "Anthro",
  63410. default: true
  63411. },
  63412. "taur": {
  63413. name: "Taur",
  63414. },
  63415. }
  63416. ))
  63417. characterMakers.push(() => makeCharacter(
  63418. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63419. {
  63420. front: {
  63421. height: math.unit(190, "cm"),
  63422. weight: math.unit(110, "kg"),
  63423. name: "Front",
  63424. image: {
  63425. source: "./media/characters/amelie/front.svg",
  63426. extra: 530/442,
  63427. bottom: 35/565
  63428. }
  63429. },
  63430. },
  63431. [
  63432. {
  63433. name: "Normal",
  63434. height: math.unit(190, "cm"),
  63435. default: true
  63436. },
  63437. ]
  63438. ))
  63439. characterMakers.push(() => makeCharacter(
  63440. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63441. {
  63442. front: {
  63443. height: math.unit(21, "feet"),
  63444. weight: math.unit(30000, "lb"),
  63445. name: "Front",
  63446. image: {
  63447. source: "./media/characters/valence/front.svg",
  63448. extra: 1430/1306,
  63449. bottom: 51/1481
  63450. }
  63451. },
  63452. },
  63453. [
  63454. {
  63455. name: "Normal",
  63456. height: math.unit(21, "feet"),
  63457. default: true
  63458. },
  63459. ]
  63460. ))
  63461. characterMakers.push(() => makeCharacter(
  63462. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63463. {
  63464. front: {
  63465. height: math.unit(5 + 9/12, "feet"),
  63466. weight: math.unit(170, "lb"),
  63467. name: "Front",
  63468. image: {
  63469. source: "./media/characters/aurora-adkins/front.svg",
  63470. extra: 1141/1089,
  63471. bottom: 41/1182
  63472. }
  63473. },
  63474. },
  63475. [
  63476. {
  63477. name: "Tiny",
  63478. height: math.unit(7, "mm")
  63479. },
  63480. {
  63481. name: "Small",
  63482. height: math.unit(3.4, "inches")
  63483. },
  63484. {
  63485. name: "Normal",
  63486. height: math.unit(5 + 9/12, "feet"),
  63487. default: true
  63488. },
  63489. {
  63490. name: "Big",
  63491. height: math.unit(31, "feet")
  63492. },
  63493. {
  63494. name: "Giant",
  63495. height: math.unit(300, "feet")
  63496. },
  63497. ]
  63498. ))
  63499. characterMakers.push(() => makeCharacter(
  63500. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63501. {
  63502. front: {
  63503. height: math.unit(5 + 6/12, "feet"),
  63504. weight: math.unit(210, "lb"),
  63505. name: "Front",
  63506. image: {
  63507. source: "./media/characters/cyber/front.svg",
  63508. extra: 1968/1798,
  63509. bottom: 10/1978
  63510. },
  63511. extraAttributes: {
  63512. "shoeSize": {
  63513. name: "Shoe Size",
  63514. power: 1,
  63515. type: "length",
  63516. base: math.unit(30, "ShoeSizeMensUS")
  63517. },
  63518. }
  63519. },
  63520. },
  63521. [
  63522. {
  63523. name: "Normal",
  63524. height: math.unit(5 + 6/12, "feet"),
  63525. default: true
  63526. },
  63527. ]
  63528. ))
  63529. characterMakers.push(() => makeCharacter(
  63530. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63531. {
  63532. front: {
  63533. height: math.unit(6 + 6/12, "feet"),
  63534. weight: math.unit(140, "lb"),
  63535. name: "Front",
  63536. image: {
  63537. source: "./media/characters/sapphire-wairimea/front.svg",
  63538. extra: 475/458,
  63539. bottom: 14/489
  63540. }
  63541. },
  63542. },
  63543. [
  63544. {
  63545. name: "Normal",
  63546. height: math.unit(6 + 6/12, "feet")
  63547. },
  63548. {
  63549. name: "Macro",
  63550. height: math.unit(132, "feet"),
  63551. default: true
  63552. },
  63553. ]
  63554. ))
  63555. characterMakers.push(() => makeCharacter(
  63556. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63557. {
  63558. front: {
  63559. height: math.unit(1.6, "meters"),
  63560. weight: math.unit(100, "lb"),
  63561. name: "Front",
  63562. image: {
  63563. source: "./media/characters/cirkazi/front.svg",
  63564. extra: 489/477,
  63565. bottom: 0/489
  63566. }
  63567. },
  63568. },
  63569. [
  63570. {
  63571. name: "Normal",
  63572. height: math.unit(1.6, "meters")
  63573. },
  63574. {
  63575. name: "Macro",
  63576. height: math.unit(800, "feet"),
  63577. default: true
  63578. },
  63579. ]
  63580. ))
  63581. characterMakers.push(() => makeCharacter(
  63582. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63583. {
  63584. front: {
  63585. height: math.unit(5 + 10/12, "feet"),
  63586. weight: math.unit(145, "lb"),
  63587. name: "Front",
  63588. image: {
  63589. source: "./media/characters/corrin-cavelli/front.svg",
  63590. extra: 483/464,
  63591. bottom: 6/489
  63592. }
  63593. },
  63594. },
  63595. [
  63596. {
  63597. name: "Human",
  63598. height: math.unit(5 + 10/12, "feet")
  63599. },
  63600. {
  63601. name: "Giant",
  63602. height: math.unit(210, "feet"),
  63603. default: true
  63604. },
  63605. ]
  63606. ))
  63607. characterMakers.push(() => makeCharacter(
  63608. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63609. {
  63610. back: {
  63611. height: math.unit(5 + 6/12, "feet"),
  63612. weight: math.unit(115, "lb"),
  63613. name: "Back",
  63614. image: {
  63615. source: "./media/characters/lori-lopez/back.svg",
  63616. extra: 483/474,
  63617. bottom: 6/489
  63618. }
  63619. },
  63620. },
  63621. [
  63622. {
  63623. name: "Human",
  63624. height: math.unit(5 + 6/12, "feet")
  63625. },
  63626. {
  63627. name: "Macro",
  63628. height: math.unit(198, "feet"),
  63629. default: true
  63630. },
  63631. ]
  63632. ))
  63633. characterMakers.push(() => makeCharacter(
  63634. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63635. {
  63636. front: {
  63637. height: math.unit(6, "feet"),
  63638. weight: math.unit(220, "lb"),
  63639. name: "Front",
  63640. image: {
  63641. source: "./media/characters/sylvia-beauregard/front.svg",
  63642. extra: 483/479,
  63643. bottom: 6/489
  63644. }
  63645. },
  63646. },
  63647. [
  63648. {
  63649. name: "Macro",
  63650. height: math.unit(2071, "feet"),
  63651. default: true
  63652. },
  63653. ]
  63654. ))
  63655. characterMakers.push(() => makeCharacter(
  63656. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63657. {
  63658. back: {
  63659. height: math.unit(5 + 6/12, "feet"),
  63660. weight: math.unit(160, "lb"),
  63661. name: "Back",
  63662. image: {
  63663. source: "./media/characters/akiko-takahashi/back.svg",
  63664. extra: 459/454,
  63665. bottom: 27/486
  63666. }
  63667. },
  63668. },
  63669. [
  63670. {
  63671. name: "Human",
  63672. height: math.unit(5 + 6/12, "feet")
  63673. },
  63674. {
  63675. name: "Macro",
  63676. height: math.unit(198, "feet"),
  63677. default: true
  63678. },
  63679. {
  63680. name: "Megamacro",
  63681. height: math.unit(7128, "feet")
  63682. },
  63683. ]
  63684. ))
  63685. characterMakers.push(() => makeCharacter(
  63686. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63687. {
  63688. front: {
  63689. height: math.unit(6, "feet"),
  63690. weight: math.unit(140, "lb"),
  63691. name: "Front",
  63692. image: {
  63693. source: "./media/characters/velvet-garza/front.svg",
  63694. extra: 480/462,
  63695. bottom: 7/487
  63696. }
  63697. },
  63698. },
  63699. [
  63700. {
  63701. name: "Macro",
  63702. height: math.unit(37, "feet"),
  63703. default: true
  63704. },
  63705. ]
  63706. ))
  63707. characterMakers.push(() => makeCharacter(
  63708. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63709. {
  63710. front: {
  63711. height: math.unit(7 + 6/12, "feet"),
  63712. weight: math.unit(400, "lb"),
  63713. name: "Front",
  63714. image: {
  63715. source: "./media/characters/gaia/front.svg",
  63716. extra: 474/463,
  63717. bottom: 13/487
  63718. }
  63719. },
  63720. },
  63721. [
  63722. {
  63723. name: "MiniMacro",
  63724. height: math.unit(7 + 6/12, "feet")
  63725. },
  63726. {
  63727. name: "GigaMacro",
  63728. height: math.unit(14500, "feet"),
  63729. default: true
  63730. },
  63731. ]
  63732. ))
  63733. characterMakers.push(() => makeCharacter(
  63734. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63735. {
  63736. front: {
  63737. height: math.unit(6, "feet"),
  63738. weight: math.unit(150, "lb"),
  63739. name: "Front",
  63740. image: {
  63741. source: "./media/characters/tim/front.svg",
  63742. extra: 1878/1743,
  63743. bottom: 9/1887
  63744. }
  63745. },
  63746. frontDressed: {
  63747. height: math.unit(6, "feet"),
  63748. weight: math.unit(150, "lb"),
  63749. name: "Front (Dressed)",
  63750. image: {
  63751. source: "./media/characters/tim/front-dressed.svg",
  63752. extra: 1765/1485,
  63753. bottom: 48/1813
  63754. }
  63755. },
  63756. backDressed: {
  63757. height: math.unit(6, "feet"),
  63758. weight: math.unit(150, "lb"),
  63759. name: "Back (Dressed)",
  63760. image: {
  63761. source: "./media/characters/tim/back-dressed.svg",
  63762. extra: 1750/1465,
  63763. bottom: 25/1775
  63764. }
  63765. },
  63766. dick: {
  63767. height: math.unit(1.5, "feet"),
  63768. weight: math.unit(6, "lb"),
  63769. name: "Dick",
  63770. image: {
  63771. source: "./media/characters/tim/dick.svg"
  63772. }
  63773. },
  63774. hand: {
  63775. height: math.unit(0.522, "feet"),
  63776. name: "Hand",
  63777. image: {
  63778. source: "./media/characters/tim/hand.svg"
  63779. }
  63780. },
  63781. palm: {
  63782. height: math.unit(0.48, "feet"),
  63783. name: "Palm",
  63784. image: {
  63785. source: "./media/characters/tim/palm.svg"
  63786. }
  63787. },
  63788. paw: {
  63789. height: math.unit(0.9, "feet"),
  63790. name: "Paw",
  63791. image: {
  63792. source: "./media/characters/tim/paw.svg"
  63793. }
  63794. },
  63795. sole: {
  63796. height: math.unit(0.88, "feet"),
  63797. name: "Sole",
  63798. image: {
  63799. source: "./media/characters/tim/sole.svg"
  63800. }
  63801. },
  63802. },
  63803. [
  63804. {
  63805. name: "Macro",
  63806. height: math.unit(1000, "feet")
  63807. },
  63808. {
  63809. name: "Megamacro",
  63810. height: math.unit(10000, "feet"),
  63811. default: true
  63812. },
  63813. {
  63814. name: "Megamacro+",
  63815. height: math.unit(50000, "feet")
  63816. },
  63817. {
  63818. name: "Gigamacro",
  63819. height: math.unit(150000, "km")
  63820. },
  63821. ]
  63822. ))
  63823. characterMakers.push(() => makeCharacter(
  63824. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63825. {
  63826. front: {
  63827. height: math.unit(5 + 8/12, "feet"),
  63828. weight: math.unit(170, "lb"),
  63829. name: "Front",
  63830. image: {
  63831. source: "./media/characters/abel-delreoux/front.svg",
  63832. extra: 1615/1500,
  63833. bottom: 82/1697
  63834. }
  63835. },
  63836. back: {
  63837. height: math.unit(5 + 8/12, "feet"),
  63838. weight: math.unit(170, "lb"),
  63839. name: "Back",
  63840. image: {
  63841. source: "./media/characters/abel-delreoux/back.svg",
  63842. extra: 1644/1534,
  63843. bottom: 24/1668
  63844. }
  63845. },
  63846. casual: {
  63847. height: math.unit(5 + 8/12, "feet"),
  63848. weight: math.unit(170, "lb"),
  63849. name: "Casual",
  63850. image: {
  63851. source: "./media/characters/abel-delreoux/casual.svg",
  63852. extra: 1716/1598,
  63853. bottom: 29/1745
  63854. }
  63855. },
  63856. sleepy: {
  63857. height: math.unit(5 + 8/12, "feet"),
  63858. weight: math.unit(170, "lb"),
  63859. name: "Sleepy",
  63860. image: {
  63861. source: "./media/characters/abel-delreoux/sleepy.svg",
  63862. extra: 1649/1573,
  63863. bottom: 22/1671
  63864. }
  63865. },
  63866. fem: {
  63867. height: math.unit(5 + 8/12, "feet"),
  63868. weight: math.unit(170, "lb"),
  63869. name: "Fem",
  63870. image: {
  63871. source: "./media/characters/abel-delreoux/fem.svg",
  63872. extra: 1680/1564,
  63873. bottom: 17/1697
  63874. }
  63875. },
  63876. hand: {
  63877. height: math.unit(0.78, "feet"),
  63878. name: "Hand",
  63879. image: {
  63880. source: "./media/characters/abel-delreoux/hand.svg"
  63881. }
  63882. },
  63883. paw: {
  63884. height: math.unit(0.78, "feet"),
  63885. name: "Paw",
  63886. image: {
  63887. source: "./media/characters/abel-delreoux/paw.svg"
  63888. }
  63889. },
  63890. },
  63891. [
  63892. {
  63893. name: "Normal",
  63894. height: math.unit(5 + 8/12, "feet"),
  63895. default: true
  63896. },
  63897. ]
  63898. ))
  63899. characterMakers.push(() => makeCharacter(
  63900. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63901. {
  63902. front: {
  63903. height: math.unit(6, "feet"),
  63904. weight: math.unit(159, "lb"),
  63905. name: "Front",
  63906. image: {
  63907. source: "./media/characters/meus/front.svg",
  63908. extra: 938/843,
  63909. bottom: 37/975
  63910. }
  63911. },
  63912. back: {
  63913. height: math.unit(6, "feet"),
  63914. weight: math.unit(159, "lb"),
  63915. name: "Back",
  63916. image: {
  63917. source: "./media/characters/meus/back.svg",
  63918. extra: 967/873,
  63919. bottom: 12/979
  63920. }
  63921. },
  63922. },
  63923. [
  63924. {
  63925. name: "Micro",
  63926. height: math.unit(2, "inches")
  63927. },
  63928. {
  63929. name: "Mini",
  63930. height: math.unit(6, "inches")
  63931. },
  63932. {
  63933. name: "Normal",
  63934. height: math.unit(6, "feet"),
  63935. default: true
  63936. },
  63937. {
  63938. name: "Macro",
  63939. height: math.unit(84, "feet")
  63940. },
  63941. ]
  63942. ))
  63943. characterMakers.push(() => makeCharacter(
  63944. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63945. {
  63946. front: {
  63947. height: math.unit(60, "cm"),
  63948. weight: math.unit(18, "kg"),
  63949. name: "Front",
  63950. image: {
  63951. source: "./media/characters/yamato/front.svg",
  63952. extra: 733/688,
  63953. bottom: 29/762
  63954. }
  63955. },
  63956. },
  63957. [
  63958. {
  63959. name: "Micro",
  63960. height: math.unit(6, "cm")
  63961. },
  63962. {
  63963. name: "Normal",
  63964. height: math.unit(60, "cm"),
  63965. default: true
  63966. },
  63967. ]
  63968. ))
  63969. characterMakers.push(() => makeCharacter(
  63970. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63971. {
  63972. front: {
  63973. height: math.unit(9, "feet"),
  63974. weight: math.unit(518, "lb"),
  63975. name: "Front",
  63976. image: {
  63977. source: "./media/characters/barus/front.svg",
  63978. extra: 1877/1795,
  63979. bottom: 55/1932
  63980. }
  63981. },
  63982. },
  63983. [
  63984. {
  63985. name: "Base Height",
  63986. height: math.unit(9, "feet"),
  63987. default: true
  63988. },
  63989. {
  63990. name: "Large",
  63991. height: math.unit(18, "feet")
  63992. },
  63993. {
  63994. name: "Giant",
  63995. height: math.unit(100, "feet")
  63996. },
  63997. {
  63998. name: "Huge",
  63999. height: math.unit(500, "feet")
  64000. },
  64001. {
  64002. name: "Enormous",
  64003. height: math.unit(300, "meters")
  64004. },
  64005. {
  64006. name: "Deity Among Man",
  64007. height: math.unit(3000, "meters")
  64008. },
  64009. ]
  64010. ))
  64011. characterMakers.push(() => makeCharacter(
  64012. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64013. {
  64014. front: {
  64015. height: math.unit(1.7, "meters"),
  64016. name: "Front",
  64017. image: {
  64018. source: "./media/characters/yari/front.svg",
  64019. extra: 1210/1125,
  64020. bottom: 283/1493
  64021. }
  64022. },
  64023. back: {
  64024. height: math.unit(1.7, "meters"),
  64025. name: "Back",
  64026. image: {
  64027. source: "./media/characters/yari/back.svg",
  64028. extra: 1240/1195,
  64029. bottom: 180/1420
  64030. }
  64031. },
  64032. head: {
  64033. height: math.unit(1.26, "feet"),
  64034. name: "Head",
  64035. image: {
  64036. source: "./media/characters/yari/head.svg"
  64037. }
  64038. },
  64039. },
  64040. [
  64041. {
  64042. name: "Nano",
  64043. height: math.unit(0.5, "mm")
  64044. },
  64045. {
  64046. name: "Micro",
  64047. height: math.unit(3, "inches")
  64048. },
  64049. {
  64050. name: "Short",
  64051. height: math.unit(1.5, "meters")
  64052. },
  64053. {
  64054. name: "Norm",
  64055. height: math.unit(1.7, "meters"),
  64056. default: true
  64057. },
  64058. ]
  64059. ))
  64060. characterMakers.push(() => makeCharacter(
  64061. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64062. {
  64063. front: {
  64064. height: math.unit(5 + 2/12, "feet"),
  64065. weight: math.unit(110, "lb"),
  64066. name: "Front",
  64067. image: {
  64068. source: "./media/characters/salem/front.svg",
  64069. extra: 1895/1800,
  64070. bottom: 23/1918
  64071. }
  64072. },
  64073. back: {
  64074. height: math.unit(5 + 2/12, "feet"),
  64075. weight: math.unit(110, "lb"),
  64076. name: "Back",
  64077. image: {
  64078. source: "./media/characters/salem/back.svg",
  64079. extra: 1875/1802,
  64080. bottom: 20/1895
  64081. }
  64082. },
  64083. head: {
  64084. height: math.unit(1, "feet"),
  64085. name: "Head",
  64086. image: {
  64087. source: "./media/characters/salem/head.svg"
  64088. }
  64089. },
  64090. paw: {
  64091. height: math.unit(0.59, "feet"),
  64092. name: "Paw",
  64093. image: {
  64094. source: "./media/characters/salem/paw.svg"
  64095. }
  64096. },
  64097. beans: {
  64098. height: math.unit(0.66, "feet"),
  64099. name: "Beans",
  64100. image: {
  64101. source: "./media/characters/salem/beans.svg"
  64102. }
  64103. },
  64104. eye: {
  64105. height: math.unit(0.224, "feet"),
  64106. name: "Eye",
  64107. image: {
  64108. source: "./media/characters/salem/eye.svg"
  64109. }
  64110. },
  64111. semiferal: {
  64112. height: math.unit(2.3, "feet"),
  64113. name: "Semiferal",
  64114. image: {
  64115. source: "./media/characters/salem/semiferal.svg",
  64116. extra: 914/839,
  64117. bottom: 32/946
  64118. }
  64119. },
  64120. },
  64121. [
  64122. {
  64123. name: "Micro",
  64124. height: math.unit(4, "inches")
  64125. },
  64126. {
  64127. name: "Normal",
  64128. height: math.unit(5 + 2/12, "feet"),
  64129. default: true
  64130. },
  64131. {
  64132. name: "Macro",
  64133. height: math.unit(108, "feet")
  64134. },
  64135. {
  64136. name: "Macro+",
  64137. height: math.unit(1500, "feet")
  64138. },
  64139. ]
  64140. ))
  64141. characterMakers.push(() => makeCharacter(
  64142. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64143. {
  64144. front: {
  64145. height: math.unit(7 + 6/12, "feet"),
  64146. weight: math.unit(600, "kg"),
  64147. preyCapacity: math.unit(10, "people"),
  64148. name: "Front",
  64149. image: {
  64150. source: "./media/characters/kii/front.svg",
  64151. extra: 3296/3087,
  64152. bottom: 130/3426
  64153. }
  64154. },
  64155. },
  64156. [
  64157. {
  64158. name: "Normal",
  64159. height: math.unit(7 + 6/12, "feet"),
  64160. default: true
  64161. },
  64162. ]
  64163. ))
  64164. characterMakers.push(() => makeCharacter(
  64165. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64166. {
  64167. front: {
  64168. height: math.unit(2, "meters"),
  64169. weight: math.unit(200, "lb"),
  64170. name: "Front",
  64171. image: {
  64172. source: "./media/characters/taffy/front.svg",
  64173. extra: 1666/1618,
  64174. bottom: 157/1823
  64175. }
  64176. },
  64177. back: {
  64178. height: math.unit(2, "meters"),
  64179. weight: math.unit(200, "lb"),
  64180. name: "Back",
  64181. image: {
  64182. source: "./media/characters/taffy/back.svg",
  64183. extra: 1635/1583,
  64184. bottom: 153/1788
  64185. }
  64186. },
  64187. },
  64188. [
  64189. {
  64190. name: "Normal",
  64191. height: math.unit(2, "meters"),
  64192. default: true
  64193. },
  64194. ]
  64195. ))
  64196. characterMakers.push(() => makeCharacter(
  64197. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64198. {
  64199. front: {
  64200. height: math.unit(1.55, "meters"),
  64201. weight: math.unit(60, "kg"),
  64202. name: "Front",
  64203. image: {
  64204. source: "./media/characters/barley/front.svg",
  64205. extra: 1520/1340,
  64206. bottom: 47/1567
  64207. }
  64208. },
  64209. back: {
  64210. height: math.unit(1.55, "meters"),
  64211. weight: math.unit(60, "kg"),
  64212. name: "Back",
  64213. image: {
  64214. source: "./media/characters/barley/back.svg",
  64215. extra: 1543/1341,
  64216. bottom: 12/1555
  64217. }
  64218. },
  64219. feet: {
  64220. height: math.unit(2.18, "feet"),
  64221. name: "Feet",
  64222. image: {
  64223. source: "./media/characters/barley/feet.svg"
  64224. }
  64225. },
  64226. },
  64227. [
  64228. {
  64229. name: "Normal",
  64230. height: math.unit(1.55, "meters"),
  64231. default: true
  64232. },
  64233. ]
  64234. ))
  64235. characterMakers.push(() => makeCharacter(
  64236. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64237. {
  64238. dressed: {
  64239. height: math.unit(6, "feet"),
  64240. name: "Dressed",
  64241. image: {
  64242. source: "./media/characters/lydia-lopez/dressed.svg",
  64243. extra: 1319/1277,
  64244. bottom: 90/1409
  64245. }
  64246. },
  64247. nude: {
  64248. height: math.unit(6, "feet"),
  64249. name: "Nude",
  64250. image: {
  64251. source: "./media/characters/lydia-lopez/nude.svg",
  64252. extra: 1319/1277,
  64253. bottom: 90/1409
  64254. }
  64255. },
  64256. },
  64257. [
  64258. {
  64259. name: "Normal",
  64260. height: math.unit(6, "feet"),
  64261. default: true
  64262. },
  64263. {
  64264. name: "Maximum",
  64265. height: math.unit(2101, "feet")
  64266. },
  64267. ]
  64268. ))
  64269. characterMakers.push(() => makeCharacter(
  64270. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64271. {
  64272. front: {
  64273. height: math.unit(5 + 4/12, "feet"),
  64274. weight: math.unit(250, "lb"),
  64275. volume: math.unit(20, "gallons"),
  64276. name: "Front",
  64277. image: {
  64278. source: "./media/characters/kira-slime/front.svg",
  64279. extra: 442/403,
  64280. bottom: 18/460
  64281. }
  64282. },
  64283. frontNsfw: {
  64284. height: math.unit(5 + 4/12, "feet"),
  64285. weight: math.unit(250, "lb"),
  64286. volume: math.unit(20, "gallons"),
  64287. name: "Front (NSFW)",
  64288. image: {
  64289. source: "./media/characters/kira-slime/front-nsfw.svg",
  64290. extra: 442/403,
  64291. bottom: 18/460
  64292. }
  64293. },
  64294. },
  64295. [
  64296. {
  64297. name: "Droplet",
  64298. height: math.unit(0.0464452, "feet")
  64299. },
  64300. {
  64301. name: "Pint",
  64302. height: math.unit(0.9824, "feet")
  64303. },
  64304. {
  64305. name: "Bucket",
  64306. height: math.unit(2.83, "feet")
  64307. },
  64308. {
  64309. name: "Normal",
  64310. height: math.unit(5 + 4/12, "feet"),
  64311. default: true
  64312. },
  64313. {
  64314. name: "Tub",
  64315. height: math.unit(8.46614, "feet")
  64316. },
  64317. {
  64318. name: "Pool",
  64319. height: math.unit(31.1895, "feet")
  64320. },
  64321. {
  64322. name: "Pond",
  64323. height: math.unit(170.349, "feet")
  64324. },
  64325. {
  64326. name: "Lake",
  64327. height: math.unit(289334, "feet")
  64328. },
  64329. {
  64330. name: "Ocean",
  64331. height: math.unit(1.11940e+7, "feet")
  64332. },
  64333. ]
  64334. ))
  64335. characterMakers.push(() => makeCharacter(
  64336. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64337. {
  64338. front: {
  64339. height: math.unit(5 + 6/12, "feet"),
  64340. weight: math.unit(120, "lb"),
  64341. name: "Front",
  64342. image: {
  64343. source: "./media/characters/holiday/front.svg",
  64344. extra: 456/403,
  64345. bottom: 4/460
  64346. }
  64347. },
  64348. back: {
  64349. height: math.unit(5 + 6/12, "feet"),
  64350. weight: math.unit(120, "lb"),
  64351. name: "Back",
  64352. image: {
  64353. source: "./media/characters/holiday/back.svg",
  64354. extra: 450/404,
  64355. bottom: 12/462
  64356. }
  64357. },
  64358. head: {
  64359. height: math.unit(2.3, "feet"),
  64360. name: "Head",
  64361. image: {
  64362. source: "./media/characters/holiday/head.svg"
  64363. }
  64364. },
  64365. },
  64366. [
  64367. {
  64368. name: "Normal",
  64369. height: math.unit(5 + 6/12, "feet"),
  64370. default: true
  64371. },
  64372. {
  64373. name: "Macro",
  64374. height: math.unit(6574.25, "feet")
  64375. },
  64376. ]
  64377. ))
  64378. characterMakers.push(() => makeCharacter(
  64379. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64380. {
  64381. front: {
  64382. height: math.unit(6 + 2/12, "feet"),
  64383. weight: math.unit(200, "lb"),
  64384. name: "Front",
  64385. image: {
  64386. source: "./media/characters/camina/front.svg",
  64387. extra: 1048/985,
  64388. bottom: 30/1078
  64389. }
  64390. },
  64391. },
  64392. [
  64393. {
  64394. name: "Normal",
  64395. height: math.unit(6 + 2/12, "feet"),
  64396. default: true
  64397. },
  64398. ]
  64399. ))
  64400. characterMakers.push(() => makeCharacter(
  64401. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64402. {
  64403. front: {
  64404. height: math.unit(30, "cm"),
  64405. weight: math.unit(420, "grams"),
  64406. name: "Front",
  64407. image: {
  64408. source: "./media/characters/smuck/front.svg",
  64409. extra: 379/345,
  64410. bottom: 36/415
  64411. }
  64412. },
  64413. },
  64414. [
  64415. {
  64416. name: "Smuck-Sized",
  64417. height: math.unit(30, "cm"),
  64418. default: true
  64419. },
  64420. ]
  64421. ))
  64422. characterMakers.push(() => makeCharacter(
  64423. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64424. {
  64425. frontSfw: {
  64426. height: math.unit(10, "feet"),
  64427. weight: math.unit(1000, "kg"),
  64428. preyCapacity: math.unit(2, "people"),
  64429. name: "Front (SFW)",
  64430. image: {
  64431. source: "./media/characters/bylur/front-sfw.svg",
  64432. extra: 419/343,
  64433. bottom: 3/422
  64434. },
  64435. default: true
  64436. },
  64437. frontSheath: {
  64438. height: math.unit(10, "feet"),
  64439. weight: math.unit(1000, "kg"),
  64440. preyCapacity: math.unit(2, "people"),
  64441. name: "Front (Sheath)",
  64442. image: {
  64443. source: "./media/characters/bylur/front-sheath.svg",
  64444. extra: 419/343,
  64445. bottom: 3/422
  64446. }
  64447. },
  64448. frontErect: {
  64449. height: math.unit(10, "feet"),
  64450. weight: math.unit(1000, "kg"),
  64451. preyCapacity: math.unit(2, "people"),
  64452. name: "Front (Erect)",
  64453. image: {
  64454. source: "./media/characters/bylur/front-erect.svg",
  64455. extra: 419/343,
  64456. bottom: 3/422
  64457. }
  64458. },
  64459. back: {
  64460. height: math.unit(10, "feet"),
  64461. weight: math.unit(1000, "kg"),
  64462. preyCapacity: math.unit(2, "people"),
  64463. name: "Back",
  64464. image: {
  64465. source: "./media/characters/bylur/back.svg",
  64466. extra: 392/315,
  64467. bottom: 3/395
  64468. }
  64469. },
  64470. maw: {
  64471. height: math.unit(3.65, "feet"),
  64472. name: "Maw",
  64473. image: {
  64474. source: "./media/characters/bylur/maw.svg"
  64475. }
  64476. },
  64477. },
  64478. [
  64479. {
  64480. name: "Slightly Human Sized",
  64481. height: math.unit(10, "feet")
  64482. },
  64483. {
  64484. name: "Normal",
  64485. height: math.unit(35, "feet"),
  64486. default: true
  64487. },
  64488. {
  64489. name: "Macro",
  64490. height: math.unit(130, "feet")
  64491. },
  64492. ]
  64493. ))
  64494. characterMakers.push(() => makeCharacter(
  64495. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64496. {
  64497. frontNsfw: {
  64498. height: math.unit(6, "feet"),
  64499. weight: math.unit(250, "lb"),
  64500. preyCapacity: math.unit(0.05, "people"),
  64501. name: "Front (NSFW)",
  64502. image: {
  64503. source: "./media/characters/oarven/front-nsfw.svg",
  64504. extra: 1795/1783,
  64505. bottom: 142/1937
  64506. }
  64507. },
  64508. frontSfw: {
  64509. height: math.unit(6, "feet"),
  64510. weight: math.unit(250, "lb"),
  64511. preyCapacity: math.unit(0.05, "people"),
  64512. name: "Front (SFW)",
  64513. image: {
  64514. source: "./media/characters/oarven/front-sfw.svg",
  64515. extra: 1795/1783,
  64516. bottom: 142/1937
  64517. }
  64518. },
  64519. },
  64520. [
  64521. {
  64522. name: "Megamacro",
  64523. height: math.unit(5, "miles"),
  64524. default: true
  64525. },
  64526. {
  64527. name: "Maximum Height",
  64528. height: math.unit(5, "AUs")
  64529. },
  64530. ]
  64531. ))
  64532. characterMakers.push(() => makeCharacter(
  64533. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64534. {
  64535. side: {
  64536. height: math.unit(1065, "meters"),
  64537. weight: math.unit(1e12, "kg"),
  64538. volume: math.unit(3265000000, "m^3"),
  64539. name: "Side",
  64540. image: {
  64541. source: "./media/characters/solidarity/side.svg"
  64542. }
  64543. },
  64544. front: {
  64545. height: math.unit(1065, "meters"),
  64546. weight: math.unit(3265000000000, "kg"),
  64547. volume: math.unit(3265000000, "m^3"),
  64548. name: "Front",
  64549. image: {
  64550. source: "./media/characters/solidarity/front.svg"
  64551. }
  64552. },
  64553. top: {
  64554. height: math.unit(5823, "meters"),
  64555. weight: math.unit(3265000000000, "kg"),
  64556. volume: math.unit(3265000000, "m^3"),
  64557. name: "Top",
  64558. image: {
  64559. source: "./media/characters/solidarity/top.svg"
  64560. }
  64561. },
  64562. },
  64563. [
  64564. {
  64565. name: "Normal",
  64566. height: math.unit(1065, "meters"),
  64567. default: true
  64568. },
  64569. ]
  64570. ))
  64571. characterMakers.push(() => makeCharacter(
  64572. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64573. {
  64574. side: {
  64575. height: math.unit(18 + 4/12, "feet"),
  64576. weight: math.unit(13000, "kg"),
  64577. name: "Side",
  64578. image: {
  64579. source: "./media/characters/ani'szi/side.svg",
  64580. extra: 468/459,
  64581. bottom: 60/528
  64582. }
  64583. },
  64584. head: {
  64585. height: math.unit(4.8, "feet"),
  64586. name: "Head",
  64587. image: {
  64588. source: "./media/characters/ani'szi/head.svg"
  64589. }
  64590. },
  64591. jaws: {
  64592. height: math.unit(2.25, "feet"),
  64593. name: "Jaws",
  64594. image: {
  64595. source: "./media/characters/ani'szi/jaws.svg"
  64596. }
  64597. },
  64598. bust: {
  64599. height: math.unit(8.9, "feet"),
  64600. name: "Bust",
  64601. image: {
  64602. source: "./media/characters/ani'szi/bust.svg"
  64603. }
  64604. },
  64605. back: {
  64606. height: math.unit(13.53, "feet"),
  64607. name: "Back",
  64608. image: {
  64609. source: "./media/characters/ani'szi/back.svg"
  64610. }
  64611. },
  64612. eye: {
  64613. height: math.unit(0.44, "feet"),
  64614. name: "Eye",
  64615. image: {
  64616. source: "./media/characters/ani'szi/eye.svg"
  64617. }
  64618. },
  64619. },
  64620. [
  64621. {
  64622. name: "Normal",
  64623. height: math.unit(18 + 4/12, "feet"),
  64624. default: true
  64625. },
  64626. ]
  64627. ))
  64628. characterMakers.push(() => makeCharacter(
  64629. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64630. {
  64631. front: {
  64632. height: math.unit(7 + 6/12, "feet"),
  64633. weight: math.unit(300, "lb"),
  64634. name: "Front",
  64635. image: {
  64636. source: "./media/characters/rain/front.svg",
  64637. extra: 2955/2698,
  64638. bottom: 235/3190
  64639. }
  64640. },
  64641. dressed: {
  64642. height: math.unit(7 + 6/12, "feet"),
  64643. weight: math.unit(300, "lb"),
  64644. name: "Dressed",
  64645. image: {
  64646. source: "./media/characters/rain/dressed.svg",
  64647. extra: 2783/2572,
  64648. bottom: 430/3213
  64649. }
  64650. },
  64651. },
  64652. [
  64653. {
  64654. name: "Normal",
  64655. height: math.unit(7 + 6/12, "feet"),
  64656. default: true
  64657. },
  64658. {
  64659. name: "Macro",
  64660. height: math.unit(200, "feet")
  64661. },
  64662. {
  64663. name: "Macro+",
  64664. height: math.unit(500, "feet")
  64665. },
  64666. {
  64667. name: "Megamacro",
  64668. height: math.unit(5, "miles")
  64669. },
  64670. ]
  64671. ))
  64672. characterMakers.push(() => makeCharacter(
  64673. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64674. {
  64675. taur_side: {
  64676. height: math.unit(3, "meters"),
  64677. name: "Side",
  64678. image: {
  64679. source: "./media/characters/anise/taur-side.svg",
  64680. extra: 1833/926,
  64681. bottom: 134/1967
  64682. },
  64683. form: "taur",
  64684. default: true
  64685. },
  64686. feral_side: {
  64687. height: math.unit(3, "meters"),
  64688. name: "Side",
  64689. image: {
  64690. source: "./media/characters/anise/feral-side.svg",
  64691. extra: 681/349,
  64692. bottom: 26/707
  64693. },
  64694. form: "feral"
  64695. },
  64696. },
  64697. [
  64698. {
  64699. name: "Normal",
  64700. height: math.unit(3, "meters"),
  64701. default: true,
  64702. allForms: true
  64703. },
  64704. ],
  64705. {
  64706. "taur": {
  64707. name: "Taur",
  64708. default: true
  64709. },
  64710. "feral": {
  64711. name: "Feral",
  64712. },
  64713. }
  64714. ))
  64715. characterMakers.push(() => makeCharacter(
  64716. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64717. {
  64718. front: {
  64719. height: math.unit(1.9, "meters"),
  64720. weight: math.unit(75, "kg"),
  64721. name: "Front",
  64722. image: {
  64723. source: "./media/characters/sarina/front.svg",
  64724. extra: 1275/1200,
  64725. bottom: 49/1324
  64726. }
  64727. },
  64728. back: {
  64729. height: math.unit(1.9, "meters"),
  64730. weight: math.unit(75, "kg"),
  64731. name: "Back",
  64732. image: {
  64733. source: "./media/characters/sarina/back.svg",
  64734. extra: 1279/1209,
  64735. bottom: 14/1293
  64736. }
  64737. },
  64738. dressed: {
  64739. height: math.unit(1.9, "meters"),
  64740. weight: math.unit(75, "kg"),
  64741. name: "Dressed",
  64742. image: {
  64743. source: "./media/characters/sarina/dressed.svg",
  64744. extra: 1256/1187,
  64745. bottom: 56/1312
  64746. }
  64747. },
  64748. paw: {
  64749. height: math.unit(0.57, "feet"),
  64750. name: "Paw",
  64751. image: {
  64752. source: "./media/characters/sarina/paw.svg"
  64753. }
  64754. },
  64755. toering: {
  64756. height: math.unit(0.27, "feet"),
  64757. name: "Toering",
  64758. image: {
  64759. source: "./media/characters/sarina/toering.svg"
  64760. }
  64761. },
  64762. },
  64763. [
  64764. {
  64765. name: "Incognito",
  64766. height: math.unit(1.9, "meters")
  64767. },
  64768. {
  64769. name: "Home Size",
  64770. height: math.unit(160, "meters"),
  64771. default: true
  64772. },
  64773. {
  64774. name: "Mega",
  64775. height: math.unit(50, "km")
  64776. },
  64777. {
  64778. name: "Small Giga",
  64779. height: math.unit(250, "km")
  64780. },
  64781. {
  64782. name: "Giga (Preferred Size)",
  64783. height: math.unit(3000, "km")
  64784. },
  64785. {
  64786. name: "Terra",
  64787. height: math.unit(40000, "km")
  64788. },
  64789. {
  64790. name: "Terra+",
  64791. height: math.unit(400000, "km")
  64792. },
  64793. {
  64794. name: "Solar",
  64795. height: math.unit(35e6, "km")
  64796. },
  64797. {
  64798. name: "Galactic",
  64799. height: math.unit(648106, "parsecs")
  64800. },
  64801. {
  64802. name: "Universal",
  64803. height: math.unit(7, "universes")
  64804. },
  64805. {
  64806. name: "Universal+",
  64807. height: math.unit(30, "universes")
  64808. },
  64809. ]
  64810. ))
  64811. characterMakers.push(() => makeCharacter(
  64812. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64813. {
  64814. front: {
  64815. height: math.unit(5 + 6/12, "feet"),
  64816. name: "Front",
  64817. image: {
  64818. source: "./media/characters/sifray/front.svg",
  64819. extra: 722/691,
  64820. bottom: 64/786
  64821. }
  64822. },
  64823. },
  64824. [
  64825. {
  64826. name: "Normal",
  64827. height: math.unit(5 + 6/12, "feet"),
  64828. default: true
  64829. },
  64830. ]
  64831. ))
  64832. characterMakers.push(() => makeCharacter(
  64833. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64834. {
  64835. side: {
  64836. height: math.unit(2.64, "feet"),
  64837. weight: math.unit(100, "lb"),
  64838. preyCapacity: math.unit(3, "people"),
  64839. name: "Side",
  64840. image: {
  64841. source: "./media/characters/spots/side.svg",
  64842. extra: 1859/977,
  64843. bottom: 19/1878
  64844. },
  64845. extraAttributes: {
  64846. "preyPerMinute": {
  64847. name: "Prey Per Minute",
  64848. power: 3,
  64849. type: "volume",
  64850. base: math.unit(6, "people"),
  64851. defaultUnit: "people"
  64852. },
  64853. "preyPerDay": {
  64854. name: "Prey Per Day",
  64855. power: 3,
  64856. type: "volume",
  64857. base: math.unit(6 * 60 * 24, "people"),
  64858. defaultUnit: "people"
  64859. },
  64860. }
  64861. },
  64862. },
  64863. [
  64864. {
  64865. name: "Normal",
  64866. height: math.unit(2.64, "feet"),
  64867. default: true
  64868. },
  64869. ]
  64870. ))
  64871. characterMakers.push(() => makeCharacter(
  64872. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64873. {
  64874. front: {
  64875. height: math.unit(29 + 11/12, "feet"),
  64876. weight: math.unit(40, "tons"),
  64877. name: "Front",
  64878. image: {
  64879. source: "./media/characters/mona/front.svg",
  64880. extra: 1257/1116,
  64881. bottom: 34/1291
  64882. }
  64883. },
  64884. },
  64885. [
  64886. {
  64887. name: "Normal",
  64888. height: math.unit(29 + 11/12, "feet"),
  64889. default: true
  64890. },
  64891. ]
  64892. ))
  64893. characterMakers.push(() => makeCharacter(
  64894. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64895. {
  64896. front: {
  64897. height: math.unit(15, "feet"),
  64898. weight: math.unit(3000, "kg"),
  64899. preyCapacity: math.unit(5, "people"),
  64900. name: "Front",
  64901. image: {
  64902. source: "./media/characters/frostfire/front.svg",
  64903. extra: 675/558,
  64904. bottom: 73/748
  64905. }
  64906. },
  64907. side: {
  64908. height: math.unit(15, "feet"),
  64909. weight: math.unit(3000, "kg"),
  64910. preyCapacity: math.unit(5, "people"),
  64911. name: "Side",
  64912. image: {
  64913. source: "./media/characters/frostfire/side.svg",
  64914. extra: 687/585,
  64915. bottom: 50/737
  64916. }
  64917. },
  64918. back: {
  64919. height: math.unit(15, "feet"),
  64920. weight: math.unit(3000, "kg"),
  64921. preyCapacity: math.unit(5, "people"),
  64922. name: "Back",
  64923. image: {
  64924. source: "./media/characters/frostfire/back.svg",
  64925. extra: 707/607,
  64926. bottom: 16/723
  64927. }
  64928. },
  64929. head: {
  64930. height: math.unit(9.35, "feet"),
  64931. name: "Head",
  64932. image: {
  64933. source: "./media/characters/frostfire/head.svg"
  64934. }
  64935. },
  64936. maw: {
  64937. height: math.unit(3.32, "feet"),
  64938. name: "Maw",
  64939. image: {
  64940. source: "./media/characters/frostfire/maw.svg"
  64941. }
  64942. },
  64943. hand: {
  64944. height: math.unit(3.7, "feet"),
  64945. name: "Hand",
  64946. image: {
  64947. source: "./media/characters/frostfire/hand.svg"
  64948. }
  64949. },
  64950. paw: {
  64951. height: math.unit(5.8, "feet"),
  64952. name: "Paw",
  64953. image: {
  64954. source: "./media/characters/frostfire/paw.svg"
  64955. }
  64956. },
  64957. },
  64958. [
  64959. {
  64960. name: "Normal",
  64961. height: math.unit(15, "feet"),
  64962. default: true
  64963. },
  64964. ]
  64965. ))
  64966. characterMakers.push(() => makeCharacter(
  64967. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64968. {
  64969. front: {
  64970. height: math.unit(5 + 2/12, "feet"),
  64971. weight: math.unit(122, "lb"),
  64972. name: "Front",
  64973. image: {
  64974. source: "./media/characters/valeroo/front.svg",
  64975. extra: 1789/1534,
  64976. bottom: 66/1855
  64977. }
  64978. },
  64979. back: {
  64980. height: math.unit(5 + 2/12, "feet"),
  64981. weight: math.unit(122, "lb"),
  64982. name: "Back",
  64983. image: {
  64984. source: "./media/characters/valeroo/back.svg",
  64985. extra: 1848/1588,
  64986. bottom: 68/1916
  64987. }
  64988. },
  64989. head: {
  64990. height: math.unit(1.87, "feet"),
  64991. name: "Head",
  64992. image: {
  64993. source: "./media/characters/valeroo/head.svg"
  64994. }
  64995. },
  64996. hand: {
  64997. height: math.unit(0.82, "feet"),
  64998. name: "Hand",
  64999. image: {
  65000. source: "./media/characters/valeroo/hand.svg"
  65001. }
  65002. },
  65003. foot: {
  65004. height: math.unit(2.42, "feet"),
  65005. name: "Foot",
  65006. image: {
  65007. source: "./media/characters/valeroo/foot.svg"
  65008. }
  65009. },
  65010. },
  65011. [
  65012. {
  65013. name: "Normal",
  65014. height: math.unit(5 + 2/12, "feet"),
  65015. default: true
  65016. },
  65017. ]
  65018. ))
  65019. characterMakers.push(() => makeCharacter(
  65020. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65021. {
  65022. front: {
  65023. height: math.unit(11 + 3/12, "feet"),
  65024. name: "Front",
  65025. image: {
  65026. source: "./media/characters/corrin/front.svg",
  65027. extra: 665/597,
  65028. bottom: 74/739
  65029. }
  65030. },
  65031. },
  65032. [
  65033. {
  65034. name: "Standard",
  65035. height: math.unit(11 + 3/12, "feet"),
  65036. default: true
  65037. },
  65038. {
  65039. name: "The Boss",
  65040. height: math.unit(110, "feet")
  65041. },
  65042. {
  65043. name: "Shipbreaker",
  65044. height: math.unit(38, "km")
  65045. },
  65046. ]
  65047. ))
  65048. characterMakers.push(() => makeCharacter(
  65049. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65050. {
  65051. front: {
  65052. height: math.unit(10, "feet"),
  65053. weight: math.unit(1750, "lb"),
  65054. name: "Front",
  65055. image: {
  65056. source: "./media/characters/kiba-ulrich/front.svg",
  65057. extra: 1037/973,
  65058. bottom: 36/1073
  65059. }
  65060. },
  65061. },
  65062. [
  65063. {
  65064. name: "Normal",
  65065. height: math.unit(10, "feet"),
  65066. default: true
  65067. },
  65068. {
  65069. name: "Minimacro",
  65070. height: math.unit(20, "feet")
  65071. },
  65072. {
  65073. name: "Macro",
  65074. height: math.unit(200, "feet")
  65075. },
  65076. {
  65077. name: "Megamacro",
  65078. height: math.unit(22500, "feet")
  65079. },
  65080. {
  65081. name: "Gigamacro",
  65082. height: math.unit(2700, "miles")
  65083. },
  65084. {
  65085. name: "Teramacro",
  65086. height: math.unit(10000, "miles")
  65087. },
  65088. ]
  65089. ))
  65090. characterMakers.push(() => makeCharacter(
  65091. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65092. {
  65093. gryphon_front: {
  65094. height: math.unit(220, "cm"),
  65095. weight: math.unit(160, "kg"),
  65096. name: "Front",
  65097. image: {
  65098. source: "./media/characters/ceanoth/gryphon-front.svg",
  65099. extra: 616/552,
  65100. bottom: 33/649
  65101. },
  65102. form: "gryphon",
  65103. default: true
  65104. },
  65105. },
  65106. [
  65107. {
  65108. name: "Normal",
  65109. height: math.unit(220, "cm"),
  65110. form: "gryphon",
  65111. default: true
  65112. },
  65113. ],
  65114. {
  65115. "gryphon": {
  65116. name: "Grpyhon",
  65117. default: true
  65118. },
  65119. }
  65120. ))
  65121. characterMakers.push(() => makeCharacter(
  65122. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65123. {
  65124. dressed: {
  65125. height: math.unit(2.2 * 0.79, "meters"),
  65126. weight: math.unit(0.5, "tonnes"),
  65127. name: "Dressed",
  65128. image: {
  65129. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65130. extra: 665/315,
  65131. bottom: 106/771
  65132. },
  65133. extraAttributes: {
  65134. "bodyLength": {
  65135. name: "Body Length",
  65136. power: 1,
  65137. type: "length",
  65138. base: math.unit(2.5, "meters")
  65139. },
  65140. "tailLength": {
  65141. name: "Tail Length",
  65142. power: 1,
  65143. type: "length",
  65144. base: math.unit(4.5, "meters")
  65145. },
  65146. "wingspan": {
  65147. name: "Wingspan",
  65148. power: 1,
  65149. type: "length",
  65150. base: math.unit(6, "meters")
  65151. },
  65152. "taurStomachCapacity": {
  65153. name: "Taur Stomach Capacity",
  65154. power: 3,
  65155. type: "volume",
  65156. base: math.unit(4, "people"),
  65157. defaultUnit: "people"
  65158. },
  65159. "anthroStomachCapacity": {
  65160. name: "Anthro Stomach Capacity",
  65161. power: 3,
  65162. type: "volume",
  65163. base: math.unit(1, "people"),
  65164. defaultUnit: "people"
  65165. },
  65166. }
  65167. },
  65168. nude: {
  65169. height: math.unit(2.2 * 0.79, "meters"),
  65170. weight: math.unit(0.5, "tonnes"),
  65171. name: "Nude",
  65172. image: {
  65173. source: "./media/characters/vanadiya-athelya/nude.svg",
  65174. extra: 665/315,
  65175. bottom: 106/771
  65176. },
  65177. extraAttributes: {
  65178. "bodyLength": {
  65179. name: "Body Length",
  65180. power: 1,
  65181. type: "length",
  65182. base: math.unit(2.5, "meters")
  65183. },
  65184. "tailLength": {
  65185. name: "Tail Length",
  65186. power: 1,
  65187. type: "length",
  65188. base: math.unit(4.5, "meters")
  65189. },
  65190. "wingspan": {
  65191. name: "Wingspan",
  65192. power: 1,
  65193. type: "length",
  65194. base: math.unit(6, "meters")
  65195. },
  65196. "taurStomachCapacity": {
  65197. name: "Taur Stomach Capacity",
  65198. power: 3,
  65199. type: "volume",
  65200. base: math.unit(4, "people"),
  65201. defaultUnit: "people"
  65202. },
  65203. "anthroStomachCapacity": {
  65204. name: "Anthro Stomach Capacity",
  65205. power: 3,
  65206. type: "volume",
  65207. base: math.unit(1, "people"),
  65208. defaultUnit: "people"
  65209. },
  65210. }
  65211. },
  65212. },
  65213. [
  65214. {
  65215. name: "Handheld",
  65216. height: math.unit(0.79 * 0.06, "meters")
  65217. },
  65218. {
  65219. name: "Mini",
  65220. height: math.unit(0.79 * 0.7, "meters")
  65221. },
  65222. {
  65223. name: "Short",
  65224. height: math.unit(0.79 * 1.4, "meters")
  65225. },
  65226. {
  65227. name: "Imposing",
  65228. height: math.unit(0.79 * 2.2, "meters"),
  65229. default: true
  65230. },
  65231. {
  65232. name: "Big",
  65233. height: math.unit(0.79 * 3.8, "meters")
  65234. },
  65235. {
  65236. name: "Giant",
  65237. height: math.unit(0.79 * 6.7, "meters")
  65238. },
  65239. {
  65240. name: "Airliner",
  65241. height: math.unit(0.79 * 64, "meters")
  65242. },
  65243. {
  65244. name: "Skyscraper",
  65245. height: math.unit(0.79 * 220, "meters")
  65246. },
  65247. {
  65248. name: "Mountain",
  65249. height: math.unit(0.79 * 3.6, "km")
  65250. },
  65251. {
  65252. name: "Spacescraper",
  65253. height: math.unit(0.79 * 70, "km")
  65254. },
  65255. {
  65256. name: "Continental",
  65257. height: math.unit(0.79 * 1290, "km")
  65258. },
  65259. {
  65260. name: "Moon",
  65261. height: math.unit(0.79 * 32200, "km")
  65262. },
  65263. {
  65264. name: "Planetary",
  65265. height: math.unit(0.79 * 145000, "km")
  65266. },
  65267. {
  65268. name: "Stellar",
  65269. height: math.unit(0.79 * 19e6, "km")
  65270. },
  65271. {
  65272. name: "Solar",
  65273. height: math.unit(0.79 * 40, "AU")
  65274. },
  65275. {
  65276. name: "Intersteller",
  65277. height: math.unit(0.79 * 3, "lightyears")
  65278. },
  65279. {
  65280. name: "Star Cluster",
  65281. height: math.unit(0.79 * 80, "lightyears")
  65282. },
  65283. {
  65284. name: "Ecumenical",
  65285. height: math.unit(0.79 * 2e3, "lightyears")
  65286. },
  65287. {
  65288. name: "Galactic",
  65289. height: math.unit(0.79 * 175000, "lightyears")
  65290. },
  65291. {
  65292. name: "Galaxy Cluster",
  65293. height: math.unit(0.79 * 25e6, "lightyears")
  65294. },
  65295. ]
  65296. ))
  65297. characterMakers.push(() => makeCharacter(
  65298. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65299. {
  65300. front: {
  65301. height: math.unit(6 + 2/12, "feet"),
  65302. weight: math.unit(160, "lb"),
  65303. name: "Front",
  65304. image: {
  65305. source: "./media/characters/yana-amelin/front.svg",
  65306. extra: 1413/1295,
  65307. bottom: 42/1455
  65308. }
  65309. },
  65310. back: {
  65311. height: math.unit(6 + 2/12, "feet"),
  65312. weight: math.unit(160, "lb"),
  65313. name: "Back",
  65314. image: {
  65315. source: "./media/characters/yana-amelin/back.svg",
  65316. extra: 1424/1310,
  65317. bottom: 24/1448
  65318. }
  65319. },
  65320. paws: {
  65321. height: math.unit(1.48, "feet"),
  65322. name: "Paws",
  65323. image: {
  65324. source: "./media/characters/yana-amelin/paws.svg",
  65325. extra: 304/304,
  65326. bottom: 49/353
  65327. }
  65328. },
  65329. },
  65330. [
  65331. {
  65332. name: "Micro",
  65333. height: math.unit(4, "inches")
  65334. },
  65335. {
  65336. name: "Normal",
  65337. height: math.unit(6 + 2/12, "feet"),
  65338. default: true
  65339. },
  65340. {
  65341. name: "Minimacro",
  65342. height: math.unit(20, "feet")
  65343. },
  65344. {
  65345. name: "Macro",
  65346. height: math.unit(70, "feet")
  65347. },
  65348. ]
  65349. ))
  65350. characterMakers.push(() => makeCharacter(
  65351. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65352. {
  65353. frontNsfw: {
  65354. height: math.unit(2.48, "meters"),
  65355. weight: math.unit(112, "kg"),
  65356. name: "Front (NSFW)",
  65357. image: {
  65358. source: "./media/characters/titania/front-nsfw.svg",
  65359. extra: 1302/1232,
  65360. bottom: 90/1392
  65361. }
  65362. },
  65363. backNsfw: {
  65364. height: math.unit(2.48, "meters"),
  65365. weight: math.unit(112, "kg"),
  65366. name: "Back (NSFW)",
  65367. image: {
  65368. source: "./media/characters/titania/back-nsfw.svg",
  65369. extra: 1355/1288,
  65370. bottom: 18/1373
  65371. }
  65372. },
  65373. frontSfw: {
  65374. height: math.unit(2.48, "meters"),
  65375. weight: math.unit(112, "kg"),
  65376. name: "Front (SFW)",
  65377. image: {
  65378. source: "./media/characters/titania/front-sfw.svg",
  65379. extra: 1302/1232,
  65380. bottom: 90/1392
  65381. }
  65382. },
  65383. backSfw: {
  65384. height: math.unit(2.48, "meters"),
  65385. weight: math.unit(112, "kg"),
  65386. name: "Back (SFW)",
  65387. image: {
  65388. source: "./media/characters/titania/back-sfw.svg",
  65389. extra: 1355/1288,
  65390. bottom: 18/1373
  65391. }
  65392. },
  65393. head: {
  65394. height: math.unit(2.06, "feet"),
  65395. name: "Head",
  65396. image: {
  65397. source: "./media/characters/titania/head.svg"
  65398. }
  65399. },
  65400. maw: {
  65401. height: math.unit(0.8, "feet"),
  65402. name: "Maw",
  65403. image: {
  65404. source: "./media/characters/titania/maw.svg"
  65405. }
  65406. },
  65407. foot: {
  65408. height: math.unit(1.65, "feet"),
  65409. name: "Foot",
  65410. image: {
  65411. source: "./media/characters/titania/foot.svg"
  65412. }
  65413. },
  65414. nethers: {
  65415. height: math.unit(1.7, "feet"),
  65416. name: "Nethers",
  65417. image: {
  65418. source: "./media/characters/titania/nethers.svg"
  65419. }
  65420. },
  65421. },
  65422. [
  65423. {
  65424. name: "Normal",
  65425. height: math.unit(2.48, "meters"),
  65426. default: true
  65427. },
  65428. {
  65429. name: "Mini Macro",
  65430. height: math.unit(248, "meters")
  65431. },
  65432. {
  65433. name: "Macro",
  65434. height: math.unit(620, "meters")
  65435. },
  65436. {
  65437. name: "Mega Macro",
  65438. height: math.unit(1860, "meters")
  65439. },
  65440. ]
  65441. ))
  65442. characterMakers.push(() => makeCharacter(
  65443. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65444. {
  65445. front: {
  65446. height: math.unit(5 + 9/12, "feet"),
  65447. weight: math.unit(1500, "lb"),
  65448. name: "Front",
  65449. image: {
  65450. source: "./media/characters/tony-gray/front.svg",
  65451. extra: 700/575,
  65452. bottom: 71/771
  65453. }
  65454. },
  65455. },
  65456. [
  65457. {
  65458. name: "Normal",
  65459. height: math.unit(5 + 9/12, "feet"),
  65460. default: true
  65461. },
  65462. ]
  65463. ))
  65464. characterMakers.push(() => makeCharacter(
  65465. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65466. {
  65467. side: {
  65468. height: math.unit(8 + 2/12, "feet"),
  65469. name: "Side",
  65470. image: {
  65471. source: "./media/characters/kelby/side.svg",
  65472. extra: 804/578,
  65473. bottom: 70/874
  65474. },
  65475. form: "regular",
  65476. default: true
  65477. },
  65478. lounging: {
  65479. height: math.unit(12.41, "feet"),
  65480. name: "Lounging",
  65481. image: {
  65482. source: "./media/characters/kelby/lounging.svg"
  65483. },
  65484. form: "regular"
  65485. },
  65486. maw: {
  65487. height: math.unit(5, "feet"),
  65488. name: "Maw",
  65489. image: {
  65490. source: "./media/characters/kelby/maw.svg"
  65491. },
  65492. form: "regular"
  65493. },
  65494. dick: {
  65495. height: math.unit(2.4, "feet"),
  65496. name: "Dick",
  65497. image: {
  65498. source: "./media/characters/kelby/dick.svg"
  65499. },
  65500. form: "regular"
  65501. },
  65502. slit: {
  65503. height: math.unit(1.2, "feet"),
  65504. name: "Slit",
  65505. image: {
  65506. source: "./media/characters/kelby/slit.svg"
  65507. },
  65508. form: "regular"
  65509. },
  65510. chibi: {
  65511. height: math.unit(5, "feet"),
  65512. name: "Chibi",
  65513. image: {
  65514. source: "./media/characters/kelby/chibi.svg",
  65515. extra: 245/200,
  65516. bottom: 43/288
  65517. },
  65518. form: "chibi",
  65519. default: true
  65520. },
  65521. },
  65522. [
  65523. {
  65524. name: "Normal",
  65525. height: math.unit(8 + 2/12, "feet"),
  65526. default: true,
  65527. form: "regular"
  65528. },
  65529. {
  65530. name: "Normal",
  65531. height: math.unit(5, "feet"),
  65532. default: true,
  65533. form: "chibi"
  65534. },
  65535. ],
  65536. {
  65537. "regular": {
  65538. name: "Regular",
  65539. default: true
  65540. },
  65541. "chibi": {
  65542. name: "Chibi",
  65543. },
  65544. }
  65545. ))
  65546. characterMakers.push(() => makeCharacter(
  65547. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65548. {
  65549. front: {
  65550. height: math.unit(7 + 10/12, "feet"),
  65551. weight: math.unit(300, "lb"),
  65552. name: "Front",
  65553. image: {
  65554. source: "./media/characters/elisa-mitchell/front.svg",
  65555. extra: 2562/2355,
  65556. bottom: 62/2624
  65557. }
  65558. },
  65559. maw: {
  65560. height: math.unit(2.37, "feet"),
  65561. name: "Maw",
  65562. image: {
  65563. source: "./media/characters/elisa-mitchell/maw.svg"
  65564. }
  65565. },
  65566. },
  65567. [
  65568. {
  65569. name: "Normal",
  65570. height: math.unit(7 + 10/12, "feet"),
  65571. default: true
  65572. },
  65573. {
  65574. name: "Macro",
  65575. height: math.unit(1490, "feet"),
  65576. default: true
  65577. },
  65578. ]
  65579. ))
  65580. characterMakers.push(() => makeCharacter(
  65581. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65582. {
  65583. front: {
  65584. height: math.unit(122, "cm"),
  65585. weight: math.unit(40, "lb"),
  65586. name: "Front",
  65587. image: {
  65588. source: "./media/characters/camia-vertigo-zott/front.svg",
  65589. extra: 2112/1902,
  65590. bottom: 21/2133
  65591. }
  65592. },
  65593. },
  65594. [
  65595. {
  65596. name: "Base Height",
  65597. height: math.unit(122, "cm")
  65598. },
  65599. {
  65600. name: "Macro Height",
  65601. height: math.unit(345, "meters"),
  65602. default: true
  65603. },
  65604. ]
  65605. ))
  65606. characterMakers.push(() => makeCharacter(
  65607. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65608. {
  65609. front: {
  65610. height: math.unit(6 + 3/12, "feet"),
  65611. weight: math.unit(180, "lb"),
  65612. name: "Front",
  65613. image: {
  65614. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65615. extra: 2580/2457,
  65616. bottom: 131/2711
  65617. }
  65618. },
  65619. },
  65620. [
  65621. {
  65622. name: "Normal",
  65623. height: math.unit(6 + 3/12, "feet"),
  65624. default: true
  65625. },
  65626. ]
  65627. ))
  65628. characterMakers.push(() => makeCharacter(
  65629. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65630. {
  65631. front: {
  65632. height: math.unit(165, "cm"),
  65633. weight: math.unit(130, "lb"),
  65634. name: "Front",
  65635. image: {
  65636. source: "./media/characters/sleeka/front.svg",
  65637. extra: 1252/1200,
  65638. bottom: 46/1298
  65639. }
  65640. },
  65641. },
  65642. [
  65643. {
  65644. name: "Normal",
  65645. height: math.unit(165, "cm")
  65646. },
  65647. {
  65648. name: "Galactic",
  65649. height: math.unit(5.8e22, "meters"),
  65650. default: true
  65651. },
  65652. {
  65653. name: "Universal",
  65654. height: math.unit(1.02e29, "meters")
  65655. },
  65656. ]
  65657. ))
  65658. characterMakers.push(() => makeCharacter(
  65659. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65660. {
  65661. front: {
  65662. height: math.unit(5 + 11/12, "feet"),
  65663. weight: math.unit(145, "lb"),
  65664. name: "Front",
  65665. image: {
  65666. source: "./media/characters/emily-whitetail/front.svg",
  65667. extra: 2510/2280,
  65668. bottom: 128/2638
  65669. }
  65670. },
  65671. },
  65672. [
  65673. {
  65674. name: "Normal",
  65675. height: math.unit(5 + 11/12, "feet")
  65676. },
  65677. {
  65678. name: "Galactic",
  65679. height: math.unit(6.3e22, "meters"),
  65680. default: true
  65681. },
  65682. {
  65683. name: "Universal",
  65684. height: math.unit(1.12e29, "meters")
  65685. },
  65686. ]
  65687. ))
  65688. characterMakers.push(() => makeCharacter(
  65689. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65690. {
  65691. front: {
  65692. height: math.unit(5 + 4/12, "feet"),
  65693. weight: math.unit(110, "lb"),
  65694. name: "Front",
  65695. image: {
  65696. source: "./media/characters/buck-whitetail/front.svg",
  65697. extra: 2430/2186,
  65698. bottom: 125/2555
  65699. }
  65700. },
  65701. },
  65702. [
  65703. {
  65704. name: "Normal",
  65705. height: math.unit(5 + 4/12, "feet")
  65706. },
  65707. {
  65708. name: "Galactic",
  65709. height: math.unit(5.4e22, "meters"),
  65710. default: true
  65711. },
  65712. {
  65713. name: "Universal",
  65714. height: math.unit(9.6e28, "meters")
  65715. },
  65716. ]
  65717. ))
  65718. characterMakers.push(() => makeCharacter(
  65719. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65720. {
  65721. front: {
  65722. height: math.unit(5 + 3/12, "feet"),
  65723. name: "Front",
  65724. image: {
  65725. source: "./media/characters/zoey-frisk/front.svg",
  65726. extra: 2825/2646,
  65727. bottom: 57/2882
  65728. }
  65729. },
  65730. },
  65731. [
  65732. {
  65733. name: "Normal",
  65734. height: math.unit(5 + 3/12, "feet"),
  65735. default: true
  65736. },
  65737. {
  65738. name: "Macro",
  65739. height: math.unit(800, "feet")
  65740. },
  65741. ]
  65742. ))
  65743. characterMakers.push(() => makeCharacter(
  65744. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65745. {
  65746. front: {
  65747. height: math.unit(210, "cm"),
  65748. weight: math.unit(102, "kg"),
  65749. name: "Front",
  65750. image: {
  65751. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65752. extra: 831/790,
  65753. bottom: 19/850
  65754. }
  65755. },
  65756. },
  65757. [
  65758. {
  65759. name: "Micro",
  65760. height: math.unit(1, "mm")
  65761. },
  65762. {
  65763. name: "Small",
  65764. height: math.unit(1, "cm")
  65765. },
  65766. {
  65767. name: "Short",
  65768. height: math.unit(1, "foot")
  65769. },
  65770. {
  65771. name: "Normal",
  65772. height: math.unit(210, "cm"),
  65773. default: true
  65774. },
  65775. {
  65776. name: "Big",
  65777. height: math.unit(15, "feet")
  65778. },
  65779. {
  65780. name: "Macro",
  65781. height: math.unit(50, "feet")
  65782. },
  65783. ]
  65784. ))
  65785. characterMakers.push(() => makeCharacter(
  65786. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65787. {
  65788. front: {
  65789. height: math.unit(80, "feet"),
  65790. weight: math.unit(410000, "lb"),
  65791. name: "Front",
  65792. image: {
  65793. source: "./media/characters/trouble/front.svg",
  65794. extra: 780/723,
  65795. bottom: 11/791
  65796. },
  65797. extraAttributes: {
  65798. "pawArea": {
  65799. name: "Paw Area",
  65800. power: 2,
  65801. type: "area",
  65802. base: math.unit(49, "feet^2")
  65803. },
  65804. }
  65805. },
  65806. },
  65807. [
  65808. {
  65809. name: "Normal",
  65810. height: math.unit(80, "feet"),
  65811. default: true
  65812. },
  65813. ]
  65814. ))
  65815. characterMakers.push(() => makeCharacter(
  65816. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65817. {
  65818. front: {
  65819. height: math.unit(5 + 7/12, "feet"),
  65820. weight: math.unit(140, "lb"),
  65821. name: "Front",
  65822. image: {
  65823. source: "./media/characters/bastion-aralus/front.svg",
  65824. extra: 1122/1045,
  65825. bottom: 24/1146
  65826. }
  65827. },
  65828. back: {
  65829. height: math.unit(5 + 7/12, "feet"),
  65830. weight: math.unit(140, "lb"),
  65831. name: "Back",
  65832. image: {
  65833. source: "./media/characters/bastion-aralus/back.svg",
  65834. extra: 1158/1078,
  65835. bottom: 39/1197
  65836. }
  65837. },
  65838. dick: {
  65839. height: math.unit(1.16, "feet"),
  65840. name: "Dick",
  65841. image: {
  65842. source: "./media/characters/bastion-aralus/dick.svg"
  65843. }
  65844. },
  65845. },
  65846. [
  65847. {
  65848. name: "Micro",
  65849. height: math.unit(1, "mm")
  65850. },
  65851. {
  65852. name: "Normal",
  65853. height: math.unit(5 + 7/12, "feet"),
  65854. default: true
  65855. },
  65856. {
  65857. name: "Macro",
  65858. height: math.unit(57, "feet")
  65859. },
  65860. ]
  65861. ))
  65862. characterMakers.push(() => makeCharacter(
  65863. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65864. {
  65865. sona_front: {
  65866. height: math.unit(6, "feet"),
  65867. weight: math.unit(350, "lb"),
  65868. name: "Front",
  65869. image: {
  65870. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65871. extra: 1099/1005,
  65872. bottom: 22/1121
  65873. },
  65874. form: "sona",
  65875. default: true
  65876. },
  65877. sona_side: {
  65878. height: math.unit(6, "feet"),
  65879. weight: math.unit(350, "lb"),
  65880. name: "Side",
  65881. image: {
  65882. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65883. extra: 1075/1017,
  65884. bottom: 20/1095
  65885. },
  65886. form: "sona",
  65887. },
  65888. character_front: {
  65889. height: math.unit(6, "feet"),
  65890. weight: math.unit(300, "lb"),
  65891. name: "Front",
  65892. image: {
  65893. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65894. extra: 1099/1005,
  65895. bottom: 22/1121
  65896. },
  65897. form: "character",
  65898. default: true
  65899. },
  65900. character_side: {
  65901. height: math.unit(6, "feet"),
  65902. weight: math.unit(300, "lb"),
  65903. name: "Side",
  65904. image: {
  65905. source: "./media/characters/midnight-yamikidate/character-side.svg",
  65906. extra: 1075/1017,
  65907. bottom: 20/1095
  65908. },
  65909. form: "character",
  65910. },
  65911. },
  65912. [
  65913. {
  65914. name: "Normal",
  65915. height: math.unit(500, "feet"),
  65916. default: true,
  65917. form: "sona"
  65918. },
  65919. {
  65920. name: "Normal",
  65921. height: math.unit(50, "feet"),
  65922. default: true,
  65923. form: "character"
  65924. },
  65925. ],
  65926. {
  65927. "sona": {
  65928. name: "Sona",
  65929. default: true
  65930. },
  65931. "character": {
  65932. name: "Character",
  65933. },
  65934. }
  65935. ))
  65936. characterMakers.push(() => makeCharacter(
  65937. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  65938. {
  65939. front: {
  65940. height: math.unit(5 + 4/12, "feet"),
  65941. weight: math.unit(58, "kg"),
  65942. name: "Front",
  65943. image: {
  65944. source: "./media/characters/hood/front.svg",
  65945. extra: 1474/1309,
  65946. bottom: 0/1474
  65947. }
  65948. },
  65949. },
  65950. [
  65951. {
  65952. name: "Normal",
  65953. height: math.unit(5 + 4/12, "feet"),
  65954. default: true
  65955. },
  65956. ]
  65957. ))
  65958. characterMakers.push(() => makeCharacter(
  65959. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  65960. {
  65961. front: {
  65962. height: math.unit(8 + 2/12, "feet"),
  65963. name: "Front",
  65964. image: {
  65965. source: "./media/characters/rena/front.svg",
  65966. extra: 1768/1632,
  65967. bottom: 57/1825
  65968. }
  65969. },
  65970. },
  65971. [
  65972. {
  65973. name: "Normal",
  65974. height: math.unit(8 + 2/12, "feet"),
  65975. default: true
  65976. },
  65977. ]
  65978. ))
  65979. characterMakers.push(() => makeCharacter(
  65980. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  65981. {
  65982. front: {
  65983. height: math.unit(5 + 3/12, "feet"),
  65984. name: "Front",
  65985. image: {
  65986. source: "./media/characters/taylor-dilophosaurus/front.svg",
  65987. extra: 1209/1159,
  65988. bottom: 33/1242
  65989. }
  65990. },
  65991. maw: {
  65992. height: math.unit(1.75, "feet"),
  65993. name: "Maw",
  65994. image: {
  65995. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  65996. }
  65997. },
  65998. },
  65999. [
  66000. {
  66001. name: "Micro",
  66002. height: math.unit(3, "inches")
  66003. },
  66004. {
  66005. name: "Regular",
  66006. height: math.unit(5 + 3/12, "feet"),
  66007. default: true
  66008. },
  66009. {
  66010. name: "Imagined",
  66011. height: math.unit(90, "meters")
  66012. },
  66013. ]
  66014. ))
  66015. characterMakers.push(() => makeCharacter(
  66016. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66017. {
  66018. front: {
  66019. height: math.unit(11.75, "feet"),
  66020. weight: math.unit(4346, "lb"),
  66021. preyCapacity: math.unit(20, "people"),
  66022. name: "Front",
  66023. image: {
  66024. source: "./media/characters/suma-roo/front.svg",
  66025. extra: 1370/1365,
  66026. bottom: 164/1534
  66027. }
  66028. },
  66029. },
  66030. [
  66031. {
  66032. name: "Normal",
  66033. height: math.unit(11.75, "feet"),
  66034. default: true
  66035. },
  66036. ]
  66037. ))
  66038. characterMakers.push(() => makeCharacter(
  66039. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66040. {
  66041. front: {
  66042. height: math.unit(2.35, "meters"),
  66043. weight: math.unit(240, "kg"),
  66044. name: "Front",
  66045. image: {
  66046. source: "./media/characters/hymmanios/front.svg",
  66047. extra: 2032/1994,
  66048. bottom: 194/2226
  66049. }
  66050. },
  66051. },
  66052. [
  66053. {
  66054. name: "Normal",
  66055. height: math.unit(2.35, "meters"),
  66056. default: true
  66057. },
  66058. {
  66059. name: "Macro",
  66060. height: math.unit(75, "meters")
  66061. },
  66062. {
  66063. name: "Mega",
  66064. height: math.unit(1250, "meters")
  66065. },
  66066. {
  66067. name: "Giga",
  66068. height: math.unit(235000, "meters")
  66069. },
  66070. ]
  66071. ))
  66072. characterMakers.push(() => makeCharacter(
  66073. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66074. {
  66075. front: {
  66076. height: math.unit(134, "feet"),
  66077. weight: math.unit(932.635, "tons"),
  66078. name: "Front",
  66079. image: {
  66080. source: "./media/characters/azalea/front.svg",
  66081. extra: 703/687,
  66082. bottom: 75/778
  66083. }
  66084. },
  66085. },
  66086. [
  66087. {
  66088. name: "Normal",
  66089. height: math.unit(134, "feet"),
  66090. default: true
  66091. },
  66092. ]
  66093. ))
  66094. characterMakers.push(() => makeCharacter(
  66095. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66096. {
  66097. front: {
  66098. height: math.unit(6.4, "feet"),
  66099. weight: math.unit(167.5, "lb"),
  66100. name: "Front",
  66101. image: {
  66102. source: "./media/characters/lizzy/front.svg",
  66103. extra: 1916/1791,
  66104. bottom: 103/2019
  66105. }
  66106. },
  66107. back: {
  66108. height: math.unit(6.4, "feet"),
  66109. weight: math.unit(167.5, "lb"),
  66110. name: "Back",
  66111. image: {
  66112. source: "./media/characters/lizzy/back.svg",
  66113. extra: 1995/1856,
  66114. bottom: 11/2006
  66115. }
  66116. },
  66117. },
  66118. [
  66119. {
  66120. name: "Normal",
  66121. height: math.unit(6.4, "feet"),
  66122. default: true
  66123. },
  66124. ]
  66125. ))
  66126. characterMakers.push(() => makeCharacter(
  66127. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66128. {
  66129. front: {
  66130. height: math.unit(66, "inches"),
  66131. name: "Front",
  66132. image: {
  66133. source: "./media/characters/sasha/front.svg",
  66134. extra: 620/571,
  66135. bottom: 33/653
  66136. }
  66137. },
  66138. back: {
  66139. height: math.unit(66, "inches"),
  66140. name: "Back",
  66141. image: {
  66142. source: "./media/characters/sasha/back.svg",
  66143. extra: 615/564,
  66144. bottom: 38/653
  66145. }
  66146. },
  66147. },
  66148. [
  66149. {
  66150. name: "IRL",
  66151. height: math.unit(2, "inches")
  66152. },
  66153. {
  66154. name: "Normal",
  66155. height: math.unit(66, "inches"),
  66156. default: true
  66157. },
  66158. {
  66159. name: "Macro",
  66160. height: math.unit(400, "feet")
  66161. },
  66162. {
  66163. name: "Mega Macro",
  66164. height: math.unit(500000, "feet")
  66165. },
  66166. {
  66167. name: "Giga Macro",
  66168. height: math.unit(50000, "miles")
  66169. },
  66170. ]
  66171. ))
  66172. characterMakers.push(() => makeCharacter(
  66173. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66174. {
  66175. front: {
  66176. height: math.unit(52, "inches"),
  66177. name: "Front",
  66178. image: {
  66179. source: "./media/characters/autumn-avali/front.svg",
  66180. extra: 1031/908,
  66181. bottom: 38/1069
  66182. }
  66183. },
  66184. back: {
  66185. height: math.unit(52, "inches"),
  66186. name: "Back",
  66187. image: {
  66188. source: "./media/characters/autumn-avali/back.svg",
  66189. extra: 1047/923,
  66190. bottom: 11/1058
  66191. }
  66192. },
  66193. maw: {
  66194. height: math.unit(0.59, "feet"),
  66195. name: "Maw",
  66196. image: {
  66197. source: "./media/characters/autumn-avali/maw.svg"
  66198. }
  66199. },
  66200. },
  66201. [
  66202. {
  66203. name: "Normal",
  66204. height: math.unit(52, "inches"),
  66205. default: true
  66206. },
  66207. {
  66208. name: "Big'vali",
  66209. height: math.unit(3.5, "meters")
  66210. },
  66211. {
  66212. name: "Macro",
  66213. height: math.unit(35, "meters")
  66214. },
  66215. {
  66216. name: "Macro+",
  66217. height: math.unit(165, "meters")
  66218. },
  66219. {
  66220. name: "Megamacro",
  66221. height: math.unit(8250, "meters")
  66222. },
  66223. {
  66224. name: "Megamacro+",
  66225. height: math.unit(88000, "meters")
  66226. },
  66227. {
  66228. name: "Gigamacro",
  66229. height: math.unit(1.32, "megameters")
  66230. },
  66231. {
  66232. name: "Planet Cracker",
  66233. height: math.unit(77, "megameters")
  66234. },
  66235. ]
  66236. ))
  66237. //characters
  66238. function makeCharacters() {
  66239. const results = [];
  66240. characterMakers.forEach(character => {
  66241. results.push(character());
  66242. });
  66243. return results;
  66244. }