less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

62320 lines
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "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"]
  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: ["tiger"]
  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. }
  2291. //species
  2292. function getSpeciesInfo(speciesList) {
  2293. let result = new Set();
  2294. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2295. result.add(entry)
  2296. });
  2297. return Array.from(result);
  2298. };
  2299. function getSpeciesInfoHelper(species) {
  2300. if (!speciesData[species]) {
  2301. console.warn(species + " doesn't exist");
  2302. return [];
  2303. }
  2304. if (speciesData[species].parents) {
  2305. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2306. } else {
  2307. return [species];
  2308. }
  2309. }
  2310. characterMakers.push(() => makeCharacter(
  2311. {
  2312. name: "Fen",
  2313. species: ["crux"],
  2314. description: {
  2315. title: "Bio",
  2316. text: "Very furry. Sheds on everything."
  2317. },
  2318. tags: [
  2319. "anthro",
  2320. "goo"
  2321. ]
  2322. },
  2323. {
  2324. front: {
  2325. height: math.unit(12, "feet"),
  2326. weight: math.unit(2400, "lb"),
  2327. preyCapacity: math.unit(1, "people"),
  2328. name: "Front",
  2329. image: {
  2330. source: "./media/characters/fen/front.svg",
  2331. extra: 1804/1562,
  2332. bottom: 205/2009
  2333. },
  2334. extraAttributes: {
  2335. pawSize: {
  2336. name: "Paw Size",
  2337. power: 2,
  2338. type: "area",
  2339. base: math.unit(0.35, "m^2")
  2340. }
  2341. }
  2342. },
  2343. diving: {
  2344. height: math.unit(4.9, "meters"),
  2345. weight: math.unit(2400, "lb"),
  2346. name: "Diving",
  2347. image: {
  2348. source: "./media/characters/fen/diving.svg"
  2349. }
  2350. },
  2351. sleeby: {
  2352. height: math.unit(3.45, "meters"),
  2353. weight: math.unit(2400, "lb"),
  2354. name: "Sleeby",
  2355. image: {
  2356. source: "./media/characters/fen/sleeby.svg"
  2357. }
  2358. },
  2359. goo: {
  2360. height: math.unit(12, "feet"),
  2361. weight: math.unit(3600, "lb"),
  2362. volume: math.unit(1000, "liters"),
  2363. preyCapacity: math.unit(6, "people"),
  2364. name: "Goo",
  2365. image: {
  2366. source: "./media/characters/fen/goo.svg",
  2367. extra: 1307/1071,
  2368. bottom: 134/1441
  2369. }
  2370. },
  2371. horror: {
  2372. height: math.unit(13.6, "feet"),
  2373. weight: math.unit(2400, "lb"),
  2374. preyCapacity: math.unit(1, "people"),
  2375. name: "Horror",
  2376. image: {
  2377. source: "./media/characters/fen/horror.svg",
  2378. extra: 893/797,
  2379. bottom: 0/893
  2380. }
  2381. },
  2382. gooNsfw: {
  2383. height: math.unit(12, "feet"),
  2384. weight: math.unit(3750, "lb"),
  2385. volume: math.unit(1000, "liters"),
  2386. preyCapacity: math.unit(6, "people"),
  2387. name: "Goo (NSFW)",
  2388. image: {
  2389. source: "./media/characters/fen/goo-nsfw.svg",
  2390. extra: 1875/1734,
  2391. bottom: 122/1997
  2392. }
  2393. },
  2394. maw: {
  2395. height: math.unit(5.03, "feet"),
  2396. name: "Maw",
  2397. image: {
  2398. source: "./media/characters/fen/maw.svg"
  2399. }
  2400. },
  2401. gooCeiling: {
  2402. height: math.unit(6.6, "feet"),
  2403. weight: math.unit(3000, "lb"),
  2404. volume: math.unit(1000, "liters"),
  2405. preyCapacity: math.unit(6, "people"),
  2406. name: "Maw (Goo)",
  2407. image: {
  2408. source: "./media/characters/fen/goo-maw.svg"
  2409. }
  2410. },
  2411. paw: {
  2412. height: math.unit(3.77, "feet"),
  2413. name: "Paw",
  2414. image: {
  2415. source: "./media/characters/fen/paw.svg"
  2416. },
  2417. extraAttributes: {
  2418. "toeSize": {
  2419. name: "Toe Size",
  2420. power: 2,
  2421. type: "area",
  2422. base: math.unit(0.02875, "m^2")
  2423. },
  2424. "pawSize": {
  2425. name: "Paw Size",
  2426. power: 2,
  2427. type: "area",
  2428. base: math.unit(0.378, "m^2")
  2429. },
  2430. }
  2431. },
  2432. tail: {
  2433. height: math.unit(12.1, "feet"),
  2434. name: "Tail",
  2435. image: {
  2436. source: "./media/characters/fen/tail.svg"
  2437. }
  2438. },
  2439. tailFull: {
  2440. height: math.unit(12.1, "feet"),
  2441. name: "Full Tail",
  2442. image: {
  2443. source: "./media/characters/fen/tail-full.svg"
  2444. }
  2445. },
  2446. back: {
  2447. height: math.unit(12, "feet"),
  2448. weight: math.unit(2400, "lb"),
  2449. name: "Back",
  2450. image: {
  2451. source: "./media/characters/fen/back.svg",
  2452. },
  2453. info: {
  2454. description: {
  2455. mode: "append",
  2456. text: "\n\nHe is not currently looking at you."
  2457. }
  2458. }
  2459. },
  2460. full: {
  2461. height: math.unit(1.85, "meter"),
  2462. weight: math.unit(3200, "lb"),
  2463. preyCapacity: math.unit(3, "people"),
  2464. name: "Full",
  2465. image: {
  2466. source: "./media/characters/fen/full.svg",
  2467. extra: 1133/859,
  2468. bottom: 145/1278
  2469. },
  2470. info: {
  2471. description: {
  2472. mode: "append",
  2473. text: "\n\nMunch."
  2474. }
  2475. }
  2476. },
  2477. gooLounging: {
  2478. height: math.unit(4.53, "feet"),
  2479. weight: math.unit(3000, "lb"),
  2480. preyCapacity: math.unit(6, "people"),
  2481. name: "Goo (Lounging)",
  2482. image: {
  2483. source: "./media/characters/fen/goo-lounging.svg",
  2484. bottom: 116 / 613
  2485. }
  2486. },
  2487. lounging: {
  2488. height: math.unit(10.52, "feet"),
  2489. weight: math.unit(2400, "lb"),
  2490. name: "Lounging",
  2491. image: {
  2492. source: "./media/characters/fen/lounging.svg"
  2493. }
  2494. },
  2495. },
  2496. [
  2497. {
  2498. name: "Small",
  2499. height: math.unit(2.2428, "meter")
  2500. },
  2501. {
  2502. name: "Normal",
  2503. height: math.unit(12, "feet"),
  2504. default: true,
  2505. },
  2506. {
  2507. name: "Big",
  2508. height: math.unit(20, "feet")
  2509. },
  2510. {
  2511. name: "Minimacro",
  2512. height: math.unit(40, "feet"),
  2513. info: {
  2514. description: {
  2515. mode: "append",
  2516. text: "\n\nTOO DAMN BIG"
  2517. }
  2518. }
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(100, "feet"),
  2523. info: {
  2524. description: {
  2525. mode: "append",
  2526. text: "\n\nTOO DAMN BIG"
  2527. }
  2528. }
  2529. },
  2530. {
  2531. name: "Megamacro",
  2532. height: math.unit(2, "miles")
  2533. },
  2534. {
  2535. name: "Gigamacro",
  2536. height: math.unit(10, "earths")
  2537. },
  2538. ]
  2539. ))
  2540. characterMakers.push(() => makeCharacter(
  2541. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2542. {
  2543. front: {
  2544. height: math.unit(183, "cm"),
  2545. weight: math.unit(80, "kg"),
  2546. name: "Front",
  2547. image: {
  2548. source: "./media/characters/sofia-fluttertail/front.svg",
  2549. bottom: 0.01,
  2550. extra: 2154 / 2081
  2551. }
  2552. },
  2553. frontAlt: {
  2554. height: math.unit(183, "cm"),
  2555. weight: math.unit(80, "kg"),
  2556. name: "Front (alt)",
  2557. image: {
  2558. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2559. }
  2560. },
  2561. back: {
  2562. height: math.unit(183, "cm"),
  2563. weight: math.unit(80, "kg"),
  2564. name: "Back",
  2565. image: {
  2566. source: "./media/characters/sofia-fluttertail/back.svg"
  2567. }
  2568. },
  2569. kneeling: {
  2570. height: math.unit(125, "cm"),
  2571. weight: math.unit(80, "kg"),
  2572. name: "Kneeling",
  2573. image: {
  2574. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2575. extra: 1033 / 977,
  2576. bottom: 23.7 / 1057
  2577. }
  2578. },
  2579. maw: {
  2580. height: math.unit(183 / 5, "cm"),
  2581. name: "Maw",
  2582. image: {
  2583. source: "./media/characters/sofia-fluttertail/maw.svg"
  2584. }
  2585. },
  2586. mawcloseup: {
  2587. height: math.unit(183 / 5 * 0.41, "cm"),
  2588. name: "Maw (Closeup)",
  2589. image: {
  2590. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2591. }
  2592. },
  2593. paws: {
  2594. height: math.unit(1.17, "feet"),
  2595. name: "Paws",
  2596. image: {
  2597. source: "./media/characters/sofia-fluttertail/paws.svg",
  2598. extra: 851 / 851,
  2599. bottom: 17 / 868
  2600. }
  2601. },
  2602. },
  2603. [
  2604. {
  2605. name: "Normal",
  2606. height: math.unit(1.83, "meter")
  2607. },
  2608. {
  2609. name: "Size Thief",
  2610. height: math.unit(18, "feet")
  2611. },
  2612. {
  2613. name: "50 Foot Collie",
  2614. height: math.unit(50, "feet")
  2615. },
  2616. {
  2617. name: "Macro",
  2618. height: math.unit(96, "feet"),
  2619. default: true
  2620. },
  2621. {
  2622. name: "Megamerger",
  2623. height: math.unit(650, "feet")
  2624. },
  2625. ]
  2626. ))
  2627. characterMakers.push(() => makeCharacter(
  2628. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2629. {
  2630. front: {
  2631. height: math.unit(7, "feet"),
  2632. weight: math.unit(100, "kg"),
  2633. name: "Front",
  2634. image: {
  2635. source: "./media/characters/march/front.svg",
  2636. extra: 1992/1851,
  2637. bottom: 39/2031
  2638. }
  2639. },
  2640. foot: {
  2641. height: math.unit(0.9, "feet"),
  2642. name: "Foot",
  2643. image: {
  2644. source: "./media/characters/march/foot.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(7.9, "feet")
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(220, "meters")
  2656. },
  2657. {
  2658. name: "Megamacro",
  2659. height: math.unit(2.98, "km"),
  2660. default: true
  2661. },
  2662. {
  2663. name: "Gigamacro",
  2664. height: math.unit(15963, "km")
  2665. },
  2666. {
  2667. name: "Teramacro",
  2668. height: math.unit(2980000000, "km")
  2669. },
  2670. {
  2671. name: "Examacro",
  2672. height: math.unit(250, "parsecs")
  2673. },
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(6, "feet"),
  2681. weight: math.unit(60, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/noir/front.svg",
  2685. extra: 1,
  2686. bottom: 0.032
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(6.6, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(500, "feet")
  2698. },
  2699. {
  2700. name: "Megamacro",
  2701. height: math.unit(2.5, "km"),
  2702. default: true
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(22500, "km")
  2707. },
  2708. {
  2709. name: "Teramacro",
  2710. height: math.unit(2500000000, "km")
  2711. },
  2712. {
  2713. name: "Examacro",
  2714. height: math.unit(200, "parsecs")
  2715. },
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2720. {
  2721. front: {
  2722. height: math.unit(7, "feet"),
  2723. weight: math.unit(100, "kg"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/okuri/front.svg",
  2727. extra: 739/665,
  2728. bottom: 39/778
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(7, "feet"),
  2733. weight: math.unit(100, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/okuri/back.svg",
  2737. extra: 734/653,
  2738. bottom: 13/747
  2739. }
  2740. },
  2741. sitting: {
  2742. height: math.unit(2.95, "feet"),
  2743. weight: math.unit(100, "kg"),
  2744. name: "Sitting",
  2745. image: {
  2746. source: "./media/characters/okuri/sitting.svg",
  2747. extra: 370/318,
  2748. bottom: 99/469
  2749. }
  2750. },
  2751. },
  2752. [
  2753. {
  2754. name: "Smallest",
  2755. height: math.unit(5 + 2/12, "feet")
  2756. },
  2757. {
  2758. name: "Smaller",
  2759. height: math.unit(300, "feet")
  2760. },
  2761. {
  2762. name: "Small",
  2763. height: math.unit(1000, "feet")
  2764. },
  2765. {
  2766. name: "Macro",
  2767. height: math.unit(1, "mile")
  2768. },
  2769. {
  2770. name: "Mega Macro (Small)",
  2771. height: math.unit(20, "km")
  2772. },
  2773. {
  2774. name: "Mega Macro (Large)",
  2775. height: math.unit(600, "km")
  2776. },
  2777. {
  2778. name: "Giga Macro",
  2779. height: math.unit(10000, "km")
  2780. },
  2781. {
  2782. name: "Normal",
  2783. height: math.unit(577560, "km"),
  2784. default: true
  2785. },
  2786. {
  2787. name: "Large",
  2788. height: math.unit(4, "galaxies")
  2789. },
  2790. {
  2791. name: "Largest",
  2792. height: math.unit(15, "multiverses")
  2793. },
  2794. ]
  2795. ))
  2796. characterMakers.push(() => makeCharacter(
  2797. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2798. {
  2799. front: {
  2800. height: math.unit(7, "feet"),
  2801. weight: math.unit(100, "kg"),
  2802. name: "Front",
  2803. image: {
  2804. source: "./media/characters/manny/front.svg",
  2805. extra: 1,
  2806. bottom: 0.06
  2807. }
  2808. },
  2809. back: {
  2810. height: math.unit(7, "feet"),
  2811. weight: math.unit(100, "kg"),
  2812. name: "Back",
  2813. image: {
  2814. source: "./media/characters/manny/back.svg",
  2815. extra: 1,
  2816. bottom: 0.014
  2817. }
  2818. },
  2819. },
  2820. [
  2821. {
  2822. name: "Normal",
  2823. height: math.unit(7, "feet"),
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(78, "feet"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Macro+",
  2832. height: math.unit(300, "meters")
  2833. },
  2834. {
  2835. name: "Macro++",
  2836. height: math.unit(2400, "meters")
  2837. },
  2838. {
  2839. name: "Megamacro",
  2840. height: math.unit(5167, "meters")
  2841. },
  2842. {
  2843. name: "Gigamacro",
  2844. height: math.unit(41769, "miles")
  2845. },
  2846. ]
  2847. ))
  2848. characterMakers.push(() => makeCharacter(
  2849. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2850. {
  2851. front: {
  2852. height: math.unit(7, "feet"),
  2853. weight: math.unit(100, "kg"),
  2854. name: "Front",
  2855. image: {
  2856. source: "./media/characters/adake/front-1.svg"
  2857. }
  2858. },
  2859. frontAlt: {
  2860. height: math.unit(7, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Front (Alt)",
  2863. image: {
  2864. source: "./media/characters/adake/front-2.svg",
  2865. extra: 1,
  2866. bottom: 0.01
  2867. }
  2868. },
  2869. back: {
  2870. height: math.unit(7, "feet"),
  2871. weight: math.unit(100, "kg"),
  2872. name: "Back",
  2873. image: {
  2874. source: "./media/characters/adake/back.svg",
  2875. }
  2876. },
  2877. kneel: {
  2878. height: math.unit(5.385, "feet"),
  2879. weight: math.unit(100, "kg"),
  2880. name: "Kneeling",
  2881. image: {
  2882. source: "./media/characters/adake/kneel.svg",
  2883. bottom: 0.052
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(7, "feet"),
  2891. },
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(78, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Macro+",
  2899. height: math.unit(300, "meters")
  2900. },
  2901. {
  2902. name: "Macro++",
  2903. height: math.unit(2400, "meters")
  2904. },
  2905. {
  2906. name: "Megamacro",
  2907. height: math.unit(5167, "meters")
  2908. },
  2909. {
  2910. name: "Gigamacro",
  2911. height: math.unit(41769, "miles")
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(1.65, "meters"),
  2920. weight: math.unit(50, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/elijah/front.svg",
  2924. extra: 858 / 830,
  2925. bottom: 95.5 / 953.8559
  2926. }
  2927. },
  2928. back: {
  2929. height: math.unit(1.65, "meters"),
  2930. weight: math.unit(50, "kg"),
  2931. name: "Back",
  2932. image: {
  2933. source: "./media/characters/elijah/back.svg",
  2934. extra: 895 / 850,
  2935. bottom: 5.3 / 897.956
  2936. }
  2937. },
  2938. frontNsfw: {
  2939. height: math.unit(1.65, "meters"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Front (NSFW)",
  2942. image: {
  2943. source: "./media/characters/elijah/front-nsfw.svg",
  2944. extra: 858 / 830,
  2945. bottom: 95.5 / 953.8559
  2946. }
  2947. },
  2948. backNsfw: {
  2949. height: math.unit(1.65, "meters"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Back (NSFW)",
  2952. image: {
  2953. source: "./media/characters/elijah/back-nsfw.svg",
  2954. extra: 895 / 850,
  2955. bottom: 5.3 / 897.956
  2956. }
  2957. },
  2958. dick: {
  2959. height: math.unit(1, "feet"),
  2960. name: "Dick",
  2961. image: {
  2962. source: "./media/characters/elijah/dick.svg"
  2963. }
  2964. },
  2965. beakOpen: {
  2966. height: math.unit(1.25, "feet"),
  2967. name: "Beak (Open)",
  2968. image: {
  2969. source: "./media/characters/elijah/beak-open.svg"
  2970. }
  2971. },
  2972. beakShut: {
  2973. height: math.unit(1.25, "feet"),
  2974. name: "Beak (Shut)",
  2975. image: {
  2976. source: "./media/characters/elijah/beak-shut.svg"
  2977. }
  2978. },
  2979. footFlexing: {
  2980. height: math.unit(1.61, "feet"),
  2981. name: "Foot (Flexing)",
  2982. image: {
  2983. source: "./media/characters/elijah/foot-flexing.svg"
  2984. }
  2985. },
  2986. footStepping: {
  2987. height: math.unit(1.44, "feet"),
  2988. name: "Foot (Stepping)",
  2989. image: {
  2990. source: "./media/characters/elijah/foot-stepping.svg"
  2991. }
  2992. },
  2993. plantigradeLeg: {
  2994. height: math.unit(2.34, "feet"),
  2995. name: "Plantigrade Leg",
  2996. image: {
  2997. source: "./media/characters/elijah/plantigrade-leg.svg"
  2998. }
  2999. },
  3000. plantigradeFootLeft: {
  3001. height: math.unit(0.9, "feet"),
  3002. name: "Plantigrade Foot (Left)",
  3003. image: {
  3004. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3005. }
  3006. },
  3007. plantigradeFootRight: {
  3008. height: math.unit(0.9, "feet"),
  3009. name: "Plantigrade Foot (Right)",
  3010. image: {
  3011. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Normal",
  3018. height: math.unit(1.65, "meters")
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(55, "meters"),
  3023. default: true
  3024. },
  3025. {
  3026. name: "Macro+",
  3027. height: math.unit(105, "meters")
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(7 + 2/12, "feet"),
  3036. weight: math.unit(320, "kg"),
  3037. preyCapacity: math.unit(0.276549935, "people"),
  3038. name: "Front",
  3039. image: {
  3040. source: "./media/characters/rai/front.svg",
  3041. extra: 1802/1696,
  3042. bottom: 68/1870
  3043. },
  3044. form: "anthro",
  3045. default: true
  3046. },
  3047. frontDressed: {
  3048. height: math.unit(7 + 2/12, "feet"),
  3049. weight: math.unit(320, "kg"),
  3050. preyCapacity: math.unit(0.276549935, "people"),
  3051. name: "Front (Dressed)",
  3052. image: {
  3053. source: "./media/characters/rai/front-dressed.svg",
  3054. extra: 1802/1696,
  3055. bottom: 68/1870
  3056. },
  3057. form: "anthro"
  3058. },
  3059. side: {
  3060. height: math.unit(7 + 2/12, "feet"),
  3061. weight: math.unit(320, "kg"),
  3062. preyCapacity: math.unit(0.276549935, "people"),
  3063. name: "Side",
  3064. image: {
  3065. source: "./media/characters/rai/side.svg",
  3066. extra: 1789/1710,
  3067. bottom: 115/1904
  3068. },
  3069. form: "anthro"
  3070. },
  3071. back: {
  3072. height: math.unit(7 + 2/12, "feet"),
  3073. weight: math.unit(320, "kg"),
  3074. preyCapacity: math.unit(0.276549935, "people"),
  3075. name: "Back",
  3076. image: {
  3077. source: "./media/characters/rai/back.svg",
  3078. extra: 1770/1707,
  3079. bottom: 28/1798
  3080. },
  3081. form: "anthro"
  3082. },
  3083. feral: {
  3084. height: math.unit(9.5, "feet"),
  3085. weight: math.unit(640, "kg"),
  3086. preyCapacity: math.unit(4, "people"),
  3087. name: "Feral",
  3088. image: {
  3089. source: "./media/characters/rai/feral.svg",
  3090. extra: 945/553,
  3091. bottom: 176/1121
  3092. },
  3093. form: "feral",
  3094. default: true
  3095. },
  3096. dragon: {
  3097. height: math.unit(23, "feet"),
  3098. weight: math.unit(50000, "lb"),
  3099. name: "Dragon",
  3100. image: {
  3101. source: "./media/characters/rai/dragon.svg",
  3102. extra: 2498 / 2030,
  3103. bottom: 85.2 / 2584
  3104. },
  3105. form: "dragon",
  3106. default: true
  3107. },
  3108. maw: {
  3109. height: math.unit(1.69, "feet"),
  3110. name: "Maw",
  3111. image: {
  3112. source: "./media/characters/rai/maw.svg"
  3113. },
  3114. form: "anthro"
  3115. },
  3116. },
  3117. [
  3118. {
  3119. name: "Normal",
  3120. height: math.unit(7 + 2/12, "feet"),
  3121. form: "anthro"
  3122. },
  3123. {
  3124. name: "Big",
  3125. height: math.unit(11, "feet"),
  3126. form: "anthro"
  3127. },
  3128. {
  3129. name: "Minimacro",
  3130. height: math.unit(77, "feet"),
  3131. form: "anthro"
  3132. },
  3133. {
  3134. name: "Macro",
  3135. height: math.unit(302, "feet"),
  3136. default: true,
  3137. form: "anthro"
  3138. },
  3139. {
  3140. name: "Normal",
  3141. height: math.unit(9.5, "feet"),
  3142. form: "feral",
  3143. default: true
  3144. },
  3145. {
  3146. name: "Normal",
  3147. height: math.unit(23, "feet"),
  3148. form: "dragon",
  3149. default: true
  3150. }
  3151. ],
  3152. {
  3153. "anthro": {
  3154. name: "Anthro",
  3155. default: true
  3156. },
  3157. "feral": {
  3158. name: "Feral",
  3159. },
  3160. "dragon": {
  3161. name: "Dragon",
  3162. },
  3163. }
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3167. {
  3168. frontDressed: {
  3169. height: math.unit(216, "feet"),
  3170. weight: math.unit(7000000, "lb"),
  3171. preyCapacity: math.unit(1321, "people"),
  3172. name: "Front (Dressed)",
  3173. image: {
  3174. source: "./media/characters/jazzy/front-dressed.svg",
  3175. extra: 2738 / 2651,
  3176. bottom: 41.8 / 2786
  3177. }
  3178. },
  3179. backDressed: {
  3180. height: math.unit(216, "feet"),
  3181. weight: math.unit(7000000, "lb"),
  3182. preyCapacity: math.unit(1321, "people"),
  3183. name: "Back (Dressed)",
  3184. image: {
  3185. source: "./media/characters/jazzy/back-dressed.svg",
  3186. extra: 2775 / 2673,
  3187. bottom: 36.8 / 2817
  3188. }
  3189. },
  3190. front: {
  3191. height: math.unit(216, "feet"),
  3192. weight: math.unit(7000000, "lb"),
  3193. preyCapacity: math.unit(1321, "people"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/jazzy/front.svg",
  3197. extra: 2738 / 2651,
  3198. bottom: 41.8 / 2786
  3199. }
  3200. },
  3201. back: {
  3202. height: math.unit(216, "feet"),
  3203. weight: math.unit(7000000, "lb"),
  3204. preyCapacity: math.unit(1321, "people"),
  3205. name: "Back",
  3206. image: {
  3207. source: "./media/characters/jazzy/back.svg",
  3208. extra: 2775 / 2673,
  3209. bottom: 36.8 / 2817
  3210. }
  3211. },
  3212. maw: {
  3213. height: math.unit(20, "feet"),
  3214. name: "Maw",
  3215. image: {
  3216. source: "./media/characters/jazzy/maw.svg"
  3217. }
  3218. },
  3219. paws: {
  3220. height: math.unit(27.5, "feet"),
  3221. name: "Paws",
  3222. image: {
  3223. source: "./media/characters/jazzy/paws.svg"
  3224. }
  3225. },
  3226. eye: {
  3227. height: math.unit(4.4, "feet"),
  3228. name: "Eye",
  3229. image: {
  3230. source: "./media/characters/jazzy/eye.svg"
  3231. }
  3232. },
  3233. droneOffense: {
  3234. height: math.unit(9.5, "inches"),
  3235. name: "Drone (Offense)",
  3236. image: {
  3237. source: "./media/characters/jazzy/drone-offense.svg"
  3238. }
  3239. },
  3240. droneRecon: {
  3241. height: math.unit(9.5, "inches"),
  3242. name: "Drone (Recon)",
  3243. image: {
  3244. source: "./media/characters/jazzy/drone-recon.svg"
  3245. }
  3246. },
  3247. droneDefense: {
  3248. height: math.unit(9.5, "inches"),
  3249. name: "Drone (Defense)",
  3250. image: {
  3251. source: "./media/characters/jazzy/drone-defense.svg"
  3252. }
  3253. },
  3254. },
  3255. [
  3256. {
  3257. name: "Macro",
  3258. height: math.unit(216, "feet"),
  3259. default: true
  3260. },
  3261. ]
  3262. ))
  3263. characterMakers.push(() => makeCharacter(
  3264. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3265. {
  3266. front: {
  3267. height: math.unit(9 + 6/12, "feet"),
  3268. weight: math.unit(700, "lb"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/flamm/front.svg",
  3272. extra: 1736/1596,
  3273. bottom: 93/1829
  3274. }
  3275. },
  3276. buff: {
  3277. height: math.unit(9 + 6/12, "feet"),
  3278. weight: math.unit(950, "lb"),
  3279. name: "Buff",
  3280. image: {
  3281. source: "./media/characters/flamm/buff.svg",
  3282. extra: 3018/2874,
  3283. bottom: 221/3239
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Normal",
  3290. height: math.unit(9.5, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(200, "feet"),
  3295. default: true
  3296. },
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(5 + 3/12, "feet"),
  3304. weight: math.unit(60, "kg"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/zephiro/front.svg",
  3308. extra: 1873/1761,
  3309. bottom: 147/2020
  3310. }
  3311. },
  3312. side: {
  3313. height: math.unit(5 + 3/12, "feet"),
  3314. weight: math.unit(60, "kg"),
  3315. name: "Side",
  3316. image: {
  3317. source: "./media/characters/zephiro/side.svg",
  3318. extra: 1929/1827,
  3319. bottom: 65/1994
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(5 + 3/12, "feet"),
  3324. weight: math.unit(60, "kg"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/zephiro/back.svg",
  3328. extra: 1926/1816,
  3329. bottom: 41/1967
  3330. }
  3331. },
  3332. hand: {
  3333. height: math.unit(0.68, "feet"),
  3334. name: "Hand",
  3335. image: {
  3336. source: "./media/characters/zephiro/hand.svg"
  3337. }
  3338. },
  3339. paw: {
  3340. height: math.unit(1, "feet"),
  3341. name: "Paw",
  3342. image: {
  3343. source: "./media/characters/zephiro/paw.svg"
  3344. }
  3345. },
  3346. beans: {
  3347. height: math.unit(0.93, "feet"),
  3348. name: "Beans",
  3349. image: {
  3350. source: "./media/characters/zephiro/beans.svg"
  3351. }
  3352. },
  3353. },
  3354. [
  3355. {
  3356. name: "Micro",
  3357. height: math.unit(3, "inches")
  3358. },
  3359. {
  3360. name: "Normal",
  3361. height: math.unit(5 + 3 / 12, "feet"),
  3362. default: true
  3363. },
  3364. {
  3365. name: "Macro",
  3366. height: math.unit(118, "feet")
  3367. },
  3368. ]
  3369. ))
  3370. characterMakers.push(() => makeCharacter(
  3371. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3372. {
  3373. front: {
  3374. height: math.unit(5, "feet"),
  3375. weight: math.unit(90, "kg"),
  3376. preyCapacity: math.unit(14, "people"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/fory/front.svg",
  3380. extra: 2862 / 2674,
  3381. bottom: 180 / 3043.8
  3382. },
  3383. form: "weaselbun",
  3384. default: true,
  3385. extraAttributes: {
  3386. "pawSize": {
  3387. name: "Paw Size",
  3388. power: 2,
  3389. type: "area",
  3390. base: math.unit(0.1596, "m^2")
  3391. },
  3392. "pawLength": {
  3393. name: "Paw Length",
  3394. power: 1,
  3395. type: "length",
  3396. base: math.unit(0.7, "m")
  3397. }
  3398. }
  3399. },
  3400. back: {
  3401. height: math.unit(5, "feet"),
  3402. weight: math.unit(90, "kg"),
  3403. preyCapacity: math.unit(14, "people"),
  3404. name: "Back",
  3405. image: {
  3406. source: "./media/characters/fory/back.svg",
  3407. extra: 1790/1672,
  3408. bottom: 84/1874
  3409. },
  3410. form: "weaselbun",
  3411. extraAttributes: {
  3412. "pawSize": {
  3413. name: "Paw Size",
  3414. power: 2,
  3415. type: "area",
  3416. base: math.unit(0.1596, "m^2")
  3417. },
  3418. "pawLength": {
  3419. name: "Paw Length",
  3420. power: 1,
  3421. type: "length",
  3422. base: math.unit(0.7, "m")
  3423. }
  3424. }
  3425. },
  3426. paw: {
  3427. height: math.unit(2.14, "feet"),
  3428. name: "Paw",
  3429. image: {
  3430. source: "./media/characters/fory/paw.svg"
  3431. },
  3432. form: "weaselbun",
  3433. extraAttributes: {
  3434. "pawSize": {
  3435. name: "Paw Size",
  3436. power: 2,
  3437. type: "area",
  3438. base: math.unit(0.1596, "m^2")
  3439. },
  3440. "pawLength": {
  3441. name: "Paw Length",
  3442. power: 1,
  3443. type: "length",
  3444. base: math.unit(0.48, "m")
  3445. }
  3446. }
  3447. },
  3448. bunBack: {
  3449. height: math.unit(3, "feet"),
  3450. weight: math.unit(20, "kg"),
  3451. preyCapacity: math.unit(3, "people"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/fory/bun-back.svg",
  3455. extra: 1749/1564,
  3456. bottom: 246/1995
  3457. },
  3458. form: "bun",
  3459. default: true,
  3460. extraAttributes: {
  3461. "pawSize": {
  3462. name: "Paw Size",
  3463. power: 2,
  3464. type: "area",
  3465. base: math.unit(0.072, "m^2")
  3466. },
  3467. "pawLength": {
  3468. name: "Paw Length",
  3469. power: 1,
  3470. type: "length",
  3471. base: math.unit(0.45, "m")
  3472. }
  3473. }
  3474. },
  3475. },
  3476. [
  3477. {
  3478. name: "Normal",
  3479. height: math.unit(5, "feet"),
  3480. form: "weaselbun"
  3481. },
  3482. {
  3483. name: "Macro",
  3484. height: math.unit(50, "feet"),
  3485. default: true,
  3486. form: "weaselbun"
  3487. },
  3488. {
  3489. name: "Megamacro",
  3490. height: math.unit(10, "miles"),
  3491. form: "weaselbun"
  3492. },
  3493. {
  3494. name: "Gigamacro",
  3495. height: math.unit(5, "earths"),
  3496. form: "weaselbun"
  3497. },
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(3, "feet"),
  3501. default: true,
  3502. form: "bun"
  3503. },
  3504. {
  3505. name: "Fun-Size",
  3506. height: math.unit(12, "feet"),
  3507. form: "bun"
  3508. },
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(100, "feet"),
  3512. form: "bun"
  3513. },
  3514. {
  3515. name: "Planetary",
  3516. height: math.unit(3, "earths"),
  3517. form: "bun"
  3518. },
  3519. ],
  3520. {
  3521. "weaselbun": {
  3522. name: "Weaselbun",
  3523. default: true
  3524. },
  3525. "bun": {
  3526. name: "Bun",
  3527. },
  3528. }
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(7, "feet"),
  3535. weight: math.unit(90, "kg"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/kurrikage/front.svg",
  3539. extra: 1845/1733,
  3540. bottom: 119/1964
  3541. }
  3542. },
  3543. back: {
  3544. height: math.unit(7, "feet"),
  3545. weight: math.unit(90, "kg"),
  3546. name: "Back",
  3547. image: {
  3548. source: "./media/characters/kurrikage/back.svg",
  3549. extra: 1790/1677,
  3550. bottom: 61/1851
  3551. }
  3552. },
  3553. dressed: {
  3554. height: math.unit(7, "feet"),
  3555. weight: math.unit(90, "kg"),
  3556. name: "Dressed",
  3557. image: {
  3558. source: "./media/characters/kurrikage/dressed.svg",
  3559. extra: 1845/1733,
  3560. bottom: 119/1964
  3561. }
  3562. },
  3563. foot: {
  3564. height: math.unit(1.5, "feet"),
  3565. name: "Foot",
  3566. image: {
  3567. source: "./media/characters/kurrikage/foot.svg"
  3568. }
  3569. },
  3570. staff: {
  3571. height: math.unit(6.7, "feet"),
  3572. name: "Staff",
  3573. image: {
  3574. source: "./media/characters/kurrikage/staff.svg"
  3575. }
  3576. },
  3577. peek: {
  3578. height: math.unit(1.05, "feet"),
  3579. name: "Peeking",
  3580. image: {
  3581. source: "./media/characters/kurrikage/peek.svg",
  3582. bottom: 0.08
  3583. }
  3584. },
  3585. },
  3586. [
  3587. {
  3588. name: "Normal",
  3589. height: math.unit(12, "feet"),
  3590. default: true
  3591. },
  3592. {
  3593. name: "Big",
  3594. height: math.unit(20, "feet")
  3595. },
  3596. {
  3597. name: "Macro",
  3598. height: math.unit(500, "feet")
  3599. },
  3600. {
  3601. name: "Megamacro",
  3602. height: math.unit(20, "miles")
  3603. },
  3604. ]
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(6, "feet"),
  3611. weight: math.unit(75, "kg"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/shingo/front.svg",
  3615. extra: 1900/1825,
  3616. bottom: 82/1982
  3617. }
  3618. },
  3619. side: {
  3620. height: math.unit(6, "feet"),
  3621. weight: math.unit(75, "kg"),
  3622. name: "Side",
  3623. image: {
  3624. source: "./media/characters/shingo/side.svg",
  3625. extra: 1930/1865,
  3626. bottom: 16/1946
  3627. }
  3628. },
  3629. back: {
  3630. height: math.unit(6, "feet"),
  3631. weight: math.unit(75, "kg"),
  3632. name: "Back",
  3633. image: {
  3634. source: "./media/characters/shingo/back.svg",
  3635. extra: 1922/1852,
  3636. bottom: 16/1938
  3637. }
  3638. },
  3639. frontDressed: {
  3640. height: math.unit(6, "feet"),
  3641. weight: math.unit(150, "lb"),
  3642. name: "Front-dressed",
  3643. image: {
  3644. source: "./media/characters/shingo/front-dressed.svg",
  3645. extra: 1900/1825,
  3646. bottom: 82/1982
  3647. }
  3648. },
  3649. paw: {
  3650. height: math.unit(1.29, "feet"),
  3651. name: "Paw",
  3652. image: {
  3653. source: "./media/characters/shingo/paw.svg"
  3654. }
  3655. },
  3656. hand: {
  3657. height: math.unit(1.07, "feet"),
  3658. name: "Hand",
  3659. image: {
  3660. source: "./media/characters/shingo/hand.svg"
  3661. }
  3662. },
  3663. frontAlt: {
  3664. height: math.unit(6, "feet"),
  3665. weight: math.unit(75, "kg"),
  3666. name: "Front (Alt)",
  3667. image: {
  3668. source: "./media/characters/shingo/front-alt.svg",
  3669. extra: 3511 / 3338,
  3670. bottom: 0.005
  3671. }
  3672. },
  3673. frontAlt2: {
  3674. height: math.unit(6, "feet"),
  3675. weight: math.unit(75, "kg"),
  3676. name: "Front (Alt 2)",
  3677. image: {
  3678. source: "./media/characters/shingo/front-alt-2.svg",
  3679. extra: 706/681,
  3680. bottom: 11/717
  3681. }
  3682. },
  3683. pawAlt: {
  3684. height: math.unit(1, "feet"),
  3685. name: "Paw (Alt)",
  3686. image: {
  3687. source: "./media/characters/shingo/paw-alt.svg"
  3688. }
  3689. },
  3690. },
  3691. [
  3692. {
  3693. name: "Micro",
  3694. height: math.unit(4, "inches")
  3695. },
  3696. {
  3697. name: "Normal",
  3698. height: math.unit(6, "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(108, "feet")
  3704. },
  3705. {
  3706. name: "Macro+",
  3707. height: math.unit(1500, "feet")
  3708. },
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3713. {
  3714. side: {
  3715. height: math.unit(6, "feet"),
  3716. weight: math.unit(75, "kg"),
  3717. name: "Side",
  3718. image: {
  3719. source: "./media/characters/aigey/side.svg"
  3720. }
  3721. },
  3722. },
  3723. [
  3724. {
  3725. name: "Macro",
  3726. height: math.unit(200, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Megamacro",
  3731. height: math.unit(100, "miles")
  3732. },
  3733. ]
  3734. )
  3735. )
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3738. {
  3739. front: {
  3740. height: math.unit(5 + 5 / 12, "feet"),
  3741. weight: math.unit(75, "kg"),
  3742. name: "Front",
  3743. image: {
  3744. source: "./media/characters/natasha/front.svg",
  3745. extra: 859 / 824,
  3746. bottom: 23 / 879.6
  3747. }
  3748. },
  3749. frontNsfw: {
  3750. height: math.unit(5 + 5 / 12, "feet"),
  3751. weight: math.unit(75, "kg"),
  3752. name: "Front (NSFW)",
  3753. image: {
  3754. source: "./media/characters/natasha/front-nsfw.svg",
  3755. extra: 859 / 824,
  3756. bottom: 23 / 879.6
  3757. }
  3758. },
  3759. frontErect: {
  3760. height: math.unit(5 + 5 / 12, "feet"),
  3761. weight: math.unit(75, "kg"),
  3762. name: "Front (Erect)",
  3763. image: {
  3764. source: "./media/characters/natasha/front-erect.svg",
  3765. extra: 859 / 824,
  3766. bottom: 23 / 879.6
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(5 + 5 / 12, "feet"),
  3771. weight: math.unit(75, "kg"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/natasha/back.svg",
  3775. extra: 887.9 / 852.6,
  3776. bottom: 9.7 / 896.4
  3777. }
  3778. },
  3779. backAlt: {
  3780. height: math.unit(5 + 5 / 12, "feet"),
  3781. weight: math.unit(75, "kg"),
  3782. name: "Back (Alt)",
  3783. image: {
  3784. source: "./media/characters/natasha/back-alt.svg",
  3785. extra: 1236.7 / 1192,
  3786. bottom: 22.3 / 1258.2
  3787. }
  3788. },
  3789. dick: {
  3790. height: math.unit(1.772, "feet"),
  3791. name: "Dick",
  3792. image: {
  3793. source: "./media/characters/natasha/dick.svg"
  3794. }
  3795. },
  3796. paw: {
  3797. height: math.unit(0.250, "meters"),
  3798. name: "Paw",
  3799. image: {
  3800. source: "./media/characters/natasha/paw.svg"
  3801. },
  3802. extraAttributes: {
  3803. "toeSize": {
  3804. name: "Toe Size",
  3805. power: 2,
  3806. type: "area",
  3807. base: math.unit(0.0024, "m^2")
  3808. },
  3809. "padSize": {
  3810. name: "Pad Size",
  3811. power: 2,
  3812. type: "area",
  3813. base: math.unit(0.00889, "m^2")
  3814. },
  3815. "pawSize": {
  3816. name: "Paw Size",
  3817. power: 2,
  3818. type: "area",
  3819. base: math.unit(0.023667, "m^2")
  3820. },
  3821. }
  3822. },
  3823. },
  3824. [
  3825. {
  3826. name: "Shortstack",
  3827. height: math.unit(3, "feet"),
  3828. default: true
  3829. },
  3830. {
  3831. name: "Normal",
  3832. height: math.unit(5 + 5 / 12, "feet")
  3833. },
  3834. {
  3835. name: "Large",
  3836. height: math.unit(12, "feet")
  3837. },
  3838. {
  3839. name: "Macro",
  3840. height: math.unit(100, "feet")
  3841. },
  3842. {
  3843. name: "Macro+",
  3844. height: math.unit(260, "feet")
  3845. },
  3846. {
  3847. name: "Macro++",
  3848. height: math.unit(1, "mile")
  3849. },
  3850. ]
  3851. ))
  3852. characterMakers.push(() => makeCharacter(
  3853. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3854. {
  3855. front: {
  3856. height: math.unit(6, "feet"),
  3857. weight: math.unit(75, "kg"),
  3858. name: "Front",
  3859. image: {
  3860. source: "./media/characters/malik/front.svg",
  3861. extra: 1750/1561,
  3862. bottom: 80/1830
  3863. },
  3864. extraAttributes: {
  3865. "toeSize": {
  3866. name: "Toe Size",
  3867. power: 2,
  3868. type: "area",
  3869. base: math.unit(0.0159, "m^2")
  3870. },
  3871. "pawSize": {
  3872. name: "Paw Size",
  3873. power: 2,
  3874. type: "area",
  3875. base: math.unit(0.09834, "m^2")
  3876. },
  3877. }
  3878. },
  3879. side: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(75, "kg"),
  3882. name: "Side",
  3883. image: {
  3884. source: "./media/characters/malik/side.svg",
  3885. extra: 1802/1685,
  3886. bottom: 42/1844
  3887. },
  3888. extraAttributes: {
  3889. "toeSize": {
  3890. name: "Toe Size",
  3891. power: 2,
  3892. type: "area",
  3893. base: math.unit(0.0159, "m^2")
  3894. },
  3895. "pawSize": {
  3896. name: "Paw Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.09834, "m^2")
  3900. },
  3901. }
  3902. },
  3903. back: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(75, "kg"),
  3906. name: "Back",
  3907. image: {
  3908. source: "./media/characters/malik/back.svg",
  3909. extra: 1803/1607,
  3910. bottom: 33/1836
  3911. },
  3912. extraAttributes: {
  3913. "toeSize": {
  3914. name: "Toe Size",
  3915. power: 2,
  3916. type: "area",
  3917. base: math.unit(0.0159, "m^2")
  3918. },
  3919. "pawSize": {
  3920. name: "Paw Size",
  3921. power: 2,
  3922. type: "area",
  3923. base: math.unit(0.09834, "m^2")
  3924. },
  3925. }
  3926. },
  3927. },
  3928. [
  3929. {
  3930. name: "Macro",
  3931. height: math.unit(156, "feet"),
  3932. default: true
  3933. },
  3934. {
  3935. name: "Macro+",
  3936. height: math.unit(1188, "feet")
  3937. },
  3938. ]
  3939. ))
  3940. characterMakers.push(() => makeCharacter(
  3941. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3942. {
  3943. front: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(75, "kg"),
  3946. name: "Front",
  3947. image: {
  3948. source: "./media/characters/sefer/front.svg",
  3949. extra: 848 / 659,
  3950. bottom: 28.3 / 876.442
  3951. }
  3952. },
  3953. back: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(75, "kg"),
  3956. name: "Back",
  3957. image: {
  3958. source: "./media/characters/sefer/back.svg",
  3959. extra: 864 / 695,
  3960. bottom: 10 / 871
  3961. }
  3962. },
  3963. frontDressed: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(75, "kg"),
  3966. name: "Dressed",
  3967. image: {
  3968. source: "./media/characters/sefer/dressed.svg",
  3969. extra: 839 / 653,
  3970. bottom: 37.6 / 878
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Normal",
  3977. height: math.unit(6, "feet"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Big",
  3982. height: math.unit(8, "meters")
  3983. },
  3984. ]
  3985. ))
  3986. characterMakers.push(() => makeCharacter(
  3987. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3988. {
  3989. body: {
  3990. height: math.unit(2.2428, "meter"),
  3991. weight: math.unit(124.738, "kg"),
  3992. name: "Body",
  3993. image: {
  3994. extra: 1225 / 1050,
  3995. source: "./media/characters/north/front.svg"
  3996. }
  3997. }
  3998. },
  3999. [
  4000. {
  4001. name: "Micro",
  4002. height: math.unit(4, "inches")
  4003. },
  4004. {
  4005. name: "Macro",
  4006. height: math.unit(63, "meters")
  4007. },
  4008. {
  4009. name: "Megamacro",
  4010. height: math.unit(101, "miles"),
  4011. default: true
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4017. {
  4018. angled: {
  4019. height: math.unit(4, "meter"),
  4020. weight: math.unit(150, "kg"),
  4021. name: "Angled",
  4022. image: {
  4023. source: "./media/characters/talan/angled-sfw.svg",
  4024. bottom: 29 / 3734
  4025. }
  4026. },
  4027. angledNsfw: {
  4028. height: math.unit(4, "meter"),
  4029. weight: math.unit(150, "kg"),
  4030. name: "Angled (NSFW)",
  4031. image: {
  4032. source: "./media/characters/talan/angled-nsfw.svg",
  4033. bottom: 29 / 3734
  4034. }
  4035. },
  4036. frontNsfw: {
  4037. height: math.unit(4, "meter"),
  4038. weight: math.unit(150, "kg"),
  4039. name: "Front (NSFW)",
  4040. image: {
  4041. source: "./media/characters/talan/front-nsfw.svg",
  4042. bottom: 29 / 3734
  4043. }
  4044. },
  4045. sideNsfw: {
  4046. height: math.unit(4, "meter"),
  4047. weight: math.unit(150, "kg"),
  4048. name: "Side (NSFW)",
  4049. image: {
  4050. source: "./media/characters/talan/side-nsfw.svg",
  4051. bottom: 29 / 3734
  4052. }
  4053. },
  4054. back: {
  4055. height: math.unit(4, "meter"),
  4056. weight: math.unit(150, "kg"),
  4057. name: "Back",
  4058. image: {
  4059. source: "./media/characters/talan/back.svg"
  4060. }
  4061. },
  4062. dickBottom: {
  4063. height: math.unit(0.621, "meter"),
  4064. name: "Dick (Bottom)",
  4065. image: {
  4066. source: "./media/characters/talan/dick-bottom.svg"
  4067. }
  4068. },
  4069. dickTop: {
  4070. height: math.unit(0.621, "meter"),
  4071. name: "Dick (Top)",
  4072. image: {
  4073. source: "./media/characters/talan/dick-top.svg"
  4074. }
  4075. },
  4076. dickSide: {
  4077. height: math.unit(0.305, "meter"),
  4078. name: "Dick (Side)",
  4079. image: {
  4080. source: "./media/characters/talan/dick-side.svg"
  4081. }
  4082. },
  4083. dickFront: {
  4084. height: math.unit(0.305, "meter"),
  4085. name: "Dick (Front)",
  4086. image: {
  4087. source: "./media/characters/talan/dick-front.svg"
  4088. }
  4089. },
  4090. },
  4091. [
  4092. {
  4093. name: "Normal",
  4094. height: math.unit(4, "meters")
  4095. },
  4096. {
  4097. name: "Macro",
  4098. height: math.unit(100, "meters")
  4099. },
  4100. {
  4101. name: "Megamacro",
  4102. height: math.unit(2, "miles"),
  4103. default: true
  4104. },
  4105. {
  4106. name: "Gigamacro",
  4107. height: math.unit(5000, "miles")
  4108. },
  4109. {
  4110. name: "Teramacro",
  4111. height: math.unit(100, "parsecs")
  4112. }
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4117. {
  4118. front: {
  4119. height: math.unit(2, "meter"),
  4120. weight: math.unit(90, "kg"),
  4121. name: "Front",
  4122. image: {
  4123. source: "./media/characters/gael'rathus/front.svg"
  4124. }
  4125. },
  4126. frontAlt: {
  4127. height: math.unit(2, "meter"),
  4128. weight: math.unit(90, "kg"),
  4129. name: "Front (alt)",
  4130. image: {
  4131. source: "./media/characters/gael'rathus/front-alt.svg"
  4132. }
  4133. },
  4134. frontAlt2: {
  4135. height: math.unit(2, "meter"),
  4136. weight: math.unit(90, "kg"),
  4137. name: "Front (alt 2)",
  4138. image: {
  4139. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4140. }
  4141. }
  4142. },
  4143. [
  4144. {
  4145. name: "Normal",
  4146. height: math.unit(9, "feet"),
  4147. default: true
  4148. },
  4149. {
  4150. name: "Large",
  4151. height: math.unit(25, "feet")
  4152. },
  4153. {
  4154. name: "Macro",
  4155. height: math.unit(0.25, "miles")
  4156. },
  4157. {
  4158. name: "Megamacro",
  4159. height: math.unit(10, "miles")
  4160. }
  4161. ]
  4162. ))
  4163. characterMakers.push(() => makeCharacter(
  4164. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4165. {
  4166. side: {
  4167. height: math.unit(2, "meter"),
  4168. weight: math.unit(140, "kg"),
  4169. name: "Side",
  4170. image: {
  4171. source: "./media/characters/sosha/side.svg",
  4172. extra: 1170/1006,
  4173. bottom: 94/1264
  4174. }
  4175. },
  4176. maw: {
  4177. height: math.unit(2.87, "feet"),
  4178. name: "Maw",
  4179. image: {
  4180. source: "./media/characters/sosha/maw.svg",
  4181. extra: 966/865,
  4182. bottom: 0/966
  4183. }
  4184. },
  4185. cooch: {
  4186. height: math.unit(5.6, "feet"),
  4187. name: "Cooch",
  4188. image: {
  4189. source: "./media/characters/sosha/cooch.svg"
  4190. }
  4191. },
  4192. },
  4193. [
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(12, "feet"),
  4197. default: true
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4203. {
  4204. side: {
  4205. height: math.unit(5 + 5 / 12, "feet"),
  4206. weight: math.unit(170, "kg"),
  4207. name: "Side",
  4208. image: {
  4209. source: "./media/characters/runnola/side.svg",
  4210. extra: 741 / 448,
  4211. bottom: 0.05
  4212. }
  4213. },
  4214. },
  4215. [
  4216. {
  4217. name: "Small",
  4218. height: math.unit(3, "feet")
  4219. },
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(5 + 5 / 12, "feet"),
  4223. default: true
  4224. },
  4225. {
  4226. name: "Big",
  4227. height: math.unit(10, "feet")
  4228. },
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(50, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/kurribird/front.svg",
  4240. bottom: 0.015
  4241. }
  4242. },
  4243. frontAlt: {
  4244. height: math.unit(1.5, "meter"),
  4245. weight: math.unit(50, "kg"),
  4246. name: "Front (Alt)",
  4247. image: {
  4248. source: "./media/characters/kurribird/front-alt.svg",
  4249. extra: 1.45
  4250. }
  4251. },
  4252. },
  4253. [
  4254. {
  4255. name: "Normal",
  4256. height: math.unit(7, "feet")
  4257. },
  4258. {
  4259. name: "Big",
  4260. height: math.unit(12, "feet"),
  4261. default: true
  4262. },
  4263. {
  4264. name: "Macro",
  4265. height: math.unit(1500, "feet")
  4266. },
  4267. {
  4268. name: "Megamacro",
  4269. height: math.unit(2, "miles")
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4275. {
  4276. front: {
  4277. height: math.unit(2, "meter"),
  4278. weight: math.unit(80, "kg"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/elbial/front.svg",
  4282. extra: 1643 / 1556,
  4283. bottom: 60.2 / 1696
  4284. }
  4285. },
  4286. side: {
  4287. height: math.unit(2, "meter"),
  4288. weight: math.unit(80, "kg"),
  4289. name: "Side",
  4290. image: {
  4291. source: "./media/characters/elbial/side.svg",
  4292. extra: 1601/1528,
  4293. bottom: 97/1698
  4294. }
  4295. },
  4296. back: {
  4297. height: math.unit(2, "meter"),
  4298. weight: math.unit(80, "kg"),
  4299. name: "Back",
  4300. image: {
  4301. source: "./media/characters/elbial/back.svg",
  4302. extra: 1653/1569,
  4303. bottom: 20/1673
  4304. }
  4305. },
  4306. frontDressed: {
  4307. height: math.unit(2, "meter"),
  4308. weight: math.unit(80, "kg"),
  4309. name: "Front (Dressed)",
  4310. image: {
  4311. source: "./media/characters/elbial/front-dressed.svg",
  4312. extra: 1638/1569,
  4313. bottom: 70/1708
  4314. }
  4315. },
  4316. genitals: {
  4317. height: math.unit(2 / 3.367, "meter"),
  4318. name: "Genitals",
  4319. image: {
  4320. source: "./media/characters/elbial/genitals.svg"
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Large",
  4327. height: math.unit(100, "feet")
  4328. },
  4329. {
  4330. name: "Macro",
  4331. height: math.unit(500, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Megamacro",
  4336. height: math.unit(10, "miles")
  4337. },
  4338. {
  4339. name: "Gigamacro",
  4340. height: math.unit(25000, "miles")
  4341. },
  4342. {
  4343. name: "Full-Size",
  4344. height: math.unit(8000000, "gigaparsecs")
  4345. }
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(2, "meter"),
  4353. weight: math.unit(60, "kg"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/noah/front.svg",
  4357. extra: 1383/1313,
  4358. bottom: 104/1487
  4359. }
  4360. },
  4361. hand: {
  4362. height: math.unit(0.6, "feet"),
  4363. name: "Hand",
  4364. image: {
  4365. source: "./media/characters/noah/hand.svg"
  4366. }
  4367. },
  4368. talons: {
  4369. height: math.unit(1.385, "feet"),
  4370. name: "Talons",
  4371. image: {
  4372. source: "./media/characters/noah/talons.svg"
  4373. }
  4374. },
  4375. beak: {
  4376. height: math.unit(0.43, "feet"),
  4377. name: "Beak",
  4378. image: {
  4379. source: "./media/characters/noah/beak.svg"
  4380. }
  4381. },
  4382. collar: {
  4383. height: math.unit(0.88, "feet"),
  4384. name: "Collar",
  4385. image: {
  4386. source: "./media/characters/noah/collar.svg"
  4387. }
  4388. },
  4389. eyeNarrow: {
  4390. height: math.unit(0.18, "feet"),
  4391. name: "Eye (Narrow)",
  4392. image: {
  4393. source: "./media/characters/noah/eye-narrow.svg"
  4394. }
  4395. },
  4396. eyeNormal: {
  4397. height: math.unit(0.18, "feet"),
  4398. name: "Eye (Normal)",
  4399. image: {
  4400. source: "./media/characters/noah/eye-normal.svg"
  4401. }
  4402. },
  4403. eyeWide: {
  4404. height: math.unit(0.18, "feet"),
  4405. name: "Eye (Wide)",
  4406. image: {
  4407. source: "./media/characters/noah/eye-wide.svg"
  4408. }
  4409. },
  4410. ear: {
  4411. height: math.unit(0.64, "feet"),
  4412. name: "Ear",
  4413. image: {
  4414. source: "./media/characters/noah/ear.svg"
  4415. }
  4416. },
  4417. },
  4418. [
  4419. {
  4420. name: "Large",
  4421. height: math.unit(50, "feet")
  4422. },
  4423. {
  4424. name: "Macro",
  4425. height: math.unit(750, "feet"),
  4426. default: true
  4427. },
  4428. {
  4429. name: "Megamacro",
  4430. height: math.unit(50, "miles")
  4431. },
  4432. {
  4433. name: "Gigamacro",
  4434. height: math.unit(100000, "miles")
  4435. },
  4436. {
  4437. name: "Full-Size",
  4438. height: math.unit(3000000000, "miles")
  4439. }
  4440. ]
  4441. ))
  4442. characterMakers.push(() => makeCharacter(
  4443. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4444. {
  4445. front: {
  4446. height: math.unit(2, "meter"),
  4447. weight: math.unit(80, "kg"),
  4448. name: "Front",
  4449. image: {
  4450. source: "./media/characters/natalya/front.svg"
  4451. }
  4452. },
  4453. back: {
  4454. height: math.unit(2, "meter"),
  4455. weight: math.unit(80, "kg"),
  4456. name: "Back",
  4457. image: {
  4458. source: "./media/characters/natalya/back.svg"
  4459. }
  4460. }
  4461. },
  4462. [
  4463. {
  4464. name: "Normal",
  4465. height: math.unit(150, "feet"),
  4466. default: true
  4467. },
  4468. {
  4469. name: "Megamacro",
  4470. height: math.unit(5, "miles")
  4471. },
  4472. {
  4473. name: "Full-Size",
  4474. height: math.unit(600, "kiloparsecs")
  4475. }
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4480. {
  4481. front: {
  4482. height: math.unit(2, "meter"),
  4483. weight: math.unit(50, "kg"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/erestrebah/front.svg",
  4487. extra: 1262/1162,
  4488. bottom: 96/1358
  4489. }
  4490. },
  4491. back: {
  4492. height: math.unit(2, "meter"),
  4493. weight: math.unit(50, "kg"),
  4494. name: "Back",
  4495. image: {
  4496. source: "./media/characters/erestrebah/back.svg",
  4497. extra: 1257/1139,
  4498. bottom: 13/1270
  4499. }
  4500. },
  4501. wing: {
  4502. height: math.unit(2, "meter"),
  4503. weight: math.unit(50, "kg"),
  4504. name: "Wing",
  4505. image: {
  4506. source: "./media/characters/erestrebah/wing.svg",
  4507. extra: 1262/1162,
  4508. bottom: 96/1358
  4509. }
  4510. },
  4511. mouth: {
  4512. height: math.unit(0.39, "feet"),
  4513. name: "Mouth",
  4514. image: {
  4515. source: "./media/characters/erestrebah/mouth.svg"
  4516. }
  4517. }
  4518. },
  4519. [
  4520. {
  4521. name: "Normal",
  4522. height: math.unit(10, "feet")
  4523. },
  4524. {
  4525. name: "Large",
  4526. height: math.unit(50, "feet"),
  4527. default: true
  4528. },
  4529. {
  4530. name: "Macro",
  4531. height: math.unit(300, "feet")
  4532. },
  4533. {
  4534. name: "Macro+",
  4535. height: math.unit(750, "feet")
  4536. },
  4537. {
  4538. name: "Megamacro",
  4539. height: math.unit(3, "miles")
  4540. }
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4545. {
  4546. front: {
  4547. height: math.unit(2, "meter"),
  4548. weight: math.unit(80, "kg"),
  4549. name: "Front",
  4550. image: {
  4551. source: "./media/characters/jennifer/front.svg",
  4552. bottom: 0.11,
  4553. extra: 1.16
  4554. }
  4555. },
  4556. frontAlt: {
  4557. height: math.unit(2, "meter"),
  4558. weight: math.unit(80, "kg"),
  4559. name: "Front (Alt)",
  4560. image: {
  4561. source: "./media/characters/jennifer/front-alt.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Canon Height",
  4568. height: math.unit(120, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Macro+",
  4573. height: math.unit(300, "feet")
  4574. },
  4575. {
  4576. name: "Megamacro",
  4577. height: math.unit(20000, "feet")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(2, "meter"),
  4586. weight: math.unit(50, "kg"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/kalista/front.svg",
  4590. extra: 1314/1145,
  4591. bottom: 101/1415
  4592. }
  4593. },
  4594. back: {
  4595. height: math.unit(2, "meter"),
  4596. weight: math.unit(50, "kg"),
  4597. name: "Back",
  4598. image: {
  4599. source: "./media/characters/kalista/back.svg",
  4600. extra: 1366 / 1156,
  4601. bottom: 33.9 / 1362.78
  4602. }
  4603. }
  4604. },
  4605. [
  4606. {
  4607. name: "Uncomfortably Small",
  4608. height: math.unit(10, "feet")
  4609. },
  4610. {
  4611. name: "Small",
  4612. height: math.unit(30, "feet")
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(100, "feet"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Macro+",
  4621. height: math.unit(2000, "feet")
  4622. },
  4623. {
  4624. name: "True Form",
  4625. height: math.unit(8924, "miles")
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4631. {
  4632. front: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(120, "kg"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/ggv/front.svg"
  4638. }
  4639. },
  4640. side: {
  4641. height: math.unit(2, "meter"),
  4642. weight: math.unit(120, "kg"),
  4643. name: "Side",
  4644. image: {
  4645. source: "./media/characters/ggv/side.svg"
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Extremely Puny",
  4652. height: math.unit(9 + 5 / 12, "feet")
  4653. },
  4654. {
  4655. name: "Horribly Small",
  4656. height: math.unit(47.7, "miles"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Reasonably Sized",
  4661. height: math.unit(25000, "parsecs")
  4662. },
  4663. {
  4664. name: "Slightly Uncompressed",
  4665. height: math.unit(7.77e31, "parsecs")
  4666. },
  4667. {
  4668. name: "Omniversal",
  4669. height: math.unit(1e300, "meters")
  4670. },
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4675. {
  4676. front: {
  4677. height: math.unit(2, "meter"),
  4678. weight: math.unit(75, "lb"),
  4679. name: "Front",
  4680. image: {
  4681. source: "./media/characters/napalm/front.svg"
  4682. }
  4683. },
  4684. back: {
  4685. height: math.unit(2, "meter"),
  4686. weight: math.unit(75, "lb"),
  4687. name: "Back",
  4688. image: {
  4689. source: "./media/characters/napalm/back.svg"
  4690. }
  4691. }
  4692. },
  4693. [
  4694. {
  4695. name: "Standard",
  4696. height: math.unit(55, "feet"),
  4697. default: true
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4703. {
  4704. front: {
  4705. height: math.unit(7 + 5 / 6, "feet"),
  4706. weight: math.unit(325, "lb"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/asana/front.svg",
  4710. extra: 1133 / 1060,
  4711. bottom: 15.2 / 1148.6
  4712. }
  4713. },
  4714. back: {
  4715. height: math.unit(7 + 5 / 6, "feet"),
  4716. weight: math.unit(325, "lb"),
  4717. name: "Back",
  4718. image: {
  4719. source: "./media/characters/asana/back.svg",
  4720. extra: 1114 / 1043,
  4721. bottom: 5 / 1120
  4722. }
  4723. },
  4724. dressedDark: {
  4725. height: math.unit(7 + 5 / 6, "feet"),
  4726. weight: math.unit(325, "lb"),
  4727. name: "Dressed (Dark)",
  4728. image: {
  4729. source: "./media/characters/asana/dressed-dark.svg",
  4730. extra: 1133 / 1060,
  4731. bottom: 15.2 / 1148.6
  4732. }
  4733. },
  4734. dressedLight: {
  4735. height: math.unit(7 + 5 / 6, "feet"),
  4736. weight: math.unit(325, "lb"),
  4737. name: "Dressed (Light)",
  4738. image: {
  4739. source: "./media/characters/asana/dressed-light.svg",
  4740. extra: 1133 / 1060,
  4741. bottom: 15.2 / 1148.6
  4742. }
  4743. },
  4744. },
  4745. [
  4746. {
  4747. name: "Standard",
  4748. height: math.unit(7 + 5 / 6, "feet"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Large",
  4753. height: math.unit(10, "meters")
  4754. },
  4755. {
  4756. name: "Macro",
  4757. height: math.unit(2500, "meters")
  4758. },
  4759. {
  4760. name: "Megamacro",
  4761. height: math.unit(5e6, "meters")
  4762. },
  4763. {
  4764. name: "Examacro",
  4765. height: math.unit(5e12, "lightyears")
  4766. },
  4767. {
  4768. name: "Max Size",
  4769. height: math.unit(1e31, "lightyears")
  4770. }
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4775. {
  4776. front: {
  4777. height: math.unit(2, "meter"),
  4778. weight: math.unit(60, "kg"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/ebony/front.svg",
  4782. bottom: 0.03,
  4783. extra: 1045 / 810 + 0.03
  4784. }
  4785. },
  4786. side: {
  4787. height: math.unit(2, "meter"),
  4788. weight: math.unit(60, "kg"),
  4789. name: "Side",
  4790. image: {
  4791. source: "./media/characters/ebony/side.svg",
  4792. bottom: 0.03,
  4793. extra: 1045 / 810 + 0.03
  4794. }
  4795. },
  4796. back: {
  4797. height: math.unit(2, "meter"),
  4798. weight: math.unit(60, "kg"),
  4799. name: "Back",
  4800. image: {
  4801. source: "./media/characters/ebony/back.svg",
  4802. bottom: 0.01,
  4803. extra: 1045 / 810 + 0.01
  4804. }
  4805. },
  4806. },
  4807. [
  4808. // TODO check why I did this lol
  4809. {
  4810. name: "Standard",
  4811. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Macro",
  4816. height: math.unit(200, "feet")
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(13000, "km")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(175, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/mountain/front.svg",
  4833. extra: 972 / 955,
  4834. bottom: 64 / 1036.6
  4835. }
  4836. },
  4837. back: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(175, "lb"),
  4840. name: "Back",
  4841. image: {
  4842. source: "./media/characters/mountain/back.svg",
  4843. extra: 970 / 950,
  4844. bottom: 28.25 / 999
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Large",
  4851. height: math.unit(20, "meters")
  4852. },
  4853. {
  4854. name: "Macro",
  4855. height: math.unit(300, "meters")
  4856. },
  4857. {
  4858. name: "Gigamacro",
  4859. height: math.unit(10000, "km"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Examacro",
  4864. height: math.unit(10e9, "lightyears")
  4865. }
  4866. ]
  4867. ))
  4868. characterMakers.push(() => makeCharacter(
  4869. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4870. {
  4871. front: {
  4872. height: math.unit(8, "feet"),
  4873. weight: math.unit(500, "lb"),
  4874. name: "Front",
  4875. image: {
  4876. source: "./media/characters/rick/front.svg"
  4877. }
  4878. }
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(8, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(5, "km")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4894. {
  4895. front: {
  4896. height: math.unit(8, "feet"),
  4897. weight: math.unit(120, "lb"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/ona/front.svg"
  4901. }
  4902. },
  4903. frontAlt: {
  4904. height: math.unit(8, "feet"),
  4905. weight: math.unit(120, "lb"),
  4906. name: "Front (Alt)",
  4907. image: {
  4908. source: "./media/characters/ona/front-alt.svg"
  4909. }
  4910. },
  4911. back: {
  4912. height: math.unit(8, "feet"),
  4913. weight: math.unit(120, "lb"),
  4914. name: "Back",
  4915. image: {
  4916. source: "./media/characters/ona/back.svg"
  4917. }
  4918. },
  4919. foot: {
  4920. height: math.unit(1.1, "feet"),
  4921. name: "Foot",
  4922. image: {
  4923. source: "./media/characters/ona/foot.svg"
  4924. }
  4925. }
  4926. },
  4927. [
  4928. {
  4929. name: "Megamacro",
  4930. height: math.unit(70, "km"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(681818, "miles")
  4936. },
  4937. {
  4938. name: "Examacro",
  4939. height: math.unit(3800000, "lightyears")
  4940. },
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(12, "feet"),
  4948. weight: math.unit(3000, "lb"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/mech/front.svg",
  4952. extra: 2900 / 2770,
  4953. bottom: 110 / 3010
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(12, "feet"),
  4958. weight: math.unit(3000, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/mech/back.svg",
  4962. extra: 3011 / 2890,
  4963. bottom: 94 / 3105
  4964. }
  4965. },
  4966. maw: {
  4967. height: math.unit(3.07, "feet"),
  4968. name: "Maw",
  4969. image: {
  4970. source: "./media/characters/mech/maw.svg"
  4971. }
  4972. },
  4973. head: {
  4974. height: math.unit(3.07, "feet"),
  4975. name: "Head",
  4976. image: {
  4977. source: "./media/characters/mech/head.svg"
  4978. }
  4979. },
  4980. dick: {
  4981. height: math.unit(1.43, "feet"),
  4982. name: "Dick",
  4983. image: {
  4984. source: "./media/characters/mech/dick.svg"
  4985. }
  4986. },
  4987. },
  4988. [
  4989. {
  4990. name: "Normal",
  4991. height: math.unit(12, "feet")
  4992. },
  4993. {
  4994. name: "Macro",
  4995. height: math.unit(300, "feet"),
  4996. default: true
  4997. },
  4998. {
  4999. name: "Macro+",
  5000. height: math.unit(1500, "feet")
  5001. },
  5002. ]
  5003. ))
  5004. characterMakers.push(() => makeCharacter(
  5005. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5006. {
  5007. front: {
  5008. height: math.unit(1.3, "meter"),
  5009. weight: math.unit(30, "kg"),
  5010. name: "Front",
  5011. image: {
  5012. source: "./media/characters/gregory/front.svg",
  5013. }
  5014. }
  5015. },
  5016. [
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(1.3, "meter"),
  5020. default: true
  5021. },
  5022. {
  5023. name: "Macro",
  5024. height: math.unit(20, "meter")
  5025. }
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(2.8, "meter"),
  5033. weight: math.unit(200, "kg"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/elory/front.svg",
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(2.8, "meter"),
  5044. default: true
  5045. },
  5046. {
  5047. name: "Macro",
  5048. height: math.unit(38, "meter")
  5049. }
  5050. ]
  5051. ))
  5052. characterMakers.push(() => makeCharacter(
  5053. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5054. {
  5055. front: {
  5056. height: math.unit(470, "feet"),
  5057. weight: math.unit(924, "tons"),
  5058. name: "Front",
  5059. image: {
  5060. source: "./media/characters/angelpatamon/front.svg",
  5061. }
  5062. }
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(470, "feet"),
  5068. default: true
  5069. },
  5070. {
  5071. name: "Deity Size I",
  5072. height: math.unit(28651.2, "km")
  5073. },
  5074. {
  5075. name: "Deity Size II",
  5076. height: math.unit(171907.2, "km")
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5082. {
  5083. side: {
  5084. height: math.unit(7.2, "meter"),
  5085. weight: math.unit(8.2, "tons"),
  5086. name: "Side",
  5087. image: {
  5088. source: "./media/characters/cryae/side.svg",
  5089. extra: 3500 / 1500
  5090. }
  5091. }
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(7.2, "meter"),
  5097. default: true
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(175, "lb"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/xera/front.svg",
  5110. extra: 2377 / 1972,
  5111. bottom: 75.5 / 2452
  5112. }
  5113. },
  5114. side: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(175, "lb"),
  5117. name: "Side",
  5118. image: {
  5119. source: "./media/characters/xera/side.svg",
  5120. extra: 2345 / 2019,
  5121. bottom: 39.7 / 2384
  5122. }
  5123. },
  5124. back: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(175, "lb"),
  5127. name: "Back",
  5128. image: {
  5129. source: "./media/characters/xera/back.svg",
  5130. extra: 2095 / 1984,
  5131. bottom: 67 / 2166
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Small",
  5138. height: math.unit(10, "feet")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(500, "meters"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro+",
  5147. height: math.unit(10, "km")
  5148. },
  5149. {
  5150. name: "Gigamacro",
  5151. height: math.unit(25000, "km")
  5152. },
  5153. {
  5154. name: "Teramacro",
  5155. height: math.unit(3e6, "km")
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5161. {
  5162. front: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(175, "lb"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/nebula/front.svg",
  5168. extra: 2566 / 2362,
  5169. bottom: 81 / 2644
  5170. }
  5171. }
  5172. },
  5173. [
  5174. {
  5175. name: "Small",
  5176. height: math.unit(4.5, "meters")
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(1500, "meters"),
  5181. default: true
  5182. },
  5183. {
  5184. name: "Megamacro",
  5185. height: math.unit(150, "km")
  5186. },
  5187. {
  5188. name: "Gigamacro",
  5189. height: math.unit(27000, "km")
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(225, "lb"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/abysgar/front.svg",
  5202. extra: 1739/1614,
  5203. bottom: 71/1810
  5204. }
  5205. },
  5206. frontNsfw: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(225, "lb"),
  5209. name: "Front (NSFW)",
  5210. image: {
  5211. source: "./media/characters/abysgar/front-nsfw.svg",
  5212. extra: 1739/1614,
  5213. bottom: 71/1810
  5214. }
  5215. },
  5216. back: {
  5217. height: math.unit(4.6, "feet"),
  5218. weight: math.unit(225, "lb"),
  5219. name: "Back",
  5220. image: {
  5221. source: "./media/characters/abysgar/back.svg",
  5222. extra: 1384/1327,
  5223. bottom: 0/1384
  5224. }
  5225. },
  5226. head: {
  5227. height: math.unit(1.25, "feet"),
  5228. name: "Head",
  5229. image: {
  5230. source: "./media/characters/abysgar/head.svg",
  5231. extra: 669/569,
  5232. bottom: 0/669
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Small",
  5239. height: math.unit(4.5, "meters")
  5240. },
  5241. {
  5242. name: "Macro",
  5243. height: math.unit(1250, "meters"),
  5244. default: true
  5245. },
  5246. {
  5247. name: "Megamacro",
  5248. height: math.unit(125, "km")
  5249. },
  5250. {
  5251. name: "Gigamacro",
  5252. height: math.unit(26000, "km")
  5253. }
  5254. ]
  5255. ))
  5256. characterMakers.push(() => makeCharacter(
  5257. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5258. {
  5259. front: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(180, "lb"),
  5262. name: "Front",
  5263. image: {
  5264. source: "./media/characters/yakuz/front.svg"
  5265. }
  5266. }
  5267. },
  5268. [
  5269. {
  5270. name: "Small",
  5271. height: math.unit(5, "meters")
  5272. },
  5273. {
  5274. name: "Macro",
  5275. height: math.unit(1500, "meters"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Megamacro",
  5280. height: math.unit(200, "km")
  5281. },
  5282. {
  5283. name: "Gigamacro",
  5284. height: math.unit(100000, "km")
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5290. {
  5291. front: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(175, "lb"),
  5294. name: "Front",
  5295. image: {
  5296. source: "./media/characters/mirova/front.svg",
  5297. extra: 3334 / 3071,
  5298. bottom: 42 / 3375.6
  5299. }
  5300. }
  5301. },
  5302. [
  5303. {
  5304. name: "Small",
  5305. height: math.unit(5, "meters")
  5306. },
  5307. {
  5308. name: "Macro",
  5309. height: math.unit(900, "meters"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Megamacro",
  5314. height: math.unit(135, "km")
  5315. },
  5316. {
  5317. name: "Gigamacro",
  5318. height: math.unit(20000, "km")
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5324. {
  5325. side: {
  5326. height: math.unit(28.35, "feet"),
  5327. weight: math.unit(99.75, "tons"),
  5328. name: "Side",
  5329. image: {
  5330. source: "./media/characters/asana-mech/side.svg",
  5331. extra: 923 / 699,
  5332. bottom: 50 / 975
  5333. }
  5334. },
  5335. chaingun: {
  5336. height: math.unit(7, "feet"),
  5337. weight: math.unit(2400, "lb"),
  5338. name: "Chaingun",
  5339. image: {
  5340. source: "./media/characters/asana-mech/chaingun.svg"
  5341. }
  5342. },
  5343. laser: {
  5344. height: math.unit(7.12, "feet"),
  5345. weight: math.unit(2000, "lb"),
  5346. name: "Laser",
  5347. image: {
  5348. source: "./media/characters/asana-mech/laser.svg"
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(28.35, "feet"),
  5356. default: true
  5357. },
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(2500, "feet")
  5361. },
  5362. {
  5363. name: "Megamacro",
  5364. height: math.unit(25, "miles")
  5365. },
  5366. {
  5367. name: "Examacro",
  5368. height: math.unit(6e8, "lightyears")
  5369. },
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5374. {
  5375. front: {
  5376. height: math.unit(5, "meters"),
  5377. weight: math.unit(1000, "kg"),
  5378. name: "Front",
  5379. image: {
  5380. source: "./media/characters/asche/front.svg",
  5381. extra: 1258 / 1190,
  5382. bottom: 47 / 1305
  5383. }
  5384. },
  5385. frontUnderwear: {
  5386. height: math.unit(5, "meters"),
  5387. weight: math.unit(1000, "kg"),
  5388. name: "Front (Underwear)",
  5389. image: {
  5390. source: "./media/characters/asche/front-underwear.svg",
  5391. extra: 1258 / 1190,
  5392. bottom: 47 / 1305
  5393. }
  5394. },
  5395. frontDressed: {
  5396. height: math.unit(5, "meters"),
  5397. weight: math.unit(1000, "kg"),
  5398. name: "Front (Dressed)",
  5399. image: {
  5400. source: "./media/characters/asche/front-dressed.svg",
  5401. extra: 1258 / 1190,
  5402. bottom: 47 / 1305
  5403. }
  5404. },
  5405. frontArmor: {
  5406. height: math.unit(5, "meters"),
  5407. weight: math.unit(1000, "kg"),
  5408. name: "Front (Armored)",
  5409. image: {
  5410. source: "./media/characters/asche/front-armored.svg",
  5411. extra: 1374 / 1308,
  5412. bottom: 23 / 1397
  5413. }
  5414. },
  5415. mp724: {
  5416. height: math.unit(0.96, "meters"),
  5417. weight: math.unit(38, "kg"),
  5418. name: "H&K MP724",
  5419. image: {
  5420. source: "./media/characters/asche/h&k-mp724.svg"
  5421. }
  5422. },
  5423. side: {
  5424. height: math.unit(5, "meters"),
  5425. weight: math.unit(1000, "kg"),
  5426. name: "Side",
  5427. image: {
  5428. source: "./media/characters/asche/side.svg",
  5429. extra: 1717 / 1609,
  5430. bottom: 0.005
  5431. }
  5432. },
  5433. back: {
  5434. height: math.unit(5, "meters"),
  5435. weight: math.unit(1000, "kg"),
  5436. name: "Back",
  5437. image: {
  5438. source: "./media/characters/asche/back.svg",
  5439. extra: 1570 / 1501
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "DEFCON 5",
  5446. height: math.unit(5, "meters")
  5447. },
  5448. {
  5449. name: "DEFCON 4",
  5450. height: math.unit(500, "meters"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "DEFCON 3",
  5455. height: math.unit(5, "km")
  5456. },
  5457. {
  5458. name: "DEFCON 2",
  5459. height: math.unit(500, "km")
  5460. },
  5461. {
  5462. name: "DEFCON 1",
  5463. height: math.unit(500000, "km")
  5464. },
  5465. {
  5466. name: "DEFCON 0",
  5467. height: math.unit(3, "gigaparsecs")
  5468. },
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5473. {
  5474. front: {
  5475. height: math.unit(7, "feet"),
  5476. weight: math.unit(92.7, "kg"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/gale/front.svg",
  5480. extra: 977/919,
  5481. bottom: 105/1082
  5482. }
  5483. },
  5484. side: {
  5485. height: math.unit(6.7, "feet"),
  5486. weight: math.unit(92.7, "kg"),
  5487. name: "Side",
  5488. image: {
  5489. source: "./media/characters/gale/side.svg",
  5490. extra: 978/922,
  5491. bottom: 140/1118
  5492. }
  5493. },
  5494. back: {
  5495. height: math.unit(7, "feet"),
  5496. weight: math.unit(92.7, "kg"),
  5497. name: "Back",
  5498. image: {
  5499. source: "./media/characters/gale/back.svg",
  5500. extra: 966/920,
  5501. bottom: 61/1027
  5502. }
  5503. },
  5504. maw: {
  5505. height: math.unit(2.23, "feet"),
  5506. name: "Maw",
  5507. image: {
  5508. source: "./media/characters/gale/maw.svg"
  5509. }
  5510. },
  5511. foot: {
  5512. height: math.unit(2.1, "feet"),
  5513. name: "Foot",
  5514. image: {
  5515. source: "./media/characters/gale/foot.svg"
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(7, "feet")
  5523. },
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(150, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Macro+",
  5531. height: math.unit(300, "feet")
  5532. },
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5537. {
  5538. front: {
  5539. height: math.unit(5 + 10/12, "feet"),
  5540. weight: math.unit(67, "kg"),
  5541. name: "Front",
  5542. image: {
  5543. source: "./media/characters/draylen/front.svg",
  5544. extra: 832/777,
  5545. bottom: 85/917
  5546. }
  5547. }
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(5 + 10/12, "feet")
  5553. },
  5554. {
  5555. name: "Macro",
  5556. height: math.unit(150, "feet"),
  5557. default: true
  5558. }
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(7 + 9 / 12, "feet"),
  5566. weight: math.unit(379, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/chez/front.svg"
  5570. }
  5571. },
  5572. side: {
  5573. height: math.unit(7 + 9 / 12, "feet"),
  5574. weight: math.unit(379, "lbs"),
  5575. name: "Side",
  5576. image: {
  5577. source: "./media/characters/chez/side.svg"
  5578. }
  5579. }
  5580. },
  5581. [
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(7 + 9 / 12, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "God King",
  5589. height: math.unit(9750000, "meters")
  5590. }
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(275, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/kaylum/front.svg",
  5602. bottom: 0.01,
  5603. extra: 1166 / 1031
  5604. }
  5605. },
  5606. frontWingless: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(275, "lbs"),
  5609. name: "Front (Wingless)",
  5610. image: {
  5611. source: "./media/characters/kaylum/front-wingless.svg",
  5612. bottom: 0.01,
  5613. extra: 1117 / 1031
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(3.05, "meters")
  5621. },
  5622. {
  5623. name: "Master",
  5624. height: math.unit(5.5, "meters")
  5625. },
  5626. {
  5627. name: "Rampage",
  5628. height: math.unit(19, "meters")
  5629. },
  5630. {
  5631. name: "Macro Lite",
  5632. height: math.unit(37, "meters")
  5633. },
  5634. {
  5635. name: "Hyper Predator",
  5636. height: math.unit(61, "meters")
  5637. },
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(138, "meters"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(5 + 5 / 12, "feet"),
  5650. weight: math.unit(120, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/geta/front.svg",
  5654. extra: 1003/933,
  5655. bottom: 21/1024
  5656. }
  5657. },
  5658. paw: {
  5659. height: math.unit(0.35, "feet"),
  5660. name: "Paw",
  5661. image: {
  5662. source: "./media/characters/geta/paw.svg"
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Micro",
  5669. height: math.unit(3, "inches"),
  5670. default: true
  5671. },
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(5 + 5 / 12, "feet")
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(300, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/tyrnn/front.svg"
  5687. }
  5688. }
  5689. },
  5690. [
  5691. {
  5692. name: "Main Height",
  5693. height: math.unit(355, "feet"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Fave. Height",
  5698. height: math.unit(2400, "feet")
  5699. }
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(300, "lbs"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/appledectomy/front.svg"
  5711. }
  5712. }
  5713. },
  5714. [
  5715. {
  5716. name: "Macro",
  5717. height: math.unit(2500, "feet")
  5718. },
  5719. {
  5720. name: "Megamacro",
  5721. height: math.unit(50, "miles"),
  5722. default: true
  5723. },
  5724. {
  5725. name: "Gigamacro",
  5726. height: math.unit(5000, "miles")
  5727. },
  5728. {
  5729. name: "Teramacro",
  5730. height: math.unit(250000, "miles")
  5731. },
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5736. {
  5737. front: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(200, "lbs"),
  5740. name: "Front",
  5741. image: {
  5742. source: "./media/characters/vulpes/front.svg",
  5743. extra: 573 / 543,
  5744. bottom: 0.033
  5745. }
  5746. },
  5747. side: {
  5748. height: math.unit(6, "feet"),
  5749. weight: math.unit(200, "lbs"),
  5750. name: "Side",
  5751. image: {
  5752. source: "./media/characters/vulpes/side.svg",
  5753. extra: 577 / 549,
  5754. bottom: 11 / 588
  5755. }
  5756. },
  5757. back: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(200, "lbs"),
  5760. name: "Back",
  5761. image: {
  5762. source: "./media/characters/vulpes/back.svg",
  5763. extra: 573 / 549,
  5764. bottom: 20 / 593
  5765. }
  5766. },
  5767. feet: {
  5768. height: math.unit(1.276, "feet"),
  5769. name: "Feet",
  5770. image: {
  5771. source: "./media/characters/vulpes/feet.svg"
  5772. }
  5773. },
  5774. maw: {
  5775. height: math.unit(1.18, "feet"),
  5776. name: "Maw",
  5777. image: {
  5778. source: "./media/characters/vulpes/maw.svg"
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Micro",
  5785. height: math.unit(2, "inches")
  5786. },
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(6.3, "feet")
  5790. },
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(850, "feet")
  5794. },
  5795. {
  5796. name: "Megamacro",
  5797. height: math.unit(7500, "feet"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Gigamacro",
  5802. height: math.unit(570000, "miles")
  5803. }
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5808. {
  5809. front: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(210, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/rain-fallen/front.svg"
  5815. }
  5816. },
  5817. side: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(210, "lbs"),
  5820. name: "Side",
  5821. image: {
  5822. source: "./media/characters/rain-fallen/side.svg"
  5823. }
  5824. },
  5825. back: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(210, "lbs"),
  5828. name: "Back",
  5829. image: {
  5830. source: "./media/characters/rain-fallen/back.svg"
  5831. }
  5832. },
  5833. feral: {
  5834. height: math.unit(9, "feet"),
  5835. weight: math.unit(700, "lbs"),
  5836. name: "Feral",
  5837. image: {
  5838. source: "./media/characters/rain-fallen/feral.svg"
  5839. }
  5840. },
  5841. },
  5842. [
  5843. {
  5844. name: "Meddling with Mortals",
  5845. height: math.unit(8 + 8/12, "feet")
  5846. },
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(5, "meter")
  5850. },
  5851. {
  5852. name: "Macro",
  5853. height: math.unit(150, "meter"),
  5854. default: true
  5855. },
  5856. {
  5857. name: "Megamacro",
  5858. height: math.unit(278e6, "meter")
  5859. },
  5860. {
  5861. name: "Gigamacro",
  5862. height: math.unit(2e9, "meter")
  5863. },
  5864. {
  5865. name: "Teramacro",
  5866. height: math.unit(8e12, "meter")
  5867. },
  5868. {
  5869. name: "Devourer",
  5870. height: math.unit(14, "zettameters")
  5871. },
  5872. {
  5873. name: "Scarlet King",
  5874. height: math.unit(18, "yottameters")
  5875. },
  5876. {
  5877. name: "Void",
  5878. height: math.unit(1e88, "yottameters")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5884. {
  5885. standing: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(180, "lbs"),
  5888. name: "Standing",
  5889. image: {
  5890. source: "./media/characters/zaakira/standing.svg",
  5891. extra: 1599/1504,
  5892. bottom: 39/1638
  5893. }
  5894. },
  5895. laying: {
  5896. height: math.unit(3.3, "feet"),
  5897. weight: math.unit(180, "lbs"),
  5898. name: "Laying",
  5899. image: {
  5900. source: "./media/characters/zaakira/laying.svg"
  5901. }
  5902. },
  5903. },
  5904. [
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(12, "feet")
  5908. },
  5909. {
  5910. name: "Macro",
  5911. height: math.unit(279, "feet"),
  5912. default: true
  5913. }
  5914. ]
  5915. ))
  5916. characterMakers.push(() => makeCharacter(
  5917. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5918. {
  5919. femSfw: {
  5920. height: math.unit(8, "feet"),
  5921. weight: math.unit(350, "lb"),
  5922. name: "Fem",
  5923. image: {
  5924. source: "./media/characters/sigvald/fem-sfw.svg",
  5925. extra: 182 / 164,
  5926. bottom: 8.7 / 190.5
  5927. }
  5928. },
  5929. femNsfw: {
  5930. height: math.unit(8, "feet"),
  5931. weight: math.unit(350, "lb"),
  5932. name: "Fem (NSFW)",
  5933. image: {
  5934. source: "./media/characters/sigvald/fem-nsfw.svg",
  5935. extra: 182 / 164,
  5936. bottom: 8.7 / 190.5
  5937. }
  5938. },
  5939. maleNsfw: {
  5940. height: math.unit(8, "feet"),
  5941. weight: math.unit(350, "lb"),
  5942. name: "Male (NSFW)",
  5943. image: {
  5944. source: "./media/characters/sigvald/male-nsfw.svg",
  5945. extra: 182 / 164,
  5946. bottom: 8.7 / 190.5
  5947. }
  5948. },
  5949. hermNsfw: {
  5950. height: math.unit(8, "feet"),
  5951. weight: math.unit(350, "lb"),
  5952. name: "Herm (NSFW)",
  5953. image: {
  5954. source: "./media/characters/sigvald/herm-nsfw.svg",
  5955. extra: 182 / 164,
  5956. bottom: 8.7 / 190.5
  5957. }
  5958. },
  5959. dick: {
  5960. height: math.unit(2.36, "feet"),
  5961. name: "Dick",
  5962. image: {
  5963. source: "./media/characters/sigvald/dick.svg"
  5964. }
  5965. },
  5966. eye: {
  5967. height: math.unit(0.31, "feet"),
  5968. name: "Eye",
  5969. image: {
  5970. source: "./media/characters/sigvald/eye.svg"
  5971. }
  5972. },
  5973. mouth: {
  5974. height: math.unit(0.92, "feet"),
  5975. name: "Mouth",
  5976. image: {
  5977. source: "./media/characters/sigvald/mouth.svg"
  5978. }
  5979. },
  5980. paws: {
  5981. height: math.unit(2.2, "feet"),
  5982. name: "Paws",
  5983. image: {
  5984. source: "./media/characters/sigvald/paws.svg"
  5985. }
  5986. }
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(8, "feet")
  5992. },
  5993. {
  5994. name: "Large",
  5995. height: math.unit(12, "feet")
  5996. },
  5997. {
  5998. name: "Larger",
  5999. height: math.unit(20, "feet")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(150, "feet")
  6004. },
  6005. {
  6006. name: "Macro+",
  6007. height: math.unit(200, "feet"),
  6008. default: true
  6009. },
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6014. {
  6015. side: {
  6016. height: math.unit(12, "feet"),
  6017. weight: math.unit(2000, "kg"),
  6018. name: "Side",
  6019. image: {
  6020. source: "./media/characters/scott/side.svg",
  6021. extra: 754 / 724,
  6022. bottom: 0.069
  6023. }
  6024. },
  6025. upright: {
  6026. height: math.unit(12, "feet"),
  6027. weight: math.unit(2000, "kg"),
  6028. name: "Upright",
  6029. image: {
  6030. source: "./media/characters/scott/upright.svg",
  6031. extra: 3881 / 3722,
  6032. bottom: 0.05
  6033. }
  6034. },
  6035. },
  6036. [
  6037. {
  6038. name: "Normal",
  6039. height: math.unit(12, "feet"),
  6040. default: true
  6041. },
  6042. ]
  6043. ))
  6044. characterMakers.push(() => makeCharacter(
  6045. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6046. {
  6047. side: {
  6048. height: math.unit(8, "meters"),
  6049. weight: math.unit(84755, "lbs"),
  6050. name: "Side",
  6051. image: {
  6052. source: "./media/characters/tobias/side.svg",
  6053. extra: 1474 / 1096,
  6054. bottom: 38.9 / 1513.1235
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(8, "meters"),
  6062. default: true
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6068. {
  6069. front: {
  6070. height: math.unit(5.5, "feet"),
  6071. weight: math.unit(400, "lbs"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/kieran/front.svg",
  6075. extra: 2694 / 2364,
  6076. bottom: 217 / 2908
  6077. }
  6078. },
  6079. side: {
  6080. height: math.unit(5.5, "feet"),
  6081. weight: math.unit(400, "lbs"),
  6082. name: "Side",
  6083. image: {
  6084. source: "./media/characters/kieran/side.svg",
  6085. extra: 875 / 777,
  6086. bottom: 84.6 / 959
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(5.5, "feet"),
  6094. default: true
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6100. {
  6101. side: {
  6102. height: math.unit(2, "meters"),
  6103. weight: math.unit(70, "kg"),
  6104. name: "Side",
  6105. image: {
  6106. source: "./media/characters/sanya/side.svg",
  6107. bottom: 0.02,
  6108. extra: 1.02
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Small",
  6115. height: math.unit(2, "meters")
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(3, "meters")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(16, "meters"),
  6124. default: true
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6130. {
  6131. front: {
  6132. height: math.unit(2, "meters"),
  6133. weight: math.unit(120, "kg"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/miranda/front.svg",
  6137. extra: 195 / 185,
  6138. bottom: 10.9 / 206.5
  6139. }
  6140. },
  6141. back: {
  6142. height: math.unit(2, "meters"),
  6143. weight: math.unit(120, "kg"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/miranda/back.svg",
  6147. extra: 201 / 193,
  6148. bottom: 2.3 / 203.7
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(10, "feet"),
  6156. default: true
  6157. }
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "James", species: ["deer"], tags: ["anthro"] },
  6162. {
  6163. side: {
  6164. height: math.unit(2, "meters"),
  6165. weight: math.unit(100, "kg"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/james/front.svg",
  6169. extra: 10 / 8.5
  6170. }
  6171. },
  6172. },
  6173. [
  6174. {
  6175. name: "Normal",
  6176. height: math.unit(8.5, "feet"),
  6177. default: true
  6178. }
  6179. ]
  6180. ))
  6181. characterMakers.push(() => makeCharacter(
  6182. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6183. {
  6184. side: {
  6185. height: math.unit(9.5, "feet"),
  6186. weight: math.unit(2500, "lbs"),
  6187. name: "Side",
  6188. image: {
  6189. source: "./media/characters/heather/side.svg"
  6190. }
  6191. },
  6192. },
  6193. [
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(9.5, "feet"),
  6197. default: true
  6198. }
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6203. {
  6204. side: {
  6205. height: math.unit(6.5, "feet"),
  6206. weight: math.unit(400, "lbs"),
  6207. name: "Side",
  6208. image: {
  6209. source: "./media/characters/lukas/side.svg",
  6210. extra: 7.25 / 6.5
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(6.5, "feet"),
  6218. default: true
  6219. }
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6224. {
  6225. side: {
  6226. height: math.unit(5, "feet"),
  6227. weight: math.unit(3000, "lbs"),
  6228. name: "Side",
  6229. image: {
  6230. source: "./media/characters/louise/side.svg"
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(5, "feet"),
  6238. default: true
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6244. {
  6245. side: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(150, "lbs"),
  6248. name: "Side",
  6249. image: {
  6250. source: "./media/characters/ramona/side.svg",
  6251. extra: 871/854,
  6252. bottom: 41/912
  6253. }
  6254. },
  6255. },
  6256. [
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(6 + 4/12, "feet")
  6260. },
  6261. {
  6262. name: "Minimacro",
  6263. height: math.unit(5.3, "meters"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Macro",
  6268. height: math.unit(20, "stories")
  6269. },
  6270. {
  6271. name: "Macro+",
  6272. height: math.unit(50, "stories")
  6273. },
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6278. {
  6279. standing: {
  6280. height: math.unit(5.75, "feet"),
  6281. weight: math.unit(160, "lbs"),
  6282. name: "Standing",
  6283. image: {
  6284. source: "./media/characters/deerpuff/standing.svg",
  6285. extra: 682 / 624
  6286. }
  6287. },
  6288. sitting: {
  6289. height: math.unit(5.75 / 1.79, "feet"),
  6290. weight: math.unit(160, "lbs"),
  6291. name: "Sitting",
  6292. image: {
  6293. source: "./media/characters/deerpuff/sitting.svg",
  6294. bottom: 44 / 400,
  6295. extra: 1
  6296. }
  6297. },
  6298. taurLaying: {
  6299. height: math.unit(6, "feet"),
  6300. weight: math.unit(400, "lbs"),
  6301. name: "Taur (Laying)",
  6302. image: {
  6303. source: "./media/characters/deerpuff/taur-laying.svg"
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Puffball",
  6310. height: math.unit(6, "inches")
  6311. },
  6312. {
  6313. name: "Normalpuff",
  6314. height: math.unit(5.75, "feet")
  6315. },
  6316. {
  6317. name: "Macropuff",
  6318. height: math.unit(1500, "feet"),
  6319. default: true
  6320. },
  6321. {
  6322. name: "Megapuff",
  6323. height: math.unit(500, "miles")
  6324. },
  6325. {
  6326. name: "Gigapuff",
  6327. height: math.unit(250000, "miles")
  6328. },
  6329. {
  6330. name: "Omegapuff",
  6331. height: math.unit(1000, "lightyears")
  6332. },
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6337. {
  6338. stomping: {
  6339. height: math.unit(6, "feet"),
  6340. weight: math.unit(170, "lbs"),
  6341. name: "Stomping",
  6342. image: {
  6343. source: "./media/characters/vivian/stomping.svg"
  6344. }
  6345. },
  6346. sitting: {
  6347. height: math.unit(6 / 1.75, "feet"),
  6348. weight: math.unit(170, "lbs"),
  6349. name: "Sitting",
  6350. image: {
  6351. source: "./media/characters/vivian/sitting.svg",
  6352. bottom: 1 / 6.4,
  6353. extra: 1,
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(7, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Macro",
  6365. height: math.unit(10, "stories")
  6366. },
  6367. {
  6368. name: "Macro+",
  6369. height: math.unit(30, "stories")
  6370. },
  6371. {
  6372. name: "Megamacro",
  6373. height: math.unit(10, "miles")
  6374. },
  6375. {
  6376. name: "Megamacro+",
  6377. height: math.unit(2750000, "meters")
  6378. },
  6379. ]
  6380. ))
  6381. characterMakers.push(() => makeCharacter(
  6382. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6383. {
  6384. front: {
  6385. height: math.unit(6, "feet"),
  6386. weight: math.unit(160, "lbs"),
  6387. name: "Front",
  6388. image: {
  6389. source: "./media/characters/prince/front.svg",
  6390. extra: 1938/1682,
  6391. bottom: 45/1983
  6392. }
  6393. },
  6394. back: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(160, "lbs"),
  6397. name: "Back",
  6398. image: {
  6399. source: "./media/characters/prince/back.svg",
  6400. extra: 1955/1726,
  6401. bottom: 6/1961
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Normal",
  6408. height: math.unit(7.75, "feet"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Not cute",
  6413. height: math.unit(17, "feet")
  6414. },
  6415. {
  6416. name: "I said NOT",
  6417. height: math.unit(91, "feet")
  6418. },
  6419. {
  6420. name: "Please stop",
  6421. height: math.unit(560, "feet")
  6422. },
  6423. {
  6424. name: "What have you done",
  6425. height: math.unit(2200, "feet")
  6426. },
  6427. {
  6428. name: "Deer God",
  6429. height: math.unit(3.6, "miles")
  6430. },
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6435. {
  6436. standing: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(300, "lbs"),
  6439. name: "Standing",
  6440. image: {
  6441. source: "./media/characters/psymon/standing.svg",
  6442. extra: 1888 / 1810,
  6443. bottom: 0.05
  6444. }
  6445. },
  6446. slithering: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(300, "lbs"),
  6449. name: "Slithering",
  6450. image: {
  6451. source: "./media/characters/psymon/slithering.svg",
  6452. extra: 1330 / 1224
  6453. }
  6454. },
  6455. slitheringAlt: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(300, "lbs"),
  6458. name: "Slithering (Alt)",
  6459. image: {
  6460. source: "./media/characters/psymon/slithering-alt.svg",
  6461. extra: 1330 / 1224
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(11.25, "feet"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Large",
  6473. height: math.unit(27, "feet")
  6474. },
  6475. {
  6476. name: "Giant",
  6477. height: math.unit(87, "feet")
  6478. },
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(365, "feet")
  6482. },
  6483. {
  6484. name: "Megamacro",
  6485. height: math.unit(3, "miles")
  6486. },
  6487. {
  6488. name: "World Serpent",
  6489. height: math.unit(8000, "miles")
  6490. },
  6491. ]
  6492. ))
  6493. characterMakers.push(() => makeCharacter(
  6494. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6495. {
  6496. front: {
  6497. height: math.unit(6, "feet"),
  6498. weight: math.unit(180, "lbs"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/daimos/front.svg",
  6502. extra: 4160 / 3897,
  6503. bottom: 0.021
  6504. }
  6505. }
  6506. },
  6507. [
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(8, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Big Dog",
  6515. height: math.unit(22, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(127, "feet")
  6520. },
  6521. {
  6522. name: "Megamacro",
  6523. height: math.unit(3600, "feet")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6529. {
  6530. side: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(180, "lbs"),
  6533. name: "Side",
  6534. image: {
  6535. source: "./media/characters/blake/side.svg",
  6536. extra: 1212 / 1120,
  6537. bottom: 0.05
  6538. }
  6539. },
  6540. crouched: {
  6541. height: math.unit(6 * 0.57, "feet"),
  6542. weight: math.unit(180, "lbs"),
  6543. name: "Crouched",
  6544. image: {
  6545. source: "./media/characters/blake/crouched.svg",
  6546. extra: 840 / 587,
  6547. bottom: 0.04
  6548. }
  6549. },
  6550. bent: {
  6551. height: math.unit(6 * 0.75, "feet"),
  6552. weight: math.unit(180, "lbs"),
  6553. name: "Bent",
  6554. image: {
  6555. source: "./media/characters/blake/bent.svg",
  6556. extra: 592 / 544,
  6557. bottom: 0.035
  6558. }
  6559. },
  6560. },
  6561. [
  6562. {
  6563. name: "Normal",
  6564. height: math.unit(8 + 1 / 6, "feet"),
  6565. default: true
  6566. },
  6567. {
  6568. name: "Big Backside",
  6569. height: math.unit(37, "feet")
  6570. },
  6571. {
  6572. name: "Subway Shredder",
  6573. height: math.unit(72, "feet")
  6574. },
  6575. {
  6576. name: "City Carver",
  6577. height: math.unit(1675, "feet")
  6578. },
  6579. {
  6580. name: "Tectonic Tweaker",
  6581. height: math.unit(2300, "miles")
  6582. },
  6583. ]
  6584. ))
  6585. characterMakers.push(() => makeCharacter(
  6586. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6587. {
  6588. front: {
  6589. height: math.unit(6, "feet"),
  6590. weight: math.unit(180, "lbs"),
  6591. name: "Front",
  6592. image: {
  6593. source: "./media/characters/guisetto/front.svg",
  6594. extra: 856 / 817,
  6595. bottom: 0.06
  6596. }
  6597. },
  6598. airborne: {
  6599. height: math.unit(6, "feet"),
  6600. weight: math.unit(180, "lbs"),
  6601. name: "Airborne",
  6602. image: {
  6603. source: "./media/characters/guisetto/airborne.svg",
  6604. extra: 584 / 525
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(10 + 11 / 12, "feet"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Large",
  6616. height: math.unit(35, "feet")
  6617. },
  6618. {
  6619. name: "Macro",
  6620. height: math.unit(475, "feet")
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6626. {
  6627. front: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(180, "lbs"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/luxor/front.svg",
  6633. extra: 2940 / 2152
  6634. }
  6635. },
  6636. back: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(180, "lbs"),
  6639. name: "Back",
  6640. image: {
  6641. source: "./media/characters/luxor/back.svg",
  6642. extra: 1083 / 960
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(5 + 5 / 6, "feet"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Lamp",
  6654. height: math.unit(50, "feet")
  6655. },
  6656. {
  6657. name: "Lämp",
  6658. height: math.unit(300, "feet")
  6659. },
  6660. {
  6661. name: "The sun is a lamp",
  6662. height: math.unit(250000, "miles")
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6668. {
  6669. front: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(50, "lbs"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/huoyan/front.svg"
  6675. }
  6676. },
  6677. side: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(180, "lbs"),
  6680. name: "Side",
  6681. image: {
  6682. source: "./media/characters/huoyan/side.svg"
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Chef",
  6689. height: math.unit(9, "feet")
  6690. },
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(65, "feet"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(780, "feet")
  6699. },
  6700. {
  6701. name: "Flaming Mountain",
  6702. height: math.unit(4.8, "miles")
  6703. },
  6704. {
  6705. name: "Celestial",
  6706. height: math.unit(765000, "miles")
  6707. },
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(5 + 3 / 4, "feet"),
  6715. weight: math.unit(120, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/tails/front.svg"
  6719. }
  6720. }
  6721. },
  6722. [
  6723. {
  6724. name: "Normal",
  6725. height: math.unit(5 + 3 / 4, "feet"),
  6726. default: true
  6727. }
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6732. {
  6733. front: {
  6734. height: math.unit(4, "feet"),
  6735. weight: math.unit(50, "lbs"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/rainy/front.svg"
  6739. }
  6740. }
  6741. },
  6742. [
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(800, "feet"),
  6746. default: true
  6747. }
  6748. ]
  6749. ))
  6750. characterMakers.push(() => makeCharacter(
  6751. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6752. {
  6753. front: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(150, "lbs"),
  6756. name: "Front",
  6757. image: {
  6758. source: "./media/characters/rainier/front.svg"
  6759. }
  6760. }
  6761. },
  6762. [
  6763. {
  6764. name: "Micro",
  6765. height: math.unit(2, "mm"),
  6766. default: true
  6767. }
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(8 + 4/12, "feet"),
  6775. weight: math.unit(450, "kilograms"),
  6776. volume: math.unit(5, "cups"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/andy-renard/front.svg",
  6780. extra: 1839/1726,
  6781. bottom: 134/1973
  6782. }
  6783. },
  6784. back: {
  6785. height: math.unit(8 + 4/12, "feet"),
  6786. weight: math.unit(450, "kilograms"),
  6787. volume: math.unit(5, "cups"),
  6788. name: "Back",
  6789. image: {
  6790. source: "./media/characters/andy-renard/back.svg",
  6791. extra: 1838/1710,
  6792. bottom: 105/1943
  6793. }
  6794. },
  6795. },
  6796. [
  6797. {
  6798. name: "Tall",
  6799. height: math.unit(8 + 4/12, "feet")
  6800. },
  6801. {
  6802. name: "Mini Macro",
  6803. height: math.unit(15, "feet"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(100, "feet")
  6809. },
  6810. {
  6811. name: "Mega Macro",
  6812. height: math.unit(1000, "feet")
  6813. },
  6814. {
  6815. name: "Giga Macro",
  6816. height: math.unit(10, "miles")
  6817. },
  6818. {
  6819. name: "God Macro",
  6820. height: math.unit(1, "multiverse")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(210, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/cimmaron/front-sfw.svg",
  6833. extra: 701 / 676,
  6834. bottom: 0.046
  6835. }
  6836. },
  6837. back: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(210, "lbs"),
  6840. name: "Back",
  6841. image: {
  6842. source: "./media/characters/cimmaron/back-sfw.svg",
  6843. extra: 701 / 676,
  6844. bottom: 0.046
  6845. }
  6846. },
  6847. frontNsfw: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(210, "lbs"),
  6850. name: "Front (NSFW)",
  6851. image: {
  6852. source: "./media/characters/cimmaron/front-nsfw.svg",
  6853. extra: 701 / 676,
  6854. bottom: 0.046
  6855. }
  6856. },
  6857. backNsfw: {
  6858. height: math.unit(6, "feet"),
  6859. weight: math.unit(210, "lbs"),
  6860. name: "Back (NSFW)",
  6861. image: {
  6862. source: "./media/characters/cimmaron/back-nsfw.svg",
  6863. extra: 701 / 676,
  6864. bottom: 0.046
  6865. }
  6866. },
  6867. dick: {
  6868. height: math.unit(1.714, "feet"),
  6869. name: "Dick",
  6870. image: {
  6871. source: "./media/characters/cimmaron/dick.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(6, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Macro Mayor",
  6883. height: math.unit(350, "meters")
  6884. },
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6889. {
  6890. front: {
  6891. height: math.unit(6, "feet"),
  6892. weight: math.unit(200, "lbs"),
  6893. name: "Front",
  6894. image: {
  6895. source: "./media/characters/akari/front.svg",
  6896. extra: 962 / 901,
  6897. bottom: 0.04
  6898. }
  6899. }
  6900. },
  6901. [
  6902. {
  6903. name: "Micro",
  6904. height: math.unit(5, "inches"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(7, "feet")
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(140, "lbs"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/cynosura/front.svg",
  6922. extra: 437/410,
  6923. bottom: 9/446
  6924. }
  6925. },
  6926. back: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(140, "lbs"),
  6929. name: "Back",
  6930. image: {
  6931. source: "./media/characters/cynosura/back.svg",
  6932. extra: 1304/1160,
  6933. bottom: 71/1375
  6934. }
  6935. },
  6936. },
  6937. [
  6938. {
  6939. name: "Micro",
  6940. height: math.unit(4, "inches")
  6941. },
  6942. {
  6943. name: "Normal",
  6944. height: math.unit(5.75, "feet"),
  6945. default: true
  6946. },
  6947. {
  6948. name: "Tall",
  6949. height: math.unit(10, "feet")
  6950. },
  6951. {
  6952. name: "Big",
  6953. height: math.unit(20, "feet")
  6954. },
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(50, "feet")
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6963. {
  6964. front: {
  6965. height: math.unit(13 + 2/12, "feet"),
  6966. weight: math.unit(800, "kg"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/gin/front.svg",
  6970. extra: 1312/1191,
  6971. bottom: 45/1357
  6972. }
  6973. },
  6974. mouth: {
  6975. height: math.unit(2.39 * 1.8, "feet"),
  6976. name: "Mouth",
  6977. image: {
  6978. source: "./media/characters/gin/mouth.svg"
  6979. }
  6980. },
  6981. hand: {
  6982. height: math.unit(1.57 * 2.19, "feet"),
  6983. name: "Hand",
  6984. image: {
  6985. source: "./media/characters/gin/hand.svg"
  6986. }
  6987. },
  6988. foot: {
  6989. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6990. name: "Foot",
  6991. image: {
  6992. source: "./media/characters/gin/foot.svg"
  6993. }
  6994. },
  6995. sole: {
  6996. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6997. name: "Sole",
  6998. image: {
  6999. source: "./media/characters/gin/sole.svg"
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Very Small",
  7006. height: math.unit(13 + 2 / 12, "feet")
  7007. },
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(600, "miles")
  7011. },
  7012. {
  7013. name: "Regular",
  7014. height: math.unit(20, "earths"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(2.2, "solarradii")
  7020. },
  7021. {
  7022. name: "Teramacro",
  7023. height: math.unit(1.2, "galaxies")
  7024. },
  7025. {
  7026. name: "Omegamacro",
  7027. height: math.unit(200, "universes")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(6 + 1 / 6, "feet"),
  7036. weight: math.unit(178, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/guy/front.svg"
  7040. }
  7041. }
  7042. },
  7043. [
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(6 + 1 / 6, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Large",
  7051. height: math.unit(25 + 7 / 12, "feet")
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(60 + 9 / 12, "feet")
  7056. },
  7057. {
  7058. name: "Macro+",
  7059. height: math.unit(246, "feet")
  7060. },
  7061. {
  7062. name: "Macro++",
  7063. height: math.unit(878, "feet")
  7064. }
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(9, "feet"),
  7072. weight: math.unit(800, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/tiberius/front.svg",
  7076. extra: 2295 / 2071
  7077. }
  7078. },
  7079. back: {
  7080. height: math.unit(9, "feet"),
  7081. weight: math.unit(800, "lbs"),
  7082. name: "Back",
  7083. image: {
  7084. source: "./media/characters/tiberius/back.svg",
  7085. extra: 2373 / 2160
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(9, "feet"),
  7093. default: true
  7094. }
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(600, "lbs"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/surgo/front.svg",
  7106. extra: 3591 / 2227
  7107. }
  7108. },
  7109. back: {
  7110. height: math.unit(6, "feet"),
  7111. weight: math.unit(600, "lbs"),
  7112. name: "Back",
  7113. image: {
  7114. source: "./media/characters/surgo/back.svg",
  7115. extra: 3557 / 2228
  7116. }
  7117. },
  7118. laying: {
  7119. height: math.unit(6 * 0.85, "feet"),
  7120. weight: math.unit(600, "lbs"),
  7121. name: "Laying",
  7122. image: {
  7123. source: "./media/characters/surgo/laying.svg"
  7124. }
  7125. },
  7126. },
  7127. [
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(6, "feet"),
  7131. default: true
  7132. }
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7137. {
  7138. side: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(150, "lbs"),
  7141. name: "Side",
  7142. image: {
  7143. source: "./media/characters/cibus/side.svg",
  7144. extra: 800 / 400
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(6, "feet"),
  7152. default: true
  7153. }
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(240, "lbs"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/nibbles/front.svg"
  7165. }
  7166. },
  7167. side: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(240, "lbs"),
  7170. name: "Side",
  7171. image: {
  7172. source: "./media/characters/nibbles/side.svg"
  7173. }
  7174. },
  7175. },
  7176. [
  7177. {
  7178. name: "Normal",
  7179. height: math.unit(9, "feet"),
  7180. default: true
  7181. }
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7186. {
  7187. side: {
  7188. height: math.unit(5 + 1 / 6, "feet"),
  7189. weight: math.unit(130, "lbs"),
  7190. name: "Side",
  7191. image: {
  7192. source: "./media/characters/rikky/side.svg",
  7193. extra: 851 / 801
  7194. }
  7195. },
  7196. },
  7197. [
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(5 + 1 / 6, "feet")
  7201. },
  7202. {
  7203. name: "Macro",
  7204. height: math.unit(152, "feet"),
  7205. default: true
  7206. },
  7207. {
  7208. name: "Megamacro",
  7209. height: math.unit(7, "miles")
  7210. }
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7215. {
  7216. side: {
  7217. height: math.unit(370, "cm"),
  7218. weight: math.unit(350, "lbs"),
  7219. name: "Side",
  7220. image: {
  7221. source: "./media/characters/malfressa/side.svg"
  7222. }
  7223. },
  7224. walking: {
  7225. height: math.unit(370, "cm"),
  7226. weight: math.unit(350, "lbs"),
  7227. name: "Walking",
  7228. image: {
  7229. source: "./media/characters/malfressa/walking.svg"
  7230. }
  7231. },
  7232. feral: {
  7233. height: math.unit(2500, "cm"),
  7234. weight: math.unit(100000, "lbs"),
  7235. name: "Feral",
  7236. image: {
  7237. source: "./media/characters/malfressa/feral.svg",
  7238. extra: 2108 / 837,
  7239. bottom: 0.02
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Normal",
  7246. height: math.unit(370, "cm")
  7247. },
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(300, "meters"),
  7251. default: true
  7252. }
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(60, "kg"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/jaro/front.svg",
  7264. extra: 845/817,
  7265. bottom: 45/890
  7266. }
  7267. },
  7268. back: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(60, "kg"),
  7271. name: "Back",
  7272. image: {
  7273. source: "./media/characters/jaro/back.svg",
  7274. extra: 847/817,
  7275. bottom: 34/881
  7276. }
  7277. },
  7278. },
  7279. [
  7280. {
  7281. name: "Micro",
  7282. height: math.unit(7, "inches")
  7283. },
  7284. {
  7285. name: "Normal",
  7286. height: math.unit(5.5, "feet"),
  7287. default: true
  7288. },
  7289. {
  7290. name: "Minimacro",
  7291. height: math.unit(20, "feet")
  7292. },
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(200, "meters")
  7296. }
  7297. ]
  7298. ))
  7299. characterMakers.push(() => makeCharacter(
  7300. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7301. {
  7302. front: {
  7303. height: math.unit(6, "feet"),
  7304. weight: math.unit(195, "lb"),
  7305. name: "Front",
  7306. image: {
  7307. source: "./media/characters/rogue/front.svg"
  7308. }
  7309. },
  7310. },
  7311. [
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(90, "feet"),
  7315. default: true
  7316. },
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7321. {
  7322. standing: {
  7323. height: math.unit(5 + 8 / 12, "feet"),
  7324. weight: math.unit(140, "lb"),
  7325. name: "Standing",
  7326. image: {
  7327. source: "./media/characters/piper/standing.svg",
  7328. extra: 1440/1284,
  7329. bottom: 66/1506
  7330. }
  7331. },
  7332. running: {
  7333. height: math.unit(5 + 8 / 12, "feet"),
  7334. weight: math.unit(140, "lb"),
  7335. name: "Running",
  7336. image: {
  7337. source: "./media/characters/piper/running.svg",
  7338. extra: 3948/3655,
  7339. bottom: 0/3948
  7340. }
  7341. },
  7342. sole: {
  7343. height: math.unit(0.81, "feet"),
  7344. weight: math.unit(2, "kg"),
  7345. name: "Sole",
  7346. image: {
  7347. source: "./media/characters/piper/sole.svg"
  7348. }
  7349. },
  7350. nipple: {
  7351. height: math.unit(0.25, "feet"),
  7352. weight: math.unit(1.5, "lb"),
  7353. name: "Nipple",
  7354. image: {
  7355. source: "./media/characters/piper/nipple.svg"
  7356. }
  7357. },
  7358. head: {
  7359. height: math.unit(1.1, "feet"),
  7360. name: "Head",
  7361. image: {
  7362. source: "./media/characters/piper/head.svg"
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Micro",
  7369. height: math.unit(2, "inches")
  7370. },
  7371. {
  7372. name: "Normal",
  7373. height: math.unit(5 + 8 / 12, "feet")
  7374. },
  7375. {
  7376. name: "Macro",
  7377. height: math.unit(250, "feet"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Megamacro",
  7382. height: math.unit(7, "miles")
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(6, "feet"),
  7391. weight: math.unit(220, "lb"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/gemini/front.svg"
  7395. }
  7396. },
  7397. back: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(220, "lb"),
  7400. name: "Back",
  7401. image: {
  7402. source: "./media/characters/gemini/back.svg"
  7403. }
  7404. },
  7405. kneeling: {
  7406. height: math.unit(6 / 1.5, "feet"),
  7407. weight: math.unit(220, "lb"),
  7408. name: "Kneeling",
  7409. image: {
  7410. source: "./media/characters/gemini/kneeling.svg",
  7411. bottom: 0.02
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(300, "meters"),
  7419. default: true
  7420. },
  7421. {
  7422. name: "Megamacro",
  7423. height: math.unit(6900, "meters")
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7429. {
  7430. anthro: {
  7431. height: math.unit(2.35, "meters"),
  7432. weight: math.unit(73, "kg"),
  7433. name: "Anthro",
  7434. image: {
  7435. source: "./media/characters/alicia/anthro.svg",
  7436. extra: 2571 / 2385,
  7437. bottom: 75 / 2648
  7438. }
  7439. },
  7440. paw: {
  7441. height: math.unit(1.32, "feet"),
  7442. name: "Paw",
  7443. image: {
  7444. source: "./media/characters/alicia/paw.svg"
  7445. }
  7446. },
  7447. feral: {
  7448. height: math.unit(1.69, "meters"),
  7449. weight: math.unit(73, "kg"),
  7450. name: "Feral",
  7451. image: {
  7452. source: "./media/characters/alicia/feral.svg",
  7453. extra: 2123 / 1715,
  7454. bottom: 222 / 2349
  7455. }
  7456. },
  7457. },
  7458. [
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(2.35, "meters")
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(60, "meters"),
  7466. default: true
  7467. },
  7468. {
  7469. name: "Megamacro",
  7470. height: math.unit(10000, "kilometers")
  7471. },
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(7, "feet"),
  7479. weight: math.unit(250, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/archy/front.svg"
  7483. }
  7484. }
  7485. },
  7486. [
  7487. {
  7488. name: "Micro",
  7489. height: math.unit(1, "inch")
  7490. },
  7491. {
  7492. name: "Shorty",
  7493. height: math.unit(5, "feet")
  7494. },
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(7, "feet")
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(600, "meters"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Megamacro",
  7506. height: math.unit(1, "mile")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(1.65, "meters"),
  7515. weight: math.unit(74, "kg"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/berri/front.svg",
  7519. extra: 857 / 837,
  7520. bottom: 18 / 877
  7521. }
  7522. },
  7523. bum: {
  7524. height: math.unit(1.46, "feet"),
  7525. name: "Bum",
  7526. image: {
  7527. source: "./media/characters/berri/bum.svg"
  7528. }
  7529. },
  7530. mouth: {
  7531. height: math.unit(0.44, "feet"),
  7532. name: "Mouth",
  7533. image: {
  7534. source: "./media/characters/berri/mouth.svg"
  7535. }
  7536. },
  7537. paw: {
  7538. height: math.unit(0.826, "feet"),
  7539. name: "Paw",
  7540. image: {
  7541. source: "./media/characters/berri/paw.svg"
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(1.65, "meters")
  7549. },
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(60, "m"),
  7553. default: true
  7554. },
  7555. {
  7556. name: "Megamacro",
  7557. height: math.unit(9.213, "km")
  7558. },
  7559. {
  7560. name: "Planet Eater",
  7561. height: math.unit(489, "megameters")
  7562. },
  7563. {
  7564. name: "Teramacro",
  7565. height: math.unit(2471635000000, "meters")
  7566. },
  7567. {
  7568. name: "Examacro",
  7569. height: math.unit(8.0624e+26, "meters")
  7570. }
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(1.72, "meters"),
  7578. weight: math.unit(68, "kg"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/lexi/front.svg"
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Very Smol",
  7588. height: math.unit(10, "mm")
  7589. },
  7590. {
  7591. name: "Micro",
  7592. height: math.unit(6.8, "cm"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(1.72, "m")
  7598. }
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(1.69, "meters"),
  7606. weight: math.unit(68, "kg"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/martin/front.svg",
  7610. extra: 596 / 581
  7611. }
  7612. }
  7613. },
  7614. [
  7615. {
  7616. name: "Micro",
  7617. height: math.unit(6.85, "cm"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Normal",
  7622. height: math.unit(1.69, "m")
  7623. }
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7628. {
  7629. front: {
  7630. height: math.unit(1.69, "meters"),
  7631. weight: math.unit(68, "kg"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/juno/front.svg"
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(7, "cm")
  7642. },
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(1.89, "m")
  7646. },
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(353, "meters"),
  7650. default: true
  7651. }
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(1.93, "meters"),
  7659. weight: math.unit(83, "kg"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/samantha/front.svg"
  7663. }
  7664. },
  7665. frontClothed: {
  7666. height: math.unit(1.93, "meters"),
  7667. weight: math.unit(83, "kg"),
  7668. name: "Front (Clothed)",
  7669. image: {
  7670. source: "./media/characters/samantha/front-clothed.svg"
  7671. }
  7672. },
  7673. back: {
  7674. height: math.unit(1.93, "meters"),
  7675. weight: math.unit(83, "kg"),
  7676. name: "Back",
  7677. image: {
  7678. source: "./media/characters/samantha/back.svg"
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(1.93, "m")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(74, "meters"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Macro+",
  7694. height: math.unit(223, "meters"),
  7695. },
  7696. {
  7697. name: "Megamacro",
  7698. height: math.unit(8381, "meters"),
  7699. },
  7700. {
  7701. name: "Megamacro+",
  7702. height: math.unit(12000, "kilometers")
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(1.92, "meters"),
  7711. weight: math.unit(80, "kg"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/dr-clay/front.svg"
  7715. }
  7716. },
  7717. frontClothed: {
  7718. height: math.unit(1.92, "meters"),
  7719. weight: math.unit(80, "kg"),
  7720. name: "Front (Clothed)",
  7721. image: {
  7722. source: "./media/characters/dr-clay/front-clothed.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(1.92, "m")
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(214, "meters"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro+",
  7738. height: math.unit(12.237, "meters"),
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(557, "megameters"),
  7743. },
  7744. {
  7745. name: "Unimaginable",
  7746. height: math.unit(120e9, "lightyears")
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7752. {
  7753. front: {
  7754. height: math.unit(2, "meters"),
  7755. weight: math.unit(80, "kg"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Teramacro",
  7765. height: math.unit(500000, "lightyears"),
  7766. default: true
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7772. {
  7773. crux: {
  7774. height: math.unit(2, "meters"),
  7775. weight: math.unit(150, "kg"),
  7776. name: "Crux",
  7777. image: {
  7778. source: "./media/characters/vemus/crux.svg",
  7779. extra: 1074/936,
  7780. bottom: 23/1097
  7781. }
  7782. },
  7783. skunkTanuki: {
  7784. height: math.unit(2, "meters"),
  7785. weight: math.unit(150, "kg"),
  7786. name: "Skunk-Tanuki",
  7787. image: {
  7788. source: "./media/characters/vemus/skunk-tanuki.svg",
  7789. extra: 926/893,
  7790. bottom: 20/946
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(4, "meters"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Big",
  7802. height: math.unit(8, "meters")
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(100, "meters")
  7807. },
  7808. {
  7809. name: "Macro+",
  7810. height: math.unit(1500, "meters")
  7811. },
  7812. {
  7813. name: "Stellar",
  7814. height: math.unit(14e8, "meters")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(2, "meters"),
  7823. weight: math.unit(70, "kg"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/beherit/front.svg",
  7827. extra: 1234/1109,
  7828. bottom: 55/1289
  7829. }
  7830. }
  7831. },
  7832. [
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(6, "feet")
  7836. },
  7837. {
  7838. name: "Lorg",
  7839. height: math.unit(25, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Lorger",
  7844. height: math.unit(75, "feet")
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(200, "meters")
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(2, "meters"),
  7857. weight: math.unit(150, "kg"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/everett/front.svg",
  7861. extra: 1017/866,
  7862. bottom: 86/1103
  7863. }
  7864. },
  7865. paw: {
  7866. height: math.unit(2 / 3.6, "meters"),
  7867. name: "Paw",
  7868. image: {
  7869. source: "./media/characters/everett/paw.svg"
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(15, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Lorg",
  7881. height: math.unit(70, "feet"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Lorger",
  7886. height: math.unit(250, "feet")
  7887. },
  7888. {
  7889. name: "Macro",
  7890. height: math.unit(500, "meters")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(2, "meters"),
  7899. weight: math.unit(86, "kg"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/rose/front.svg",
  7903. extra: 1785/1636,
  7904. bottom: 30/1815
  7905. },
  7906. form: "liom",
  7907. default: true
  7908. },
  7909. frontSporty: {
  7910. height: math.unit(2, "meters"),
  7911. weight: math.unit(86, "kg"),
  7912. name: "Front (Sporty)",
  7913. image: {
  7914. source: "./media/characters/rose/front-sporty.svg",
  7915. extra: 350/335,
  7916. bottom: 10/360
  7917. },
  7918. form: "liom"
  7919. },
  7920. frontAlt: {
  7921. height: math.unit(1.6, "meters"),
  7922. weight: math.unit(86, "kg"),
  7923. name: "Front (Alt)",
  7924. image: {
  7925. source: "./media/characters/rose/front-alt.svg",
  7926. extra: 299/283,
  7927. bottom: 3/302
  7928. },
  7929. form: "liom"
  7930. },
  7931. plush: {
  7932. height: math.unit(2, "meters"),
  7933. weight: math.unit(86/3, "kg"),
  7934. name: "Plush",
  7935. image: {
  7936. source: "./media/characters/rose/plush.svg",
  7937. extra: 361/337,
  7938. bottom: 11/372
  7939. },
  7940. form: "plush",
  7941. default: true
  7942. },
  7943. faeStanding: {
  7944. height: math.unit(10, "cm"),
  7945. weight: math.unit(10, "grams"),
  7946. name: "Standing",
  7947. image: {
  7948. source: "./media/characters/rose/fae-standing.svg",
  7949. extra: 1189/1060,
  7950. bottom: 27/1216
  7951. },
  7952. form: "fae",
  7953. default: true
  7954. },
  7955. faeSitting: {
  7956. height: math.unit(5, "cm"),
  7957. weight: math.unit(10, "grams"),
  7958. name: "Sitting",
  7959. image: {
  7960. source: "./media/characters/rose/fae-sitting.svg",
  7961. extra: 737/577,
  7962. bottom: 356/1093
  7963. },
  7964. form: "fae"
  7965. },
  7966. faePaw: {
  7967. height: math.unit(1.35, "cm"),
  7968. name: "Paw",
  7969. image: {
  7970. source: "./media/characters/rose/fae-paw.svg"
  7971. },
  7972. form: "fae"
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "True Micro",
  7978. height: math.unit(9, "cm"),
  7979. form: "liom"
  7980. },
  7981. {
  7982. name: "Micro",
  7983. height: math.unit(16, "cm"),
  7984. form: "liom"
  7985. },
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(1.85, "meters"),
  7989. default: true,
  7990. form: "liom"
  7991. },
  7992. {
  7993. name: "Mini-Macro",
  7994. height: math.unit(5, "meters"),
  7995. form: "liom"
  7996. },
  7997. {
  7998. name: "Macro",
  7999. height: math.unit(15, "meters"),
  8000. form: "liom"
  8001. },
  8002. {
  8003. name: "True Macro",
  8004. height: math.unit(40, "meters"),
  8005. form: "liom"
  8006. },
  8007. {
  8008. name: "City Scale",
  8009. height: math.unit(1, "km"),
  8010. form: "liom"
  8011. },
  8012. {
  8013. name: "Plushie",
  8014. height: math.unit(9, "cm"),
  8015. form: "plush",
  8016. default: true
  8017. },
  8018. {
  8019. name: "Fae",
  8020. height: math.unit(10, "cm"),
  8021. form: "fae",
  8022. default: true
  8023. },
  8024. ],
  8025. {
  8026. "liom": {
  8027. name: "Liom"
  8028. },
  8029. "plush": {
  8030. name: "Plush"
  8031. },
  8032. "fae": {
  8033. name: "Fae Fox",
  8034. default: true
  8035. }
  8036. }
  8037. ))
  8038. characterMakers.push(() => makeCharacter(
  8039. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8040. {
  8041. front: {
  8042. height: math.unit(2, "meters"),
  8043. weight: math.unit(350, "lbs"),
  8044. name: "Front",
  8045. image: {
  8046. source: "./media/characters/regal/front.svg"
  8047. }
  8048. },
  8049. back: {
  8050. height: math.unit(2, "meters"),
  8051. weight: math.unit(350, "lbs"),
  8052. name: "Back",
  8053. image: {
  8054. source: "./media/characters/regal/back.svg"
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Macro",
  8061. height: math.unit(350, "feet"),
  8062. default: true
  8063. }
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(4 + 11 / 12, "feet"),
  8071. weight: math.unit(100, "lbs"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/opal/front.svg"
  8075. }
  8076. },
  8077. frontAlt: {
  8078. height: math.unit(4 + 11 / 12, "feet"),
  8079. weight: math.unit(100, "lbs"),
  8080. name: "Front (Alt)",
  8081. image: {
  8082. source: "./media/characters/opal/front-alt.svg"
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Small",
  8089. height: math.unit(4 + 11 / 12, "feet")
  8090. },
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(20, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(120, "feet")
  8099. },
  8100. {
  8101. name: "Megamacro",
  8102. height: math.unit(80, "miles")
  8103. },
  8104. {
  8105. name: "True Size",
  8106. height: math.unit(100000, "lightyears")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(200, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/vector-wuff/front.svg"
  8119. }
  8120. }
  8121. },
  8122. [
  8123. {
  8124. name: "Normal",
  8125. height: math.unit(2.8, "meters")
  8126. },
  8127. {
  8128. name: "Macro",
  8129. height: math.unit(450, "meters"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Megamacro",
  8134. height: math.unit(15, "kilometers")
  8135. }
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(6, "feet"),
  8143. weight: math.unit(256, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/dannik/front.svg"
  8147. }
  8148. }
  8149. },
  8150. [
  8151. {
  8152. name: "Macro",
  8153. height: math.unit(69.57, "meters"),
  8154. default: true
  8155. },
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(6, "feet"),
  8163. weight: math.unit(120, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/azura-saharah/front.svg"
  8167. }
  8168. },
  8169. back: {
  8170. height: math.unit(6, "feet"),
  8171. weight: math.unit(120, "lbs"),
  8172. name: "Back",
  8173. image: {
  8174. source: "./media/characters/azura-saharah/back.svg"
  8175. }
  8176. },
  8177. },
  8178. [
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(100, "feet"),
  8182. default: true
  8183. },
  8184. ]
  8185. ))
  8186. characterMakers.push(() => makeCharacter(
  8187. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8188. {
  8189. side: {
  8190. height: math.unit(5 + 4 / 12, "feet"),
  8191. weight: math.unit(163, "lbs"),
  8192. name: "Side",
  8193. image: {
  8194. source: "./media/characters/kennedy/side.svg"
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Standard Doggo",
  8201. height: math.unit(5 + 4 / 12, "feet")
  8202. },
  8203. {
  8204. name: "Big Doggo",
  8205. height: math.unit(25 + 3 / 12, "feet"),
  8206. default: true
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8212. {
  8213. front: {
  8214. height: math.unit(5 + 5/12, "feet"),
  8215. weight: math.unit(100, "lbs"),
  8216. name: "Front",
  8217. image: {
  8218. source: "./media/characters/odios-de-lunar/front.svg",
  8219. extra: 1468/1323,
  8220. bottom: 22/1490
  8221. }
  8222. }
  8223. },
  8224. [
  8225. {
  8226. name: "Micro",
  8227. height: math.unit(3, "inches")
  8228. },
  8229. {
  8230. name: "Normal",
  8231. height: math.unit(5.5, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Macro",
  8236. height: math.unit(100, "feet")
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8242. {
  8243. back: {
  8244. height: math.unit(6, "feet"),
  8245. weight: math.unit(220, "lbs"),
  8246. name: "Back",
  8247. image: {
  8248. source: "./media/characters/mandake/back.svg"
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(7, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(78, "feet")
  8261. },
  8262. {
  8263. name: "Macro+",
  8264. height: math.unit(300, "meters")
  8265. },
  8266. {
  8267. name: "Macro++",
  8268. height: math.unit(2400, "feet")
  8269. },
  8270. {
  8271. name: "Megamacro",
  8272. height: math.unit(5167, "meters")
  8273. },
  8274. {
  8275. name: "Gigamacro",
  8276. height: math.unit(41769, "miles")
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(6, "feet"),
  8285. weight: math.unit(120, "lbs"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/yozey/front.svg"
  8289. }
  8290. },
  8291. frontAlt: {
  8292. height: math.unit(6, "feet"),
  8293. weight: math.unit(120, "lbs"),
  8294. name: "Front (Alt)",
  8295. image: {
  8296. source: "./media/characters/yozey/front-alt.svg"
  8297. }
  8298. },
  8299. side: {
  8300. height: math.unit(6, "feet"),
  8301. weight: math.unit(120, "lbs"),
  8302. name: "Side",
  8303. image: {
  8304. source: "./media/characters/yozey/side.svg"
  8305. }
  8306. },
  8307. },
  8308. [
  8309. {
  8310. name: "Micro",
  8311. height: math.unit(3, "inches"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(6, "feet")
  8317. }
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(6, "feet"),
  8325. weight: math.unit(103, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/valeska-voss/front.svg"
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Mini-Sized Sub",
  8335. height: math.unit(3.1, "inches")
  8336. },
  8337. {
  8338. name: "Mid-Sized Sub",
  8339. height: math.unit(6.2, "inches")
  8340. },
  8341. {
  8342. name: "Full-Sized Sub",
  8343. height: math.unit(9.3, "inches")
  8344. },
  8345. {
  8346. name: "Normal",
  8347. height: math.unit(5 + 2 / 12, "foot"),
  8348. default: true
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(160, "lbs"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/gene-zeta/front.svg",
  8361. extra: 3006 / 2826,
  8362. bottom: 182 / 3188
  8363. }
  8364. }
  8365. },
  8366. [
  8367. {
  8368. name: "Micro",
  8369. height: math.unit(6, "inches")
  8370. },
  8371. {
  8372. name: "Normal",
  8373. height: math.unit(5 + 11 / 12, "foot"),
  8374. default: true
  8375. },
  8376. {
  8377. name: "Macro",
  8378. height: math.unit(140, "feet")
  8379. },
  8380. {
  8381. name: "Supercharged",
  8382. height: math.unit(2500, "feet")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(350, "lbs"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/razinox/front.svg",
  8395. extra: 1686 / 1548,
  8396. bottom: 28.2 / 1868
  8397. }
  8398. },
  8399. back: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(350, "lbs"),
  8402. name: "Back",
  8403. image: {
  8404. source: "./media/characters/razinox/back.svg",
  8405. extra: 1660 / 1590,
  8406. bottom: 15 / 1665
  8407. }
  8408. },
  8409. },
  8410. [
  8411. {
  8412. name: "Normal",
  8413. height: math.unit(10 + 8 / 12, "foot")
  8414. },
  8415. {
  8416. name: "Minimacro",
  8417. height: math.unit(15, "foot")
  8418. },
  8419. {
  8420. name: "Macro",
  8421. height: math.unit(60, "foot"),
  8422. default: true
  8423. },
  8424. {
  8425. name: "Megamacro",
  8426. height: math.unit(5, "miles")
  8427. },
  8428. {
  8429. name: "Gigamacro",
  8430. height: math.unit(6000, "miles")
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8436. {
  8437. front: {
  8438. height: math.unit(6, "feet"),
  8439. weight: math.unit(150, "lbs"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/cobalt/front.svg"
  8443. }
  8444. }
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(8 + 1 / 12, "foot")
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(111, "foot"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Supracosmic",
  8458. height: math.unit(1e42, "feet")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(5, "inches"),
  8467. name: "Front",
  8468. image: {
  8469. source: "./media/characters/amanda/front.svg",
  8470. extra: 926/791,
  8471. bottom: 38/964
  8472. }
  8473. },
  8474. back: {
  8475. height: math.unit(5, "inches"),
  8476. name: "Back",
  8477. image: {
  8478. source: "./media/characters/amanda/back.svg",
  8479. extra: 909/805,
  8480. bottom: 43/952
  8481. }
  8482. },
  8483. },
  8484. [
  8485. {
  8486. name: "Micro",
  8487. height: math.unit(5, "inches"),
  8488. default: true
  8489. },
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(2.75, "meters"),
  8497. weight: math.unit(1200, "lb"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/teal/front.svg",
  8501. extra: 2463 / 2320,
  8502. bottom: 166 / 2629
  8503. }
  8504. },
  8505. back: {
  8506. height: math.unit(2.75, "meters"),
  8507. weight: math.unit(1200, "lb"),
  8508. name: "Back",
  8509. image: {
  8510. source: "./media/characters/teal/back.svg",
  8511. extra: 2580 / 2489,
  8512. bottom: 151 / 2731
  8513. }
  8514. },
  8515. sitting: {
  8516. height: math.unit(1.9, "meters"),
  8517. weight: math.unit(1200, "lb"),
  8518. name: "Sitting",
  8519. image: {
  8520. source: "./media/characters/teal/sitting.svg",
  8521. extra: 623 / 590,
  8522. bottom: 121 / 744
  8523. }
  8524. },
  8525. standing: {
  8526. height: math.unit(2.75, "meters"),
  8527. weight: math.unit(1200, "lb"),
  8528. name: "Standing",
  8529. image: {
  8530. source: "./media/characters/teal/standing.svg",
  8531. extra: 923 / 893,
  8532. bottom: 60 / 983
  8533. }
  8534. },
  8535. stretching: {
  8536. height: math.unit(3.65, "meters"),
  8537. weight: math.unit(1200, "lb"),
  8538. name: "Stretching",
  8539. image: {
  8540. source: "./media/characters/teal/stretching.svg",
  8541. extra: 1276 / 1244,
  8542. bottom: 0 / 1276
  8543. }
  8544. },
  8545. legged: {
  8546. height: math.unit(1.3, "meters"),
  8547. weight: math.unit(100, "lb"),
  8548. name: "Legged",
  8549. image: {
  8550. source: "./media/characters/teal/legged.svg",
  8551. extra: 462 / 437,
  8552. bottom: 24 / 486
  8553. }
  8554. },
  8555. naga: {
  8556. height: math.unit(5.4, "meters"),
  8557. weight: math.unit(4000, "lb"),
  8558. name: "Naga",
  8559. image: {
  8560. source: "./media/characters/teal/naga.svg",
  8561. extra: 1902 / 1858,
  8562. bottom: 0 / 1902
  8563. }
  8564. },
  8565. hand: {
  8566. height: math.unit(0.52, "meters"),
  8567. name: "Hand",
  8568. image: {
  8569. source: "./media/characters/teal/hand.svg"
  8570. }
  8571. },
  8572. maw: {
  8573. height: math.unit(0.43, "meters"),
  8574. name: "Maw",
  8575. image: {
  8576. source: "./media/characters/teal/maw.svg"
  8577. }
  8578. },
  8579. slit: {
  8580. height: math.unit(0.25, "meters"),
  8581. name: "Slit",
  8582. image: {
  8583. source: "./media/characters/teal/slit.svg"
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(2.75, "meters"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(300, "feet")
  8596. },
  8597. {
  8598. name: "Macro+",
  8599. height: math.unit(2000, "feet")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8605. {
  8606. frontCat: {
  8607. height: math.unit(6, "feet"),
  8608. weight: math.unit(180, "lbs"),
  8609. name: "Front (Cat)",
  8610. image: {
  8611. source: "./media/characters/ravin-amulet/front-cat.svg"
  8612. }
  8613. },
  8614. frontCatAlt: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(180, "lbs"),
  8617. name: "Front (Alt, Cat)",
  8618. image: {
  8619. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8620. }
  8621. },
  8622. frontWerewolf: {
  8623. height: math.unit(6 * 1.2, "feet"),
  8624. weight: math.unit(225, "lbs"),
  8625. name: "Front (Werewolf)",
  8626. image: {
  8627. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8628. }
  8629. },
  8630. backWerewolf: {
  8631. height: math.unit(6 * 1.2, "feet"),
  8632. weight: math.unit(225, "lbs"),
  8633. name: "Back (Werewolf)",
  8634. image: {
  8635. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Nano",
  8642. height: math.unit(1, "micrometer")
  8643. },
  8644. {
  8645. name: "Micro",
  8646. height: math.unit(1, "inch")
  8647. },
  8648. {
  8649. name: "Normal",
  8650. height: math.unit(6, "feet"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "Macro",
  8655. height: math.unit(60, "feet")
  8656. }
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(6, "feet"),
  8664. weight: math.unit(165, "lbs"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/fluoresce/front.svg"
  8668. }
  8669. }
  8670. },
  8671. [
  8672. {
  8673. name: "Micro",
  8674. height: math.unit(6, "cm")
  8675. },
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(5 + 7 / 12, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(56, "feet")
  8684. },
  8685. {
  8686. name: "Megamacro",
  8687. height: math.unit(1.9, "miles")
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(9 + 6 / 12, "feet"),
  8696. weight: math.unit(523, "lbs"),
  8697. name: "Side",
  8698. image: {
  8699. source: "./media/characters/aurora/side.svg",
  8700. extra: 474/393,
  8701. bottom: 5/479
  8702. }
  8703. }
  8704. },
  8705. [
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(9 + 6 / 12, "feet")
  8709. },
  8710. {
  8711. name: "Macro",
  8712. height: math.unit(96, "feet"),
  8713. default: true
  8714. },
  8715. {
  8716. name: "Macro+",
  8717. height: math.unit(243, "feet")
  8718. },
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(194, "cm"),
  8726. weight: math.unit(90, "kg"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/ranek/front.svg",
  8730. extra: 1862/1791,
  8731. bottom: 80/1942
  8732. }
  8733. },
  8734. back: {
  8735. height: math.unit(194, "cm"),
  8736. weight: math.unit(90, "kg"),
  8737. name: "Back",
  8738. image: {
  8739. source: "./media/characters/ranek/back.svg",
  8740. extra: 1853/1787,
  8741. bottom: 74/1927
  8742. }
  8743. },
  8744. feral: {
  8745. height: math.unit(30, "cm"),
  8746. weight: math.unit(1.6, "lbs"),
  8747. name: "Feral",
  8748. image: {
  8749. source: "./media/characters/ranek/feral.svg",
  8750. extra: 990/631,
  8751. bottom: 29/1019
  8752. }
  8753. },
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(194, "cm"),
  8759. default: true
  8760. },
  8761. {
  8762. name: "Macro",
  8763. height: math.unit(100, "meters")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(5 + 6 / 12, "feet"),
  8772. weight: math.unit(153, "lbs"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/andrew-cooper/front.svg"
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Nano",
  8782. height: math.unit(1, "mm")
  8783. },
  8784. {
  8785. name: "Micro",
  8786. height: math.unit(2, "inches")
  8787. },
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(5 + 6 / 12, "feet"),
  8791. default: true
  8792. }
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(6, "feet"),
  8800. weight: math.unit(180, "lbs"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/akane-sato/front.svg",
  8804. extra: 1219 / 1140
  8805. }
  8806. },
  8807. back: {
  8808. height: math.unit(6, "feet"),
  8809. weight: math.unit(180, "lbs"),
  8810. name: "Back",
  8811. image: {
  8812. source: "./media/characters/akane-sato/back.svg",
  8813. extra: 1219 / 1170
  8814. }
  8815. },
  8816. },
  8817. [
  8818. {
  8819. name: "Normal",
  8820. height: math.unit(2.5, "meters")
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(250, "meters"),
  8825. default: true
  8826. },
  8827. {
  8828. name: "Megamacro",
  8829. height: math.unit(25, "km")
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(65, "kg"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/rook/front.svg",
  8842. extra: 960 / 950
  8843. }
  8844. }
  8845. },
  8846. [
  8847. {
  8848. name: "Normal",
  8849. height: math.unit(8.8, "feet")
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(88, "feet"),
  8854. default: true
  8855. },
  8856. {
  8857. name: "Megamacro",
  8858. height: math.unit(8, "miles")
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(12 + 2 / 12, "feet"),
  8867. weight: math.unit(808, "lbs"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/prodigy/front.svg"
  8871. }
  8872. }
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(12 + 2 / 12, "feet"),
  8878. default: true
  8879. },
  8880. {
  8881. name: "Macro",
  8882. height: math.unit(143, "feet")
  8883. },
  8884. {
  8885. name: "Macro+",
  8886. height: math.unit(400, "feet")
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(6, "feet"),
  8895. weight: math.unit(225, "lbs"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/daniel/front.svg"
  8899. }
  8900. },
  8901. leaning: {
  8902. height: math.unit(6, "feet"),
  8903. weight: math.unit(225, "lbs"),
  8904. name: "Leaning",
  8905. image: {
  8906. source: "./media/characters/daniel/leaning.svg"
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Macro",
  8913. height: math.unit(1000, "feet"),
  8914. default: true
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(6, "feet"),
  8923. weight: math.unit(88, "lbs"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/chiros/front.svg",
  8927. extra: 306 / 226
  8928. }
  8929. },
  8930. side: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(88, "lbs"),
  8933. name: "Side",
  8934. image: {
  8935. source: "./media/characters/chiros/side.svg",
  8936. extra: 306 / 226
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(6, "cm"),
  8944. default: true
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8950. {
  8951. front: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(100, "lbs"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/selka/front.svg",
  8957. extra: 947 / 887
  8958. }
  8959. }
  8960. },
  8961. [
  8962. {
  8963. name: "Normal",
  8964. height: math.unit(5, "cm"),
  8965. default: true
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(8 + 3 / 12, "feet"),
  8974. weight: math.unit(424, "lbs"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/verin/front.svg",
  8978. extra: 1845 / 1550
  8979. }
  8980. },
  8981. frontArmored: {
  8982. height: math.unit(8 + 3 / 12, "feet"),
  8983. weight: math.unit(424, "lbs"),
  8984. name: "Front (Armored)",
  8985. image: {
  8986. source: "./media/characters/verin/front-armor.svg",
  8987. extra: 1845 / 1550,
  8988. bottom: 0.01
  8989. }
  8990. },
  8991. back: {
  8992. height: math.unit(8 + 3 / 12, "feet"),
  8993. weight: math.unit(424, "lbs"),
  8994. name: "Back",
  8995. image: {
  8996. source: "./media/characters/verin/back.svg",
  8997. bottom: 0.1,
  8998. extra: 1
  8999. }
  9000. },
  9001. foot: {
  9002. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9003. name: "Foot",
  9004. image: {
  9005. source: "./media/characters/verin/foot.svg"
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Normal",
  9012. height: math.unit(8 + 3 / 12, "feet")
  9013. },
  9014. {
  9015. name: "Minimacro",
  9016. height: math.unit(21, "feet"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(626, "feet")
  9022. },
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(2.718, "meters"),
  9030. weight: math.unit(150, "lbs"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/sovrim-terraquian/front.svg",
  9034. extra: 1752/1689,
  9035. bottom: 36/1788
  9036. }
  9037. },
  9038. back: {
  9039. height: math.unit(2.718, "meters"),
  9040. weight: math.unit(150, "lbs"),
  9041. name: "Back",
  9042. image: {
  9043. source: "./media/characters/sovrim-terraquian/back.svg",
  9044. extra: 1698/1657,
  9045. bottom: 58/1756
  9046. }
  9047. },
  9048. tongue: {
  9049. height: math.unit(2.865, "feet"),
  9050. name: "Tongue",
  9051. image: {
  9052. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9053. }
  9054. },
  9055. hand: {
  9056. height: math.unit(1.61, "feet"),
  9057. name: "Hand",
  9058. image: {
  9059. source: "./media/characters/sovrim-terraquian/hand.svg"
  9060. }
  9061. },
  9062. foot: {
  9063. height: math.unit(1.05, "feet"),
  9064. name: "Foot",
  9065. image: {
  9066. source: "./media/characters/sovrim-terraquian/foot.svg"
  9067. }
  9068. },
  9069. footAlt: {
  9070. height: math.unit(0.88, "feet"),
  9071. name: "Foot (Alt)",
  9072. image: {
  9073. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Micro",
  9080. height: math.unit(2, "inches")
  9081. },
  9082. {
  9083. name: "Small",
  9084. height: math.unit(1, "meter")
  9085. },
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(Math.E, "meters"),
  9089. default: true
  9090. },
  9091. {
  9092. name: "Macro",
  9093. height: math.unit(20, "meters")
  9094. },
  9095. {
  9096. name: "Macro+",
  9097. height: math.unit(400, "meters")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(7, "feet"),
  9106. weight: math.unit(489, "lbs"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/reece-silvermane/front.svg",
  9110. bottom: 0.02,
  9111. extra: 1
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Macro",
  9118. height: math.unit(1.5, "miles"),
  9119. default: true
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(78, "kg"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/kane/front.svg",
  9132. extra: 978 / 899
  9133. }
  9134. },
  9135. back: {
  9136. height: math.unit(6, "feet"),
  9137. weight: math.unit(78, "kg"),
  9138. name: "Back",
  9139. image: {
  9140. source: "./media/characters/kane/back.svg",
  9141. extra: 1966/1800,
  9142. bottom: 0/1966
  9143. }
  9144. },
  9145. head: {
  9146. height: math.unit(1.4, "feet"),
  9147. name: "Head",
  9148. image: {
  9149. source: "./media/characters/kane/head.svg"
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(2.1, "m"),
  9157. },
  9158. {
  9159. name: "Macro",
  9160. height: math.unit(1, "km"),
  9161. default: true
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(6, "feet"),
  9170. weight: math.unit(200, "kg"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/tegon/front.svg",
  9174. bottom: 0.01,
  9175. extra: 1
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Micro",
  9182. height: math.unit(1, "inch")
  9183. },
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(6 + 3 / 12, "feet"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(300, "feet")
  9192. },
  9193. {
  9194. name: "Megamacro",
  9195. height: math.unit(69, "miles")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9201. {
  9202. side: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(2304, "lbs"),
  9205. name: "Side",
  9206. image: {
  9207. source: "./media/characters/arcturax/side.svg",
  9208. extra: 790 / 376,
  9209. bottom: 0.01
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Micro",
  9216. height: math.unit(2, "inch")
  9217. },
  9218. {
  9219. name: "Normal",
  9220. height: math.unit(6, "feet")
  9221. },
  9222. {
  9223. name: "Macro",
  9224. height: math.unit(39, "feet"),
  9225. default: true
  9226. },
  9227. {
  9228. name: "Megamacro",
  9229. height: math.unit(7, "miles")
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9235. {
  9236. front: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(50, "lbs"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/sentri/front.svg",
  9242. extra: 1750 / 1570,
  9243. bottom: 0.025
  9244. }
  9245. },
  9246. frontAlt: {
  9247. height: math.unit(6, "feet"),
  9248. weight: math.unit(50, "lbs"),
  9249. name: "Front (Alt)",
  9250. image: {
  9251. source: "./media/characters/sentri/front-alt.svg",
  9252. extra: 1750 / 1570,
  9253. bottom: 0.025
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(15, "feet"),
  9261. default: true
  9262. },
  9263. {
  9264. name: "Macro",
  9265. height: math.unit(2500, "feet")
  9266. }
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(5 + 8 / 12, "feet"),
  9274. weight: math.unit(130, "lbs"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/corvin/front.svg",
  9278. extra: 1803 / 1629
  9279. }
  9280. },
  9281. frontShirt: {
  9282. height: math.unit(5 + 8 / 12, "feet"),
  9283. weight: math.unit(130, "lbs"),
  9284. name: "Front (Shirt)",
  9285. image: {
  9286. source: "./media/characters/corvin/front-shirt.svg",
  9287. extra: 1803 / 1629
  9288. }
  9289. },
  9290. frontPoncho: {
  9291. height: math.unit(5 + 8 / 12, "feet"),
  9292. weight: math.unit(130, "lbs"),
  9293. name: "Front (Poncho)",
  9294. image: {
  9295. source: "./media/characters/corvin/front-poncho.svg",
  9296. extra: 1803 / 1629
  9297. }
  9298. },
  9299. side: {
  9300. height: math.unit(5 + 8 / 12, "feet"),
  9301. weight: math.unit(130, "lbs"),
  9302. name: "Side",
  9303. image: {
  9304. source: "./media/characters/corvin/side.svg",
  9305. extra: 1012 / 945
  9306. }
  9307. },
  9308. back: {
  9309. height: math.unit(5 + 8 / 12, "feet"),
  9310. weight: math.unit(130, "lbs"),
  9311. name: "Back",
  9312. image: {
  9313. source: "./media/characters/corvin/back.svg",
  9314. extra: 1803 / 1629
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(3, "inches")
  9322. },
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(5 + 8 / 12, "feet")
  9326. },
  9327. {
  9328. name: "Macro",
  9329. height: math.unit(300, "feet"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Megamacro",
  9334. height: math.unit(500, "miles")
  9335. }
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(6, "feet"),
  9343. weight: math.unit(135, "lbs"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/q/front.svg",
  9347. extra: 854 / 752,
  9348. bottom: 0.005
  9349. }
  9350. },
  9351. back: {
  9352. height: math.unit(6, "feet"),
  9353. weight: math.unit(130, "lbs"),
  9354. name: "Back",
  9355. image: {
  9356. source: "./media/characters/q/back.svg",
  9357. extra: 854 / 752
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Macro",
  9364. height: math.unit(90, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Extra Macro",
  9369. height: math.unit(300, "feet"),
  9370. },
  9371. {
  9372. name: "BIG WALF",
  9373. height: math.unit(750, "feet"),
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(3, "feet"),
  9382. weight: math.unit(28, "lbs"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/citrine/front.svg"
  9386. }
  9387. }
  9388. },
  9389. [
  9390. {
  9391. name: "Normal",
  9392. height: math.unit(3, "feet"),
  9393. default: true
  9394. }
  9395. ]
  9396. ))
  9397. characterMakers.push(() => makeCharacter(
  9398. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9399. {
  9400. front: {
  9401. height: math.unit(14, "feet"),
  9402. weight: math.unit(1450, "kg"),
  9403. preyCapacity: math.unit(15, "people"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/aura-starwind/front.svg",
  9407. extra: 1440/1327,
  9408. bottom: 11/1451
  9409. }
  9410. },
  9411. side: {
  9412. height: math.unit(14, "feet"),
  9413. weight: math.unit(1450, "kg"),
  9414. preyCapacity: math.unit(15, "people"),
  9415. name: "Side",
  9416. image: {
  9417. source: "./media/characters/aura-starwind/side.svg",
  9418. extra: 1654 / 1497
  9419. }
  9420. },
  9421. taur: {
  9422. height: math.unit(18, "feet"),
  9423. weight: math.unit(5500, "kg"),
  9424. preyCapacity: math.unit(50, "people"),
  9425. name: "Taur",
  9426. image: {
  9427. source: "./media/characters/aura-starwind/taur.svg",
  9428. extra: 1760 / 1650
  9429. }
  9430. },
  9431. feral: {
  9432. height: math.unit(46, "feet"),
  9433. weight: math.unit(25000, "kg"),
  9434. preyCapacity: math.unit(120, "people"),
  9435. name: "Feral",
  9436. image: {
  9437. source: "./media/characters/aura-starwind/feral.svg"
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(14, "feet"),
  9445. default: true
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(50, "meters")
  9450. },
  9451. {
  9452. name: "Megamacro",
  9453. height: math.unit(5000, "meters")
  9454. },
  9455. {
  9456. name: "Gigamacro",
  9457. height: math.unit(100000, "kilometers")
  9458. },
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9463. {
  9464. front: {
  9465. height: math.unit(2 + 7 / 12, "feet"),
  9466. weight: math.unit(32, "lbs"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/rivet/front.svg",
  9470. extra: 1716 / 1658,
  9471. bottom: 0.03
  9472. }
  9473. },
  9474. foot: {
  9475. height: math.unit(0.551, "feet"),
  9476. name: "Rivet's Foot",
  9477. image: {
  9478. source: "./media/characters/rivet/foot.svg"
  9479. },
  9480. rename: true
  9481. }
  9482. },
  9483. [
  9484. {
  9485. name: "Micro",
  9486. height: math.unit(1.5, "inches"),
  9487. },
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(2 + 7 / 12, "feet"),
  9491. default: true
  9492. },
  9493. {
  9494. name: "Macro",
  9495. height: math.unit(85, "feet")
  9496. },
  9497. {
  9498. name: "Megamacro",
  9499. height: math.unit(2.2, "km")
  9500. }
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(5 + 9 / 12, "feet"),
  9508. weight: math.unit(150, "lbs"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/coffee/front.svg",
  9512. extra: 946/880,
  9513. bottom: 66/1012
  9514. }
  9515. },
  9516. foot: {
  9517. height: math.unit(1.29, "feet"),
  9518. name: "Foot",
  9519. image: {
  9520. source: "./media/characters/coffee/foot.svg"
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Micro",
  9527. height: math.unit(2, "inches"),
  9528. },
  9529. {
  9530. name: "Normal",
  9531. height: math.unit(5 + 9 / 12, "feet"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Macro",
  9536. height: math.unit(800, "feet")
  9537. },
  9538. {
  9539. name: "Megamacro",
  9540. height: math.unit(25, "miles")
  9541. }
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(200, "lbs"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/chari-gal/front.svg",
  9553. extra: 735/649,
  9554. bottom: 55/790
  9555. },
  9556. form: "normal",
  9557. default: true
  9558. },
  9559. back: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(200, "lb"),
  9562. name: "Back",
  9563. image: {
  9564. source: "./media/characters/chari-gal/back.svg",
  9565. extra: 762/666,
  9566. bottom: 31/793
  9567. },
  9568. form: "normal"
  9569. },
  9570. mouth: {
  9571. height: math.unit(1.35, "feet"),
  9572. name: "Mouth",
  9573. image: {
  9574. source: "./media/characters/chari-gal/mouth.svg"
  9575. },
  9576. form: "normal"
  9577. },
  9578. gigantamax: {
  9579. height: math.unit(6 * 16, "feet"),
  9580. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9581. name: "Gigantamax",
  9582. image: {
  9583. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9584. extra: 1507/1149,
  9585. bottom: 254/1761
  9586. },
  9587. form: "gigantamax",
  9588. default: true
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(5 + 7 / 12, "feet"),
  9595. form: "normal",
  9596. },
  9597. {
  9598. name: "Macro",
  9599. height: math.unit(200, "feet"),
  9600. default: true,
  9601. form: "normal"
  9602. },
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9606. form: "gigantamax",
  9607. },
  9608. {
  9609. name: "Macro",
  9610. height: math.unit(16 * 200, "feet"),
  9611. default: true,
  9612. form: "gigantamax"
  9613. },
  9614. ],
  9615. {
  9616. "normal": {
  9617. name: "Normal",
  9618. default: true
  9619. },
  9620. "gigantamax": {
  9621. name: "Gigantamax",
  9622. },
  9623. }
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(6, "feet"),
  9630. weight: math.unit(150, "lbs"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/nova/front.svg",
  9634. extra: 5000 / 4722,
  9635. bottom: 0.02
  9636. }
  9637. }
  9638. },
  9639. [
  9640. {
  9641. name: "Micro-",
  9642. height: math.unit(0.8, "inches")
  9643. },
  9644. {
  9645. name: "Micro",
  9646. height: math.unit(2, "inches"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9653. {
  9654. koboldFront: {
  9655. height: math.unit(3 + 1 / 12, "feet"),
  9656. weight: math.unit(21.7, "lbs"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/argent/kobold-front.svg",
  9660. extra: 1471 / 1331,
  9661. bottom: 100.8 / 1575.5
  9662. },
  9663. form: "kobold",
  9664. default: true
  9665. },
  9666. dragonFront: {
  9667. height: math.unit(75, "inches"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/argent/dragon-front.svg",
  9671. extra: 1389/1248,
  9672. bottom: 54/1443
  9673. },
  9674. form: "dragon",
  9675. },
  9676. dragonBack: {
  9677. height: math.unit(75, "inches"),
  9678. name: "Back",
  9679. image: {
  9680. source: "./media/characters/argent/dragon-back.svg",
  9681. extra: 1399/1271,
  9682. bottom: 23/1422
  9683. },
  9684. form: "dragon",
  9685. },
  9686. dragonDressed: {
  9687. height: math.unit(75, "inches"),
  9688. name: "Dressed",
  9689. image: {
  9690. source: "./media/characters/argent/dragon-dressed.svg",
  9691. extra: 1350/1215,
  9692. bottom: 26/1376
  9693. },
  9694. form: "dragon"
  9695. },
  9696. dragonHead: {
  9697. height: math.unit(23.5, "inches"),
  9698. name: "Head",
  9699. image: {
  9700. source: "./media/characters/argent/dragon-head.svg"
  9701. },
  9702. form: "dragon",
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(2, "inches"),
  9709. form: "kobold",
  9710. },
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(3 + 1 / 12, "feet"),
  9714. form: "kobold",
  9715. default: true
  9716. },
  9717. {
  9718. name: "Macro",
  9719. height: math.unit(120, "feet"),
  9720. form: "kobold",
  9721. },
  9722. {
  9723. name: "Speck",
  9724. height: math.unit(1, "mm"),
  9725. form: "dragon",
  9726. },
  9727. {
  9728. name: "Tiny",
  9729. height: math.unit(1, "cm"),
  9730. form: "dragon",
  9731. },
  9732. {
  9733. name: "Micro",
  9734. height: math.unit(5, "cm"),
  9735. form: "dragon",
  9736. },
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(75, "inches"),
  9740. form: "dragon",
  9741. default: true
  9742. },
  9743. {
  9744. name: "Extra Tall",
  9745. height: math.unit(9, "feet"),
  9746. form: "dragon",
  9747. },
  9748. {
  9749. name: "Inconvenient",
  9750. height: math.unit(5, "meters"),
  9751. form: "dragon",
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(70, "meters"),
  9756. form: "dragon",
  9757. },
  9758. {
  9759. name: "Macro+",
  9760. height: math.unit(250, "meters"),
  9761. form: "dragon",
  9762. },
  9763. {
  9764. name: "Megamacro",
  9765. height: math.unit(20, "km"),
  9766. form: "dragon",
  9767. },
  9768. {
  9769. name: "Mountainous",
  9770. height: math.unit(100, "km"),
  9771. form: "dragon",
  9772. },
  9773. {
  9774. name: "Continental",
  9775. height: math.unit(2, "megameters"),
  9776. form: "dragon",
  9777. },
  9778. {
  9779. name: "Too Big",
  9780. height: math.unit(900, "megameters"),
  9781. form: "dragon",
  9782. },
  9783. ],
  9784. {
  9785. "kobold": {
  9786. name: "Kobold",
  9787. default: true
  9788. },
  9789. "dragon": {
  9790. name: "Dragon",
  9791. },
  9792. }
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9796. {
  9797. lamp: {
  9798. height: math.unit(7 * 1559 / 989, "feet"),
  9799. name: "Magic Lamp",
  9800. image: {
  9801. source: "./media/characters/mira-al-cul/lamp.svg",
  9802. extra: 1617 / 1559
  9803. }
  9804. },
  9805. front: {
  9806. height: math.unit(7, "feet"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/mira-al-cul/front.svg",
  9810. extra: 1044 / 990
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Heavily Restricted",
  9817. height: math.unit(7 * 1559 / 989, "feet")
  9818. },
  9819. {
  9820. name: "Freshly Freed",
  9821. height: math.unit(50 * 1559 / 989, "feet")
  9822. },
  9823. {
  9824. name: "World Encompassing",
  9825. height: math.unit(10000 * 1559 / 989, "miles")
  9826. },
  9827. {
  9828. name: "Galactic",
  9829. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9830. },
  9831. {
  9832. name: "Palmed Universe",
  9833. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Multiversal Matriarch",
  9838. height: math.unit(8.87e10, "yottameters")
  9839. },
  9840. {
  9841. name: "Void Mother",
  9842. height: math.unit(3.14e110, "yottaparsecs")
  9843. },
  9844. {
  9845. name: "Toying with Transcendence",
  9846. height: math.unit(1e307, "meters")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9852. {
  9853. front: {
  9854. height: math.unit(17 + 1 / 12, "feet"),
  9855. weight: math.unit(476.2 * 5, "lbs"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/kuro-shi-uchū/front.svg",
  9859. extra: 2329 / 1835,
  9860. bottom: 0.02
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Micro",
  9867. height: math.unit(2, "inches")
  9868. },
  9869. {
  9870. name: "Normal",
  9871. height: math.unit(12, "meters")
  9872. },
  9873. {
  9874. name: "Planetary",
  9875. height: math.unit(0.00929, "AU"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Universal",
  9880. height: math.unit(20, "gigaparsecs")
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9886. {
  9887. front: {
  9888. height: math.unit(5 + 2 / 12, "feet"),
  9889. weight: math.unit(120, "lbs"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/katherine/front.svg",
  9893. extra: 2075 / 1969
  9894. }
  9895. },
  9896. dress: {
  9897. height: math.unit(5 + 2 / 12, "feet"),
  9898. weight: math.unit(120, "lbs"),
  9899. name: "Dress",
  9900. image: {
  9901. source: "./media/characters/katherine/dress.svg",
  9902. extra: 2258 / 2064
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(1, "inches"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(5 + 2 / 12, "feet")
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(100, "meters")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(80, "miles")
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9928. {
  9929. front: {
  9930. height: math.unit(7 + 8 / 12, "feet"),
  9931. weight: math.unit(250, "lbs"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/yevis/front.svg",
  9935. extra: 1938 / 1755
  9936. }
  9937. }
  9938. },
  9939. [
  9940. {
  9941. name: "Mortal",
  9942. height: math.unit(7 + 8 / 12, "feet")
  9943. },
  9944. {
  9945. name: "Battle",
  9946. height: math.unit(25 + 11 / 12, "feet")
  9947. },
  9948. {
  9949. name: "Wrath",
  9950. height: math.unit(1654 + 11 / 12, "feet")
  9951. },
  9952. {
  9953. name: "Planet Destroyer",
  9954. height: math.unit(12000, "miles")
  9955. },
  9956. {
  9957. name: "Galaxy Conqueror",
  9958. height: math.unit(1.45, "zettameters"),
  9959. default: true
  9960. },
  9961. {
  9962. name: "Universal War",
  9963. height: math.unit(184, "gigaparsecs")
  9964. },
  9965. {
  9966. name: "Eternity War",
  9967. height: math.unit(1.98e55, "yottaparsecs")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(5 + 8 / 12, "feet"),
  9976. weight: math.unit(63, "kg"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/xavier/front.svg",
  9980. extra: 944 / 883
  9981. }
  9982. },
  9983. frontStretch: {
  9984. height: math.unit(5 + 8 / 12, "feet"),
  9985. weight: math.unit(63, "kg"),
  9986. name: "Stretching",
  9987. image: {
  9988. source: "./media/characters/xavier/front-stretch.svg",
  9989. extra: 962 / 820
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(5 + 8 / 12, "feet")
  9997. },
  9998. {
  9999. name: "Macro",
  10000. height: math.unit(100, "meters"),
  10001. default: true
  10002. },
  10003. {
  10004. name: "McLargeHuge",
  10005. height: math.unit(10, "miles")
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(5 + 5 / 12, "feet"),
  10014. weight: math.unit(150, "lb"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/joshii/front.svg",
  10018. extra: 765 / 653,
  10019. bottom: 51 / 816
  10020. }
  10021. },
  10022. foot: {
  10023. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10024. name: "Foot",
  10025. image: {
  10026. source: "./media/characters/joshii/foot.svg"
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Micro",
  10033. height: math.unit(2, "inches")
  10034. },
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(5 + 5 / 12, "feet")
  10038. },
  10039. {
  10040. name: "Macro",
  10041. height: math.unit(785, "feet"),
  10042. default: true
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(24.5, "miles")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(6, "feet"),
  10055. weight: math.unit(150, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/goddess-elizabeth/front.svg",
  10059. extra: 1800 / 1525,
  10060. bottom: 0.005
  10061. }
  10062. },
  10063. foot: {
  10064. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10065. name: "Foot",
  10066. image: {
  10067. source: "./media/characters/goddess-elizabeth/foot.svg"
  10068. }
  10069. },
  10070. mouth: {
  10071. height: math.unit(6, "feet"),
  10072. name: "Mouth",
  10073. image: {
  10074. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10075. }
  10076. },
  10077. },
  10078. [
  10079. {
  10080. name: "Micro",
  10081. height: math.unit(12, "feet")
  10082. },
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(80, "miles"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(15000, "parsecs")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(5 + 9 / 12, "feet"),
  10099. weight: math.unit(144, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/kara/front.svg"
  10103. }
  10104. },
  10105. feet: {
  10106. height: math.unit(6 / 6.765, "feet"),
  10107. name: "Kara's Feet",
  10108. rename: true,
  10109. image: {
  10110. source: "./media/characters/kara/feet.svg"
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(5 + 9 / 12, "feet")
  10118. },
  10119. {
  10120. name: "Macro",
  10121. height: math.unit(174, "feet"),
  10122. default: true
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(18, "feet"),
  10131. weight: math.unit(4050, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/tyrone/front.svg",
  10135. extra: 2405 / 2270,
  10136. bottom: 182 / 2587
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(18, "feet"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(300, "feet")
  10149. },
  10150. {
  10151. name: "Megamacro",
  10152. height: math.unit(15, "km")
  10153. },
  10154. {
  10155. name: "Gigamacro",
  10156. height: math.unit(500, "km")
  10157. },
  10158. {
  10159. name: "Teramacro",
  10160. height: math.unit(0.5, "gigameters")
  10161. },
  10162. {
  10163. name: "Omnimacro",
  10164. height: math.unit(1e252, "yottauniverse")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(7 + 8 / 12, "feet"),
  10173. weight: math.unit(120, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/danny/front.svg",
  10177. extra: 1490 / 1350
  10178. }
  10179. },
  10180. back: {
  10181. height: math.unit(7 + 8 / 12, "feet"),
  10182. weight: math.unit(120, "lb"),
  10183. name: "Back",
  10184. image: {
  10185. source: "./media/characters/danny/back.svg",
  10186. extra: 1490 / 1350
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(7 + 8 / 12, "feet"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(3.5, "inches"),
  10203. weight: math.unit(19, "grams"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/mallow/front.svg",
  10207. extra: 471 / 431
  10208. }
  10209. },
  10210. back: {
  10211. height: math.unit(3.5, "inches"),
  10212. weight: math.unit(19, "grams"),
  10213. name: "Back",
  10214. image: {
  10215. source: "./media/characters/mallow/back.svg",
  10216. extra: 471 / 431
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(3.5, "inches"),
  10224. default: true
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(9, "feet"),
  10233. weight: math.unit(230, "kg"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/starry-aqua/front.svg"
  10237. }
  10238. },
  10239. back: {
  10240. height: math.unit(9, "feet"),
  10241. weight: math.unit(230, "kg"),
  10242. name: "Back",
  10243. image: {
  10244. source: "./media/characters/starry-aqua/back.svg"
  10245. }
  10246. },
  10247. hand: {
  10248. height: math.unit(9 * 0.1168, "feet"),
  10249. name: "Hand",
  10250. image: {
  10251. source: "./media/characters/starry-aqua/hand.svg"
  10252. }
  10253. },
  10254. foot: {
  10255. height: math.unit(9 * 0.18, "feet"),
  10256. name: "Foot",
  10257. image: {
  10258. source: "./media/characters/starry-aqua/foot.svg"
  10259. }
  10260. }
  10261. },
  10262. [
  10263. {
  10264. name: "Micro",
  10265. height: math.unit(3, "inches")
  10266. },
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(9, "feet")
  10270. },
  10271. {
  10272. name: "Macro",
  10273. height: math.unit(300, "feet"),
  10274. default: true
  10275. },
  10276. {
  10277. name: "Megamacro",
  10278. height: math.unit(3200, "feet")
  10279. }
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10284. {
  10285. front: {
  10286. height: math.unit(15, "feet"),
  10287. weight: math.unit(5026, "lb"),
  10288. name: "Front",
  10289. image: {
  10290. source: "./media/characters/luka-towers/front.svg",
  10291. extra: 1269/1133,
  10292. bottom: 51/1320
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(15, "feet"),
  10300. default: true
  10301. },
  10302. {
  10303. name: "Minimacro",
  10304. height: math.unit(25, "feet")
  10305. },
  10306. {
  10307. name: "Macro",
  10308. height: math.unit(320, "feet")
  10309. },
  10310. {
  10311. name: "Megamacro",
  10312. height: math.unit(35000, "feet")
  10313. },
  10314. {
  10315. name: "Gigamacro",
  10316. height: math.unit(4000, "miles")
  10317. },
  10318. {
  10319. name: "Teramacro",
  10320. height: math.unit(15000, "miles")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/natalie-nightring/front.svg",
  10333. extra: 1,
  10334. bottom: 0.06
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Uh Oh",
  10341. height: math.unit(0.1, "mm")
  10342. },
  10343. {
  10344. name: "Small",
  10345. height: math.unit(3, "inches")
  10346. },
  10347. {
  10348. name: "Human Scale",
  10349. height: math.unit(6, "feet")
  10350. },
  10351. {
  10352. name: "Librarian",
  10353. height: math.unit(50, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Immense",
  10358. height: math.unit(200, "miles")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(6, "feet"),
  10367. weight: math.unit(180, "lbs"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/danni-rosie/front.svg",
  10371. extra: 1260 / 1128,
  10372. bottom: 0.022
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(2, "inches"),
  10380. default: true
  10381. },
  10382. ]
  10383. ))
  10384. characterMakers.push(() => makeCharacter(
  10385. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10386. {
  10387. front: {
  10388. height: math.unit(5 + 9 / 12, "feet"),
  10389. weight: math.unit(220, "lb"),
  10390. name: "Front",
  10391. image: {
  10392. source: "./media/characters/samantha-kruse/front.svg",
  10393. extra: (985 / 935),
  10394. bottom: 0.03
  10395. }
  10396. },
  10397. frontUndressed: {
  10398. height: math.unit(5 + 9 / 12, "feet"),
  10399. weight: math.unit(220, "lb"),
  10400. name: "Front (Undressed)",
  10401. image: {
  10402. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10403. extra: (973 / 923),
  10404. bottom: 0.025
  10405. }
  10406. },
  10407. fat: {
  10408. height: math.unit(5 + 9 / 12, "feet"),
  10409. weight: math.unit(900, "lb"),
  10410. name: "Front (Fat)",
  10411. image: {
  10412. source: "./media/characters/samantha-kruse/fat.svg",
  10413. extra: 2688 / 2561
  10414. }
  10415. },
  10416. },
  10417. [
  10418. {
  10419. name: "Normal",
  10420. height: math.unit(5 + 9 / 12, "feet"),
  10421. default: true
  10422. }
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10427. {
  10428. back: {
  10429. height: math.unit(5 + 4 / 12, "feet"),
  10430. weight: math.unit(4963, "lb"),
  10431. name: "Back",
  10432. image: {
  10433. source: "./media/characters/amelia-rosie/back.svg",
  10434. extra: 1113 / 963,
  10435. bottom: 0.01
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Level 0",
  10442. height: math.unit(5 + 4 / 12, "feet")
  10443. },
  10444. {
  10445. name: "Level 1",
  10446. height: math.unit(164597, "feet"),
  10447. default: true
  10448. },
  10449. {
  10450. name: "Level 2",
  10451. height: math.unit(956243, "miles")
  10452. },
  10453. {
  10454. name: "Level 3",
  10455. height: math.unit(29421709423, "miles")
  10456. },
  10457. {
  10458. name: "Level 4",
  10459. height: math.unit(154, "lightyears")
  10460. },
  10461. {
  10462. name: "Level 5",
  10463. height: math.unit(4738272, "lightyears")
  10464. },
  10465. {
  10466. name: "Level 6",
  10467. height: math.unit(145787152896, "lightyears")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(5 + 11 / 12, "feet"),
  10476. weight: math.unit(65, "kg"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/rook-kitara/front.svg",
  10480. extra: 1347 / 1274,
  10481. bottom: 0.005
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Totally Unfair",
  10488. height: math.unit(1.8, "mm")
  10489. },
  10490. {
  10491. name: "Lap Rookie",
  10492. height: math.unit(1.4, "feet")
  10493. },
  10494. {
  10495. name: "Normal",
  10496. height: math.unit(5 + 11 / 12, "feet"),
  10497. default: true
  10498. },
  10499. {
  10500. name: "How Did This Happen",
  10501. height: math.unit(80, "miles")
  10502. }
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(7, "feet"),
  10510. weight: math.unit(300, "lb"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/pisces/front.svg",
  10514. extra: 2255 / 2115,
  10515. bottom: 0.03
  10516. }
  10517. },
  10518. back: {
  10519. height: math.unit(7, "feet"),
  10520. weight: math.unit(300, "lb"),
  10521. name: "Back",
  10522. image: {
  10523. source: "./media/characters/pisces/back.svg",
  10524. extra: 2146 / 2055,
  10525. bottom: 0.04
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(7, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Swimming Pool",
  10537. height: math.unit(12.2, "meters")
  10538. },
  10539. {
  10540. name: "Olympic Swimming Pool",
  10541. height: math.unit(56.3, "meters")
  10542. },
  10543. {
  10544. name: "Lake Superior",
  10545. height: math.unit(93900, "meters")
  10546. },
  10547. {
  10548. name: "Mediterranean Sea",
  10549. height: math.unit(644457, "meters")
  10550. },
  10551. {
  10552. name: "World's Oceans",
  10553. height: math.unit(4567491, "meters")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(2.3, "meters"),
  10562. weight: math.unit(120, "kg"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/zelas/front.svg"
  10566. }
  10567. },
  10568. side: {
  10569. height: math.unit(2.3, "meters"),
  10570. weight: math.unit(120, "kg"),
  10571. name: "Side",
  10572. image: {
  10573. source: "./media/characters/zelas/side.svg"
  10574. }
  10575. },
  10576. back: {
  10577. height: math.unit(2.3, "meters"),
  10578. weight: math.unit(120, "kg"),
  10579. name: "Back",
  10580. image: {
  10581. source: "./media/characters/zelas/back.svg"
  10582. }
  10583. },
  10584. foot: {
  10585. height: math.unit(1.116, "feet"),
  10586. name: "Foot",
  10587. image: {
  10588. source: "./media/characters/zelas/foot.svg"
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(2.3, "meters")
  10596. },
  10597. {
  10598. name: "Macro",
  10599. height: math.unit(30, "meters"),
  10600. default: true
  10601. },
  10602. ]
  10603. ))
  10604. characterMakers.push(() => makeCharacter(
  10605. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10606. {
  10607. front: {
  10608. height: math.unit(1, "inch"),
  10609. weight: math.unit(0.21, "grams"),
  10610. name: "Front",
  10611. image: {
  10612. source: "./media/characters/talbot/front.svg",
  10613. extra: 594 / 544
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Micro",
  10620. height: math.unit(1, "inch"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10627. {
  10628. front: {
  10629. height: math.unit(3 + 3 / 12, "feet"),
  10630. weight: math.unit(51.8, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/fliss/front.svg",
  10634. extra: 840 / 640
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Teeny Tiny",
  10641. height: math.unit(1, "mm")
  10642. },
  10643. {
  10644. name: "Small",
  10645. height: math.unit(1, "inch"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Standard Sylveon",
  10650. height: math.unit(3 + 3 / 12, "feet")
  10651. },
  10652. {
  10653. name: "Large Nuisance",
  10654. height: math.unit(33, "feet")
  10655. },
  10656. {
  10657. name: "City Filler",
  10658. height: math.unit(3000, "feet")
  10659. },
  10660. {
  10661. name: "New Horizon",
  10662. height: math.unit(6000, "miles")
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10668. {
  10669. front: {
  10670. height: math.unit(5, "cm"),
  10671. weight: math.unit(1.94, "g"),
  10672. name: "Front",
  10673. image: {
  10674. source: "./media/characters/fleta/front.svg",
  10675. extra: 835 / 803
  10676. }
  10677. },
  10678. back: {
  10679. height: math.unit(5, "cm"),
  10680. weight: math.unit(1.94, "g"),
  10681. name: "Back",
  10682. image: {
  10683. source: "./media/characters/fleta/back.svg",
  10684. extra: 835 / 803
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Micro",
  10691. height: math.unit(5, "cm"),
  10692. default: true
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(225, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/dominic/front.svg",
  10705. extra: 1770 / 1620,
  10706. bottom: 0.025
  10707. }
  10708. },
  10709. back: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(225, "lb"),
  10712. name: "Back",
  10713. image: {
  10714. source: "./media/characters/dominic/back.svg",
  10715. extra: 1745 / 1620,
  10716. bottom: 0.065
  10717. }
  10718. },
  10719. },
  10720. [
  10721. {
  10722. name: "Nano",
  10723. height: math.unit(0.1, "mm")
  10724. },
  10725. {
  10726. name: "Micro-",
  10727. height: math.unit(1, "mm")
  10728. },
  10729. {
  10730. name: "Micro",
  10731. height: math.unit(4, "inches")
  10732. },
  10733. {
  10734. name: "Normal",
  10735. height: math.unit(6 + 4 / 12, "feet"),
  10736. default: true
  10737. },
  10738. {
  10739. name: "Macro",
  10740. height: math.unit(115, "feet")
  10741. },
  10742. {
  10743. name: "Macro+",
  10744. height: math.unit(955, "feet")
  10745. },
  10746. {
  10747. name: "Megamacro",
  10748. height: math.unit(8990, "feet")
  10749. },
  10750. {
  10751. name: "Gigmacro",
  10752. height: math.unit(9310, "miles")
  10753. },
  10754. {
  10755. name: "Teramacro",
  10756. height: math.unit(1567005010, "miles")
  10757. },
  10758. {
  10759. name: "Examacro",
  10760. height: math.unit(1425, "parsecs")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(400, "feet"),
  10769. weight: math.unit(44444444, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/major-colonel/front.svg"
  10773. }
  10774. },
  10775. back: {
  10776. height: math.unit(400, "feet"),
  10777. weight: math.unit(44444444, "lb"),
  10778. name: "Back",
  10779. image: {
  10780. source: "./media/characters/major-colonel/back.svg"
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(400, "feet"),
  10788. default: true
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10794. {
  10795. catFront: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(120, "lb"),
  10798. name: "Front (Cat Side)",
  10799. image: {
  10800. source: "./media/characters/axel-lycan/cat-front.svg",
  10801. extra: 430 / 402,
  10802. bottom: 43 / 472.35
  10803. }
  10804. },
  10805. catBack: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(120, "lb"),
  10808. name: "Back (Cat Side)",
  10809. image: {
  10810. source: "./media/characters/axel-lycan/cat-back.svg",
  10811. extra: 447 / 419,
  10812. bottom: 23.3 / 469
  10813. }
  10814. },
  10815. wolfFront: {
  10816. height: math.unit(6, "feet"),
  10817. weight: math.unit(120, "lb"),
  10818. name: "Front (Wolf Side)",
  10819. image: {
  10820. source: "./media/characters/axel-lycan/wolf-front.svg",
  10821. extra: 485 / 456,
  10822. bottom: 19 / 504
  10823. }
  10824. },
  10825. wolfBack: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(120, "lb"),
  10828. name: "Back (Wolf Side)",
  10829. image: {
  10830. source: "./media/characters/axel-lycan/wolf-back.svg",
  10831. extra: 475 / 438,
  10832. bottom: 39.2 / 514
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Macro",
  10839. height: math.unit(1, "km"),
  10840. default: true
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10846. {
  10847. front: {
  10848. height: math.unit(5 + 9 / 12, "feet"),
  10849. weight: math.unit(175, "lb"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/vanrel-hyena/front.svg",
  10853. extra: 1086 / 1010,
  10854. bottom: 0.04
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(5 + 9 / 12, "feet"),
  10862. default: true
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(6, "feet"),
  10871. weight: math.unit(103, "lb"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/abbott-absol/front.svg",
  10875. extra: 2010 / 1842
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Megamicro",
  10882. height: math.unit(0.1, "mm")
  10883. },
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(1, "inch")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(6, "feet"),
  10891. default: true
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(6, "feet"),
  10900. weight: math.unit(264, "lb"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/hector/front.svg",
  10904. extra: 2280 / 2130,
  10905. bottom: 0.07
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Normal",
  10912. height: math.unit(12.25, "foot"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Macro",
  10917. height: math.unit(160, "feet")
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10923. {
  10924. front: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(150, "lb"),
  10927. name: "Front",
  10928. image: {
  10929. source: "./media/characters/sal/front.svg",
  10930. extra: 1846 / 1699,
  10931. bottom: 0.04
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Megamacro",
  10938. height: math.unit(10, "miles"),
  10939. default: true
  10940. },
  10941. ]
  10942. ))
  10943. characterMakers.push(() => makeCharacter(
  10944. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10945. {
  10946. front: {
  10947. height: math.unit(3, "meters"),
  10948. weight: math.unit(450, "kg"),
  10949. name: "front",
  10950. image: {
  10951. source: "./media/characters/ranger/front.svg",
  10952. extra: 2401 / 2243,
  10953. bottom: 0.05
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(3, "meters"),
  10961. default: true
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10967. {
  10968. front: {
  10969. height: math.unit(14, "feet"),
  10970. weight: math.unit(800, "kg"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/theresa/front.svg",
  10974. extra: 3575 / 3346,
  10975. bottom: 0.03
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(14, "feet"),
  10983. default: true
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10989. {
  10990. front: {
  10991. height: math.unit(6, "feet"),
  10992. weight: math.unit(3, "kg"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/ine/front.svg",
  10996. extra: 678 / 539,
  10997. bottom: 0.023
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(2.265, "feet"),
  11005. default: true
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(5, "feet"),
  11014. weight: math.unit(30, "kg"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/vial/front.svg",
  11018. extra: 1365 / 1277,
  11019. bottom: 0.04
  11020. }
  11021. },
  11022. },
  11023. [
  11024. {
  11025. name: "Normal",
  11026. height: math.unit(5, "feet"),
  11027. default: true
  11028. },
  11029. ]
  11030. ))
  11031. characterMakers.push(() => makeCharacter(
  11032. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11033. {
  11034. side: {
  11035. height: math.unit(3.4, "meters"),
  11036. weight: math.unit(1000, "lb"),
  11037. name: "Side",
  11038. image: {
  11039. source: "./media/characters/rovoska/side.svg",
  11040. extra: 4403 / 1515
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(3.4, "meters"),
  11048. default: true
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(8, "feet"),
  11057. weight: math.unit(315, "lb"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/gunner-rotthbauer/front.svg"
  11061. }
  11062. },
  11063. back: {
  11064. height: math.unit(8, "feet"),
  11065. weight: math.unit(315, "lb"),
  11066. name: "Back",
  11067. image: {
  11068. source: "./media/characters/gunner-rotthbauer/back.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(3.5, "inches")
  11076. },
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(8, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(250, "feet")
  11085. },
  11086. {
  11087. name: "Megamacro",
  11088. height: math.unit(1, "AU")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(5 + 5 / 12, "feet"),
  11097. weight: math.unit(140, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/allatia/front.svg",
  11101. extra: 1227 / 1180,
  11102. bottom: 0.027
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(5 + 5 / 12, "feet")
  11110. },
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(250, "feet"),
  11114. default: true
  11115. },
  11116. {
  11117. name: "Megamacro",
  11118. height: math.unit(8, "miles")
  11119. }
  11120. ]
  11121. ))
  11122. characterMakers.push(() => makeCharacter(
  11123. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11124. {
  11125. front: {
  11126. height: math.unit(6, "feet"),
  11127. weight: math.unit(120, "lb"),
  11128. name: "Front",
  11129. image: {
  11130. source: "./media/characters/tene/front.svg",
  11131. extra: 814/750,
  11132. bottom: 36/850
  11133. }
  11134. },
  11135. stomping: {
  11136. height: math.unit(2.025, "meters"),
  11137. weight: math.unit(120, "lb"),
  11138. name: "Stomping",
  11139. image: {
  11140. source: "./media/characters/tene/stomping.svg",
  11141. extra: 885/821,
  11142. bottom: 15/900
  11143. }
  11144. },
  11145. sitting: {
  11146. height: math.unit(1, "meter"),
  11147. weight: math.unit(120, "lb"),
  11148. name: "Sitting",
  11149. image: {
  11150. source: "./media/characters/tene/sitting.svg",
  11151. extra: 396/366,
  11152. bottom: 79/475
  11153. }
  11154. },
  11155. smiling: {
  11156. height: math.unit(1.2, "feet"),
  11157. name: "Smiling",
  11158. image: {
  11159. source: "./media/characters/tene/smiling.svg",
  11160. extra: 1364/1071,
  11161. bottom: 0/1364
  11162. }
  11163. },
  11164. smug: {
  11165. height: math.unit(1.3, "feet"),
  11166. name: "Smug",
  11167. image: {
  11168. source: "./media/characters/tene/smug.svg",
  11169. extra: 1323/1082,
  11170. bottom: 0/1323
  11171. }
  11172. },
  11173. feral: {
  11174. height: math.unit(3.9, "feet"),
  11175. weight: math.unit(250, "lb"),
  11176. name: "Feral",
  11177. image: {
  11178. source: "./media/characters/tene/feral.svg",
  11179. extra: 717 / 458,
  11180. bottom: 0.179
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Normal",
  11187. height: math.unit(6, "feet")
  11188. },
  11189. {
  11190. name: "Macro",
  11191. height: math.unit(300, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Megamacro",
  11196. height: math.unit(5, "miles")
  11197. },
  11198. ]
  11199. ))
  11200. characterMakers.push(() => makeCharacter(
  11201. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11202. {
  11203. side: {
  11204. height: math.unit(6, "feet"),
  11205. name: "Side",
  11206. image: {
  11207. source: "./media/characters/evander/side.svg",
  11208. extra: 877 / 477
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(0.83, "meters"),
  11216. default: true
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(12, "feet"),
  11225. weight: math.unit(1000, "lb"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11229. extra: 1762 / 1611
  11230. }
  11231. },
  11232. back: {
  11233. height: math.unit(12, "feet"),
  11234. weight: math.unit(1000, "lb"),
  11235. name: "Back",
  11236. image: {
  11237. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11238. extra: 1762 / 1611
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(12, "feet"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Kaiju",
  11250. height: math.unit(150, "feet")
  11251. },
  11252. ]
  11253. ))
  11254. characterMakers.push(() => makeCharacter(
  11255. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11256. {
  11257. front: {
  11258. height: math.unit(6, "feet"),
  11259. weight: math.unit(150, "lb"),
  11260. name: "Front",
  11261. image: {
  11262. source: "./media/characters/zero-alurus/front.svg"
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/zero-alurus/back.svg"
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(5 + 10 / 12, "feet")
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(60, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Macro+",
  11286. height: math.unit(450, "feet")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(200, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/mega-shi/front.svg",
  11299. extra: 1279 / 1250,
  11300. bottom: 0.02
  11301. }
  11302. },
  11303. back: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(200, "lb"),
  11306. name: "Back",
  11307. image: {
  11308. source: "./media/characters/mega-shi/back.svg",
  11309. extra: 1279 / 1250,
  11310. bottom: 0.02
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Micro",
  11317. height: math.unit(16 + 6 / 12, "feet")
  11318. },
  11319. {
  11320. name: "Third Dimension",
  11321. height: math.unit(40, "meters")
  11322. },
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(660, "feet"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(10, "miles")
  11331. },
  11332. {
  11333. name: "Planetary Launch",
  11334. height: math.unit(500, "miles")
  11335. },
  11336. {
  11337. name: "Interstellar",
  11338. height: math.unit(1e9, "miles")
  11339. },
  11340. {
  11341. name: "Leaving the Universe",
  11342. height: math.unit(1, "gigaparsec")
  11343. },
  11344. {
  11345. name: "Travelling Universes",
  11346. height: math.unit(30e15, "parsecs")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(5 + 4/12, "feet"),
  11355. weight: math.unit(120, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/odyssey/front.svg",
  11359. extra: 1747/1571,
  11360. bottom: 47/1794
  11361. }
  11362. },
  11363. side: {
  11364. height: math.unit(5.1, "feet"),
  11365. weight: math.unit(120, "lb"),
  11366. name: "Side",
  11367. image: {
  11368. source: "./media/characters/odyssey/side.svg",
  11369. extra: 1847/1619,
  11370. bottom: 47/1894
  11371. }
  11372. },
  11373. lounging: {
  11374. height: math.unit(1.464, "feet"),
  11375. weight: math.unit(120, "lb"),
  11376. name: "Lounging",
  11377. image: {
  11378. source: "./media/characters/odyssey/lounging.svg",
  11379. extra: 1235/837,
  11380. bottom: 551/1786
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(5 + 4 / 12, "feet")
  11388. },
  11389. {
  11390. name: "Macro",
  11391. height: math.unit(1, "km")
  11392. },
  11393. {
  11394. name: "Megamacro",
  11395. height: math.unit(3000, "km")
  11396. },
  11397. {
  11398. name: "Gigamacro",
  11399. height: math.unit(1, "AU"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Omniversal",
  11404. height: math.unit(100e14, "lightyears")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(5 + 10/12, "feet"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/mekuto/front.svg",
  11416. extra: 875/835,
  11417. bottom: 46/921
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Minimicro",
  11424. height: math.unit(0.2, "inches")
  11425. },
  11426. {
  11427. name: "Micro",
  11428. height: math.unit(1.5, "inches")
  11429. },
  11430. {
  11431. name: "Normal",
  11432. height: math.unit(5 + 10 / 12, "feet"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Minimacro",
  11437. height: math.unit(17 + 9 / 12, "feet")
  11438. },
  11439. {
  11440. name: "Macro",
  11441. height: math.unit(177.5, "feet")
  11442. },
  11443. {
  11444. name: "Megamacro",
  11445. height: math.unit(152, "miles")
  11446. },
  11447. ]
  11448. ))
  11449. characterMakers.push(() => makeCharacter(
  11450. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11451. {
  11452. front: {
  11453. height: math.unit(6.5, "inches"),
  11454. weight: math.unit(13, "oz"),
  11455. name: "Front",
  11456. image: {
  11457. source: "./media/characters/dafydd-tomos/front.svg",
  11458. extra: 2990 / 2603,
  11459. bottom: 0.03
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Micro",
  11466. height: math.unit(6.5, "inches"),
  11467. default: true
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(150, "lb"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/splinter/front.svg",
  11480. extra: 2990 / 2882,
  11481. bottom: 0.04
  11482. }
  11483. },
  11484. back: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(150, "lb"),
  11487. name: "Back",
  11488. image: {
  11489. source: "./media/characters/splinter/back.svg",
  11490. extra: 2990 / 2882,
  11491. bottom: 0.04
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Normal",
  11498. height: math.unit(6, "feet")
  11499. },
  11500. {
  11501. name: "Macro",
  11502. height: math.unit(230, "meters"),
  11503. default: true
  11504. },
  11505. ]
  11506. ))
  11507. characterMakers.push(() => makeCharacter(
  11508. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11509. {
  11510. front: {
  11511. height: math.unit(4 + 10 / 12, "feet"),
  11512. weight: math.unit(480, "lb"),
  11513. name: "Front",
  11514. image: {
  11515. source: "./media/characters/snow-gabumon/front.svg",
  11516. extra: 1140 / 963,
  11517. bottom: 0.058
  11518. }
  11519. },
  11520. back: {
  11521. height: math.unit(4 + 10 / 12, "feet"),
  11522. weight: math.unit(480, "lb"),
  11523. name: "Back",
  11524. image: {
  11525. source: "./media/characters/snow-gabumon/back.svg",
  11526. extra: 1115 / 962,
  11527. bottom: 0.041
  11528. }
  11529. },
  11530. frontUndresed: {
  11531. height: math.unit(4 + 10 / 12, "feet"),
  11532. weight: math.unit(480, "lb"),
  11533. name: "Front (Undressed)",
  11534. image: {
  11535. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11536. extra: 1061 / 960,
  11537. bottom: 0.045
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(1, "inch")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(4 + 10 / 12, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(200, "feet")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(120, "miles")
  11558. },
  11559. {
  11560. name: "Gigamacro",
  11561. height: math.unit(9800, "miles")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(1.7, "meters"),
  11570. weight: math.unit(140, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/moody/front.svg",
  11574. extra: 3226 / 3007,
  11575. bottom: 0.087
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Micro",
  11582. height: math.unit(1, "mm")
  11583. },
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(1.7, "meters"),
  11587. default: true
  11588. },
  11589. {
  11590. name: "Macro",
  11591. height: math.unit(80, "meters")
  11592. },
  11593. {
  11594. name: "Macro+",
  11595. height: math.unit(500, "meters")
  11596. },
  11597. ]
  11598. ))
  11599. characterMakers.push(() => makeCharacter(
  11600. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11601. {
  11602. front: {
  11603. height: math.unit(6, "feet"),
  11604. weight: math.unit(150, "lb"),
  11605. name: "Front",
  11606. image: {
  11607. source: "./media/characters/zyas/front.svg",
  11608. extra: 1180 / 1120,
  11609. bottom: 0.045
  11610. }
  11611. },
  11612. },
  11613. [
  11614. {
  11615. name: "Normal",
  11616. height: math.unit(10, "feet"),
  11617. default: true
  11618. },
  11619. {
  11620. name: "Macro",
  11621. height: math.unit(500, "feet")
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(5, "miles")
  11626. },
  11627. {
  11628. name: "Teramacro",
  11629. height: math.unit(150000, "miles")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(6, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/cuon/front.svg",
  11642. extra: 1390 / 1320,
  11643. bottom: 0.008
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Micro",
  11650. height: math.unit(3, "inches")
  11651. },
  11652. {
  11653. name: "Normal",
  11654. height: math.unit(18 + 9 / 12, "feet"),
  11655. default: true
  11656. },
  11657. {
  11658. name: "Macro",
  11659. height: math.unit(360, "feet")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(360, "miles")
  11664. },
  11665. ]
  11666. ))
  11667. characterMakers.push(() => makeCharacter(
  11668. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11669. {
  11670. front: {
  11671. height: math.unit(2.4, "meters"),
  11672. weight: math.unit(70, "kg"),
  11673. name: "Front",
  11674. image: {
  11675. source: "./media/characters/nyanuxk/front.svg",
  11676. extra: 1172 / 1084,
  11677. bottom: 0.065
  11678. }
  11679. },
  11680. side: {
  11681. height: math.unit(2.4, "meters"),
  11682. weight: math.unit(70, "kg"),
  11683. name: "Side",
  11684. image: {
  11685. source: "./media/characters/nyanuxk/side.svg",
  11686. extra: 1190 / 1132,
  11687. bottom: 0.007
  11688. }
  11689. },
  11690. back: {
  11691. height: math.unit(2.4, "meters"),
  11692. weight: math.unit(70, "kg"),
  11693. name: "Back",
  11694. image: {
  11695. source: "./media/characters/nyanuxk/back.svg",
  11696. extra: 1200 / 1141,
  11697. bottom: 0.015
  11698. }
  11699. },
  11700. foot: {
  11701. height: math.unit(0.52, "meters"),
  11702. name: "Foot",
  11703. image: {
  11704. source: "./media/characters/nyanuxk/foot.svg"
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Micro",
  11711. height: math.unit(2, "cm")
  11712. },
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(2.4, "meters"),
  11716. default: true
  11717. },
  11718. {
  11719. name: "Smaller Macro",
  11720. height: math.unit(120, "meters")
  11721. },
  11722. {
  11723. name: "Bigger Macro",
  11724. height: math.unit(1.2, "km")
  11725. },
  11726. {
  11727. name: "Megamacro",
  11728. height: math.unit(15, "kilometers")
  11729. },
  11730. {
  11731. name: "Gigamacro",
  11732. height: math.unit(2000, "km")
  11733. },
  11734. {
  11735. name: "Teramacro",
  11736. height: math.unit(500000, "km")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11742. {
  11743. side: {
  11744. height: math.unit(6, "feet"),
  11745. name: "Side",
  11746. image: {
  11747. source: "./media/characters/ailbhe/side.svg",
  11748. extra: 757 / 464,
  11749. bottom: 0.041
  11750. }
  11751. },
  11752. },
  11753. [
  11754. {
  11755. name: "Normal",
  11756. height: math.unit(1.07, "meters"),
  11757. default: true
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(6, "feet"),
  11766. weight: math.unit(120, "kg"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/zevulfius/front.svg",
  11770. extra: 965 / 903
  11771. }
  11772. },
  11773. side: {
  11774. height: math.unit(6, "feet"),
  11775. weight: math.unit(120, "kg"),
  11776. name: "Side",
  11777. image: {
  11778. source: "./media/characters/zevulfius/side.svg",
  11779. extra: 939 / 900
  11780. }
  11781. },
  11782. back: {
  11783. height: math.unit(6, "feet"),
  11784. weight: math.unit(120, "kg"),
  11785. name: "Back",
  11786. image: {
  11787. source: "./media/characters/zevulfius/back.svg",
  11788. extra: 918 / 854,
  11789. bottom: 0.005
  11790. }
  11791. },
  11792. foot: {
  11793. height: math.unit(6 / 3.72, "feet"),
  11794. name: "Foot",
  11795. image: {
  11796. source: "./media/characters/zevulfius/foot.svg"
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Macro",
  11803. height: math.unit(750, "meters")
  11804. },
  11805. {
  11806. name: "Megamacro",
  11807. height: math.unit(20, "km"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Gigamacro",
  11812. height: math.unit(2000, "km")
  11813. },
  11814. {
  11815. name: "Teramacro",
  11816. height: math.unit(250000, "km")
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(100, "feet"),
  11825. weight: math.unit(350, "kg"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/rikes/front.svg",
  11829. extra: 1565 / 1483,
  11830. bottom: 0.017
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(100, "feet"),
  11838. default: true
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(8, "feet"),
  11847. weight: math.unit(356, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/adam-silver-mane/front.svg",
  11851. extra: 1036/937,
  11852. bottom: 63/1099
  11853. }
  11854. },
  11855. side: {
  11856. height: math.unit(8, "feet"),
  11857. weight: math.unit(356, "lb"),
  11858. name: "Side",
  11859. image: {
  11860. source: "./media/characters/adam-silver-mane/side.svg",
  11861. extra: 997/901,
  11862. bottom: 59/1056
  11863. }
  11864. },
  11865. frontNsfw: {
  11866. height: math.unit(8, "feet"),
  11867. weight: math.unit(356, "lb"),
  11868. name: "Front (NSFW)",
  11869. image: {
  11870. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11871. extra: 1036/937,
  11872. bottom: 63/1099
  11873. }
  11874. },
  11875. sideNsfw: {
  11876. height: math.unit(8, "feet"),
  11877. weight: math.unit(356, "lb"),
  11878. name: "Side (NSFW)",
  11879. image: {
  11880. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11881. extra: 997/901,
  11882. bottom: 59/1056
  11883. }
  11884. },
  11885. dick: {
  11886. height: math.unit(2.1, "feet"),
  11887. name: "Dick",
  11888. image: {
  11889. source: "./media/characters/adam-silver-mane/dick.svg"
  11890. }
  11891. },
  11892. taur: {
  11893. height: math.unit(16, "feet"),
  11894. weight: math.unit(1500, "kg"),
  11895. name: "Taur",
  11896. image: {
  11897. source: "./media/characters/adam-silver-mane/taur.svg",
  11898. extra: 1713 / 1571,
  11899. bottom: 0.01
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Normal",
  11906. height: math.unit(8, "feet")
  11907. },
  11908. {
  11909. name: "Minimacro",
  11910. height: math.unit(80, "feet")
  11911. },
  11912. {
  11913. name: "MDA",
  11914. height: math.unit(80, "meters")
  11915. },
  11916. {
  11917. name: "Macro",
  11918. height: math.unit(800, "feet"),
  11919. default: true
  11920. },
  11921. {
  11922. name: "Megamacro",
  11923. height: math.unit(8000, "feet")
  11924. },
  11925. {
  11926. name: "Gigamacro",
  11927. height: math.unit(800, "miles")
  11928. },
  11929. {
  11930. name: "Teramacro",
  11931. height: math.unit(80000, "miles")
  11932. },
  11933. {
  11934. name: "Celestial",
  11935. height: math.unit(8e6, "miles")
  11936. },
  11937. {
  11938. name: "Star Dragon",
  11939. height: math.unit(800000, "parsecs")
  11940. },
  11941. {
  11942. name: "Godly",
  11943. height: math.unit(800, "teraparsecs")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(150, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/ky'owin/front.svg",
  11956. extra: 3862/3053,
  11957. bottom: 74/3936
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(6 + 8 / 12, "feet")
  11965. },
  11966. {
  11967. name: "Large",
  11968. height: math.unit(68, "feet")
  11969. },
  11970. {
  11971. name: "Macro",
  11972. height: math.unit(132, "feet")
  11973. },
  11974. {
  11975. name: "Macro+",
  11976. height: math.unit(340, "feet")
  11977. },
  11978. {
  11979. name: "Macro++",
  11980. height: math.unit(680, "feet"),
  11981. default: true
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(1, "mile")
  11986. },
  11987. {
  11988. name: "Megamacro+",
  11989. height: math.unit(10, "miles")
  11990. },
  11991. ]
  11992. ))
  11993. characterMakers.push(() => makeCharacter(
  11994. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11995. {
  11996. front: {
  11997. height: math.unit(4, "feet"),
  11998. weight: math.unit(50, "lb"),
  11999. name: "Front",
  12000. image: {
  12001. source: "./media/characters/mal/front.svg",
  12002. extra: 785 / 724,
  12003. bottom: 0.07
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Micro",
  12010. height: math.unit(4, "inches")
  12011. },
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(4, "feet"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Macro",
  12019. height: math.unit(200, "feet")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(150, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/jordan-deware/front.svg",
  12032. extra: 1191 / 1012
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Nano",
  12039. height: math.unit(0.01, "mm")
  12040. },
  12041. {
  12042. name: "Minimicro",
  12043. height: math.unit(1, "mm")
  12044. },
  12045. {
  12046. name: "Micro",
  12047. height: math.unit(0.5, "inches")
  12048. },
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(4, "feet"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Minimacro",
  12056. height: math.unit(40, "meters")
  12057. },
  12058. {
  12059. name: "Small Macro",
  12060. height: math.unit(400, "meters")
  12061. },
  12062. {
  12063. name: "Macro",
  12064. height: math.unit(4, "miles")
  12065. },
  12066. {
  12067. name: "Megamacro",
  12068. height: math.unit(40, "miles")
  12069. },
  12070. {
  12071. name: "Megamacro+",
  12072. height: math.unit(400, "miles")
  12073. },
  12074. {
  12075. name: "Gigamacro",
  12076. height: math.unit(400000, "miles")
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12082. {
  12083. side: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(150, "lb"),
  12086. name: "Side",
  12087. image: {
  12088. source: "./media/characters/kimiko/side.svg",
  12089. extra: 600 / 358
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(15, "feet"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(220, "feet")
  12102. },
  12103. {
  12104. name: "Macro+",
  12105. height: math.unit(1450, "feet")
  12106. },
  12107. {
  12108. name: "Megamacro",
  12109. height: math.unit(11500, "feet")
  12110. },
  12111. {
  12112. name: "Gigamacro",
  12113. height: math.unit(9500, "miles")
  12114. },
  12115. {
  12116. name: "Teramacro",
  12117. height: math.unit(2208005005, "miles")
  12118. },
  12119. {
  12120. name: "Examacro",
  12121. height: math.unit(2750, "parsecs")
  12122. },
  12123. {
  12124. name: "Zettamacro",
  12125. height: math.unit(101500, "parsecs")
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12131. {
  12132. front: {
  12133. height: math.unit(6, "feet"),
  12134. weight: math.unit(70, "kg"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/andrew-sleepy/front.svg"
  12138. }
  12139. },
  12140. side: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(70, "kg"),
  12143. name: "Side",
  12144. image: {
  12145. source: "./media/characters/andrew-sleepy/side.svg"
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Micro",
  12152. height: math.unit(1, "mm"),
  12153. default: true
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(150, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/judio/front.svg",
  12166. extra: 1258 / 1110
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(5 + 6 / 12, "feet")
  12174. },
  12175. {
  12176. name: "Macro",
  12177. height: math.unit(1000, "feet"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Megamacro",
  12182. height: math.unit(10, "miles")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12188. {
  12189. frontDressed: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(68, "kg"),
  12192. name: "Front (Dressed)",
  12193. image: {
  12194. source: "./media/characters/nomaxice/front-dressed.svg",
  12195. extra: 1137/824,
  12196. bottom: 74/1211
  12197. }
  12198. },
  12199. frontShorts: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(68, "kg"),
  12202. name: "Front (Shorts)",
  12203. image: {
  12204. source: "./media/characters/nomaxice/front-shorts.svg",
  12205. extra: 1137/824,
  12206. bottom: 74/1211
  12207. }
  12208. },
  12209. back: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(68, "kg"),
  12212. name: "Back",
  12213. image: {
  12214. source: "./media/characters/nomaxice/back.svg",
  12215. extra: 822/786,
  12216. bottom: 39/861
  12217. }
  12218. },
  12219. hand: {
  12220. height: math.unit(0.565, "feet"),
  12221. name: "Hand",
  12222. image: {
  12223. source: "./media/characters/nomaxice/hand.svg"
  12224. }
  12225. },
  12226. foot: {
  12227. height: math.unit(1, "feet"),
  12228. name: "Foot",
  12229. image: {
  12230. source: "./media/characters/nomaxice/foot.svg"
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Micro",
  12237. height: math.unit(8, "cm")
  12238. },
  12239. {
  12240. name: "Norm",
  12241. height: math.unit(1.82, "m")
  12242. },
  12243. {
  12244. name: "Norm+",
  12245. height: math.unit(8.8, "feet"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Big",
  12250. height: math.unit(8, "meters")
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(18, "meters")
  12255. },
  12256. {
  12257. name: "Macro+",
  12258. height: math.unit(88, "meters")
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(12, "feet"),
  12267. weight: math.unit(1.5, "tons"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/dydros/front.svg",
  12271. extra: 863 / 800,
  12272. bottom: 0.015
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(12, "feet"),
  12277. weight: math.unit(1.5, "tons"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/dydros/back.svg",
  12281. extra: 900 / 843,
  12282. bottom: 0.005
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Normal",
  12289. height: math.unit(12, "feet"),
  12290. default: true
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(100, "kg"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/riggi/front.svg",
  12303. extra: 5787 / 5303
  12304. }
  12305. },
  12306. hyper: {
  12307. height: math.unit(6 * 5 / 3, "feet"),
  12308. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12309. name: "Hyper",
  12310. image: {
  12311. source: "./media/characters/riggi/hyper.svg",
  12312. extra: 3595 / 3485
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Small Macro",
  12319. height: math.unit(50, "feet")
  12320. },
  12321. {
  12322. name: "Default",
  12323. height: math.unit(200, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Loom",
  12328. height: math.unit(10000, "feet")
  12329. },
  12330. {
  12331. name: "Cruising Altitude",
  12332. height: math.unit(30000, "feet")
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(100, "miles")
  12337. },
  12338. {
  12339. name: "Continent Sized",
  12340. height: math.unit(2800, "miles")
  12341. },
  12342. {
  12343. name: "Earth Sized",
  12344. height: math.unit(8000, "miles")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(250, "lb"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/alexi/front.svg",
  12357. extra: 3483 / 3291,
  12358. bottom: 0.04
  12359. }
  12360. },
  12361. back: {
  12362. height: math.unit(6, "feet"),
  12363. weight: math.unit(250, "lb"),
  12364. name: "Back",
  12365. image: {
  12366. source: "./media/characters/alexi/back.svg",
  12367. extra: 3533 / 3356,
  12368. bottom: 0.021
  12369. }
  12370. },
  12371. frontTransforming: {
  12372. height: math.unit(8.58, "feet"),
  12373. weight: math.unit(1300, "lb"),
  12374. name: "Transforming",
  12375. image: {
  12376. source: "./media/characters/alexi/front-transforming.svg",
  12377. extra: 437 / 409,
  12378. bottom: 19 / 458.66
  12379. }
  12380. },
  12381. frontTransformed: {
  12382. height: math.unit(12.5, "feet"),
  12383. weight: math.unit(4000, "lb"),
  12384. name: "Transformed",
  12385. image: {
  12386. source: "./media/characters/alexi/front-transformed.svg",
  12387. extra: 639 / 614,
  12388. bottom: 30.55 / 671
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Normal",
  12395. height: math.unit(14, "feet"),
  12396. default: true
  12397. },
  12398. {
  12399. name: "Minimacro",
  12400. height: math.unit(30, "meters")
  12401. },
  12402. {
  12403. name: "Macro",
  12404. height: math.unit(500, "meters")
  12405. },
  12406. {
  12407. name: "Megamacro",
  12408. height: math.unit(9000, "km")
  12409. },
  12410. {
  12411. name: "Teramacro",
  12412. height: math.unit(384000, "km")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/kayroo/front.svg",
  12425. extra: 1153 / 1038,
  12426. bottom: 0.06
  12427. }
  12428. },
  12429. foot: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(150, "lb"),
  12432. name: "Foot",
  12433. image: {
  12434. source: "./media/characters/kayroo/foot.svg"
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(8, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Minimacro",
  12446. height: math.unit(250, "feet")
  12447. },
  12448. {
  12449. name: "Macro",
  12450. height: math.unit(2800, "feet")
  12451. },
  12452. {
  12453. name: "Megamacro",
  12454. height: math.unit(5200, "feet")
  12455. },
  12456. {
  12457. name: "Gigamacro",
  12458. height: math.unit(27000, "feet")
  12459. },
  12460. {
  12461. name: "Omega",
  12462. height: math.unit(45000, "feet")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(18, "feet"),
  12471. weight: math.unit(5800, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/rhys/front.svg",
  12475. extra: 3386 / 3090,
  12476. bottom: 0.07
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Normal",
  12483. height: math.unit(18, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Working Size",
  12488. height: math.unit(200, "feet")
  12489. },
  12490. {
  12491. name: "Demolition Size",
  12492. height: math.unit(2000, "feet")
  12493. },
  12494. {
  12495. name: "Maximum Licensed Size",
  12496. height: math.unit(5, "miles")
  12497. },
  12498. {
  12499. name: "Maximum Observed Size",
  12500. height: math.unit(10, "yottameters")
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(250, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/toto/front.svg",
  12513. extra: 527 / 479,
  12514. bottom: 0.05
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Micro",
  12521. height: math.unit(3, "feet")
  12522. },
  12523. {
  12524. name: "Normal",
  12525. height: math.unit(10, "feet")
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(150, "feet"),
  12530. default: true
  12531. },
  12532. {
  12533. name: "Megamacro",
  12534. height: math.unit(1200, "feet")
  12535. },
  12536. ]
  12537. ))
  12538. characterMakers.push(() => makeCharacter(
  12539. { name: "King", species: ["lion"], tags: ["anthro"] },
  12540. {
  12541. back: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(150, "lb"),
  12544. name: "Back",
  12545. image: {
  12546. source: "./media/characters/king/back.svg"
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Micro",
  12553. height: math.unit(2, "inches")
  12554. },
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(8, "feet")
  12558. },
  12559. {
  12560. name: "Macro",
  12561. height: math.unit(200, "feet"),
  12562. default: true
  12563. },
  12564. {
  12565. name: "Megamacro",
  12566. height: math.unit(50, "miles")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(11, "feet"),
  12575. weight: math.unit(1400, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/cordite/front.svg",
  12579. extra: 1919/1827,
  12580. bottom: 40/1959
  12581. }
  12582. },
  12583. side: {
  12584. height: math.unit(11, "feet"),
  12585. weight: math.unit(1400, "lb"),
  12586. name: "Side",
  12587. image: {
  12588. source: "./media/characters/cordite/side.svg",
  12589. extra: 1908/1793,
  12590. bottom: 38/1946
  12591. }
  12592. },
  12593. back: {
  12594. height: math.unit(11, "feet"),
  12595. weight: math.unit(1400, "lb"),
  12596. name: "Back",
  12597. image: {
  12598. source: "./media/characters/cordite/back.svg",
  12599. extra: 1938/1837,
  12600. bottom: 10/1948
  12601. }
  12602. },
  12603. feral: {
  12604. height: math.unit(2, "feet"),
  12605. weight: math.unit(90, "lb"),
  12606. name: "Feral",
  12607. image: {
  12608. source: "./media/characters/cordite/feral.svg",
  12609. extra: 1260 / 755,
  12610. bottom: 0.05
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(11, "feet"),
  12618. default: true
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(6, "feet"),
  12627. weight: math.unit(150, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/pianostrong/front.svg",
  12631. extra: 6577 / 6254,
  12632. bottom: 0.02
  12633. }
  12634. },
  12635. side: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Side",
  12639. image: {
  12640. source: "./media/characters/pianostrong/side.svg",
  12641. extra: 6106 / 5730
  12642. }
  12643. },
  12644. back: {
  12645. height: math.unit(6, "feet"),
  12646. weight: math.unit(150, "lb"),
  12647. name: "Back",
  12648. image: {
  12649. source: "./media/characters/pianostrong/back.svg",
  12650. extra: 6085 / 5733,
  12651. bottom: 0.01
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Macro",
  12658. height: math.unit(100, "feet")
  12659. },
  12660. {
  12661. name: "Macro+",
  12662. height: math.unit(300, "feet"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Macro++",
  12667. height: math.unit(1000, "feet")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(150, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/kona/front.svg",
  12680. extra: 2960 / 2629,
  12681. bottom: 0.005
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Normal",
  12688. height: math.unit(11 + 8 / 12, "feet")
  12689. },
  12690. {
  12691. name: "Macro",
  12692. height: math.unit(850, "feet"),
  12693. default: true
  12694. },
  12695. {
  12696. name: "Macro+",
  12697. height: math.unit(1.5, "km"),
  12698. default: true
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(80, "miles")
  12703. },
  12704. {
  12705. name: "Gigamacro",
  12706. height: math.unit(3500, "miles")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12712. {
  12713. side: {
  12714. height: math.unit(1.9, "meters"),
  12715. weight: math.unit(326, "kg"),
  12716. name: "Side",
  12717. image: {
  12718. source: "./media/characters/levi/side.svg",
  12719. extra: 1704 / 1334,
  12720. bottom: 0.02
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Normal",
  12727. height: math.unit(1.9, "meters"),
  12728. default: true
  12729. },
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(20, "meters")
  12733. },
  12734. {
  12735. name: "Macro+",
  12736. height: math.unit(200, "meters")
  12737. },
  12738. {
  12739. name: "Megamacro",
  12740. height: math.unit(2, "km")
  12741. },
  12742. {
  12743. name: "Megamacro+",
  12744. height: math.unit(20, "km")
  12745. },
  12746. {
  12747. name: "Gigamacro",
  12748. height: math.unit(2500, "km")
  12749. },
  12750. {
  12751. name: "Gigamacro+",
  12752. height: math.unit(120000, "km")
  12753. },
  12754. {
  12755. name: "Teramacro",
  12756. height: math.unit(7.77e6, "km")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12762. {
  12763. front: {
  12764. height: math.unit(6 + 4/12, "feet"),
  12765. weight: math.unit(190, "lb"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/bmc/front.svg",
  12769. extra: 1626/1472,
  12770. bottom: 79/1705
  12771. }
  12772. },
  12773. back: {
  12774. height: math.unit(6 + 4/12, "feet"),
  12775. weight: math.unit(190, "lb"),
  12776. name: "Back",
  12777. image: {
  12778. source: "./media/characters/bmc/back.svg",
  12779. extra: 1640/1479,
  12780. bottom: 45/1685
  12781. }
  12782. },
  12783. frontArmor: {
  12784. height: math.unit(6 + 4/12, "feet"),
  12785. weight: math.unit(190, "lb"),
  12786. name: "Front-armor",
  12787. image: {
  12788. source: "./media/characters/bmc/front-armor.svg",
  12789. extra: 1538/1468,
  12790. bottom: 79/1617
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Human-sized",
  12797. height: math.unit(6 + 4 / 12, "feet")
  12798. },
  12799. {
  12800. name: "Interactive Size",
  12801. height: math.unit(25, "feet")
  12802. },
  12803. {
  12804. name: "Small",
  12805. height: math.unit(250, "feet")
  12806. },
  12807. {
  12808. name: "Normal",
  12809. height: math.unit(1250, "feet"),
  12810. default: true
  12811. },
  12812. {
  12813. name: "Good Day",
  12814. height: math.unit(88, "miles")
  12815. },
  12816. {
  12817. name: "Largest Measured Size",
  12818. height: math.unit(105.960, "galaxies")
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(20, "feet"),
  12827. weight: math.unit(2016, "kg"),
  12828. name: "Front",
  12829. image: {
  12830. source: "./media/characters/sven-the-kaiju/front.svg",
  12831. extra: 1277/1250,
  12832. bottom: 35/1312
  12833. }
  12834. },
  12835. mouth: {
  12836. height: math.unit(1.85, "feet"),
  12837. name: "Mouth",
  12838. image: {
  12839. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Fairy",
  12846. height: math.unit(6, "inches")
  12847. },
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(20, "feet"),
  12851. default: true
  12852. },
  12853. {
  12854. name: "Rampage",
  12855. height: math.unit(200, "feet")
  12856. },
  12857. {
  12858. name: "Archfey Forest Guardian",
  12859. height: math.unit(1, "mile")
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(4, "meters"),
  12868. weight: math.unit(2, "tons"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/marik/front.svg",
  12872. extra: 1057 / 1003,
  12873. bottom: 0.08
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(4, "meters"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Macro",
  12885. height: math.unit(20, "meters")
  12886. },
  12887. {
  12888. name: "Megamacro",
  12889. height: math.unit(50, "km")
  12890. },
  12891. {
  12892. name: "Gigamacro",
  12893. height: math.unit(100, "km")
  12894. },
  12895. {
  12896. name: "Alpha Macro",
  12897. height: math.unit(7.88e7, "yottameters")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(110, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/mel/front.svg",
  12910. extra: 736 / 617,
  12911. bottom: 0.017
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Pico",
  12918. height: math.unit(3, "pm")
  12919. },
  12920. {
  12921. name: "Nano",
  12922. height: math.unit(3, "nm")
  12923. },
  12924. {
  12925. name: "Micro",
  12926. height: math.unit(0.3, "mm"),
  12927. default: true
  12928. },
  12929. {
  12930. name: "Micro+",
  12931. height: math.unit(3, "mm")
  12932. },
  12933. {
  12934. name: "Normal",
  12935. height: math.unit(5 + 10.5 / 12, "feet")
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12941. {
  12942. kaiju: {
  12943. height: math.unit(1.75, "meters"),
  12944. weight: math.unit(55, "kg"),
  12945. name: "Kaiju",
  12946. image: {
  12947. source: "./media/characters/lykonous/kaiju.svg",
  12948. extra: 1055 / 946,
  12949. bottom: 0.135
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(2.5, "meters"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Kaiju Dragon",
  12961. height: math.unit(60, "meters")
  12962. },
  12963. {
  12964. name: "Mega Kaiju",
  12965. height: math.unit(120, "km")
  12966. },
  12967. {
  12968. name: "Giga Kaiju",
  12969. height: math.unit(200, "megameters")
  12970. },
  12971. {
  12972. name: "Terra Kaiju",
  12973. height: math.unit(400, "gigameters")
  12974. },
  12975. {
  12976. name: "Kaiju Dragon God",
  12977. height: math.unit(13000, "exaparsecs")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(6, "feet"),
  12986. weight: math.unit(150, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/blü/front.svg",
  12990. extra: 1883 / 1564,
  12991. bottom: 0.031
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Normal",
  12998. height: math.unit(13, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Big Boi",
  13003. height: math.unit(150, "meters")
  13004. },
  13005. {
  13006. name: "Mini Stomper",
  13007. height: math.unit(300, "meters")
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(1000, "meters")
  13012. },
  13013. {
  13014. name: "Megamacro",
  13015. height: math.unit(11000, "meters")
  13016. },
  13017. {
  13018. name: "Gigamacro",
  13019. height: math.unit(11000, "km")
  13020. },
  13021. {
  13022. name: "Teramacro",
  13023. height: math.unit(420000, "km")
  13024. },
  13025. {
  13026. name: "Examacro",
  13027. height: math.unit(120, "parsecs")
  13028. },
  13029. {
  13030. name: "God Tho",
  13031. height: math.unit(98000000000, "parsecs")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13037. {
  13038. taurFront: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(200, "lb"),
  13041. name: "Taur (Front)",
  13042. image: {
  13043. source: "./media/characters/scales/taur-front.svg",
  13044. extra: 1,
  13045. bottom: 0.05
  13046. }
  13047. },
  13048. taurBack: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(200, "lb"),
  13051. name: "Taur (Back)",
  13052. image: {
  13053. source: "./media/characters/scales/taur-back.svg",
  13054. extra: 1,
  13055. bottom: 0.08
  13056. }
  13057. },
  13058. anthro: {
  13059. height: math.unit(6 * 7 / 12, "feet"),
  13060. weight: math.unit(100, "lb"),
  13061. name: "Anthro",
  13062. image: {
  13063. source: "./media/characters/scales/anthro.svg",
  13064. extra: 1,
  13065. bottom: 0.06
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(12, "feet"),
  13073. default: true
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(150, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/koragos/front.svg",
  13086. extra: 841 / 794,
  13087. bottom: 0.035
  13088. }
  13089. },
  13090. back: {
  13091. height: math.unit(6, "feet"),
  13092. weight: math.unit(150, "lb"),
  13093. name: "Back",
  13094. image: {
  13095. source: "./media/characters/koragos/back.svg",
  13096. extra: 841 / 810,
  13097. bottom: 0.022
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Normal",
  13104. height: math.unit(6 + 11 / 12, "feet"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(490, "feet")
  13110. },
  13111. {
  13112. name: "Megamacro",
  13113. height: math.unit(10, "miles")
  13114. },
  13115. {
  13116. name: "Gigamacro",
  13117. height: math.unit(50, "miles")
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(250, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/xylrem/front.svg",
  13130. extra: 3323 / 3050,
  13131. bottom: 0.065
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Micro",
  13138. height: math.unit(4, "feet")
  13139. },
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(16, "feet"),
  13143. default: true
  13144. },
  13145. {
  13146. name: "Macro",
  13147. height: math.unit(2720, "feet")
  13148. },
  13149. {
  13150. name: "Megamacro",
  13151. height: math.unit(25000, "miles")
  13152. },
  13153. ]
  13154. ))
  13155. characterMakers.push(() => makeCharacter(
  13156. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13157. {
  13158. front: {
  13159. height: math.unit(8, "feet"),
  13160. weight: math.unit(250, "kg"),
  13161. name: "Front",
  13162. image: {
  13163. source: "./media/characters/ikideru/front.svg",
  13164. extra: 930 / 870,
  13165. bottom: 0.087
  13166. }
  13167. },
  13168. back: {
  13169. height: math.unit(8, "feet"),
  13170. weight: math.unit(250, "kg"),
  13171. name: "Back",
  13172. image: {
  13173. source: "./media/characters/ikideru/back.svg",
  13174. extra: 919 / 852,
  13175. bottom: 0.055
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Rare",
  13182. height: math.unit(8, "feet"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Playful Loom",
  13187. height: math.unit(80, "feet")
  13188. },
  13189. {
  13190. name: "City Leaner",
  13191. height: math.unit(230, "feet")
  13192. },
  13193. {
  13194. name: "Megamacro",
  13195. height: math.unit(2500, "feet")
  13196. },
  13197. {
  13198. name: "Gigamacro",
  13199. height: math.unit(26400, "feet")
  13200. },
  13201. {
  13202. name: "Tectonic Shifter",
  13203. height: math.unit(1.7, "megameters")
  13204. },
  13205. {
  13206. name: "Planet Carer",
  13207. height: math.unit(21, "megameters")
  13208. },
  13209. {
  13210. name: "God",
  13211. height: math.unit(11157.22, "parsecs")
  13212. },
  13213. ]
  13214. ))
  13215. characterMakers.push(() => makeCharacter(
  13216. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13217. {
  13218. front: {
  13219. height: math.unit(6, "feet"),
  13220. weight: math.unit(120, "lb"),
  13221. name: "Front",
  13222. image: {
  13223. source: "./media/characters/neo/front.svg"
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Micro",
  13230. height: math.unit(2, "inches"),
  13231. default: true
  13232. },
  13233. {
  13234. name: "Human Size",
  13235. height: math.unit(5 + 8 / 12, "feet")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(13 + 10 / 12, "feet"),
  13244. weight: math.unit(5320, "lb"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/chauncey-chantz/front.svg",
  13248. extra: 1587 / 1435,
  13249. bottom: 0.02
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(13 + 10 / 12, "feet"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(45, "feet")
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(250, "miles")
  13266. },
  13267. {
  13268. name: "Planetary",
  13269. height: math.unit(10000, "miles")
  13270. },
  13271. {
  13272. name: "Galactic",
  13273. height: math.unit(40000, "parsecs")
  13274. },
  13275. {
  13276. name: "Universal",
  13277. height: math.unit(1, "yottameter")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13283. {
  13284. front: {
  13285. height: math.unit(6, "feet"),
  13286. weight: math.unit(150, "lb"),
  13287. name: "Front",
  13288. image: {
  13289. source: "./media/characters/epifox/front.svg",
  13290. extra: 1,
  13291. bottom: 0.075
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Micro",
  13298. height: math.unit(6, "inches")
  13299. },
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(12, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(3810, "feet")
  13308. },
  13309. {
  13310. name: "Megamacro",
  13311. height: math.unit(500, "miles")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(1.8796, "m"),
  13320. weight: math.unit(230, "lb"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/colin-t/front.svg",
  13324. extra: 1272 / 1193,
  13325. bottom: 0.07
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Micro",
  13332. height: math.unit(0.571, "meters")
  13333. },
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(1.8796, "meters"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Tall",
  13341. height: math.unit(4, "meters")
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(67.241, "meters")
  13346. },
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(371.856, "meters")
  13350. },
  13351. {
  13352. name: "Planetary",
  13353. height: math.unit(12631.5689, "km")
  13354. },
  13355. ]
  13356. ))
  13357. characterMakers.push(() => makeCharacter(
  13358. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13359. {
  13360. front: {
  13361. height: math.unit(1.85, "meters"),
  13362. weight: math.unit(80, "kg"),
  13363. name: "Front",
  13364. image: {
  13365. source: "./media/characters/matvei/front.svg",
  13366. extra: 456/447,
  13367. bottom: 8/464
  13368. }
  13369. },
  13370. back: {
  13371. height: math.unit(1.85, "meters"),
  13372. weight: math.unit(80, "kg"),
  13373. name: "Back",
  13374. image: {
  13375. source: "./media/characters/matvei/back.svg",
  13376. extra: 434/427,
  13377. bottom: 11/445
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Normal",
  13384. height: math.unit(1.85, "meters"),
  13385. default: true
  13386. },
  13387. ]
  13388. ))
  13389. characterMakers.push(() => makeCharacter(
  13390. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13391. {
  13392. front: {
  13393. height: math.unit(5 + 9 / 12, "feet"),
  13394. weight: math.unit(70, "lb"),
  13395. name: "Front",
  13396. image: {
  13397. source: "./media/characters/quincy/front.svg",
  13398. extra: 3041 / 2751
  13399. }
  13400. },
  13401. back: {
  13402. height: math.unit(5 + 9 / 12, "feet"),
  13403. weight: math.unit(70, "lb"),
  13404. name: "Back",
  13405. image: {
  13406. source: "./media/characters/quincy/back.svg",
  13407. extra: 3041 / 2751
  13408. }
  13409. },
  13410. flying: {
  13411. height: math.unit(5 + 4 / 12, "feet"),
  13412. weight: math.unit(70, "lb"),
  13413. name: "Flying",
  13414. image: {
  13415. source: "./media/characters/quincy/flying.svg",
  13416. extra: 1044 / 930
  13417. }
  13418. },
  13419. },
  13420. [
  13421. {
  13422. name: "Micro",
  13423. height: math.unit(3, "cm")
  13424. },
  13425. {
  13426. name: "Normal",
  13427. height: math.unit(5 + 9 / 12, "feet")
  13428. },
  13429. {
  13430. name: "Macro",
  13431. height: math.unit(200, "meters"),
  13432. default: true
  13433. },
  13434. {
  13435. name: "Megamacro",
  13436. height: math.unit(1000, "meters")
  13437. },
  13438. ]
  13439. ))
  13440. characterMakers.push(() => makeCharacter(
  13441. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13442. {
  13443. front: {
  13444. height: math.unit(3 + 11/12, "feet"),
  13445. weight: math.unit(50, "lb"),
  13446. name: "Front",
  13447. image: {
  13448. source: "./media/characters/vanrel/front.svg",
  13449. extra: 1104/949,
  13450. bottom: 52/1156
  13451. }
  13452. },
  13453. back: {
  13454. height: math.unit(3 + 11/12, "feet"),
  13455. weight: math.unit(50, "lb"),
  13456. name: "Back",
  13457. image: {
  13458. source: "./media/characters/vanrel/back.svg",
  13459. extra: 1119/976,
  13460. bottom: 37/1156
  13461. }
  13462. },
  13463. tome: {
  13464. height: math.unit(1.35, "feet"),
  13465. weight: math.unit(10, "lb"),
  13466. name: "Vanrel's Tome",
  13467. rename: true,
  13468. image: {
  13469. source: "./media/characters/vanrel/tome.svg"
  13470. }
  13471. },
  13472. beans: {
  13473. height: math.unit(0.89, "feet"),
  13474. name: "Beans",
  13475. image: {
  13476. source: "./media/characters/vanrel/beans.svg"
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(3 + 11/12, "feet"),
  13484. default: true
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(7 + 5 / 12, "feet"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/kuiper-vanrel/front.svg",
  13496. extra: 1219/1169,
  13497. bottom: 69/1288
  13498. }
  13499. },
  13500. back: {
  13501. height: math.unit(7 + 5 / 12, "feet"),
  13502. name: "Back",
  13503. image: {
  13504. source: "./media/characters/kuiper-vanrel/back.svg",
  13505. extra: 1236/1193,
  13506. bottom: 27/1263
  13507. }
  13508. },
  13509. foot: {
  13510. height: math.unit(0.55, "meters"),
  13511. name: "Foot",
  13512. image: {
  13513. source: "./media/characters/kuiper-vanrel/foot.svg",
  13514. }
  13515. },
  13516. battle: {
  13517. height: math.unit(6.824, "feet"),
  13518. name: "Battle",
  13519. image: {
  13520. source: "./media/characters/kuiper-vanrel/battle.svg",
  13521. extra: 1466 / 1327,
  13522. bottom: 29 / 1492.5
  13523. }
  13524. },
  13525. meerkui: {
  13526. height: math.unit(18, "inches"),
  13527. name: "Meerkui",
  13528. image: {
  13529. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13530. extra: 1354/1289,
  13531. bottom: 69/1423
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(7 + 5 / 12, "feet"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(8 + 5 / 12, "feet"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/keset-vanrel/front.svg",
  13551. extra: 1231/1148,
  13552. bottom: 82/1313
  13553. }
  13554. },
  13555. back: {
  13556. height: math.unit(8 + 5 / 12, "feet"),
  13557. name: "Back",
  13558. image: {
  13559. source: "./media/characters/keset-vanrel/back.svg",
  13560. extra: 1240/1174,
  13561. bottom: 33/1273
  13562. }
  13563. },
  13564. hand: {
  13565. height: math.unit(0.6, "meters"),
  13566. name: "Hand",
  13567. image: {
  13568. source: "./media/characters/keset-vanrel/hand.svg"
  13569. }
  13570. },
  13571. foot: {
  13572. height: math.unit(0.94978, "meters"),
  13573. name: "Foot",
  13574. image: {
  13575. source: "./media/characters/keset-vanrel/foot.svg"
  13576. }
  13577. },
  13578. battle: {
  13579. height: math.unit(7.408, "feet"),
  13580. name: "Battle",
  13581. image: {
  13582. source: "./media/characters/keset-vanrel/battle.svg",
  13583. extra: 1890 / 1386,
  13584. bottom: 73.28 / 1970
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(8 + 5 / 12, "feet"),
  13592. default: true
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6, "feet"),
  13601. weight: math.unit(150, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/neos/front.svg",
  13605. extra: 1696 / 992,
  13606. bottom: 0.14
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Normal",
  13613. height: math.unit(54, "cm"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Macro",
  13618. height: math.unit(100, "m")
  13619. },
  13620. {
  13621. name: "Megamacro",
  13622. height: math.unit(10, "km")
  13623. },
  13624. {
  13625. name: "Megamacro+",
  13626. height: math.unit(100, "km")
  13627. },
  13628. {
  13629. name: "Gigamacro",
  13630. height: math.unit(100, "Mm")
  13631. },
  13632. {
  13633. name: "Teramacro",
  13634. height: math.unit(100, "Gm")
  13635. },
  13636. {
  13637. name: "Examacro",
  13638. height: math.unit(100, "Em")
  13639. },
  13640. {
  13641. name: "Godly",
  13642. height: math.unit(10000, "Ym")
  13643. },
  13644. {
  13645. name: "Beyond Godly",
  13646. height: math.unit(25, "multiverses")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13652. {
  13653. feminine: {
  13654. height: math.unit(5, "feet"),
  13655. weight: math.unit(100, "lb"),
  13656. name: "Feminine",
  13657. image: {
  13658. source: "./media/characters/sammy-mouse/feminine.svg",
  13659. extra: 2526 / 2425,
  13660. bottom: 0.123
  13661. }
  13662. },
  13663. masculine: {
  13664. height: math.unit(5, "feet"),
  13665. weight: math.unit(100, "lb"),
  13666. name: "Masculine",
  13667. image: {
  13668. source: "./media/characters/sammy-mouse/masculine.svg",
  13669. extra: 2526 / 2425,
  13670. bottom: 0.123
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Micro",
  13677. height: math.unit(5, "inches")
  13678. },
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(5, "feet"),
  13682. default: true
  13683. },
  13684. {
  13685. name: "Macro",
  13686. height: math.unit(60, "feet")
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13692. {
  13693. front: {
  13694. height: math.unit(4, "feet"),
  13695. weight: math.unit(50, "lb"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/kole/front.svg",
  13699. extra: 1423 / 1303,
  13700. bottom: 0.025
  13701. }
  13702. },
  13703. back: {
  13704. height: math.unit(4, "feet"),
  13705. weight: math.unit(50, "lb"),
  13706. name: "Back",
  13707. image: {
  13708. source: "./media/characters/kole/back.svg",
  13709. extra: 1426 / 1280,
  13710. bottom: 0.02
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(4, "feet"),
  13718. default: true
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(2.5, "feet"),
  13727. weight: math.unit(32, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/rufran/front.svg",
  13731. extra: 1313/885,
  13732. bottom: 94/1407
  13733. }
  13734. },
  13735. side: {
  13736. height: math.unit(2.5, "feet"),
  13737. weight: math.unit(32, "lb"),
  13738. name: "Side",
  13739. image: {
  13740. source: "./media/characters/rufran/side.svg",
  13741. extra: 1109/852,
  13742. bottom: 118/1227
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(2.5, "feet"),
  13747. weight: math.unit(32, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/rufran/back.svg",
  13751. extra: 1280/878,
  13752. bottom: 131/1411
  13753. }
  13754. },
  13755. mouth: {
  13756. height: math.unit(1.13, "feet"),
  13757. name: "Mouth",
  13758. image: {
  13759. source: "./media/characters/rufran/mouth.svg"
  13760. }
  13761. },
  13762. foot: {
  13763. height: math.unit(1.33, "feet"),
  13764. name: "Foot",
  13765. image: {
  13766. source: "./media/characters/rufran/foot.svg"
  13767. }
  13768. },
  13769. koboldFront: {
  13770. height: math.unit(2 + 6 / 12, "feet"),
  13771. weight: math.unit(20, "lb"),
  13772. name: "Front (Kobold)",
  13773. image: {
  13774. source: "./media/characters/rufran/kobold-front.svg",
  13775. extra: 2041 / 1839,
  13776. bottom: 0.055
  13777. }
  13778. },
  13779. koboldBack: {
  13780. height: math.unit(2 + 6 / 12, "feet"),
  13781. weight: math.unit(20, "lb"),
  13782. name: "Back (Kobold)",
  13783. image: {
  13784. source: "./media/characters/rufran/kobold-back.svg",
  13785. extra: 2054 / 1839,
  13786. bottom: 0.01
  13787. }
  13788. },
  13789. koboldHand: {
  13790. height: math.unit(0.2166, "meters"),
  13791. name: "Hand (Kobold)",
  13792. image: {
  13793. source: "./media/characters/rufran/kobold-hand.svg"
  13794. }
  13795. },
  13796. koboldFoot: {
  13797. height: math.unit(0.185, "meters"),
  13798. name: "Foot (Kobold)",
  13799. image: {
  13800. source: "./media/characters/rufran/kobold-foot.svg"
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Micro",
  13807. height: math.unit(1, "inch")
  13808. },
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(2 + 6 / 12, "feet"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Big",
  13816. height: math.unit(60, "feet")
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(325, "feet")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(0.3, "meters"),
  13829. weight: math.unit(3.5, "kg"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/chip/front.svg",
  13833. extra: 748 / 674
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Micro",
  13840. height: math.unit(1, "inch"),
  13841. default: true
  13842. },
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13847. {
  13848. side: {
  13849. height: math.unit(2.3, "meters"),
  13850. weight: math.unit(3500, "lb"),
  13851. name: "Side",
  13852. image: {
  13853. source: "./media/characters/torvid/side.svg",
  13854. extra: 1972 / 722,
  13855. bottom: 0.035
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Normal",
  13862. height: math.unit(2.3, "meters"),
  13863. default: true
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(2, "meters"),
  13872. weight: math.unit(150.5, "kg"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/susan/front.svg",
  13876. extra: 693 / 635,
  13877. bottom: 0.05
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Megamacro",
  13884. height: math.unit(505, "miles"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(150, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/raindrops/front.svg",
  13898. extra: 2655 / 2461,
  13899. bottom: 49 / 2705
  13900. }
  13901. },
  13902. back: {
  13903. height: math.unit(6, "feet"),
  13904. weight: math.unit(150, "lb"),
  13905. name: "Back",
  13906. image: {
  13907. source: "./media/characters/raindrops/back.svg",
  13908. extra: 2574 / 2400,
  13909. bottom: 65 / 2634
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Micro",
  13916. height: math.unit(6, "inches")
  13917. },
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(6 + 2 / 12, "feet")
  13921. },
  13922. {
  13923. name: "Macro",
  13924. height: math.unit(131, "feet"),
  13925. default: true
  13926. },
  13927. {
  13928. name: "Megamacro",
  13929. height: math.unit(15, "miles")
  13930. },
  13931. {
  13932. name: "Gigamacro",
  13933. height: math.unit(4000, "miles")
  13934. },
  13935. {
  13936. name: "Teramacro",
  13937. height: math.unit(315000, "miles")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(2.794, "meters"),
  13946. weight: math.unit(325, "kg"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/tezwa/front.svg",
  13950. extra: 2083 / 1906,
  13951. bottom: 0.031
  13952. }
  13953. },
  13954. foot: {
  13955. height: math.unit(0.687, "meters"),
  13956. name: "Foot",
  13957. image: {
  13958. source: "./media/characters/tezwa/foot.svg"
  13959. }
  13960. },
  13961. },
  13962. [
  13963. {
  13964. name: "Normal",
  13965. height: math.unit(9 + 2 / 12, "feet"),
  13966. default: true
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(58, "feet"),
  13975. weight: math.unit(89000, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/typhus/front.svg",
  13979. extra: 816 / 800,
  13980. bottom: 0.065
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(58, "feet"),
  13988. default: true
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(12, "feet"),
  13997. weight: math.unit(6, "tonnes"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/lyra-von-wulf/front.svg",
  14001. extra: 1,
  14002. bottom: 0.10
  14003. }
  14004. },
  14005. frontMecha: {
  14006. height: math.unit(12, "feet"),
  14007. weight: math.unit(12, "tonnes"),
  14008. name: "Front (Mecha)",
  14009. image: {
  14010. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14011. extra: 1,
  14012. bottom: 0.042
  14013. }
  14014. },
  14015. maw: {
  14016. height: math.unit(2.2, "feet"),
  14017. name: "Maw",
  14018. image: {
  14019. source: "./media/characters/lyra-von-wulf/maw.svg"
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Normal",
  14026. height: math.unit(12, "feet"),
  14027. default: true
  14028. },
  14029. {
  14030. name: "Classic",
  14031. height: math.unit(50, "feet")
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(500, "feet")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(1, "mile")
  14040. },
  14041. {
  14042. name: "Gigamacro",
  14043. height: math.unit(400, "miles")
  14044. },
  14045. {
  14046. name: "Teramacro",
  14047. height: math.unit(22000, "miles")
  14048. },
  14049. {
  14050. name: "Solarmacro",
  14051. height: math.unit(8600000, "miles")
  14052. },
  14053. {
  14054. name: "Galactic",
  14055. height: math.unit(1057000, "lightyears")
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14061. {
  14062. front: {
  14063. height: math.unit(6 + 10 / 12, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/dixon/front.svg",
  14068. extra: 3361 / 3209,
  14069. bottom: 0.01
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(6 + 10 / 12, "feet"),
  14077. default: true
  14078. },
  14079. {
  14080. name: "Big",
  14081. height: math.unit(12, "meters")
  14082. },
  14083. {
  14084. name: "Macro",
  14085. height: math.unit(500, "meters")
  14086. },
  14087. {
  14088. name: "Megamacro",
  14089. height: math.unit(2, "km")
  14090. },
  14091. ]
  14092. ))
  14093. characterMakers.push(() => makeCharacter(
  14094. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14095. {
  14096. front: {
  14097. height: math.unit(185, "cm"),
  14098. weight: math.unit(68, "kg"),
  14099. name: "Front",
  14100. image: {
  14101. source: "./media/characters/kauko/front.svg",
  14102. extra: 1455 / 1421,
  14103. bottom: 0.03
  14104. }
  14105. },
  14106. back: {
  14107. height: math.unit(185, "cm"),
  14108. weight: math.unit(68, "kg"),
  14109. name: "Back",
  14110. image: {
  14111. source: "./media/characters/kauko/back.svg",
  14112. extra: 1455 / 1421,
  14113. bottom: 0.004
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(185, "cm"),
  14121. default: true
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14127. {
  14128. frontSfw: {
  14129. height: math.unit(5, "meters"),
  14130. weight: math.unit(4250, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/varg/front-sfw.svg",
  14134. extra: 1103/1010,
  14135. bottom: 50/1153
  14136. },
  14137. form: "anthro",
  14138. default: true
  14139. },
  14140. backSfw: {
  14141. height: math.unit(5, "meters"),
  14142. weight: math.unit(4250, "lb"),
  14143. name: "Back",
  14144. image: {
  14145. source: "./media/characters/varg/back-sfw.svg",
  14146. extra: 1038/1022,
  14147. bottom: 36/1074
  14148. },
  14149. form: "anthro"
  14150. },
  14151. frontNsfw: {
  14152. height: math.unit(5, "meters"),
  14153. weight: math.unit(4250, "lb"),
  14154. name: "Front (NSFW)",
  14155. image: {
  14156. source: "./media/characters/varg/front-nsfw.svg",
  14157. extra: 1103/1010,
  14158. bottom: 50/1153
  14159. },
  14160. form: "anthro"
  14161. },
  14162. sheath: {
  14163. height: math.unit(3.8, "feet"),
  14164. weight: math.unit(90, "kilograms"),
  14165. name: "Sheath",
  14166. image: {
  14167. source: "./media/characters/varg/sheath.svg"
  14168. },
  14169. form: "anthro"
  14170. },
  14171. dick: {
  14172. height: math.unit(4.6, "feet"),
  14173. weight: math.unit(451, "kilograms"),
  14174. name: "Dick",
  14175. image: {
  14176. source: "./media/characters/varg/dick.svg"
  14177. },
  14178. form: "anthro"
  14179. },
  14180. feralSfw: {
  14181. height: math.unit(5, "meters"),
  14182. weight: math.unit(100000, "lb"),
  14183. name: "Side",
  14184. image: {
  14185. source: "./media/characters/varg/feral-sfw.svg",
  14186. extra: 1065/511,
  14187. bottom: 211/1276
  14188. },
  14189. form: "feral",
  14190. default: true
  14191. },
  14192. feralNsfw: {
  14193. height: math.unit(5, "meters"),
  14194. weight: math.unit(100000, "lb"),
  14195. name: "Side (NSFW)",
  14196. image: {
  14197. source: "./media/characters/varg/feral-nsfw.svg",
  14198. extra: 1065/511,
  14199. bottom: 211/1276
  14200. },
  14201. form: "feral",
  14202. },
  14203. feralSheath: {
  14204. height: math.unit(9.8, "feet"),
  14205. weight: math.unit(2000, "kilograms"),
  14206. name: "Sheath",
  14207. image: {
  14208. source: "./media/characters/varg/sheath.svg"
  14209. },
  14210. form: "feral"
  14211. },
  14212. feralDick: {
  14213. height: math.unit(13.11, "feet"),
  14214. weight: math.unit(10440, "kilograms"),
  14215. name: "Dick",
  14216. image: {
  14217. source: "./media/characters/varg/dick.svg"
  14218. },
  14219. form: "feral"
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(5, "meters"),
  14226. form: "anthro"
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(200, "meters"),
  14231. form: "anthro"
  14232. },
  14233. {
  14234. name: "Megamacro",
  14235. height: math.unit(20, "kilometers"),
  14236. form: "anthro"
  14237. },
  14238. {
  14239. name: "True Size",
  14240. height: math.unit(211, "km"),
  14241. form: "anthro",
  14242. default: true
  14243. },
  14244. {
  14245. name: "Gigamacro",
  14246. height: math.unit(1000, "km"),
  14247. form: "anthro"
  14248. },
  14249. {
  14250. name: "Gigamacro+",
  14251. height: math.unit(8000, "km"),
  14252. form: "anthro"
  14253. },
  14254. {
  14255. name: "Teramacro",
  14256. height: math.unit(1000000, "km"),
  14257. form: "anthro"
  14258. },
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(5, "meters"),
  14262. form: "feral"
  14263. },
  14264. {
  14265. name: "Macro",
  14266. height: math.unit(200, "meters"),
  14267. form: "feral"
  14268. },
  14269. {
  14270. name: "Megamacro",
  14271. height: math.unit(20, "kilometers"),
  14272. form: "feral"
  14273. },
  14274. {
  14275. name: "True Size",
  14276. height: math.unit(211, "km"),
  14277. form: "feral",
  14278. default: true
  14279. },
  14280. {
  14281. name: "Gigamacro",
  14282. height: math.unit(1000, "km"),
  14283. form: "feral"
  14284. },
  14285. {
  14286. name: "Gigamacro+",
  14287. height: math.unit(8000, "km"),
  14288. form: "feral"
  14289. },
  14290. {
  14291. name: "Teramacro",
  14292. height: math.unit(1000000, "km"),
  14293. form: "feral"
  14294. },
  14295. ],
  14296. {
  14297. "anthro": {
  14298. name: "Anthro",
  14299. default: true
  14300. },
  14301. "feral": {
  14302. name: "Feral",
  14303. },
  14304. }
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(7 + 7 / 12, "feet"),
  14311. weight: math.unit(267, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/dayza/front.svg",
  14315. extra: 1262 / 1200,
  14316. bottom: 0.035
  14317. }
  14318. },
  14319. side: {
  14320. height: math.unit(7 + 7 / 12, "feet"),
  14321. weight: math.unit(267, "lb"),
  14322. name: "Side",
  14323. image: {
  14324. source: "./media/characters/dayza/side.svg",
  14325. extra: 1295 / 1245,
  14326. bottom: 0.05
  14327. }
  14328. },
  14329. back: {
  14330. height: math.unit(7 + 7 / 12, "feet"),
  14331. weight: math.unit(267, "lb"),
  14332. name: "Back",
  14333. image: {
  14334. source: "./media/characters/dayza/back.svg",
  14335. extra: 1241 / 1170
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(7 + 7 / 12, "feet"),
  14343. default: true
  14344. },
  14345. {
  14346. name: "Macro",
  14347. height: math.unit(155, "feet")
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(6 + 5 / 12, "feet"),
  14356. weight: math.unit(160, "lb"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/xanthos/front.svg",
  14360. extra: 1,
  14361. bottom: 0.04
  14362. }
  14363. },
  14364. back: {
  14365. height: math.unit(6 + 5 / 12, "feet"),
  14366. weight: math.unit(160, "lb"),
  14367. name: "Back",
  14368. image: {
  14369. source: "./media/characters/xanthos/back.svg",
  14370. extra: 1,
  14371. bottom: 0.03
  14372. }
  14373. },
  14374. hand: {
  14375. height: math.unit(0.928, "feet"),
  14376. name: "Hand",
  14377. image: {
  14378. source: "./media/characters/xanthos/hand.svg"
  14379. }
  14380. },
  14381. foot: {
  14382. height: math.unit(1.286, "feet"),
  14383. name: "Foot",
  14384. image: {
  14385. source: "./media/characters/xanthos/foot.svg"
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(6 + 5 / 12, "feet"),
  14393. default: true
  14394. },
  14395. {
  14396. name: "Normal+",
  14397. height: math.unit(6, "meters")
  14398. },
  14399. {
  14400. name: "Macro",
  14401. height: math.unit(40, "feet")
  14402. },
  14403. {
  14404. name: "Macro+",
  14405. height: math.unit(200, "meters")
  14406. },
  14407. {
  14408. name: "Megamacro",
  14409. height: math.unit(20, "km")
  14410. },
  14411. {
  14412. name: "Megamacro+",
  14413. height: math.unit(100, "km")
  14414. },
  14415. {
  14416. name: "Gigamacro",
  14417. height: math.unit(200, "megameters")
  14418. },
  14419. {
  14420. name: "Gigamacro+",
  14421. height: math.unit(1.5, "gigameters")
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14427. {
  14428. front: {
  14429. height: math.unit(6 + 3 / 12, "feet"),
  14430. weight: math.unit(215, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/grynn/front.svg",
  14434. extra: 4627 / 4209,
  14435. bottom: 0.047
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Micro",
  14442. height: math.unit(6, "inches")
  14443. },
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(6 + 3 / 12, "feet"),
  14447. default: true
  14448. },
  14449. {
  14450. name: "Big",
  14451. height: math.unit(104, "feet")
  14452. },
  14453. {
  14454. name: "Macro",
  14455. height: math.unit(944, "feet")
  14456. },
  14457. {
  14458. name: "Macro+",
  14459. height: math.unit(9480, "feet")
  14460. },
  14461. {
  14462. name: "Megamacro",
  14463. height: math.unit(78752, "feet")
  14464. },
  14465. {
  14466. name: "Megamacro+",
  14467. height: math.unit(630128, "feet")
  14468. },
  14469. {
  14470. name: "Megamacro++",
  14471. height: math.unit(3150695, "feet")
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(7 + 5 / 12, "feet"),
  14480. weight: math.unit(450, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/mocha-aura/front.svg",
  14484. extra: 1907 / 1817,
  14485. bottom: 0.04
  14486. }
  14487. },
  14488. back: {
  14489. height: math.unit(7 + 5 / 12, "feet"),
  14490. weight: math.unit(450, "lb"),
  14491. name: "Back",
  14492. image: {
  14493. source: "./media/characters/mocha-aura/back.svg",
  14494. extra: 1900 / 1825,
  14495. bottom: 0.045
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Nano",
  14502. height: math.unit(1, "nm")
  14503. },
  14504. {
  14505. name: "Megamicro",
  14506. height: math.unit(1, "mm")
  14507. },
  14508. {
  14509. name: "Micro",
  14510. height: math.unit(3, "inches")
  14511. },
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(7 + 5 / 12, "feet"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Macro",
  14519. height: math.unit(30, "feet")
  14520. },
  14521. {
  14522. name: "Megamacro",
  14523. height: math.unit(3500, "feet")
  14524. },
  14525. {
  14526. name: "Teramacro",
  14527. height: math.unit(500000, "miles")
  14528. },
  14529. {
  14530. name: "Petamacro",
  14531. height: math.unit(50000000000000000, "parsecs")
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(6, "feet"),
  14540. weight: math.unit(150, "lb"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/ilisha-devya/front.svg",
  14544. extra: 1053/1049,
  14545. bottom: 270/1323
  14546. }
  14547. },
  14548. back: {
  14549. height: math.unit(6, "feet"),
  14550. weight: math.unit(150, "lb"),
  14551. name: "Back",
  14552. image: {
  14553. source: "./media/characters/ilisha-devya/back.svg",
  14554. extra: 1131/1128,
  14555. bottom: 39/1170
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Macro",
  14562. height: math.unit(500, "feet"),
  14563. default: true
  14564. },
  14565. {
  14566. name: "Megamacro",
  14567. height: math.unit(10, "miles")
  14568. },
  14569. {
  14570. name: "Gigamacro",
  14571. height: math.unit(100000, "miles")
  14572. },
  14573. {
  14574. name: "Examacro",
  14575. height: math.unit(1e9, "lightyears")
  14576. },
  14577. {
  14578. name: "Omniversal",
  14579. height: math.unit(1e33, "lightyears")
  14580. },
  14581. {
  14582. name: "Beyond Infinite",
  14583. height: math.unit(1e100, "lightyears")
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14589. {
  14590. Side: {
  14591. height: math.unit(6, "feet"),
  14592. weight: math.unit(150, "lb"),
  14593. name: "Side",
  14594. image: {
  14595. source: "./media/characters/mira/side.svg",
  14596. extra: 900 / 799,
  14597. bottom: 0.02
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Human Size",
  14604. height: math.unit(6, "feet")
  14605. },
  14606. {
  14607. name: "Macro",
  14608. height: math.unit(100, "feet"),
  14609. default: true
  14610. },
  14611. {
  14612. name: "Megamacro",
  14613. height: math.unit(10, "miles")
  14614. },
  14615. {
  14616. name: "Gigamacro",
  14617. height: math.unit(25000, "miles")
  14618. },
  14619. {
  14620. name: "Teramacro",
  14621. height: math.unit(300, "AU")
  14622. },
  14623. {
  14624. name: "Full Size",
  14625. height: math.unit(4.5e10, "lightyears")
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(6, "feet"),
  14634. weight: math.unit(150, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/holly/front.svg",
  14638. extra: 639 / 606
  14639. }
  14640. },
  14641. back: {
  14642. height: math.unit(6, "feet"),
  14643. weight: math.unit(150, "lb"),
  14644. name: "Back",
  14645. image: {
  14646. source: "./media/characters/holly/back.svg",
  14647. extra: 623 / 598
  14648. }
  14649. },
  14650. frontWorking: {
  14651. height: math.unit(6, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Front (Working)",
  14654. image: {
  14655. source: "./media/characters/holly/front-working.svg",
  14656. extra: 607 / 577,
  14657. bottom: 0.048
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(12 + 3 / 12, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/porter/front.svg",
  14678. extra: 1,
  14679. bottom: 0.01
  14680. }
  14681. },
  14682. frontRobes: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Front (Robes)",
  14686. image: {
  14687. source: "./media/characters/porter/front-robes.svg",
  14688. extra: 1.01,
  14689. bottom: 0.01
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Normal",
  14696. height: math.unit(11 + 9 / 12, "feet"),
  14697. default: true
  14698. },
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14703. {
  14704. legendary: {
  14705. height: math.unit(6, "feet"),
  14706. weight: math.unit(150, "lb"),
  14707. name: "Legendary",
  14708. image: {
  14709. source: "./media/characters/lucy/legendary.svg",
  14710. extra: 1355 / 1100,
  14711. bottom: 0.045
  14712. }
  14713. },
  14714. },
  14715. [
  14716. {
  14717. name: "Legendary",
  14718. height: math.unit(86882 * 2, "miles"),
  14719. default: true
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14725. {
  14726. front: {
  14727. height: math.unit(6, "feet"),
  14728. weight: math.unit(150, "lb"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/drusilla/front.svg",
  14732. extra: 678 / 635,
  14733. bottom: 0.03
  14734. }
  14735. },
  14736. back: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(150, "lb"),
  14739. name: "Back",
  14740. image: {
  14741. source: "./media/characters/drusilla/back.svg",
  14742. extra: 678 / 635,
  14743. bottom: 0.005
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Macro",
  14750. height: math.unit(100, "feet")
  14751. },
  14752. {
  14753. name: "Canon Height",
  14754. height: math.unit(2000, "feet"),
  14755. default: true
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6, "feet"),
  14764. weight: math.unit(180, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/renard-thatch/front.svg",
  14768. extra: 2411 / 2275,
  14769. bottom: 0.01
  14770. }
  14771. },
  14772. frontPosing: {
  14773. height: math.unit(6, "feet"),
  14774. weight: math.unit(180, "lb"),
  14775. name: "Front (Posing)",
  14776. image: {
  14777. source: "./media/characters/renard-thatch/front-posing.svg",
  14778. extra: 2381 / 2261,
  14779. bottom: 0.01
  14780. }
  14781. },
  14782. back: {
  14783. height: math.unit(6, "feet"),
  14784. weight: math.unit(180, "lb"),
  14785. name: "Back",
  14786. image: {
  14787. source: "./media/characters/renard-thatch/back.svg",
  14788. extra: 2428 / 2288
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Micro",
  14795. height: math.unit(3, "inches")
  14796. },
  14797. {
  14798. name: "Default",
  14799. height: math.unit(6, "feet"),
  14800. default: true
  14801. },
  14802. {
  14803. name: "Macro",
  14804. height: math.unit(75, "feet")
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(1450, "feet"),
  14813. weight: math.unit(1.21e6, "tons"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/sekvra/front.svg",
  14817. extra: 1193/1190,
  14818. bottom: 78/1271
  14819. }
  14820. },
  14821. side: {
  14822. height: math.unit(1450, "feet"),
  14823. weight: math.unit(1.21e6, "tons"),
  14824. name: "Side",
  14825. image: {
  14826. source: "./media/characters/sekvra/side.svg",
  14827. extra: 1193/1190,
  14828. bottom: 52/1245
  14829. }
  14830. },
  14831. back: {
  14832. height: math.unit(1450, "feet"),
  14833. weight: math.unit(1.21e6, "tons"),
  14834. name: "Back",
  14835. image: {
  14836. source: "./media/characters/sekvra/back.svg",
  14837. extra: 1219/1216,
  14838. bottom: 21/1240
  14839. }
  14840. },
  14841. frontClothed: {
  14842. height: math.unit(1450, "feet"),
  14843. weight: math.unit(1.21e6, "tons"),
  14844. name: "Front (Clothed)",
  14845. image: {
  14846. source: "./media/characters/sekvra/front-clothed.svg",
  14847. extra: 1192/1189,
  14848. bottom: 79/1271
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(1450, "feet"),
  14856. default: true
  14857. },
  14858. {
  14859. name: "Megamacro",
  14860. height: math.unit(15000, "feet")
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(6, "feet"),
  14869. weight: math.unit(150, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/carmine/front.svg",
  14873. extra: 1557/1538,
  14874. bottom: 68/1625
  14875. }
  14876. },
  14877. frontArmor: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(150, "lb"),
  14880. name: "Front (Armor)",
  14881. image: {
  14882. source: "./media/characters/carmine/front-armor.svg",
  14883. extra: 1549/1530,
  14884. bottom: 82/1631
  14885. }
  14886. },
  14887. mouth: {
  14888. height: math.unit(0.55, "feet"),
  14889. name: "Mouth",
  14890. image: {
  14891. source: "./media/characters/carmine/mouth.svg"
  14892. }
  14893. },
  14894. hand: {
  14895. height: math.unit(1.05, "feet"),
  14896. name: "Hand",
  14897. image: {
  14898. source: "./media/characters/carmine/hand.svg"
  14899. }
  14900. },
  14901. foot: {
  14902. height: math.unit(0.6, "feet"),
  14903. name: "Foot",
  14904. image: {
  14905. source: "./media/characters/carmine/foot.svg"
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Large",
  14912. height: math.unit(1, "mile")
  14913. },
  14914. {
  14915. name: "Huge",
  14916. height: math.unit(40, "miles"),
  14917. default: true
  14918. },
  14919. {
  14920. name: "Colossal",
  14921. height: math.unit(2500, "miles")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(150, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/elyssia/front.svg",
  14934. extra: 2201 / 2035,
  14935. bottom: 0.05
  14936. }
  14937. },
  14938. frontClothed: {
  14939. height: math.unit(6, "feet"),
  14940. weight: math.unit(150, "lb"),
  14941. name: "Front (Clothed)",
  14942. image: {
  14943. source: "./media/characters/elyssia/front-clothed.svg",
  14944. extra: 2201 / 2035,
  14945. bottom: 0.05
  14946. }
  14947. },
  14948. back: {
  14949. height: math.unit(6, "feet"),
  14950. weight: math.unit(150, "lb"),
  14951. name: "Back",
  14952. image: {
  14953. source: "./media/characters/elyssia/back.svg",
  14954. extra: 2201 / 2035,
  14955. bottom: 0.013
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Smaller",
  14962. height: math.unit(150, "feet")
  14963. },
  14964. {
  14965. name: "Standard",
  14966. height: math.unit(1400, "feet"),
  14967. default: true
  14968. },
  14969. {
  14970. name: "Distracted",
  14971. height: math.unit(15000, "feet")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(7 + 4/12, "feet"),
  14980. weight: math.unit(690, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/geno-maxwell/front.svg",
  14984. extra: 984/856,
  14985. bottom: 87/1071
  14986. }
  14987. },
  14988. back: {
  14989. height: math.unit(7 + 4/12, "feet"),
  14990. weight: math.unit(690, "lb"),
  14991. name: "Back",
  14992. image: {
  14993. source: "./media/characters/geno-maxwell/back.svg",
  14994. extra: 981/854,
  14995. bottom: 57/1038
  14996. }
  14997. },
  14998. frontCostume: {
  14999. height: math.unit(7 + 4/12, "feet"),
  15000. weight: math.unit(690, "lb"),
  15001. name: "Front (Costume)",
  15002. image: {
  15003. source: "./media/characters/geno-maxwell/front-costume.svg",
  15004. extra: 984/856,
  15005. bottom: 87/1071
  15006. }
  15007. },
  15008. backcostume: {
  15009. height: math.unit(7 + 4/12, "feet"),
  15010. weight: math.unit(690, "lb"),
  15011. name: "Back (Costume)",
  15012. image: {
  15013. source: "./media/characters/geno-maxwell/back-costume.svg",
  15014. extra: 981/854,
  15015. bottom: 57/1038
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Micro",
  15022. height: math.unit(3, "inches")
  15023. },
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(7 + 4 / 12, "feet"),
  15027. default: true
  15028. },
  15029. {
  15030. name: "Macro",
  15031. height: math.unit(220, "feet")
  15032. },
  15033. {
  15034. name: "Megamacro",
  15035. height: math.unit(11, "miles")
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(7 + 4/12, "feet"),
  15044. weight: math.unit(750, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/regena-maxwell/front.svg",
  15048. extra: 984/856,
  15049. bottom: 87/1071
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(7 + 4/12, "feet"),
  15054. weight: math.unit(750, "lb"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/regena-maxwell/back.svg",
  15058. extra: 981/854,
  15059. bottom: 57/1038
  15060. }
  15061. },
  15062. frontCostume: {
  15063. height: math.unit(7 + 4/12, "feet"),
  15064. weight: math.unit(750, "lb"),
  15065. name: "Front (Costume)",
  15066. image: {
  15067. source: "./media/characters/regena-maxwell/front-costume.svg",
  15068. extra: 984/856,
  15069. bottom: 87/1071
  15070. }
  15071. },
  15072. backcostume: {
  15073. height: math.unit(7 + 4/12, "feet"),
  15074. weight: math.unit(750, "lb"),
  15075. name: "Back (Costume)",
  15076. image: {
  15077. source: "./media/characters/regena-maxwell/back-costume.svg",
  15078. extra: 981/854,
  15079. bottom: 57/1038
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(7 + 4 / 12, "feet"),
  15087. default: true
  15088. },
  15089. {
  15090. name: "Macro",
  15091. height: math.unit(220, "feet")
  15092. },
  15093. {
  15094. name: "Megamacro",
  15095. height: math.unit(11, "miles")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15108. extra: 860 / 690,
  15109. bottom: 0.03
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(1.7, "meters"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/quilly/front.svg",
  15130. extra: 890 / 776
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Gigamacro",
  15137. height: math.unit(404090, "miles"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(7 + 8 / 12, "feet"),
  15147. weight: math.unit(350, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/tempest/front.svg",
  15151. extra: 1175 / 1086,
  15152. bottom: 0.02
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(7 + 8 / 12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15166. {
  15167. side: {
  15168. height: math.unit(4 + 5 / 12, "feet"),
  15169. weight: math.unit(80, "lb"),
  15170. name: "Side",
  15171. image: {
  15172. source: "./media/characters/rodger/side.svg",
  15173. extra: 1235 / 1118
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Micro",
  15180. height: math.unit(1, "inch")
  15181. },
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(4 + 5 / 12, "feet"),
  15185. default: true
  15186. },
  15187. {
  15188. name: "Macro",
  15189. height: math.unit(120, "feet")
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15195. {
  15196. front: {
  15197. height: math.unit(6, "feet"),
  15198. weight: math.unit(150, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/danyel/front.svg",
  15202. extra: 1185 / 1123,
  15203. bottom: 0.05
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Shrunken",
  15210. height: math.unit(0.5, "mm")
  15211. },
  15212. {
  15213. name: "Micro",
  15214. height: math.unit(1, "mm"),
  15215. default: true
  15216. },
  15217. {
  15218. name: "Upsized",
  15219. height: math.unit(5 + 5 / 12, "feet")
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(5 + 6 / 12, "feet"),
  15228. weight: math.unit(200, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/vivian-bijoux/front.svg",
  15232. extra: 1217/1209,
  15233. bottom: 76/1293
  15234. }
  15235. },
  15236. back: {
  15237. height: math.unit(5 + 6 / 12, "feet"),
  15238. weight: math.unit(200, "lb"),
  15239. name: "Back",
  15240. image: {
  15241. source: "./media/characters/vivian-bijoux/back.svg",
  15242. extra: 1214/1208,
  15243. bottom: 51/1265
  15244. }
  15245. },
  15246. dressed: {
  15247. height: math.unit(5 + 6 / 12, "feet"),
  15248. weight: math.unit(200, "lb"),
  15249. name: "Dressed",
  15250. image: {
  15251. source: "./media/characters/vivian-bijoux/dressed.svg",
  15252. extra: 1217/1209,
  15253. bottom: 76/1293
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(5 + 6 / 12, "feet"),
  15261. default: true
  15262. },
  15263. {
  15264. name: "Bad Dream",
  15265. height: math.unit(500, "feet")
  15266. },
  15267. {
  15268. name: "Nightmare",
  15269. height: math.unit(500, "miles")
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(6 + 1 / 12, "feet"),
  15278. weight: math.unit(260, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/zeta/front.svg",
  15282. extra: 1968 / 1889,
  15283. bottom: 0.06
  15284. }
  15285. },
  15286. back: {
  15287. height: math.unit(6 + 1 / 12, "feet"),
  15288. weight: math.unit(260, "lb"),
  15289. name: "Back",
  15290. image: {
  15291. source: "./media/characters/zeta/back.svg",
  15292. extra: 1944 / 1858,
  15293. bottom: 0.03
  15294. }
  15295. },
  15296. hand: {
  15297. height: math.unit(1.112, "feet"),
  15298. name: "Hand",
  15299. image: {
  15300. source: "./media/characters/zeta/hand.svg"
  15301. }
  15302. },
  15303. foot: {
  15304. height: math.unit(1.48, "feet"),
  15305. name: "Foot",
  15306. image: {
  15307. source: "./media/characters/zeta/foot.svg"
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Micro",
  15314. height: math.unit(6, "inches")
  15315. },
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(6 + 1 / 12, "feet"),
  15319. default: true
  15320. },
  15321. {
  15322. name: "Macro",
  15323. height: math.unit(20, "feet")
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(6, "feet"),
  15332. weight: math.unit(150, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/jamie-larsen/front.svg",
  15336. extra: 962 / 933,
  15337. bottom: 0.02
  15338. }
  15339. },
  15340. back: {
  15341. height: math.unit(6, "feet"),
  15342. weight: math.unit(150, "lb"),
  15343. name: "Back",
  15344. image: {
  15345. source: "./media/characters/jamie-larsen/back.svg",
  15346. extra: 997 / 946
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Macro",
  15353. height: math.unit(28 + 7 / 12, "feet"),
  15354. default: true
  15355. },
  15356. {
  15357. name: "Macro+",
  15358. height: math.unit(180, "feet")
  15359. },
  15360. {
  15361. name: "Megamacro",
  15362. height: math.unit(10, "miles")
  15363. },
  15364. {
  15365. name: "Gigamacro",
  15366. height: math.unit(200000, "miles")
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(120, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/vance/front.svg",
  15379. extra: 1980 / 1890,
  15380. bottom: 0.09
  15381. }
  15382. },
  15383. back: {
  15384. height: math.unit(6, "feet"),
  15385. weight: math.unit(120, "lb"),
  15386. name: "Back",
  15387. image: {
  15388. source: "./media/characters/vance/back.svg",
  15389. extra: 2081 / 1994,
  15390. bottom: 0.014
  15391. }
  15392. },
  15393. hand: {
  15394. height: math.unit(0.88, "feet"),
  15395. name: "Hand",
  15396. image: {
  15397. source: "./media/characters/vance/hand.svg"
  15398. }
  15399. },
  15400. foot: {
  15401. height: math.unit(0.64, "feet"),
  15402. name: "Foot",
  15403. image: {
  15404. source: "./media/characters/vance/foot.svg"
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Small",
  15411. height: math.unit(90, "feet"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Macro",
  15416. height: math.unit(100, "meters")
  15417. },
  15418. {
  15419. name: "Megamacro",
  15420. height: math.unit(15, "miles")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(180, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/xochitl/front.svg",
  15433. extra: 2297 / 2261,
  15434. bottom: 0.065
  15435. }
  15436. },
  15437. back: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(180, "lb"),
  15440. name: "Back",
  15441. image: {
  15442. source: "./media/characters/xochitl/back.svg",
  15443. extra: 2386 / 2354,
  15444. bottom: 0.01
  15445. }
  15446. },
  15447. foot: {
  15448. height: math.unit(6 / 5 * 1.15, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Foot",
  15451. image: {
  15452. source: "./media/characters/xochitl/foot.svg"
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Macro",
  15459. height: math.unit(80, "feet")
  15460. },
  15461. {
  15462. name: "Macro+",
  15463. height: math.unit(400, "feet"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Gigamacro",
  15468. height: math.unit(80000, "miles")
  15469. },
  15470. {
  15471. name: "Gigamacro+",
  15472. height: math.unit(400000, "miles")
  15473. },
  15474. {
  15475. name: "Teramacro",
  15476. height: math.unit(300, "AU")
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(6, "feet"),
  15485. weight: math.unit(150, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/vincent/front.svg",
  15489. extra: 1130 / 1080,
  15490. bottom: 0.055
  15491. }
  15492. },
  15493. beak: {
  15494. height: math.unit(6 * 0.1, "feet"),
  15495. name: "Beak",
  15496. image: {
  15497. source: "./media/characters/vincent/beak.svg"
  15498. }
  15499. },
  15500. hand: {
  15501. height: math.unit(6 * 0.85, "feet"),
  15502. weight: math.unit(150, "lb"),
  15503. name: "Hand",
  15504. image: {
  15505. source: "./media/characters/vincent/hand.svg"
  15506. }
  15507. },
  15508. foot: {
  15509. height: math.unit(6 * 0.19, "feet"),
  15510. weight: math.unit(150, "lb"),
  15511. name: "Foot",
  15512. image: {
  15513. source: "./media/characters/vincent/foot.svg"
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Base",
  15520. height: math.unit(6 + 5 / 12, "feet"),
  15521. default: true
  15522. },
  15523. {
  15524. name: "Macro",
  15525. height: math.unit(300, "feet")
  15526. },
  15527. {
  15528. name: "Megamacro",
  15529. height: math.unit(2, "miles")
  15530. },
  15531. {
  15532. name: "Gigamacro",
  15533. height: math.unit(1000, "miles")
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15539. {
  15540. front: {
  15541. height: math.unit(2, "meters"),
  15542. weight: math.unit(500, "kg"),
  15543. name: "Front",
  15544. image: {
  15545. source: "./media/characters/coatl/front.svg",
  15546. extra: 3948 / 3500,
  15547. bottom: 0.082
  15548. }
  15549. },
  15550. },
  15551. [
  15552. {
  15553. name: "Normal",
  15554. height: math.unit(4, "meters")
  15555. },
  15556. {
  15557. name: "Macro",
  15558. height: math.unit(100, "meters"),
  15559. default: true
  15560. },
  15561. {
  15562. name: "Macro+",
  15563. height: math.unit(300, "meters")
  15564. },
  15565. {
  15566. name: "Megamacro",
  15567. height: math.unit(3, "gigameters")
  15568. },
  15569. {
  15570. name: "Megamacro+",
  15571. height: math.unit(300, "terameters")
  15572. },
  15573. {
  15574. name: "Megamacro++",
  15575. height: math.unit(3, "lightyears")
  15576. },
  15577. ]
  15578. ))
  15579. characterMakers.push(() => makeCharacter(
  15580. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15581. {
  15582. front: {
  15583. height: math.unit(6, "feet"),
  15584. weight: math.unit(50, "kg"),
  15585. name: "front",
  15586. image: {
  15587. source: "./media/characters/shiroryu/front.svg",
  15588. extra: 1990 / 1935
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Mortal Mingling",
  15595. height: math.unit(3, "meters")
  15596. },
  15597. {
  15598. name: "Kaiju-ish",
  15599. height: math.unit(250, "meters")
  15600. },
  15601. {
  15602. name: "Somewhat Godly",
  15603. height: math.unit(400, "km"),
  15604. default: true
  15605. },
  15606. {
  15607. name: "Planetary",
  15608. height: math.unit(300, "megameters")
  15609. },
  15610. {
  15611. name: "Galaxy-dwarfing",
  15612. height: math.unit(450, "kiloparsecs")
  15613. },
  15614. {
  15615. name: "Universe Eater",
  15616. height: math.unit(150, "gigaparsecs")
  15617. },
  15618. {
  15619. name: "Almost Immeasurable",
  15620. height: math.unit(1.3e266, "yottaparsecs")
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/umeko/front.svg",
  15633. extra: 1,
  15634. bottom: 0.019
  15635. }
  15636. },
  15637. frontArmored: {
  15638. height: math.unit(6, "feet"),
  15639. weight: math.unit(150, "lb"),
  15640. name: "Front (Armored)",
  15641. image: {
  15642. source: "./media/characters/umeko/front-armored.svg",
  15643. extra: 1,
  15644. bottom: 0.021
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Macro",
  15651. height: math.unit(220, "feet"),
  15652. default: true
  15653. },
  15654. {
  15655. name: "Guardian Dragon",
  15656. height: math.unit(50, "miles")
  15657. },
  15658. {
  15659. name: "Cosmic",
  15660. height: math.unit(800000, "miles")
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(6, "feet"),
  15669. weight: math.unit(150, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/cassidy/front.svg",
  15673. extra: 810/808,
  15674. bottom: 41/851
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Canon Height",
  15681. height: math.unit(120, "feet"),
  15682. default: true
  15683. },
  15684. {
  15685. name: "Macro+",
  15686. height: math.unit(400, "feet")
  15687. },
  15688. {
  15689. name: "Macro++",
  15690. height: math.unit(4000, "feet")
  15691. },
  15692. {
  15693. name: "Megamacro",
  15694. height: math.unit(3, "miles")
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(6, "feet"),
  15703. weight: math.unit(150, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/isaac/front.svg",
  15707. extra: 896 / 815,
  15708. bottom: 0.11
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Human Size",
  15715. height: math.unit(8, "feet"),
  15716. default: true
  15717. },
  15718. {
  15719. name: "Macro",
  15720. height: math.unit(400, "feet")
  15721. },
  15722. {
  15723. name: "Megamacro",
  15724. height: math.unit(50, "miles")
  15725. },
  15726. {
  15727. name: "Canon Height",
  15728. height: math.unit(200, "AU")
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6, "feet"),
  15737. weight: math.unit(72, "kg"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/sleekit/front.svg",
  15741. extra: 4693 / 4487,
  15742. bottom: 0.012
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Minimum Height",
  15749. height: math.unit(10, "meters")
  15750. },
  15751. {
  15752. name: "Smaller",
  15753. height: math.unit(25, "meters")
  15754. },
  15755. {
  15756. name: "Larger",
  15757. height: math.unit(38, "meters"),
  15758. default: true
  15759. },
  15760. {
  15761. name: "Maximum height",
  15762. height: math.unit(100, "meters")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(150, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/nillia/front.svg",
  15775. extra: 719/665,
  15776. bottom: 6/725
  15777. }
  15778. },
  15779. back: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(150, "lb"),
  15782. name: "Back",
  15783. image: {
  15784. source: "./media/characters/nillia/back.svg",
  15785. extra: 705/651,
  15786. bottom: 5/710
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Canon Height",
  15793. height: math.unit(489, "feet"),
  15794. default: true
  15795. }
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6, "feet"),
  15803. weight: math.unit(150, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/mesmyriza/front.svg",
  15807. extra: 2067 / 1784,
  15808. bottom: 0.035
  15809. }
  15810. },
  15811. foot: {
  15812. height: math.unit(6 / (250 / 35), "feet"),
  15813. name: "Foot",
  15814. image: {
  15815. source: "./media/characters/mesmyriza/foot.svg"
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Macro",
  15822. height: math.unit(457, "meters"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Megamacro",
  15827. height: math.unit(8, "megameters")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(6, "feet"),
  15836. weight: math.unit(250, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/saudade/front.svg",
  15840. extra: 1172 / 1139,
  15841. bottom: 0.035
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Micro",
  15848. height: math.unit(3, "inches")
  15849. },
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(6, "feet"),
  15853. default: true
  15854. },
  15855. {
  15856. name: "Macro",
  15857. height: math.unit(50, "feet")
  15858. },
  15859. {
  15860. name: "Megamacro",
  15861. height: math.unit(2800, "feet")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(5 + 4 / 12, "feet"),
  15870. weight: math.unit(100, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/keireer/front.svg",
  15874. extra: 716 / 666,
  15875. bottom: 0.05
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(5 + 4 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15889. {
  15890. front: {
  15891. height: math.unit(5.5, "feet"),
  15892. weight: math.unit(90, "kg"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/mirja/front.svg",
  15896. extra: 1452/1262,
  15897. bottom: 67/1519
  15898. }
  15899. },
  15900. frontDressed: {
  15901. height: math.unit(5.5, "feet"),
  15902. weight: math.unit(90, "lb"),
  15903. name: "Front (Dressed)",
  15904. image: {
  15905. source: "./media/characters/mirja/dressed.svg",
  15906. extra: 1452/1262,
  15907. bottom: 67/1519
  15908. }
  15909. },
  15910. back: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(90, "lb"),
  15913. name: "Back",
  15914. image: {
  15915. source: "./media/characters/mirja/back.svg",
  15916. extra: 1892/1795,
  15917. bottom: 48/1940
  15918. }
  15919. },
  15920. maw: {
  15921. height: math.unit(1.312, "feet"),
  15922. name: "Maw",
  15923. image: {
  15924. source: "./media/characters/mirja/maw.svg"
  15925. }
  15926. },
  15927. paw: {
  15928. height: math.unit(1.15, "feet"),
  15929. name: "Paw",
  15930. image: {
  15931. source: "./media/characters/mirja/paw.svg"
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "\"Incognito\"",
  15938. height: math.unit(3, "meters")
  15939. },
  15940. {
  15941. name: "Strolling Size",
  15942. height: math.unit(15, "km")
  15943. },
  15944. {
  15945. name: "Larger Strolling Size",
  15946. height: math.unit(400, "km")
  15947. },
  15948. {
  15949. name: "Preferred Size",
  15950. height: math.unit(5000, "km"),
  15951. default: true
  15952. },
  15953. {
  15954. name: "True Size",
  15955. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(15, "feet"),
  15964. weight: math.unit(880, "kg"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/nightraver/front.svg",
  15968. extra: 2444 / 2160,
  15969. bottom: 0.027
  15970. }
  15971. },
  15972. back: {
  15973. height: math.unit(15, "feet"),
  15974. weight: math.unit(880, "kg"),
  15975. name: "Back",
  15976. image: {
  15977. source: "./media/characters/nightraver/back.svg",
  15978. extra: 2309 / 2180,
  15979. bottom: 0.005
  15980. }
  15981. },
  15982. sole: {
  15983. height: math.unit(2.878, "feet"),
  15984. name: "Sole",
  15985. image: {
  15986. source: "./media/characters/nightraver/sole.svg"
  15987. }
  15988. },
  15989. foot: {
  15990. height: math.unit(2.285, "feet"),
  15991. name: "Foot",
  15992. image: {
  15993. source: "./media/characters/nightraver/foot.svg"
  15994. }
  15995. },
  15996. maw: {
  15997. height: math.unit(2.67, "feet"),
  15998. name: "Maw",
  15999. image: {
  16000. source: "./media/characters/nightraver/maw.svg"
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Micro",
  16007. height: math.unit(1, "cm")
  16008. },
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(15, "feet"),
  16012. default: true
  16013. },
  16014. {
  16015. name: "Macro",
  16016. height: math.unit(300, "feet")
  16017. },
  16018. {
  16019. name: "Megamacro",
  16020. height: math.unit(300, "miles")
  16021. },
  16022. {
  16023. name: "Gigamacro",
  16024. height: math.unit(10000, "miles")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16030. {
  16031. side: {
  16032. height: math.unit(2, "inches"),
  16033. weight: math.unit(5, "grams"),
  16034. name: "Side",
  16035. image: {
  16036. source: "./media/characters/arc/side.svg"
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Micro",
  16043. height: math.unit(2, "inches"),
  16044. default: true
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(1.1938, "meters"),
  16053. weight: math.unit(54, "kg"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/nebula-shahar/front.svg",
  16057. extra: 1642 / 1436,
  16058. bottom: 0.06
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Megamicro",
  16065. height: math.unit(0.3, "mm")
  16066. },
  16067. {
  16068. name: "Micro",
  16069. height: math.unit(3, "cm")
  16070. },
  16071. {
  16072. name: "Normal",
  16073. height: math.unit(138, "cm"),
  16074. default: true
  16075. },
  16076. {
  16077. name: "Macro",
  16078. height: math.unit(30, "m")
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(5.24, "feet"),
  16087. weight: math.unit(150, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/shayla/front.svg",
  16091. extra: 1512 / 1414,
  16092. bottom: 0.01
  16093. }
  16094. },
  16095. back: {
  16096. height: math.unit(5.24, "feet"),
  16097. weight: math.unit(150, "lb"),
  16098. name: "Back",
  16099. image: {
  16100. source: "./media/characters/shayla/back.svg",
  16101. extra: 1512 / 1414
  16102. }
  16103. },
  16104. hand: {
  16105. height: math.unit(0.7781496062992126, "feet"),
  16106. name: "Hand",
  16107. image: {
  16108. source: "./media/characters/shayla/hand.svg"
  16109. }
  16110. },
  16111. foot: {
  16112. height: math.unit(1.4206036745406823, "feet"),
  16113. name: "Foot",
  16114. image: {
  16115. source: "./media/characters/shayla/foot.svg"
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Micro",
  16122. height: math.unit(0.32, "feet")
  16123. },
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(5.24, "feet"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(492.12, "feet")
  16132. },
  16133. {
  16134. name: "Megamacro",
  16135. height: math.unit(186.41, "miles")
  16136. },
  16137. ]
  16138. ))
  16139. characterMakers.push(() => makeCharacter(
  16140. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16141. {
  16142. front: {
  16143. height: math.unit(2.2, "m"),
  16144. weight: math.unit(120, "kg"),
  16145. name: "Front",
  16146. image: {
  16147. source: "./media/characters/pia-jr/front.svg",
  16148. extra: 1000 / 970,
  16149. bottom: 0.035
  16150. }
  16151. },
  16152. hand: {
  16153. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16154. name: "Hand",
  16155. image: {
  16156. source: "./media/characters/pia-jr/hand.svg"
  16157. }
  16158. },
  16159. paw: {
  16160. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16161. name: "Paw",
  16162. image: {
  16163. source: "./media/characters/pia-jr/paw.svg"
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Micro",
  16170. height: math.unit(1.2, "cm")
  16171. },
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(2.2, "m"),
  16175. default: true
  16176. },
  16177. {
  16178. name: "Macro",
  16179. height: math.unit(180, "m")
  16180. },
  16181. {
  16182. name: "Megamacro",
  16183. height: math.unit(420, "km")
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(2, "m"),
  16192. weight: math.unit(115, "kg"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/pia-sr/front.svg",
  16196. extra: 760 / 730,
  16197. bottom: 0.015
  16198. }
  16199. },
  16200. back: {
  16201. height: math.unit(2, "m"),
  16202. weight: math.unit(115, "kg"),
  16203. name: "Back",
  16204. image: {
  16205. source: "./media/characters/pia-sr/back.svg",
  16206. extra: 760 / 730,
  16207. bottom: 0.01
  16208. }
  16209. },
  16210. hand: {
  16211. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16212. name: "Hand",
  16213. image: {
  16214. source: "./media/characters/pia-sr/hand.svg"
  16215. }
  16216. },
  16217. foot: {
  16218. height: math.unit(1.83, "feet"),
  16219. name: "Foot",
  16220. image: {
  16221. source: "./media/characters/pia-sr/foot.svg"
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Micro",
  16228. height: math.unit(88, "mm")
  16229. },
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(2, "m"),
  16233. default: true
  16234. },
  16235. {
  16236. name: "Macro",
  16237. height: math.unit(200, "m")
  16238. },
  16239. {
  16240. name: "Megamacro",
  16241. height: math.unit(420, "km")
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(8 + 2 / 12, "feet"),
  16250. weight: math.unit(300, "lb"),
  16251. name: "Front",
  16252. image: {
  16253. source: "./media/characters/kibibyte/front.svg",
  16254. extra: 2221 / 2098,
  16255. bottom: 0.04
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(8 + 2 / 12, "feet"),
  16263. default: true
  16264. },
  16265. {
  16266. name: "Socialable Macro",
  16267. height: math.unit(50, "feet")
  16268. },
  16269. {
  16270. name: "Macro",
  16271. height: math.unit(300, "feet")
  16272. },
  16273. {
  16274. name: "Megamacro",
  16275. height: math.unit(500, "miles")
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(6, "feet"),
  16284. weight: math.unit(150, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/felix/front.svg",
  16288. extra: 762 / 722,
  16289. bottom: 0.02
  16290. }
  16291. },
  16292. frontClothed: {
  16293. height: math.unit(6, "feet"),
  16294. weight: math.unit(150, "lb"),
  16295. name: "Front (Clothed)",
  16296. image: {
  16297. source: "./media/characters/felix/front-clothed.svg",
  16298. extra: 762 / 722,
  16299. bottom: 0.02
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(6 + 8 / 12, "feet"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(2600, "feet")
  16312. },
  16313. {
  16314. name: "Megamacro",
  16315. height: math.unit(450, "miles")
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16321. {
  16322. front: {
  16323. height: math.unit(6 + 1 / 12, "feet"),
  16324. weight: math.unit(250, "lb"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/tobo/front.svg",
  16328. extra: 608 / 586,
  16329. bottom: 0.023
  16330. }
  16331. },
  16332. back: {
  16333. height: math.unit(6 + 1 / 12, "feet"),
  16334. weight: math.unit(250, "lb"),
  16335. name: "Back",
  16336. image: {
  16337. source: "./media/characters/tobo/back.svg",
  16338. extra: 608 / 586
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Nano",
  16345. height: math.unit(2, "nm")
  16346. },
  16347. {
  16348. name: "Megamicro",
  16349. height: math.unit(0.1, "mm")
  16350. },
  16351. {
  16352. name: "Micro",
  16353. height: math.unit(1, "inch"),
  16354. default: true
  16355. },
  16356. {
  16357. name: "Human-sized",
  16358. height: math.unit(6 + 1 / 12, "feet")
  16359. },
  16360. {
  16361. name: "Macro",
  16362. height: math.unit(250, "feet")
  16363. },
  16364. {
  16365. name: "Megamacro",
  16366. height: math.unit(75, "miles")
  16367. },
  16368. {
  16369. name: "Texas-sized",
  16370. height: math.unit(750, "miles")
  16371. },
  16372. {
  16373. name: "Teramacro",
  16374. height: math.unit(50000, "miles")
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16380. {
  16381. front: {
  16382. height: math.unit(6, "feet"),
  16383. weight: math.unit(269, "lb"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/danny-kapowsky/front.svg",
  16387. extra: 766 / 736,
  16388. bottom: 0.044
  16389. }
  16390. },
  16391. back: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(269, "lb"),
  16394. name: "Back",
  16395. image: {
  16396. source: "./media/characters/danny-kapowsky/back.svg",
  16397. extra: 797 / 760,
  16398. bottom: 0.025
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Macro",
  16405. height: math.unit(150, "feet"),
  16406. default: true
  16407. },
  16408. {
  16409. name: "Macro+",
  16410. height: math.unit(200, "feet")
  16411. },
  16412. {
  16413. name: "Macro++",
  16414. height: math.unit(300, "feet")
  16415. },
  16416. {
  16417. name: "Macro+++",
  16418. height: math.unit(400, "feet")
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16424. {
  16425. side: {
  16426. height: math.unit(6, "feet"),
  16427. weight: math.unit(170, "lb"),
  16428. name: "Side",
  16429. image: {
  16430. source: "./media/characters/finn/side.svg",
  16431. extra: 1953 / 1807,
  16432. bottom: 0.057
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Megamacro",
  16439. height: math.unit(14445, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(5 + 6 / 12, "feet"),
  16449. weight: math.unit(125, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/roy/front.svg",
  16453. extra: 1,
  16454. bottom: 0.11
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Micro",
  16461. height: math.unit(3, "inches"),
  16462. default: true
  16463. },
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(5 + 6 / 12, "feet")
  16467. },
  16468. {
  16469. name: "Lesser Macro",
  16470. height: math.unit(60, "feet")
  16471. },
  16472. {
  16473. name: "Greater Macro",
  16474. height: math.unit(120, "feet")
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(6, "feet"),
  16483. weight: math.unit(100, "lb"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/aevsivs/front.svg",
  16487. extra: 1,
  16488. bottom: 0.03
  16489. }
  16490. },
  16491. back: {
  16492. height: math.unit(6, "feet"),
  16493. weight: math.unit(100, "lb"),
  16494. name: "Back",
  16495. image: {
  16496. source: "./media/characters/aevsivs/back.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Micro",
  16503. height: math.unit(2, "inches"),
  16504. default: true
  16505. },
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(5, "feet")
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16514. {
  16515. front: {
  16516. height: math.unit(5 + 7 / 12, "feet"),
  16517. weight: math.unit(159, "lb"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/hildegard/front.svg",
  16521. extra: 289 / 269,
  16522. bottom: 7.63 / 297.8
  16523. }
  16524. },
  16525. back: {
  16526. height: math.unit(5 + 7 / 12, "feet"),
  16527. weight: math.unit(159, "lb"),
  16528. name: "Back",
  16529. image: {
  16530. source: "./media/characters/hildegard/back.svg",
  16531. extra: 280 / 260,
  16532. bottom: 2.3 / 282
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(5 + 7 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16546. {
  16547. bernard: {
  16548. height: math.unit(2 + 7 / 12, "feet"),
  16549. weight: math.unit(66, "lb"),
  16550. name: "Bernard",
  16551. rename: true,
  16552. image: {
  16553. source: "./media/characters/bernard-wilder/bernard.svg",
  16554. extra: 192 / 128,
  16555. bottom: 0.05
  16556. }
  16557. },
  16558. wilder: {
  16559. height: math.unit(5 + 8 / 12, "feet"),
  16560. weight: math.unit(143, "lb"),
  16561. name: "Wilder",
  16562. rename: true,
  16563. image: {
  16564. source: "./media/characters/bernard-wilder/wilder.svg",
  16565. extra: 361 / 312,
  16566. bottom: 0.02
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(2 + 7 / 12, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16580. {
  16581. anthro: {
  16582. height: math.unit(6 + 1 / 12, "feet"),
  16583. weight: math.unit(155, "lb"),
  16584. name: "Anthro",
  16585. image: {
  16586. source: "./media/characters/hearth/anthro.svg",
  16587. extra: 1178/1136,
  16588. bottom: 28/1206
  16589. }
  16590. },
  16591. feral: {
  16592. height: math.unit(3.78, "feet"),
  16593. weight: math.unit(35, "kg"),
  16594. name: "Feral",
  16595. image: {
  16596. source: "./media/characters/hearth/feral.svg",
  16597. extra: 153 / 135,
  16598. bottom: 0.03
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(6 + 1 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(6, "feet"),
  16615. weight: math.unit(182, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/ingrid/front.svg",
  16619. extra: 294 / 268,
  16620. bottom: 0.027
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(6, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16634. {
  16635. eevee: {
  16636. height: math.unit(2 + 10 / 12, "feet"),
  16637. weight: math.unit(86, "lb"),
  16638. name: "Malgam",
  16639. image: {
  16640. source: "./media/characters/malgam/eevee.svg",
  16641. extra: 952/784,
  16642. bottom: 38/990
  16643. }
  16644. },
  16645. sylveon: {
  16646. height: math.unit(4, "feet"),
  16647. weight: math.unit(101, "lb"),
  16648. name: "Future Malgam",
  16649. rename: true,
  16650. image: {
  16651. source: "./media/characters/malgam/sylveon.svg",
  16652. extra: 371 / 325,
  16653. bottom: 0.015
  16654. }
  16655. },
  16656. gigantamax: {
  16657. height: math.unit(50, "feet"),
  16658. name: "Gigantamax Malgam",
  16659. rename: true,
  16660. image: {
  16661. source: "./media/characters/malgam/gigantamax.svg"
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(2 + 10 / 12, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(5 + 11 / 12, "feet"),
  16678. weight: math.unit(188, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/fleur/front.svg",
  16682. extra: 309 / 283,
  16683. bottom: 0.007
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(5 + 11 / 12, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16697. {
  16698. front: {
  16699. height: math.unit(5 + 4 / 12, "feet"),
  16700. weight: math.unit(122, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/jude/front.svg",
  16704. extra: 288 / 273,
  16705. bottom: 0.03
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(5 + 4 / 12, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 11 / 12, "feet"),
  16722. weight: math.unit(190, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/seara/front.svg",
  16726. extra: 1,
  16727. bottom: 0.05
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 11 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(16 + 5 / 12, "feet"),
  16744. weight: math.unit(524, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/caspian-lugia/front.svg",
  16748. extra: 1,
  16749. bottom: 0.04
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(16 + 5 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(5 + 7 / 12, "feet"),
  16766. weight: math.unit(170, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/mika/front.svg",
  16770. extra: 1,
  16771. bottom: 0.016
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(5 + 7 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(6 + 2 / 12, "feet"),
  16788. weight: math.unit(268, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/sol/front.svg",
  16792. extra: 247 / 231,
  16793. bottom: 0.05
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(6 + 2 / 12, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16807. {
  16808. buizel: {
  16809. height: math.unit(2 + 5 / 12, "feet"),
  16810. weight: math.unit(87, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/umiko/buizel.svg",
  16814. extra: 172 / 157,
  16815. bottom: 0.01
  16816. },
  16817. form: "buizel",
  16818. default: true
  16819. },
  16820. floatzel: {
  16821. height: math.unit(5 + 9 / 12, "feet"),
  16822. weight: math.unit(250, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/umiko/floatzel.svg",
  16826. extra: 1076/1006,
  16827. bottom: 15/1091
  16828. },
  16829. form: "floatzel",
  16830. default: true
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(2 + 5 / 12, "feet"),
  16837. form: "buizel",
  16838. default: true
  16839. },
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(5 + 9 / 12, "feet"),
  16843. form: "floatzel",
  16844. default: true
  16845. },
  16846. ],
  16847. {
  16848. "buizel": {
  16849. name: "Buizel"
  16850. },
  16851. "floatzel": {
  16852. name: "Floatzel",
  16853. default: true
  16854. }
  16855. }
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(6 + 2 / 12, "feet"),
  16862. weight: math.unit(146, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/iliac/front.svg",
  16866. extra: 389 / 365,
  16867. bottom: 0.035
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(6 + 2 / 12, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16881. {
  16882. front: {
  16883. height: math.unit(6, "feet"),
  16884. weight: math.unit(170, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/topaz/front.svg",
  16888. extra: 317 / 303,
  16889. bottom: 0.055
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(6, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(5 + 11 / 12, "feet"),
  16906. weight: math.unit(144, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/gabriel/front.svg",
  16910. extra: 285 / 262,
  16911. bottom: 0.004
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(5 + 11 / 12, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16925. {
  16926. side: {
  16927. height: math.unit(6 + 5 / 12, "feet"),
  16928. weight: math.unit(300, "lb"),
  16929. name: "Side",
  16930. image: {
  16931. source: "./media/characters/tempest-suicune/side.svg",
  16932. extra: 195 / 154,
  16933. bottom: 0.04
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(6 + 5 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(7 + 2 / 12, "feet"),
  16950. weight: math.unit(322, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/vulcan/front.svg",
  16954. extra: 154 / 147,
  16955. bottom: 0.04
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(7 + 2 / 12, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(5 + 10 / 12, "feet"),
  16972. weight: math.unit(264, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/gault/front.svg",
  16976. extra: 161 / 140,
  16977. bottom: 0.028
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(5 + 10 / 12, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(6, "feet"),
  16994. weight: math.unit(150, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/shard/front.svg",
  16998. extra: 273 / 238,
  16999. bottom: 0.02
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(3 + 6 / 12, "feet"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(5 + 11 / 12, "feet"),
  17016. weight: math.unit(146, "lb"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/ashe/front.svg",
  17020. extra: 400 / 373,
  17021. bottom: 0.01
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(5 + 11 / 12, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17035. {
  17036. front: {
  17037. height: math.unit(5 + 5 / 12, "feet"),
  17038. weight: math.unit(135, "lb"),
  17039. name: "Front",
  17040. image: {
  17041. source: "./media/characters/beatrix/front.svg",
  17042. extra: 392 / 379,
  17043. bottom: 0.01
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(6, "feet"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(6 + 2/12, "feet"),
  17060. weight: math.unit(135, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/ignatius/front.svg",
  17064. extra: 1380/1259,
  17065. bottom: 27/1407
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(6 + 2/12, "feet"),
  17073. default: true
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17079. {
  17080. front: {
  17081. height: math.unit(6 + 2 / 12, "feet"),
  17082. weight: math.unit(138, "lb"),
  17083. name: "Front",
  17084. image: {
  17085. source: "./media/characters/mei-li/front.svg",
  17086. extra: 237 / 229,
  17087. bottom: 0.03
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(6 + 2 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(2 + 4 / 12, "feet"),
  17104. weight: math.unit(62, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/puru/front.svg",
  17108. extra: 206 / 149,
  17109. bottom: 0.06
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(2 + 4 / 12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17123. {
  17124. anthro: {
  17125. height: math.unit(5 + 8/12, "feet"),
  17126. weight: math.unit(200, "lb"),
  17127. energyNeed: math.unit(2000, "kcal"),
  17128. name: "Anthro",
  17129. image: {
  17130. source: "./media/characters/kee/anthro.svg",
  17131. extra: 3251/3184,
  17132. bottom: 250/3501
  17133. }
  17134. },
  17135. taur: {
  17136. height: math.unit(11, "feet"),
  17137. weight: math.unit(500, "lb"),
  17138. energyNeed: math.unit(5000, "kcal"),
  17139. name: "Taur",
  17140. image: {
  17141. source: "./media/characters/kee/taur.svg",
  17142. extra: 1362/1320,
  17143. bottom: 83/1445
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(5 + 8/12, "feet"),
  17151. default: true
  17152. },
  17153. {
  17154. name: "Macro",
  17155. height: math.unit(35, "feet")
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17161. {
  17162. anthro: {
  17163. height: math.unit(7, "feet"),
  17164. weight: math.unit(190, "lb"),
  17165. name: "Anthro",
  17166. image: {
  17167. source: "./media/characters/cobalt-dracha/anthro.svg",
  17168. extra: 231 / 225,
  17169. bottom: 0.04
  17170. }
  17171. },
  17172. feral: {
  17173. height: math.unit(9 + 7 / 12, "feet"),
  17174. weight: math.unit(294, "lb"),
  17175. name: "Feral",
  17176. image: {
  17177. source: "./media/characters/cobalt-dracha/feral.svg",
  17178. extra: 692 / 633,
  17179. bottom: 0.05
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(7, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17193. {
  17194. fallen: {
  17195. height: math.unit(11 + 8 / 12, "feet"),
  17196. weight: math.unit(485, "lb"),
  17197. name: "Java (Fallen)",
  17198. rename: true,
  17199. image: {
  17200. source: "./media/characters/java/fallen.svg",
  17201. extra: 226 / 208,
  17202. bottom: 0.005
  17203. }
  17204. },
  17205. godkin: {
  17206. height: math.unit(10 + 6 / 12, "feet"),
  17207. weight: math.unit(328, "lb"),
  17208. name: "Java (Godkin)",
  17209. rename: true,
  17210. image: {
  17211. source: "./media/characters/java/godkin.svg",
  17212. extra: 1104/1068,
  17213. bottom: 36/1140
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(11 + 8 / 12, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(5 + 9 / 12, "feet"),
  17230. weight: math.unit(170, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/purna/front.svg",
  17234. extra: 239 / 229,
  17235. bottom: 0.01
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(5 + 9 / 12, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(5 + 9 / 12, "feet"),
  17252. weight: math.unit(142, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/kuva/front.svg",
  17256. extra: 281 / 271,
  17257. bottom: 0.006
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(5 + 9 / 12, "feet"),
  17265. default: true
  17266. },
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17271. {
  17272. anthro: {
  17273. height: math.unit(9 + 2 / 12, "feet"),
  17274. weight: math.unit(270, "lb"),
  17275. name: "Anthro",
  17276. image: {
  17277. source: "./media/characters/embra/anthro.svg",
  17278. extra: 200 / 187,
  17279. bottom: 0.02
  17280. }
  17281. },
  17282. feral: {
  17283. height: math.unit(18 + 8 / 12, "feet"),
  17284. weight: math.unit(576, "lb"),
  17285. name: "Feral",
  17286. image: {
  17287. source: "./media/characters/embra/feral.svg",
  17288. extra: 152 / 137,
  17289. bottom: 0.037
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(9 + 2 / 12, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17303. {
  17304. anthro: {
  17305. height: math.unit(10 + 9 / 12, "feet"),
  17306. weight: math.unit(224, "lb"),
  17307. name: "Anthro",
  17308. image: {
  17309. source: "./media/characters/grottos/anthro.svg",
  17310. extra: 350 / 332,
  17311. bottom: 0.045
  17312. }
  17313. },
  17314. feral: {
  17315. height: math.unit(20 + 7 / 12, "feet"),
  17316. weight: math.unit(629, "lb"),
  17317. name: "Feral",
  17318. image: {
  17319. source: "./media/characters/grottos/feral.svg",
  17320. extra: 207 / 190,
  17321. bottom: 0.05
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(10 + 9 / 12, "feet"),
  17329. default: true
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17335. {
  17336. anthro: {
  17337. height: math.unit(9 + 6 / 12, "feet"),
  17338. weight: math.unit(298, "lb"),
  17339. name: "Anthro",
  17340. image: {
  17341. source: "./media/characters/frifna/anthro.svg",
  17342. extra: 282 / 269,
  17343. bottom: 0.015
  17344. }
  17345. },
  17346. feral: {
  17347. height: math.unit(16 + 2 / 12, "feet"),
  17348. weight: math.unit(624, "lb"),
  17349. name: "Feral",
  17350. image: {
  17351. source: "./media/characters/frifna/feral.svg"
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(9 + 6 / 12, "feet"),
  17359. default: true
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6 + 2 / 12, "feet"),
  17368. weight: math.unit(168, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/elise/front.svg",
  17372. extra: 276 / 271
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(6 + 2 / 12, "feet"),
  17380. default: true
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17386. {
  17387. front: {
  17388. height: math.unit(5 + 10 / 12, "feet"),
  17389. weight: math.unit(210, "lb"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/glade/front.svg",
  17393. extra: 258 / 247,
  17394. bottom: 0.008
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(5 + 10 / 12, "feet"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(5 + 10 / 12, "feet"),
  17411. weight: math.unit(129, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/rina/front.svg",
  17415. extra: 266 / 255,
  17416. bottom: 0.005
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(5 + 10 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6 + 1 / 12, "feet"),
  17433. weight: math.unit(192, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/veronica/front.svg",
  17437. extra: 319 / 309,
  17438. bottom: 0.005
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(6 + 1 / 12, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(9 + 3 / 12, "feet"),
  17455. weight: math.unit(1100, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/braxton/front.svg",
  17459. extra: 1057 / 984,
  17460. bottom: 0.05
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(9 + 3 / 12, "feet")
  17468. },
  17469. {
  17470. name: "Giant",
  17471. height: math.unit(300, "feet"),
  17472. default: true
  17473. },
  17474. {
  17475. name: "Macro",
  17476. height: math.unit(700, "feet")
  17477. },
  17478. {
  17479. name: "Megamacro",
  17480. height: math.unit(6000, "feet")
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(6 + 7 / 12, "feet"),
  17489. weight: math.unit(150, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/blue-feyonics/front.svg",
  17493. extra: 1403 / 1306,
  17494. bottom: 0.047
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(6 + 7 / 12, "feet"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17508. {
  17509. front: {
  17510. height: math.unit(1.8, "meters"),
  17511. weight: math.unit(60, "kg"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/maxwell/front.svg",
  17515. extra: 2060 / 1873
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Micro",
  17522. height: math.unit(1, "mm")
  17523. },
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(1.8, "meter"),
  17527. default: true
  17528. },
  17529. {
  17530. name: "Macro",
  17531. height: math.unit(30, "meters")
  17532. },
  17533. {
  17534. name: "Megamacro",
  17535. height: math.unit(10, "km")
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(6, "feet"),
  17544. weight: math.unit(150, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/jack/front.svg",
  17548. extra: 1754 / 1640,
  17549. bottom: 0.01
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(80000, "feet"),
  17557. default: true
  17558. },
  17559. {
  17560. name: "Max size",
  17561. height: math.unit(10, "lightyears")
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17567. {
  17568. urban: {
  17569. height: math.unit(5, "feet"),
  17570. weight: math.unit(240, "lb"),
  17571. name: "Urban",
  17572. image: {
  17573. source: "./media/characters/cafat/urban.svg",
  17574. extra: 1223/1126,
  17575. bottom: 205/1428
  17576. }
  17577. },
  17578. summer: {
  17579. height: math.unit(5, "feet"),
  17580. weight: math.unit(240, "lb"),
  17581. name: "Summer",
  17582. image: {
  17583. source: "./media/characters/cafat/summer.svg",
  17584. extra: 1223/1126,
  17585. bottom: 205/1428
  17586. }
  17587. },
  17588. winter: {
  17589. height: math.unit(5, "feet"),
  17590. weight: math.unit(240, "lb"),
  17591. name: "Winter",
  17592. image: {
  17593. source: "./media/characters/cafat/winter.svg",
  17594. extra: 1223/1126,
  17595. bottom: 205/1428
  17596. }
  17597. },
  17598. lingerie: {
  17599. height: math.unit(5, "feet"),
  17600. weight: math.unit(240, "lb"),
  17601. name: "Lingerie",
  17602. image: {
  17603. source: "./media/characters/cafat/lingerie.svg",
  17604. extra: 1223/1126,
  17605. bottom: 205/1428
  17606. }
  17607. },
  17608. upright: {
  17609. height: math.unit(6.3, "feet"),
  17610. weight: math.unit(240, "lb"),
  17611. name: "Upright",
  17612. image: {
  17613. source: "./media/characters/cafat/upright.svg",
  17614. bottom: 0.01
  17615. }
  17616. },
  17617. uprightFull: {
  17618. height: math.unit(6.3, "feet"),
  17619. weight: math.unit(240, "lb"),
  17620. name: "Upright (Full)",
  17621. image: {
  17622. source: "./media/characters/cafat/upright-full.svg",
  17623. bottom: 0.01
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Small",
  17630. height: math.unit(5, "feet"),
  17631. default: true
  17632. },
  17633. {
  17634. name: "Large",
  17635. height: math.unit(13, "feet")
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(6, "feet"),
  17644. weight: math.unit(150, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/verin-raharra/front.svg",
  17648. extra: 5019 / 4835,
  17649. bottom: 0.023
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(7 + 5 / 12, "feet"),
  17657. default: true
  17658. },
  17659. {
  17660. name: "Upsized",
  17661. height: math.unit(20, "feet")
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(7, "feet"),
  17670. weight: math.unit(230, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/nakata/front.svg",
  17674. extra: 1.005,
  17675. bottom: 0.01
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(7, "feet"),
  17683. default: true
  17684. },
  17685. {
  17686. name: "Big",
  17687. height: math.unit(14, "feet")
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(400, "feet")
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(4.91, "feet"),
  17700. weight: math.unit(100, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/lily/front.svg",
  17704. extra: 1585 / 1415,
  17705. bottom: 0.02
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(4.91, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17719. {
  17720. laying: {
  17721. height: math.unit(4 + 4 / 12, "feet"),
  17722. weight: math.unit(600, "lb"),
  17723. name: "Laying",
  17724. image: {
  17725. source: "./media/characters/sheila/laying.svg",
  17726. extra: 1333 / 1265,
  17727. bottom: 0.16
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(4 + 4 / 12, "feet"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(6, "feet"),
  17744. weight: math.unit(190, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/sax/front.svg",
  17748. extra: 1187 / 973,
  17749. bottom: 0.042
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Micro",
  17756. height: math.unit(4, "inches"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(6, "feet"),
  17766. weight: math.unit(150, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/pandora/front.svg",
  17770. extra: 2720 / 2556,
  17771. bottom: 0.015
  17772. }
  17773. },
  17774. back: {
  17775. height: math.unit(6, "feet"),
  17776. weight: math.unit(150, "lb"),
  17777. name: "Back",
  17778. image: {
  17779. source: "./media/characters/pandora/back.svg",
  17780. extra: 2720 / 2556,
  17781. bottom: 0.01
  17782. }
  17783. },
  17784. beans: {
  17785. height: math.unit(6 / 8, "feet"),
  17786. name: "Beans",
  17787. image: {
  17788. source: "./media/characters/pandora/beans.svg"
  17789. }
  17790. },
  17791. collar: {
  17792. height: math.unit(0.31, "feet"),
  17793. name: "Collar",
  17794. image: {
  17795. source: "./media/characters/pandora/collar.svg"
  17796. }
  17797. },
  17798. skirt: {
  17799. height: math.unit(6, "feet"),
  17800. weight: math.unit(150, "lb"),
  17801. name: "Skirt",
  17802. image: {
  17803. source: "./media/characters/pandora/skirt.svg",
  17804. extra: 1622 / 1525,
  17805. bottom: 0.015
  17806. }
  17807. },
  17808. hoodie: {
  17809. height: math.unit(6, "feet"),
  17810. weight: math.unit(150, "lb"),
  17811. name: "Hoodie",
  17812. image: {
  17813. source: "./media/characters/pandora/hoodie.svg",
  17814. extra: 1622 / 1525,
  17815. bottom: 0.015
  17816. }
  17817. },
  17818. casual: {
  17819. height: math.unit(6, "feet"),
  17820. weight: math.unit(150, "lb"),
  17821. name: "Casual",
  17822. image: {
  17823. source: "./media/characters/pandora/casual.svg",
  17824. extra: 1622 / 1525,
  17825. bottom: 0.015
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(6, "feet")
  17833. },
  17834. {
  17835. name: "Big Steppy",
  17836. height: math.unit(1, "km"),
  17837. default: true
  17838. },
  17839. {
  17840. name: "Galactic Steppy",
  17841. height: math.unit(2, "gigameters")
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17847. {
  17848. side: {
  17849. height: math.unit(10, "feet"),
  17850. weight: math.unit(800, "kg"),
  17851. name: "Side",
  17852. image: {
  17853. source: "./media/characters/venio-darcony/side.svg",
  17854. extra: 1373 / 1003,
  17855. bottom: 0.037
  17856. }
  17857. },
  17858. front: {
  17859. height: math.unit(19, "feet"),
  17860. weight: math.unit(800, "kg"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/venio-darcony/front.svg"
  17864. }
  17865. },
  17866. back: {
  17867. height: math.unit(19, "feet"),
  17868. weight: math.unit(800, "kg"),
  17869. name: "Back",
  17870. image: {
  17871. source: "./media/characters/venio-darcony/back.svg"
  17872. }
  17873. },
  17874. sideNsfw: {
  17875. height: math.unit(10, "feet"),
  17876. weight: math.unit(800, "kg"),
  17877. name: "Side (NSFW)",
  17878. image: {
  17879. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17880. extra: 1373 / 1003,
  17881. bottom: 0.037
  17882. }
  17883. },
  17884. frontNsfw: {
  17885. height: math.unit(19, "feet"),
  17886. weight: math.unit(800, "kg"),
  17887. name: "Front (NSFW)",
  17888. image: {
  17889. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17890. }
  17891. },
  17892. backNsfw: {
  17893. height: math.unit(19, "feet"),
  17894. weight: math.unit(800, "kg"),
  17895. name: "Back (NSFW)",
  17896. image: {
  17897. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17898. }
  17899. },
  17900. sideArmored: {
  17901. height: math.unit(10, "feet"),
  17902. weight: math.unit(800, "kg"),
  17903. name: "Side (Armored)",
  17904. image: {
  17905. source: "./media/characters/venio-darcony/side-armored.svg",
  17906. extra: 1373 / 1003,
  17907. bottom: 0.037
  17908. }
  17909. },
  17910. frontArmored: {
  17911. height: math.unit(19, "feet"),
  17912. weight: math.unit(900, "kg"),
  17913. name: "Front (Armored)",
  17914. image: {
  17915. source: "./media/characters/venio-darcony/front-armored.svg"
  17916. }
  17917. },
  17918. backArmored: {
  17919. height: math.unit(19, "feet"),
  17920. weight: math.unit(900, "kg"),
  17921. name: "Back (Armored)",
  17922. image: {
  17923. source: "./media/characters/venio-darcony/back-armored.svg"
  17924. }
  17925. },
  17926. sword: {
  17927. height: math.unit(10, "feet"),
  17928. weight: math.unit(50, "lb"),
  17929. name: "Sword",
  17930. image: {
  17931. source: "./media/characters/venio-darcony/sword.svg"
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(10, "feet")
  17939. },
  17940. {
  17941. name: "Macro",
  17942. height: math.unit(130, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Macro+",
  17947. height: math.unit(240, "feet")
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(6, "feet"),
  17956. weight: math.unit(150, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/veski/front.svg",
  17960. extra: 1299 / 1225,
  17961. bottom: 0.04
  17962. }
  17963. },
  17964. back: {
  17965. height: math.unit(6, "feet"),
  17966. weight: math.unit(150, "lb"),
  17967. name: "Back",
  17968. image: {
  17969. source: "./media/characters/veski/back.svg",
  17970. extra: 1299 / 1225,
  17971. bottom: 0.008
  17972. }
  17973. },
  17974. maw: {
  17975. height: math.unit(1.5 * 1.21, "feet"),
  17976. name: "Maw",
  17977. image: {
  17978. source: "./media/characters/veski/maw.svg"
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Macro",
  17985. height: math.unit(2, "km"),
  17986. default: true
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17992. {
  17993. front: {
  17994. height: math.unit(5 + 7 / 12, "feet"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/isabelle/front.svg",
  17998. extra: 2130 / 1976,
  17999. bottom: 0.05
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Supermicro",
  18006. height: math.unit(10, "micrometers")
  18007. },
  18008. {
  18009. name: "Micro",
  18010. height: math.unit(1, "inch")
  18011. },
  18012. {
  18013. name: "Tiny",
  18014. height: math.unit(5, "inches")
  18015. },
  18016. {
  18017. name: "Standard",
  18018. height: math.unit(5 + 7 / 12, "inches")
  18019. },
  18020. {
  18021. name: "Macro",
  18022. height: math.unit(80, "meters"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Megamacro",
  18027. height: math.unit(250, "meters")
  18028. },
  18029. {
  18030. name: "Gigamacro",
  18031. height: math.unit(5, "km")
  18032. },
  18033. {
  18034. name: "Cosmic",
  18035. height: math.unit(2.5e6, "miles")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/hanzo/front.svg",
  18048. extra: 374 / 344,
  18049. bottom: 0.02
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(8, "feet"),
  18057. default: true
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(7, "feet"),
  18066. weight: math.unit(130, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/anna/front.svg",
  18070. extra: 169 / 145,
  18071. bottom: 0.06
  18072. }
  18073. },
  18074. full: {
  18075. height: math.unit(4.96, "feet"),
  18076. weight: math.unit(220, "lb"),
  18077. name: "Full",
  18078. image: {
  18079. source: "./media/characters/anna/full.svg",
  18080. extra: 138 / 114,
  18081. bottom: 0.15
  18082. }
  18083. },
  18084. tongue: {
  18085. height: math.unit(2.53, "feet"),
  18086. name: "Tongue",
  18087. image: {
  18088. source: "./media/characters/anna/tongue.svg"
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(7, "feet"),
  18096. default: true
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18102. {
  18103. front: {
  18104. height: math.unit(7, "feet"),
  18105. weight: math.unit(150, "lb"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/ian-corvid/front.svg",
  18109. extra: 150 / 142,
  18110. bottom: 0.02
  18111. }
  18112. },
  18113. back: {
  18114. height: math.unit(7, "feet"),
  18115. weight: math.unit(150, "lb"),
  18116. name: "Back",
  18117. image: {
  18118. source: "./media/characters/ian-corvid/back.svg",
  18119. extra: 150 / 143,
  18120. bottom: 0.01
  18121. }
  18122. },
  18123. stomping: {
  18124. height: math.unit(7, "feet"),
  18125. weight: math.unit(150, "lb"),
  18126. name: "Stomping",
  18127. image: {
  18128. source: "./media/characters/ian-corvid/stomping.svg",
  18129. extra: 76 / 72
  18130. }
  18131. },
  18132. sitting: {
  18133. height: math.unit(7 / 1.8, "feet"),
  18134. weight: math.unit(150, "lb"),
  18135. name: "Sitting",
  18136. image: {
  18137. source: "./media/characters/ian-corvid/sitting.svg",
  18138. extra: 1400 / 1269,
  18139. bottom: 0.15
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Tiny Microw",
  18146. height: math.unit(1, "inch")
  18147. },
  18148. {
  18149. name: "Microw",
  18150. height: math.unit(6, "inches")
  18151. },
  18152. {
  18153. name: "Crow",
  18154. height: math.unit(7 + 1 / 12, "feet"),
  18155. default: true
  18156. },
  18157. {
  18158. name: "Macrow",
  18159. height: math.unit(176, "feet")
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18165. {
  18166. front: {
  18167. height: math.unit(5 + 7 / 12, "feet"),
  18168. weight: math.unit(147, "lb"),
  18169. name: "Front",
  18170. image: {
  18171. source: "./media/characters/natalie-kellon/front.svg",
  18172. extra: 1214 / 1141,
  18173. bottom: 0.02
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Micro",
  18180. height: math.unit(1 / 16, "inch")
  18181. },
  18182. {
  18183. name: "Tiny",
  18184. height: math.unit(4, "inches")
  18185. },
  18186. {
  18187. name: "Normal",
  18188. height: math.unit(5 + 7 / 12, "feet"),
  18189. default: true
  18190. },
  18191. {
  18192. name: "Amazon",
  18193. height: math.unit(12, "feet")
  18194. },
  18195. {
  18196. name: "Giantess",
  18197. height: math.unit(160, "meters")
  18198. },
  18199. {
  18200. name: "Titaness",
  18201. height: math.unit(800, "meters")
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(6, "feet"),
  18210. weight: math.unit(150, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/alluria/front.svg",
  18214. extra: 806 / 738,
  18215. bottom: 0.01
  18216. }
  18217. },
  18218. side: {
  18219. height: math.unit(6, "feet"),
  18220. weight: math.unit(150, "lb"),
  18221. name: "Side",
  18222. image: {
  18223. source: "./media/characters/alluria/side.svg",
  18224. extra: 800 / 750,
  18225. }
  18226. },
  18227. back: {
  18228. height: math.unit(6, "feet"),
  18229. weight: math.unit(150, "lb"),
  18230. name: "Back",
  18231. image: {
  18232. source: "./media/characters/alluria/back.svg",
  18233. extra: 806 / 738,
  18234. }
  18235. },
  18236. frontMaid: {
  18237. height: math.unit(6, "feet"),
  18238. weight: math.unit(150, "lb"),
  18239. name: "Front (Maid)",
  18240. image: {
  18241. source: "./media/characters/alluria/front-maid.svg",
  18242. extra: 806 / 738,
  18243. bottom: 0.01
  18244. }
  18245. },
  18246. sideMaid: {
  18247. height: math.unit(6, "feet"),
  18248. weight: math.unit(150, "lb"),
  18249. name: "Side (Maid)",
  18250. image: {
  18251. source: "./media/characters/alluria/side-maid.svg",
  18252. extra: 800 / 750,
  18253. bottom: 0.005
  18254. }
  18255. },
  18256. backMaid: {
  18257. height: math.unit(6, "feet"),
  18258. weight: math.unit(150, "lb"),
  18259. name: "Back (Maid)",
  18260. image: {
  18261. source: "./media/characters/alluria/back-maid.svg",
  18262. extra: 806 / 738,
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Micro",
  18269. height: math.unit(6, "inches"),
  18270. default: true
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(6, "feet"),
  18279. weight: math.unit(150, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/kyle/front.svg",
  18283. extra: 1069 / 962,
  18284. bottom: 77.228 / 1727.45
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Macro",
  18291. height: math.unit(150, "feet"),
  18292. default: true
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(6, "feet"),
  18301. weight: math.unit(300, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/duncan/front.svg",
  18305. extra: 1650 / 1482,
  18306. bottom: 0.05
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Macro",
  18313. height: math.unit(100, "feet"),
  18314. default: true
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(5 + 4 / 12, "feet"),
  18323. weight: math.unit(220, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/memory/front.svg",
  18327. extra: 3641 / 3545,
  18328. bottom: 0.03
  18329. }
  18330. },
  18331. back: {
  18332. height: math.unit(5 + 4 / 12, "feet"),
  18333. weight: math.unit(220, "lb"),
  18334. name: "Back",
  18335. image: {
  18336. source: "./media/characters/memory/back.svg",
  18337. extra: 3641 / 3545,
  18338. bottom: 0.025
  18339. }
  18340. },
  18341. frontSkirt: {
  18342. height: math.unit(5 + 4 / 12, "feet"),
  18343. weight: math.unit(220, "lb"),
  18344. name: "Front (Skirt)",
  18345. image: {
  18346. source: "./media/characters/memory/front-skirt.svg",
  18347. extra: 3641 / 3545,
  18348. bottom: 0.03
  18349. }
  18350. },
  18351. frontDress: {
  18352. height: math.unit(5 + 4 / 12, "feet"),
  18353. weight: math.unit(220, "lb"),
  18354. name: "Front (Dress)",
  18355. image: {
  18356. source: "./media/characters/memory/front-dress.svg",
  18357. extra: 3641 / 3545,
  18358. bottom: 0.03
  18359. }
  18360. },
  18361. },
  18362. [
  18363. {
  18364. name: "Micro",
  18365. height: math.unit(6, "inches"),
  18366. default: true
  18367. },
  18368. {
  18369. name: "Normal",
  18370. height: math.unit(5 + 4 / 12, "feet")
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(4 + 11 / 12, "feet"),
  18379. weight: math.unit(100, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/luno/front.svg",
  18383. extra: 1535 / 1487,
  18384. bottom: 0.03
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Micro",
  18391. height: math.unit(3, "inches")
  18392. },
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(4 + 11 / 12, "feet"),
  18396. default: true
  18397. },
  18398. {
  18399. name: "Macro",
  18400. height: math.unit(300, "feet")
  18401. },
  18402. {
  18403. name: "Megamacro",
  18404. height: math.unit(700, "miles")
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18410. {
  18411. front: {
  18412. height: math.unit(6 + 2 / 12, "feet"),
  18413. weight: math.unit(170, "lb"),
  18414. name: "Front",
  18415. image: {
  18416. source: "./media/characters/jamesy/front.svg",
  18417. extra: 440 / 382,
  18418. bottom: 0.005
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Micro",
  18425. height: math.unit(3, "inches")
  18426. },
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(6 + 2 / 12, "feet"),
  18430. default: true
  18431. },
  18432. {
  18433. name: "Macro",
  18434. height: math.unit(300, "feet")
  18435. },
  18436. {
  18437. name: "Megamacro",
  18438. height: math.unit(700, "miles")
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(6, "feet"),
  18447. weight: math.unit(160, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/mark/front.svg",
  18451. extra: 3300 / 3100,
  18452. bottom: 136.42 / 3440.47
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(120, "meters")
  18460. },
  18461. {
  18462. name: "Bigger Macro",
  18463. height: math.unit(350, "meters")
  18464. },
  18465. {
  18466. name: "Megamacro",
  18467. height: math.unit(8, "km"),
  18468. default: true
  18469. },
  18470. {
  18471. name: "Continental",
  18472. height: math.unit(4550, "km")
  18473. },
  18474. {
  18475. name: "Planetary",
  18476. height: math.unit(65000, "km")
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18482. {
  18483. front: {
  18484. height: math.unit(6, "feet"),
  18485. weight: math.unit(400, "lb"),
  18486. name: "Front",
  18487. image: {
  18488. source: "./media/characters/mac/front.svg",
  18489. extra: 1048 / 987.7,
  18490. bottom: 60 / 1107.6,
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(500, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(5 + 2 / 12, "feet"),
  18507. weight: math.unit(190, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/bari/front.svg",
  18511. extra: 3156 / 2880,
  18512. bottom: 0.03
  18513. }
  18514. },
  18515. back: {
  18516. height: math.unit(5 + 2 / 12, "feet"),
  18517. weight: math.unit(190, "lb"),
  18518. name: "Back",
  18519. image: {
  18520. source: "./media/characters/bari/back.svg",
  18521. extra: 3260 / 2834,
  18522. bottom: 0.025
  18523. }
  18524. },
  18525. frontPlush: {
  18526. height: math.unit(5 + 2 / 12, "feet"),
  18527. weight: math.unit(190, "lb"),
  18528. name: "Front (Plush)",
  18529. image: {
  18530. source: "./media/characters/bari/front-plush.svg",
  18531. extra: 1112 / 1061,
  18532. bottom: 0.002
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Micro",
  18539. height: math.unit(3, "inches")
  18540. },
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(5 + 2 / 12, "feet"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Macro",
  18548. height: math.unit(20, "feet")
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(6 + 1 / 12, "feet"),
  18557. weight: math.unit(275, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/hunter-misha-raven/front.svg"
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Mortal",
  18567. height: math.unit(6 + 1 / 12, "feet")
  18568. },
  18569. {
  18570. name: "Divine",
  18571. height: math.unit(1.12134e34, "parsecs"),
  18572. default: true
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18578. {
  18579. front: {
  18580. height: math.unit(6 + 3 / 12, "feet"),
  18581. weight: math.unit(220, "lb"),
  18582. name: "Front",
  18583. image: {
  18584. source: "./media/characters/max-calore/front.svg",
  18585. extra: 1700 / 1648,
  18586. bottom: 0.01
  18587. }
  18588. },
  18589. back: {
  18590. height: math.unit(6 + 3 / 12, "feet"),
  18591. weight: math.unit(220, "lb"),
  18592. name: "Back",
  18593. image: {
  18594. source: "./media/characters/max-calore/back.svg",
  18595. extra: 1700 / 1648,
  18596. bottom: 0.01
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(6 + 3 / 12, "feet"),
  18604. default: true
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18610. {
  18611. side: {
  18612. height: math.unit(2 + 8 / 12, "feet"),
  18613. weight: math.unit(99, "lb"),
  18614. name: "Side",
  18615. image: {
  18616. source: "./media/characters/aspen/side.svg",
  18617. extra: 152 / 138,
  18618. bottom: 0.032
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(2 + 8 / 12, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18632. {
  18633. side: {
  18634. height: math.unit(3 + 2 / 12, "feet"),
  18635. weight: math.unit(224, "lb"),
  18636. name: "Side",
  18637. image: {
  18638. source: "./media/characters/sheila-feral-wolf/side.svg",
  18639. extra: 179 / 166,
  18640. bottom: 0.03
  18641. }
  18642. },
  18643. },
  18644. [
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(3 + 2 / 12, "feet"),
  18648. default: true
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18654. {
  18655. side: {
  18656. height: math.unit(1 + 9 / 12, "feet"),
  18657. weight: math.unit(38, "lb"),
  18658. name: "Side",
  18659. image: {
  18660. source: "./media/characters/michelle/side.svg",
  18661. extra: 147 / 136.7,
  18662. bottom: 0.03
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(1 + 9 / 12, "feet"),
  18670. default: true
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(1.54, "feet"),
  18679. weight: math.unit(50, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/nino/front.svg"
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(1.54, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(1.49, "feet"),
  18699. weight: math.unit(45, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/viola/front.svg"
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(1.49, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(6 + 5 / 12, "feet"),
  18719. weight: math.unit(580, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/atlas/front.svg",
  18723. extra: 298.5 / 290,
  18724. bottom: 0.015
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(6 + 5 / 12, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18738. {
  18739. side: {
  18740. height: math.unit(15.6, "inches"),
  18741. weight: math.unit(10, "lb"),
  18742. name: "Side",
  18743. image: {
  18744. source: "./media/characters/davy/side.svg",
  18745. extra: 200 / 170,
  18746. bottom: 0.01
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(15.6, "inches"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18760. {
  18761. side: {
  18762. height: math.unit(4 + 8 / 12, "feet"),
  18763. weight: math.unit(166, "lb"),
  18764. name: "Side",
  18765. image: {
  18766. source: "./media/characters/fiona/side.svg",
  18767. extra: 232 / 220,
  18768. bottom: 0.03
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(4 + 8 / 12, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18782. {
  18783. front: {
  18784. height: math.unit(26, "inches"),
  18785. weight: math.unit(35, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/lyla/front.svg",
  18789. bottom: 0.1
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(3, "feet"),
  18797. default: true
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18803. {
  18804. side: {
  18805. height: math.unit(1.8, "feet"),
  18806. weight: math.unit(44, "lb"),
  18807. name: "Side",
  18808. image: {
  18809. source: "./media/characters/perseus/side.svg",
  18810. bottom: 0.21
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(1.8, "feet"),
  18818. default: true
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18824. {
  18825. side: {
  18826. height: math.unit(4 + 2 / 12, "feet"),
  18827. weight: math.unit(20, "lb"),
  18828. name: "Side",
  18829. image: {
  18830. source: "./media/characters/remus/side.svg"
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(4 + 2 / 12, "feet"),
  18838. default: true
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18844. {
  18845. front: {
  18846. height: math.unit(4 + 11 / 12, "feet"),
  18847. weight: math.unit(114, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/raf/front.svg",
  18851. extra: 1504/1339,
  18852. bottom: 26/1530
  18853. }
  18854. },
  18855. side: {
  18856. height: math.unit(4 + 11 / 12, "feet"),
  18857. weight: math.unit(114, "lb"),
  18858. name: "Side",
  18859. image: {
  18860. source: "./media/characters/raf/side.svg",
  18861. extra: 1466/1316,
  18862. bottom: 29/1495
  18863. }
  18864. },
  18865. paw: {
  18866. height: math.unit(1.45, "feet"),
  18867. name: "Paw",
  18868. image: {
  18869. source: "./media/characters/raf/paw.svg"
  18870. },
  18871. extraAttributes: {
  18872. "toeSize": {
  18873. name: "Toe Size",
  18874. power: 2,
  18875. type: "area",
  18876. base: math.unit(0.004, "m^2")
  18877. },
  18878. "padSize": {
  18879. name: "Pad Size",
  18880. power: 2,
  18881. type: "area",
  18882. base: math.unit(0.04, "m^2")
  18883. },
  18884. "footSize": {
  18885. name: "Foot Size",
  18886. power: 2,
  18887. type: "area",
  18888. base: math.unit(0.08, "m^2")
  18889. },
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Micro",
  18896. height: math.unit(2, "inches")
  18897. },
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(4 + 11 / 12, "feet"),
  18901. default: true
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(70, "feet")
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(1.5, "meters"),
  18914. weight: math.unit(68, "kg"),
  18915. name: "Front",
  18916. image: {
  18917. source: "./media/characters/liam-einarr/front.svg",
  18918. extra: 2822 / 2666
  18919. }
  18920. },
  18921. back: {
  18922. height: math.unit(1.5, "meters"),
  18923. weight: math.unit(68, "kg"),
  18924. name: "Back",
  18925. image: {
  18926. source: "./media/characters/liam-einarr/back.svg",
  18927. extra: 2822 / 2666,
  18928. bottom: 0.015
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(1.5, "meters"),
  18936. default: true
  18937. },
  18938. {
  18939. name: "Macro",
  18940. height: math.unit(150, "meters")
  18941. },
  18942. {
  18943. name: "Megamacro",
  18944. height: math.unit(35, "km")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(6, "feet"),
  18953. weight: math.unit(75, "kg"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/linda/front.svg",
  18957. extra: 930 / 874,
  18958. bottom: 0.004
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(6, "feet"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(6 + 8 / 12, "feet"),
  18975. weight: math.unit(220, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/caylex/front.svg",
  18979. extra: 821 / 772,
  18980. bottom: 0.07
  18981. }
  18982. },
  18983. back: {
  18984. height: math.unit(6 + 8 / 12, "feet"),
  18985. weight: math.unit(220, "lb"),
  18986. name: "Back",
  18987. image: {
  18988. source: "./media/characters/caylex/back.svg",
  18989. extra: 821 / 772,
  18990. bottom: 0.022
  18991. }
  18992. },
  18993. hand: {
  18994. height: math.unit(1.25, "feet"),
  18995. name: "Hand",
  18996. image: {
  18997. source: "./media/characters/caylex/hand.svg"
  18998. }
  18999. },
  19000. foot: {
  19001. height: math.unit(1.6, "feet"),
  19002. name: "Foot",
  19003. image: {
  19004. source: "./media/characters/caylex/foot.svg"
  19005. }
  19006. },
  19007. armored: {
  19008. height: math.unit(6 + 8 / 12, "feet"),
  19009. weight: math.unit(250, "lb"),
  19010. name: "Armored",
  19011. image: {
  19012. source: "./media/characters/caylex/armored.svg",
  19013. extra: 1420 / 1310,
  19014. bottom: 0.045
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(6 + 8 / 12, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Normal+",
  19026. height: math.unit(12, "feet")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(7 + 6 / 12, "feet"),
  19035. weight: math.unit(288, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/alana/front.svg",
  19039. extra: 679 / 653,
  19040. bottom: 22.5 / 701
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(7 + 6 / 12, "feet")
  19048. },
  19049. {
  19050. name: "Large",
  19051. height: math.unit(50, "feet")
  19052. },
  19053. {
  19054. name: "Macro",
  19055. height: math.unit(100, "feet"),
  19056. default: true
  19057. },
  19058. {
  19059. name: "Macro+",
  19060. height: math.unit(200, "feet")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(6 + 1 / 12, "feet"),
  19069. weight: math.unit(210, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/hasani/front.svg",
  19073. extra: 244 / 232,
  19074. bottom: 0.01
  19075. }
  19076. },
  19077. back: {
  19078. height: math.unit(6 + 1 / 12, "feet"),
  19079. weight: math.unit(210, "lb"),
  19080. name: "Back",
  19081. image: {
  19082. source: "./media/characters/hasani/back.svg",
  19083. extra: 244 / 232,
  19084. bottom: 0.01
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(6 + 1 / 12, "feet")
  19092. },
  19093. {
  19094. name: "Macro",
  19095. height: math.unit(175, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(1.82, "meters"),
  19105. weight: math.unit(140, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/nita/front.svg",
  19109. extra: 2473 / 2363,
  19110. bottom: 0.01
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(1.82, "m")
  19118. },
  19119. {
  19120. name: "Macro",
  19121. height: math.unit(300, "m")
  19122. },
  19123. {
  19124. name: "Mistake Canon",
  19125. height: math.unit(0.5, "miles"),
  19126. default: true
  19127. },
  19128. {
  19129. name: "Big Mistake",
  19130. height: math.unit(13, "miles")
  19131. },
  19132. {
  19133. name: "Playing God",
  19134. height: math.unit(2450, "miles")
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19140. {
  19141. front: {
  19142. height: math.unit(4, "feet"),
  19143. weight: math.unit(120, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/shiriko/front.svg",
  19147. extra: 970/934,
  19148. bottom: 5/975
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(4, "feet"),
  19156. default: true
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19162. {
  19163. front: {
  19164. height: math.unit(6, "feet"),
  19165. name: "front",
  19166. image: {
  19167. source: "./media/characters/deja/front.svg",
  19168. extra: 926 / 840,
  19169. bottom: 0.07
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Planck Length",
  19176. height: math.unit(1.6e-35, "meters")
  19177. },
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(30.48, "meters"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "Universal",
  19185. height: math.unit(8.8e26, "meters")
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19191. {
  19192. side: {
  19193. height: math.unit(8, "feet"),
  19194. weight: math.unit(6300, "lb"),
  19195. name: "Side",
  19196. image: {
  19197. source: "./media/characters/anima/side.svg",
  19198. bottom: 0.035
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(8, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(8, "feet"),
  19215. weight: math.unit(350, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/bianca/front.svg",
  19219. extra: 234 / 225,
  19220. bottom: 0.03
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Normal",
  19227. height: math.unit(8, "feet"),
  19228. default: true
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19234. {
  19235. front: {
  19236. height: math.unit(11 + 5/12, "feet"),
  19237. weight: math.unit(1200, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/adinia/front.svg",
  19241. extra: 1767/1641,
  19242. bottom: 44/1811
  19243. },
  19244. extraAttributes: {
  19245. "energyIntake": {
  19246. name: "Energy Intake",
  19247. power: 3,
  19248. type: "energy",
  19249. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19250. },
  19251. }
  19252. },
  19253. back: {
  19254. height: math.unit(11 + 5/12, "feet"),
  19255. weight: math.unit(1200, "lb"),
  19256. name: "Back",
  19257. image: {
  19258. source: "./media/characters/adinia/back.svg",
  19259. extra: 1834/1684,
  19260. bottom: 14/1848
  19261. },
  19262. extraAttributes: {
  19263. "energyIntake": {
  19264. name: "Energy Intake",
  19265. power: 3,
  19266. type: "energy",
  19267. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19268. },
  19269. }
  19270. },
  19271. maw: {
  19272. height: math.unit(3.79, "feet"),
  19273. name: "Maw",
  19274. image: {
  19275. source: "./media/characters/adinia/maw.svg"
  19276. }
  19277. },
  19278. rump: {
  19279. height: math.unit(4.6, "feet"),
  19280. name: "Rump",
  19281. image: {
  19282. source: "./media/characters/adinia/rump.svg"
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(11 + 5 / 12, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(3, "meters"),
  19299. weight: math.unit(200, "kg"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/lykasa/front.svg",
  19303. extra: 1076 / 976,
  19304. bottom: 0.06
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(3, "meters")
  19312. },
  19313. {
  19314. name: "Kaiju",
  19315. height: math.unit(120, "meters"),
  19316. default: true
  19317. },
  19318. {
  19319. name: "Mega Kaiju",
  19320. height: math.unit(240, "km")
  19321. },
  19322. {
  19323. name: "Giga Kaiju",
  19324. height: math.unit(400, "megameters")
  19325. },
  19326. {
  19327. name: "Tera Kaiju",
  19328. height: math.unit(800, "gigameters")
  19329. },
  19330. {
  19331. name: "Kaiju Dragon Goddess",
  19332. height: math.unit(26, "zettaparsecs")
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19338. {
  19339. side: {
  19340. height: math.unit(283 / 124 * 6, "feet"),
  19341. weight: math.unit(35000, "lb"),
  19342. name: "Side",
  19343. image: {
  19344. source: "./media/characters/malfaren/side.svg",
  19345. extra: 1310/529,
  19346. bottom: 24/1334
  19347. }
  19348. },
  19349. front: {
  19350. height: math.unit(22.36, "feet"),
  19351. weight: math.unit(35000, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/malfaren/front.svg",
  19355. extra: 1237/1115,
  19356. bottom: 32/1269
  19357. }
  19358. },
  19359. maw: {
  19360. height: math.unit(6.9, "feet"),
  19361. name: "Maw",
  19362. image: {
  19363. source: "./media/characters/malfaren/maw.svg"
  19364. }
  19365. },
  19366. dick: {
  19367. height: math.unit(6.19, "feet"),
  19368. name: "Dick",
  19369. image: {
  19370. source: "./media/characters/malfaren/dick.svg"
  19371. }
  19372. },
  19373. eye: {
  19374. height: math.unit(0.69, "feet"),
  19375. name: "Eye",
  19376. image: {
  19377. source: "./media/characters/malfaren/eye.svg"
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Big",
  19384. height: math.unit(283 / 162 * 6, "feet"),
  19385. },
  19386. {
  19387. name: "Bigger",
  19388. height: math.unit(283 / 124 * 6, "feet")
  19389. },
  19390. {
  19391. name: "Massive",
  19392. height: math.unit(283 / 92 * 6, "feet"),
  19393. default: true
  19394. },
  19395. {
  19396. name: "👀💦",
  19397. height: math.unit(283 / 73 * 6, "feet"),
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19403. {
  19404. front: {
  19405. height: math.unit(1.7, "m"),
  19406. weight: math.unit(70, "kg"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/kernel/front.svg",
  19410. extra: 222 / 210,
  19411. bottom: 0.007
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Nano",
  19418. height: math.unit(17, "micrometers")
  19419. },
  19420. {
  19421. name: "Micro",
  19422. height: math.unit(1.7, "mm")
  19423. },
  19424. {
  19425. name: "Small",
  19426. height: math.unit(1.7, "cm")
  19427. },
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(1.7, "m"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(1.75, "meters"),
  19440. weight: math.unit(65, "kg"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/jayne-folest/front.svg",
  19444. extra: 2115 / 2007,
  19445. bottom: 0.02
  19446. }
  19447. },
  19448. back: {
  19449. height: math.unit(1.75, "meters"),
  19450. weight: math.unit(65, "kg"),
  19451. name: "Back",
  19452. image: {
  19453. source: "./media/characters/jayne-folest/back.svg",
  19454. extra: 2115 / 2007,
  19455. bottom: 0.005
  19456. }
  19457. },
  19458. frontClothed: {
  19459. height: math.unit(1.75, "meters"),
  19460. weight: math.unit(65, "kg"),
  19461. name: "Front (Clothed)",
  19462. image: {
  19463. source: "./media/characters/jayne-folest/front-clothed.svg",
  19464. extra: 2115 / 2007,
  19465. bottom: 0.035
  19466. }
  19467. },
  19468. hand: {
  19469. height: math.unit(1 / 1.260, "feet"),
  19470. name: "Hand",
  19471. image: {
  19472. source: "./media/characters/jayne-folest/hand.svg"
  19473. }
  19474. },
  19475. foot: {
  19476. height: math.unit(1 / 0.918, "feet"),
  19477. name: "Foot",
  19478. image: {
  19479. source: "./media/characters/jayne-folest/foot.svg"
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Micro",
  19486. height: math.unit(4, "cm")
  19487. },
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(1.75, "meters")
  19491. },
  19492. {
  19493. name: "Macro",
  19494. height: math.unit(47.5, "meters"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(180, "cm"),
  19504. weight: math.unit(70, "kg"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/algier/front.svg",
  19508. extra: 596 / 572,
  19509. bottom: 0.04
  19510. }
  19511. },
  19512. back: {
  19513. height: math.unit(180, "cm"),
  19514. weight: math.unit(70, "kg"),
  19515. name: "Back",
  19516. image: {
  19517. source: "./media/characters/algier/back.svg",
  19518. extra: 596 / 572,
  19519. bottom: 0.025
  19520. }
  19521. },
  19522. frontdressed: {
  19523. height: math.unit(180, "cm"),
  19524. weight: math.unit(150, "kg"),
  19525. name: "Front-dressed",
  19526. image: {
  19527. source: "./media/characters/algier/front-dressed.svg",
  19528. extra: 596 / 572,
  19529. bottom: 0.038
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Micro",
  19536. height: math.unit(5, "cm")
  19537. },
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(180, "cm"),
  19541. default: true
  19542. },
  19543. {
  19544. name: "Macro",
  19545. height: math.unit(64, "m")
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19551. {
  19552. upright: {
  19553. height: math.unit(7, "feet"),
  19554. weight: math.unit(300, "lb"),
  19555. name: "Upright",
  19556. image: {
  19557. source: "./media/characters/pretzel/upright.svg",
  19558. extra: 534 / 522,
  19559. bottom: 0.065
  19560. }
  19561. },
  19562. sprawling: {
  19563. height: math.unit(3.75, "feet"),
  19564. weight: math.unit(300, "lb"),
  19565. name: "Sprawling",
  19566. image: {
  19567. source: "./media/characters/pretzel/sprawling.svg",
  19568. extra: 314 / 281,
  19569. bottom: 0.1
  19570. }
  19571. },
  19572. tongue: {
  19573. height: math.unit(2, "feet"),
  19574. name: "Tongue",
  19575. image: {
  19576. source: "./media/characters/pretzel/tongue.svg"
  19577. }
  19578. },
  19579. },
  19580. [
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(7, "feet"),
  19584. default: true
  19585. },
  19586. {
  19587. name: "Oversized",
  19588. height: math.unit(15, "feet")
  19589. },
  19590. {
  19591. name: "Huge",
  19592. height: math.unit(30, "feet")
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(250, "feet")
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19602. {
  19603. sideFront: {
  19604. height: math.unit(5 + 2 / 12, "feet"),
  19605. weight: math.unit(120, "lb"),
  19606. name: "Front Side",
  19607. image: {
  19608. source: "./media/characters/roxi/side-front.svg",
  19609. extra: 2924 / 2717,
  19610. bottom: 0.08
  19611. }
  19612. },
  19613. sideBack: {
  19614. height: math.unit(5 + 2 / 12, "feet"),
  19615. weight: math.unit(120, "lb"),
  19616. name: "Back Side",
  19617. image: {
  19618. source: "./media/characters/roxi/side-back.svg",
  19619. extra: 2904 / 2693,
  19620. bottom: 0.06
  19621. }
  19622. },
  19623. front: {
  19624. height: math.unit(5 + 2 / 12, "feet"),
  19625. weight: math.unit(120, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/roxi/front.svg",
  19629. extra: 2028 / 1907,
  19630. bottom: 0.01
  19631. }
  19632. },
  19633. frontAlt: {
  19634. height: math.unit(5 + 2 / 12, "feet"),
  19635. weight: math.unit(120, "lb"),
  19636. name: "Front (Alt)",
  19637. image: {
  19638. source: "./media/characters/roxi/front-alt.svg",
  19639. extra: 1828 / 1798,
  19640. bottom: 0.01
  19641. }
  19642. },
  19643. sitting: {
  19644. height: math.unit(2.8, "feet"),
  19645. weight: math.unit(120, "lb"),
  19646. name: "Sitting",
  19647. image: {
  19648. source: "./media/characters/roxi/sitting.svg",
  19649. extra: 2660 / 2462,
  19650. bottom: 0.1
  19651. }
  19652. },
  19653. },
  19654. [
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(5 + 2 / 12, "feet"),
  19658. default: true
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19664. {
  19665. side: {
  19666. height: math.unit(55, "feet"),
  19667. weight: math.unit(153, "tons"),
  19668. name: "Side",
  19669. image: {
  19670. source: "./media/characters/shadow/side.svg",
  19671. extra: 701 / 628,
  19672. bottom: 0.02
  19673. }
  19674. },
  19675. flying: {
  19676. height: math.unit(145, "feet"),
  19677. weight: math.unit(153, "tons"),
  19678. name: "Flying",
  19679. image: {
  19680. source: "./media/characters/shadow/flying.svg"
  19681. }
  19682. },
  19683. },
  19684. [
  19685. {
  19686. name: "Normal",
  19687. height: math.unit(55, "feet"),
  19688. default: true
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19694. {
  19695. front: {
  19696. height: math.unit(6, "feet"),
  19697. weight: math.unit(200, "lb"),
  19698. name: "Front",
  19699. image: {
  19700. source: "./media/characters/marcie/front.svg",
  19701. extra: 960 / 876,
  19702. bottom: 58 / 1017.87
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Macro",
  19709. height: math.unit(1, "mile"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19716. {
  19717. front: {
  19718. height: math.unit(7, "feet"),
  19719. weight: math.unit(200, "lb"),
  19720. name: "Front",
  19721. image: {
  19722. source: "./media/characters/kachina/front.svg",
  19723. extra: 1290.68 / 1119,
  19724. bottom: 36.5 / 1327.18
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(7, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19738. {
  19739. looking: {
  19740. height: math.unit(2, "meters"),
  19741. weight: math.unit(300, "kg"),
  19742. name: "Looking",
  19743. image: {
  19744. source: "./media/characters/kash/looking.svg",
  19745. extra: 474 / 344,
  19746. bottom: 0.03
  19747. }
  19748. },
  19749. side: {
  19750. height: math.unit(2, "meters"),
  19751. weight: math.unit(300, "kg"),
  19752. name: "Side",
  19753. image: {
  19754. source: "./media/characters/kash/side.svg",
  19755. extra: 302 / 251,
  19756. bottom: 0.03
  19757. }
  19758. },
  19759. front: {
  19760. height: math.unit(2, "meters"),
  19761. weight: math.unit(300, "kg"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/kash/front.svg",
  19765. extra: 495 / 360,
  19766. bottom: 0.015
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(2, "meters"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Big",
  19778. height: math.unit(3, "meters")
  19779. },
  19780. {
  19781. name: "Large",
  19782. height: math.unit(5, "meters")
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19788. {
  19789. feeding: {
  19790. height: math.unit(6.7, "feet"),
  19791. weight: math.unit(350, "lb"),
  19792. name: "Feeding",
  19793. image: {
  19794. source: "./media/characters/lalim/feeding.svg",
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(6.7, "feet"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19808. {
  19809. front: {
  19810. height: math.unit(9.5, "feet"),
  19811. weight: math.unit(600, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/de'vout/front.svg",
  19815. extra: 1443 / 1328,
  19816. bottom: 0.025
  19817. }
  19818. },
  19819. back: {
  19820. height: math.unit(9.5, "feet"),
  19821. weight: math.unit(600, "lb"),
  19822. name: "Back",
  19823. image: {
  19824. source: "./media/characters/de'vout/back.svg",
  19825. extra: 1443 / 1328
  19826. }
  19827. },
  19828. frontDressed: {
  19829. height: math.unit(9.5, "feet"),
  19830. weight: math.unit(600, "lb"),
  19831. name: "Front (Dressed",
  19832. image: {
  19833. source: "./media/characters/de'vout/front-dressed.svg",
  19834. extra: 1443 / 1328,
  19835. bottom: 0.025
  19836. }
  19837. },
  19838. backDressed: {
  19839. height: math.unit(9.5, "feet"),
  19840. weight: math.unit(600, "lb"),
  19841. name: "Back (Dressed",
  19842. image: {
  19843. source: "./media/characters/de'vout/back-dressed.svg",
  19844. extra: 1443 / 1328
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(9.5, "feet"),
  19852. default: true
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19858. {
  19859. front: {
  19860. height: math.unit(8, "feet"),
  19861. weight: math.unit(225, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/talana/front.svg",
  19865. extra: 1410 / 1300,
  19866. bottom: 0.015
  19867. }
  19868. },
  19869. frontDressed: {
  19870. height: math.unit(8, "feet"),
  19871. weight: math.unit(225, "lb"),
  19872. name: "Front (Dressed",
  19873. image: {
  19874. source: "./media/characters/talana/front-dressed.svg",
  19875. extra: 1410 / 1300,
  19876. bottom: 0.015
  19877. }
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(8, "feet"),
  19884. default: true
  19885. },
  19886. ]
  19887. ))
  19888. characterMakers.push(() => makeCharacter(
  19889. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19890. {
  19891. side: {
  19892. height: math.unit(7.2, "feet"),
  19893. weight: math.unit(150, "lb"),
  19894. name: "Side",
  19895. image: {
  19896. source: "./media/characters/xeauvok/side.svg",
  19897. extra: 1975 / 1523,
  19898. bottom: 0.07
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Normal",
  19905. height: math.unit(7.2, "feet"),
  19906. default: true
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19912. {
  19913. side: {
  19914. height: math.unit(4, "meters"),
  19915. weight: math.unit(2200, "kg"),
  19916. name: "Side",
  19917. image: {
  19918. source: "./media/characters/zara/side.svg",
  19919. extra: 765/744,
  19920. bottom: 156/921
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(4, "meters"),
  19928. default: true
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19934. {
  19935. side: {
  19936. height: math.unit(6, "feet"),
  19937. weight: math.unit(150, "lb"),
  19938. name: "Side",
  19939. image: {
  19940. source: "./media/characters/richard-dragon/side.svg",
  19941. extra: 845 / 340,
  19942. bottom: 0.017
  19943. }
  19944. },
  19945. maw: {
  19946. height: math.unit(2.97, "feet"),
  19947. name: "Maw",
  19948. image: {
  19949. source: "./media/characters/richard-dragon/maw.svg"
  19950. }
  19951. },
  19952. },
  19953. [
  19954. ]
  19955. ))
  19956. characterMakers.push(() => makeCharacter(
  19957. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19958. {
  19959. front: {
  19960. height: math.unit(4, "feet"),
  19961. weight: math.unit(100, "lb"),
  19962. name: "Front",
  19963. image: {
  19964. source: "./media/characters/richard-smeargle/front.svg",
  19965. extra: 2952 / 2820,
  19966. bottom: 0.028
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(4, "feet"),
  19974. default: true
  19975. },
  19976. {
  19977. name: "Dynamax",
  19978. height: math.unit(20, "meters")
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(6, "feet"),
  19987. weight: math.unit(110, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/klay/front.svg",
  19991. extra: 962 / 883,
  19992. bottom: 0.04
  19993. }
  19994. },
  19995. back: {
  19996. height: math.unit(6, "feet"),
  19997. weight: math.unit(110, "lb"),
  19998. name: "Back",
  19999. image: {
  20000. source: "./media/characters/klay/back.svg",
  20001. extra: 962 / 883
  20002. }
  20003. },
  20004. beans: {
  20005. height: math.unit(1.15, "feet"),
  20006. name: "Beans",
  20007. image: {
  20008. source: "./media/characters/klay/beans.svg"
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Micro",
  20015. height: math.unit(6, "inches")
  20016. },
  20017. {
  20018. name: "Mini",
  20019. height: math.unit(3, "feet")
  20020. },
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(6, "feet"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Big",
  20028. height: math.unit(25, "feet")
  20029. },
  20030. {
  20031. name: "Macro",
  20032. height: math.unit(100, "feet")
  20033. },
  20034. {
  20035. name: "Megamacro",
  20036. height: math.unit(400, "feet")
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(6, "feet"),
  20045. weight: math.unit(160, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/marcus/front.svg",
  20049. extra: 734 / 676,
  20050. bottom: 0.03
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Little",
  20057. height: math.unit(6, "feet")
  20058. },
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(110, "feet"),
  20062. default: true
  20063. },
  20064. {
  20065. name: "Macro",
  20066. height: math.unit(250, "feet")
  20067. },
  20068. {
  20069. name: "Megamacro",
  20070. height: math.unit(1000, "feet")
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(7, "feet"),
  20079. weight: math.unit(275, "lb"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/claude-delroute/front.svg",
  20083. extra: 902/827,
  20084. bottom: 26/928
  20085. }
  20086. },
  20087. side: {
  20088. height: math.unit(7, "feet"),
  20089. weight: math.unit(275, "lb"),
  20090. name: "Side",
  20091. image: {
  20092. source: "./media/characters/claude-delroute/side.svg",
  20093. extra: 908/853,
  20094. bottom: 16/924
  20095. }
  20096. },
  20097. back: {
  20098. height: math.unit(7, "feet"),
  20099. weight: math.unit(275, "lb"),
  20100. name: "Back",
  20101. image: {
  20102. source: "./media/characters/claude-delroute/back.svg",
  20103. extra: 911/829,
  20104. bottom: 18/929
  20105. }
  20106. },
  20107. maw: {
  20108. height: math.unit(0.6407, "meters"),
  20109. name: "Maw",
  20110. image: {
  20111. source: "./media/characters/claude-delroute/maw.svg"
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(7, "feet"),
  20119. default: true
  20120. },
  20121. {
  20122. name: "Lorge",
  20123. height: math.unit(20, "feet")
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(8 + 4 / 12, "feet"),
  20132. weight: math.unit(600, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/dragonien/front.svg",
  20136. extra: 100 / 94,
  20137. bottom: 3.3 / 103.3445
  20138. }
  20139. },
  20140. back: {
  20141. height: math.unit(8 + 4 / 12, "feet"),
  20142. weight: math.unit(600, "lb"),
  20143. name: "Back",
  20144. image: {
  20145. source: "./media/characters/dragonien/back.svg",
  20146. extra: 776 / 746,
  20147. bottom: 6.4 / 782.0616
  20148. }
  20149. },
  20150. foot: {
  20151. height: math.unit(1.54, "feet"),
  20152. name: "Foot",
  20153. image: {
  20154. source: "./media/characters/dragonien/foot.svg",
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(8 + 4 / 12, "feet"),
  20162. default: true
  20163. },
  20164. {
  20165. name: "Macro",
  20166. height: math.unit(200, "feet")
  20167. },
  20168. {
  20169. name: "Megamacro",
  20170. height: math.unit(1, "mile")
  20171. },
  20172. {
  20173. name: "Gigamacro",
  20174. height: math.unit(1000, "miles")
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(5 + 2 / 12, "feet"),
  20183. weight: math.unit(110, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/desta/front.svg",
  20187. extra: 767 / 726,
  20188. bottom: 11.7 / 779
  20189. }
  20190. },
  20191. back: {
  20192. height: math.unit(5 + 2 / 12, "feet"),
  20193. weight: math.unit(110, "lb"),
  20194. name: "Back",
  20195. image: {
  20196. source: "./media/characters/desta/back.svg",
  20197. extra: 777 / 728,
  20198. bottom: 6 / 784
  20199. }
  20200. },
  20201. frontAlt: {
  20202. height: math.unit(5 + 2 / 12, "feet"),
  20203. weight: math.unit(110, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/desta/front-alt.svg",
  20207. extra: 1482 / 1417
  20208. }
  20209. },
  20210. side: {
  20211. height: math.unit(5 + 2 / 12, "feet"),
  20212. weight: math.unit(110, "lb"),
  20213. name: "Side",
  20214. image: {
  20215. source: "./media/characters/desta/side.svg",
  20216. extra: 2579 / 2491,
  20217. bottom: 0.053
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Micro",
  20224. height: math.unit(6, "inches")
  20225. },
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(5 + 2 / 12, "feet"),
  20229. default: true
  20230. },
  20231. {
  20232. name: "Macro",
  20233. height: math.unit(62, "feet")
  20234. },
  20235. {
  20236. name: "Megamacro",
  20237. height: math.unit(1800, "feet")
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(10, "feet"),
  20246. weight: math.unit(700, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/storm-alystar/front.svg",
  20250. extra: 2112 / 1898,
  20251. bottom: 0.034
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Micro",
  20258. height: math.unit(3.5, "inches")
  20259. },
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(10, "feet"),
  20263. default: true
  20264. },
  20265. {
  20266. name: "Macro",
  20267. height: math.unit(400, "feet")
  20268. },
  20269. {
  20270. name: "Deific",
  20271. height: math.unit(60, "miles")
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(2.35, "meters"),
  20280. weight: math.unit(119, "kg"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/ilia/front.svg",
  20284. extra: 1285 / 1255,
  20285. bottom: 0.06
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(2.35, "meters")
  20293. },
  20294. {
  20295. name: "Macro",
  20296. height: math.unit(140, "meters"),
  20297. default: true
  20298. },
  20299. {
  20300. name: "Megamacro",
  20301. height: math.unit(100, "miles")
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20307. {
  20308. front: {
  20309. height: math.unit(6 + 5 / 12, "feet"),
  20310. weight: math.unit(190, "lb"),
  20311. name: "Front",
  20312. image: {
  20313. source: "./media/characters/kingdead/front.svg",
  20314. extra: 1228 / 1177
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Micro",
  20321. height: math.unit(7, "inches")
  20322. },
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(6 + 5 / 12, "feet")
  20326. },
  20327. {
  20328. name: "Macro",
  20329. height: math.unit(150, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Megamacro",
  20334. height: math.unit(200, "miles")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(8, "feet"),
  20343. weight: math.unit(600, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/kyrehx/front.svg",
  20347. extra: 1195 / 1095,
  20348. bottom: 0.034
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Micro",
  20355. height: math.unit(2, "inches")
  20356. },
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(8, "feet"),
  20360. default: true
  20361. },
  20362. {
  20363. name: "Macro",
  20364. height: math.unit(255, "feet")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20373. weight: math.unit(184, "lb"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/xang/front.svg",
  20377. extra: 845 / 755
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20385. default: true
  20386. },
  20387. {
  20388. name: "Macro",
  20389. height: math.unit(0.935 * 146, "feet")
  20390. },
  20391. {
  20392. name: "Megamacro",
  20393. height: math.unit(0.935 * 3, "miles")
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20399. {
  20400. frontDressed: {
  20401. height: math.unit(5 + 7 / 12, "feet"),
  20402. weight: math.unit(140, "lb"),
  20403. name: "Front (Dressed)",
  20404. image: {
  20405. source: "./media/characters/doc-weardno/front-dressed.svg",
  20406. extra: 263 / 234
  20407. }
  20408. },
  20409. backDressed: {
  20410. height: math.unit(5 + 7 / 12, "feet"),
  20411. weight: math.unit(140, "lb"),
  20412. name: "Back (Dressed)",
  20413. image: {
  20414. source: "./media/characters/doc-weardno/back-dressed.svg",
  20415. extra: 266 / 238
  20416. }
  20417. },
  20418. front: {
  20419. height: math.unit(5 + 7 / 12, "feet"),
  20420. weight: math.unit(140, "lb"),
  20421. name: "Front",
  20422. image: {
  20423. source: "./media/characters/doc-weardno/front.svg",
  20424. extra: 254 / 233
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Micro",
  20431. height: math.unit(3, "inches")
  20432. },
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(5 + 7 / 12, "feet"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(25, "feet")
  20441. },
  20442. {
  20443. name: "Megamacro",
  20444. height: math.unit(2, "miles")
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20450. {
  20451. front: {
  20452. height: math.unit(6 + 2 / 12, "feet"),
  20453. weight: math.unit(153, "lb"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/seth-whilst/front.svg",
  20457. bottom: 0.07
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Micro",
  20464. height: math.unit(5, "inches")
  20465. },
  20466. {
  20467. name: "Normal",
  20468. height: math.unit(6 + 2 / 12, "feet"),
  20469. default: true
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20475. {
  20476. front: {
  20477. height: math.unit(3, "inches"),
  20478. weight: math.unit(8, "grams"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/pocket-jabari/front.svg",
  20482. extra: 1024 / 974,
  20483. bottom: 0.039
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Minimicro",
  20490. height: math.unit(8, "mm")
  20491. },
  20492. {
  20493. name: "Micro",
  20494. height: math.unit(3, "inches"),
  20495. default: true
  20496. },
  20497. {
  20498. name: "Normal",
  20499. height: math.unit(3, "feet")
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20505. {
  20506. frontDressed: {
  20507. height: math.unit(15, "feet"),
  20508. weight: math.unit(3280, "lb"),
  20509. name: "Front (Dressed)",
  20510. image: {
  20511. source: "./media/characters/sapphy/front-dressed.svg",
  20512. extra: 1951/1654,
  20513. bottom: 194/2145
  20514. },
  20515. form: "anthro",
  20516. default: true
  20517. },
  20518. backDressed: {
  20519. height: math.unit(15, "feet"),
  20520. weight: math.unit(3280, "lb"),
  20521. name: "Back (Dressed)",
  20522. image: {
  20523. source: "./media/characters/sapphy/back-dressed.svg",
  20524. extra: 2058/1918,
  20525. bottom: 125/2183
  20526. },
  20527. form: "anthro"
  20528. },
  20529. frontNude: {
  20530. height: math.unit(15, "feet"),
  20531. weight: math.unit(3280, "lb"),
  20532. name: "Front (Nude)",
  20533. image: {
  20534. source: "./media/characters/sapphy/front-nude.svg",
  20535. extra: 1951/1654,
  20536. bottom: 194/2145
  20537. },
  20538. form: "anthro"
  20539. },
  20540. backNude: {
  20541. height: math.unit(15, "feet"),
  20542. weight: math.unit(3280, "lb"),
  20543. name: "Back (Nude)",
  20544. image: {
  20545. source: "./media/characters/sapphy/back-nude.svg",
  20546. extra: 2058/1918,
  20547. bottom: 125/2183
  20548. },
  20549. form: "anthro"
  20550. },
  20551. full: {
  20552. height: math.unit(15, "feet"),
  20553. weight: math.unit(3280, "lb"),
  20554. name: "Full",
  20555. image: {
  20556. source: "./media/characters/sapphy/full.svg",
  20557. extra: 1396/1317,
  20558. bottom: 44/1440
  20559. },
  20560. form: "anthro"
  20561. },
  20562. dick: {
  20563. height: math.unit(3.8, "feet"),
  20564. name: "Dick",
  20565. image: {
  20566. source: "./media/characters/sapphy/dick.svg"
  20567. },
  20568. form: "anthro"
  20569. },
  20570. feral: {
  20571. height: math.unit(35, "feet"),
  20572. weight: math.unit(160, "tons"),
  20573. name: "Feral",
  20574. image: {
  20575. source: "./media/characters/sapphy/feral.svg",
  20576. extra: 1050/573,
  20577. bottom: 60/1110
  20578. },
  20579. form: "feral",
  20580. default: true
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(15, "feet"),
  20587. form: "anthro"
  20588. },
  20589. {
  20590. name: "Casual Macro",
  20591. height: math.unit(120, "feet"),
  20592. form: "anthro"
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(2150, "feet"),
  20597. default: true,
  20598. form: "anthro"
  20599. },
  20600. {
  20601. name: "Megamacro",
  20602. height: math.unit(8, "miles"),
  20603. form: "anthro"
  20604. },
  20605. {
  20606. name: "Galaxy Mom",
  20607. height: math.unit(6, "megalightyears"),
  20608. form: "anthro"
  20609. },
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(35, "feet"),
  20613. form: "feral",
  20614. default: true
  20615. },
  20616. {
  20617. name: "Macro",
  20618. height: math.unit(300, "feet"),
  20619. form: "feral"
  20620. },
  20621. {
  20622. name: "Galaxy Mom",
  20623. height: math.unit(10, "megalightyears"),
  20624. form: "feral"
  20625. },
  20626. ],
  20627. {
  20628. "anthro": {
  20629. name: "Anthro",
  20630. default: true
  20631. },
  20632. "feral": {
  20633. name: "Feral"
  20634. }
  20635. }
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20639. {
  20640. hyenaFront: {
  20641. height: math.unit(6, "feet"),
  20642. weight: math.unit(190, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/kiro/hyena-front.svg",
  20646. extra: 927/839,
  20647. bottom: 91/1018
  20648. },
  20649. form: "hyena",
  20650. default: true
  20651. },
  20652. front: {
  20653. height: math.unit(6, "feet"),
  20654. weight: math.unit(170, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/kiro/front.svg",
  20658. extra: 1064 / 1012,
  20659. bottom: 0.052
  20660. },
  20661. form: "folf",
  20662. default: true
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Micro",
  20668. height: math.unit(6, "inches"),
  20669. form: "folf"
  20670. },
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(6, "feet"),
  20674. form: "folf",
  20675. default: true
  20676. },
  20677. {
  20678. name: "Macro",
  20679. height: math.unit(72, "feet"),
  20680. form: "folf"
  20681. },
  20682. {
  20683. name: "Micro",
  20684. height: math.unit(6, "inches"),
  20685. form: "hyena"
  20686. },
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(6, "feet"),
  20690. form: "hyena",
  20691. default: true
  20692. },
  20693. {
  20694. name: "Macro",
  20695. height: math.unit(72, "feet"),
  20696. form: "hyena"
  20697. },
  20698. ],
  20699. {
  20700. "hyena": {
  20701. name: "Hyena",
  20702. default: true
  20703. },
  20704. "folf": {
  20705. name: "Folf",
  20706. },
  20707. }
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(5 + 9 / 12, "feet"),
  20714. weight: math.unit(175, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/irishfox/front.svg",
  20718. extra: 1912 / 1680,
  20719. bottom: 0.02
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Nano",
  20726. height: math.unit(1, "mm")
  20727. },
  20728. {
  20729. name: "Micro",
  20730. height: math.unit(2, "inches")
  20731. },
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(5 + 9 / 12, "feet"),
  20735. default: true
  20736. },
  20737. {
  20738. name: "Macro",
  20739. height: math.unit(45, "feet")
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20745. {
  20746. front: {
  20747. height: math.unit(6 + 1 / 12, "feet"),
  20748. weight: math.unit(75, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/aronai-sieyes/front.svg",
  20752. extra: 1532/1450,
  20753. bottom: 42/1574
  20754. }
  20755. },
  20756. side: {
  20757. height: math.unit(6 + 1 / 12, "feet"),
  20758. weight: math.unit(75, "lb"),
  20759. name: "Side",
  20760. image: {
  20761. source: "./media/characters/aronai-sieyes/side.svg",
  20762. extra: 1422/1365,
  20763. bottom: 148/1570
  20764. }
  20765. },
  20766. back: {
  20767. height: math.unit(6 + 1 / 12, "feet"),
  20768. weight: math.unit(75, "lb"),
  20769. name: "Back",
  20770. image: {
  20771. source: "./media/characters/aronai-sieyes/back.svg",
  20772. extra: 1526/1464,
  20773. bottom: 51/1577
  20774. }
  20775. },
  20776. dressed: {
  20777. height: math.unit(6 + 1 / 12, "feet"),
  20778. weight: math.unit(75, "lb"),
  20779. name: "Dressed",
  20780. image: {
  20781. source: "./media/characters/aronai-sieyes/dressed.svg",
  20782. extra: 1559/1483,
  20783. bottom: 39/1598
  20784. }
  20785. },
  20786. slit: {
  20787. height: math.unit(1.3, "feet"),
  20788. name: "Slit",
  20789. image: {
  20790. source: "./media/characters/aronai-sieyes/slit.svg"
  20791. }
  20792. },
  20793. slitSpread: {
  20794. height: math.unit(0.9, "feet"),
  20795. name: "Slit (Spread)",
  20796. image: {
  20797. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20798. }
  20799. },
  20800. rump: {
  20801. height: math.unit(1.3, "feet"),
  20802. name: "Rump",
  20803. image: {
  20804. source: "./media/characters/aronai-sieyes/rump.svg"
  20805. }
  20806. },
  20807. maw: {
  20808. height: math.unit(1.25, "feet"),
  20809. name: "Maw",
  20810. image: {
  20811. source: "./media/characters/aronai-sieyes/maw.svg"
  20812. }
  20813. },
  20814. feral: {
  20815. height: math.unit(18, "feet"),
  20816. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20817. name: "Feral",
  20818. image: {
  20819. source: "./media/characters/aronai-sieyes/feral.svg",
  20820. extra: 1530 / 1240,
  20821. bottom: 0.035
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Micro",
  20828. height: math.unit(2, "inches")
  20829. },
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(6 + 1 / 12, "feet"),
  20833. default: true
  20834. }
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(12, "feet"),
  20842. weight: math.unit(410, "kg"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/xuna/front.svg",
  20846. extra: 2184 / 1980
  20847. }
  20848. },
  20849. side: {
  20850. height: math.unit(12, "feet"),
  20851. weight: math.unit(410, "kg"),
  20852. name: "Side",
  20853. image: {
  20854. source: "./media/characters/xuna/side.svg",
  20855. extra: 2184 / 1980
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(12, "feet"),
  20860. weight: math.unit(410, "kg"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/xuna/back.svg",
  20864. extra: 2184 / 1980
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Nano glow",
  20871. height: math.unit(10, "nm")
  20872. },
  20873. {
  20874. name: "Micro floof",
  20875. height: math.unit(0.3, "m")
  20876. },
  20877. {
  20878. name: "Huggable softy boi",
  20879. height: math.unit(3.6576, "m"),
  20880. default: true
  20881. },
  20882. {
  20883. name: "Admirable floof",
  20884. height: math.unit(80, "meters")
  20885. },
  20886. {
  20887. name: "Gentle macro",
  20888. height: math.unit(300, "meters")
  20889. },
  20890. {
  20891. name: "Very careful floof",
  20892. height: math.unit(3200, "meters")
  20893. },
  20894. {
  20895. name: "The mega floof",
  20896. height: math.unit(36000, "meters")
  20897. },
  20898. {
  20899. name: "Giga-fur-Wicker",
  20900. height: math.unit(4800000, "meters")
  20901. },
  20902. {
  20903. name: "Licky world",
  20904. height: math.unit(20000000, "meters")
  20905. },
  20906. {
  20907. name: "Floofy cyan sun",
  20908. height: math.unit(1500000000, "meters")
  20909. },
  20910. {
  20911. name: "Milky Wicker",
  20912. height: math.unit(1000000000000000000000, "meters")
  20913. },
  20914. {
  20915. name: "The observing Wicker",
  20916. height: math.unit(999999999999999999999999999, "meters")
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(5 + 9 / 12, "feet"),
  20925. weight: math.unit(150, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/arokha-sieyes/front.svg",
  20929. extra: 1425 / 1284,
  20930. bottom: 0.05
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(5 + 9 / 12, "feet")
  20938. },
  20939. {
  20940. name: "Macro",
  20941. height: math.unit(30, "meters"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(6, "feet"),
  20951. weight: math.unit(180, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/arokh-sieyes/front.svg",
  20955. extra: 1830 / 1769,
  20956. bottom: 0.01
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(6, "feet")
  20964. },
  20965. {
  20966. name: "Macro",
  20967. height: math.unit(30, "meters"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20974. {
  20975. side: {
  20976. height: math.unit(13 + 1 / 12, "feet"),
  20977. weight: math.unit(8.5, "tonnes"),
  20978. preyCapacity: math.unit(36, "people"),
  20979. name: "Side",
  20980. image: {
  20981. source: "./media/characters/goldeneye/side.svg",
  20982. extra: 1139/741,
  20983. bottom: 98/1237
  20984. }
  20985. },
  20986. front: {
  20987. height: math.unit(5.1, "feet"),
  20988. weight: math.unit(8.5, "tonnes"),
  20989. preyCapacity: math.unit(36, "people"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/goldeneye/front.svg",
  20993. extra: 635/365,
  20994. bottom: 598/1233
  20995. }
  20996. },
  20997. maw: {
  20998. height: math.unit(6.6, "feet"),
  20999. name: "Maw",
  21000. image: {
  21001. source: "./media/characters/goldeneye/maw.svg"
  21002. }
  21003. },
  21004. headFront: {
  21005. height: math.unit(8, "feet"),
  21006. name: "Head (Front)",
  21007. image: {
  21008. source: "./media/characters/goldeneye/head-front.svg"
  21009. }
  21010. },
  21011. headSide: {
  21012. height: math.unit(6, "feet"),
  21013. name: "Head (Side)",
  21014. image: {
  21015. source: "./media/characters/goldeneye/head-side.svg"
  21016. }
  21017. },
  21018. headBack: {
  21019. height: math.unit(8, "feet"),
  21020. name: "Head (Back)",
  21021. image: {
  21022. source: "./media/characters/goldeneye/head-back.svg"
  21023. }
  21024. },
  21025. paw: {
  21026. height: math.unit(3.4, "feet"),
  21027. name: "Paw",
  21028. image: {
  21029. source: "./media/characters/goldeneye/paw.svg"
  21030. }
  21031. },
  21032. toering: {
  21033. height: math.unit(0.45, "feet"),
  21034. name: "Toering",
  21035. image: {
  21036. source: "./media/characters/goldeneye/toering.svg"
  21037. }
  21038. },
  21039. eyes: {
  21040. height: math.unit(0.5, "feet"),
  21041. name: "Eyes",
  21042. image: {
  21043. source: "./media/characters/goldeneye/eyes.svg"
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(13 + 1 / 12, "feet"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21057. {
  21058. front: {
  21059. height: math.unit(6 + 1 / 12, "feet"),
  21060. weight: math.unit(210, "lb"),
  21061. name: "Front",
  21062. image: {
  21063. source: "./media/characters/leonardo-lycheborne/front.svg",
  21064. extra: 776/723,
  21065. bottom: 34/810
  21066. }
  21067. },
  21068. side: {
  21069. height: math.unit(6 + 1 / 12, "feet"),
  21070. weight: math.unit(210, "lb"),
  21071. name: "Side",
  21072. image: {
  21073. source: "./media/characters/leonardo-lycheborne/side.svg",
  21074. extra: 780/728,
  21075. bottom: 12/792
  21076. }
  21077. },
  21078. back: {
  21079. height: math.unit(6 + 1 / 12, "feet"),
  21080. weight: math.unit(210, "lb"),
  21081. name: "Back",
  21082. image: {
  21083. source: "./media/characters/leonardo-lycheborne/back.svg",
  21084. extra: 775/721,
  21085. bottom: 17/792
  21086. }
  21087. },
  21088. hand: {
  21089. height: math.unit(1.08, "feet"),
  21090. name: "Hand",
  21091. image: {
  21092. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21093. }
  21094. },
  21095. foot: {
  21096. height: math.unit(1.32, "feet"),
  21097. name: "Foot",
  21098. image: {
  21099. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21100. }
  21101. },
  21102. maw: {
  21103. height: math.unit(1, "feet"),
  21104. name: "Maw",
  21105. image: {
  21106. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21107. }
  21108. },
  21109. were: {
  21110. height: math.unit(20, "feet"),
  21111. weight: math.unit(7800, "lb"),
  21112. name: "Were",
  21113. image: {
  21114. source: "./media/characters/leonardo-lycheborne/were.svg",
  21115. extra: 1224/1165,
  21116. bottom: 72/1296
  21117. }
  21118. },
  21119. feral: {
  21120. height: math.unit(7.5, "feet"),
  21121. weight: math.unit(600, "lb"),
  21122. name: "Feral",
  21123. image: {
  21124. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21125. extra: 797/702,
  21126. bottom: 139/936
  21127. }
  21128. },
  21129. taur: {
  21130. height: math.unit(11, "feet"),
  21131. weight: math.unit(3300, "lb"),
  21132. name: "Taur",
  21133. image: {
  21134. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21135. extra: 1271/1197,
  21136. bottom: 47/1318
  21137. }
  21138. },
  21139. barghest: {
  21140. height: math.unit(11, "feet"),
  21141. weight: math.unit(1300, "lb"),
  21142. name: "Barghest",
  21143. image: {
  21144. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21145. extra: 1291/1204,
  21146. bottom: 37/1328
  21147. }
  21148. },
  21149. dick: {
  21150. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21151. name: "Dick",
  21152. image: {
  21153. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21154. }
  21155. },
  21156. dickWere: {
  21157. height: math.unit((20) / 3.8, "feet"),
  21158. name: "Dick (Were)",
  21159. image: {
  21160. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21161. }
  21162. },
  21163. },
  21164. [
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(6 + 1 / 12, "feet"),
  21168. default: true
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(10, "feet"),
  21177. weight: math.unit(350, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/jet/front.svg",
  21181. extra: 2050 / 1980,
  21182. bottom: 0.013
  21183. }
  21184. },
  21185. back: {
  21186. height: math.unit(10, "feet"),
  21187. weight: math.unit(350, "lb"),
  21188. name: "Back",
  21189. image: {
  21190. source: "./media/characters/jet/back.svg",
  21191. extra: 2050 / 1980,
  21192. bottom: 0.013
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Micro",
  21199. height: math.unit(6, "inches")
  21200. },
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(10, "feet"),
  21204. default: true
  21205. },
  21206. {
  21207. name: "Macro",
  21208. height: math.unit(100, "feet")
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(15, "feet"),
  21217. weight: math.unit(2800, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/tanarath/front.svg",
  21221. extra: 2392 / 2220,
  21222. bottom: 0.03
  21223. }
  21224. },
  21225. back: {
  21226. height: math.unit(15, "feet"),
  21227. weight: math.unit(2800, "lb"),
  21228. name: "Back",
  21229. image: {
  21230. source: "./media/characters/tanarath/back.svg",
  21231. extra: 2392 / 2220,
  21232. bottom: 0.03
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(15, "feet"),
  21240. default: true
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(7 + 1 / 12, "feet"),
  21249. weight: math.unit(175, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/patty-cattybatty/front.svg",
  21253. extra: 908 / 874,
  21254. bottom: 0.025
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Micro",
  21261. height: math.unit(1, "inch")
  21262. },
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(7 + 1 / 12, "feet")
  21266. },
  21267. {
  21268. name: "Mini Macro",
  21269. height: math.unit(155, "feet")
  21270. },
  21271. {
  21272. name: "Macro",
  21273. height: math.unit(1077, "feet")
  21274. },
  21275. {
  21276. name: "Mega Macro",
  21277. height: math.unit(47650, "feet"),
  21278. default: true
  21279. },
  21280. {
  21281. name: "Giga Macro",
  21282. height: math.unit(440, "miles")
  21283. },
  21284. {
  21285. name: "Tera Macro",
  21286. height: math.unit(8700, "miles")
  21287. },
  21288. {
  21289. name: "Planetary Macro",
  21290. height: math.unit(32700, "miles")
  21291. },
  21292. {
  21293. name: "Solar Macro",
  21294. height: math.unit(550000, "miles")
  21295. },
  21296. {
  21297. name: "Celestial Macro",
  21298. height: math.unit(2.5, "AU")
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21304. {
  21305. front: {
  21306. height: math.unit(4 + 5 / 12, "feet"),
  21307. weight: math.unit(90, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/cappu/front.svg",
  21311. extra: 1247 / 1152,
  21312. bottom: 0.012
  21313. }
  21314. },
  21315. },
  21316. [
  21317. {
  21318. name: "Normal",
  21319. height: math.unit(4 + 5 / 12, "feet"),
  21320. default: true
  21321. },
  21322. ]
  21323. ))
  21324. characterMakers.push(() => makeCharacter(
  21325. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21326. {
  21327. frontDressed: {
  21328. height: math.unit(70, "cm"),
  21329. weight: math.unit(6, "kg"),
  21330. name: "Front (Dressed)",
  21331. image: {
  21332. source: "./media/characters/sebi/front-dressed.svg",
  21333. extra: 713.5 / 686.5,
  21334. bottom: 0.003
  21335. }
  21336. },
  21337. front: {
  21338. height: math.unit(70, "cm"),
  21339. weight: math.unit(5, "kg"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/sebi/front.svg",
  21343. extra: 713.5 / 686.5,
  21344. bottom: 0.003
  21345. }
  21346. }
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(70, "cm"),
  21352. default: true
  21353. },
  21354. {
  21355. name: "Macro",
  21356. height: math.unit(8, "meters")
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21362. {
  21363. front: {
  21364. height: math.unit(6, "feet"),
  21365. weight: math.unit(150, "lb"),
  21366. name: "Front",
  21367. image: {
  21368. source: "./media/characters/typhek/front.svg",
  21369. extra: 1948 / 1929,
  21370. bottom: 0.025
  21371. }
  21372. },
  21373. side: {
  21374. height: math.unit(6, "feet"),
  21375. weight: math.unit(150, "lb"),
  21376. name: "Side",
  21377. image: {
  21378. source: "./media/characters/typhek/side.svg",
  21379. extra: 2034 / 2010,
  21380. bottom: 0.003
  21381. }
  21382. },
  21383. back: {
  21384. height: math.unit(6, "feet"),
  21385. weight: math.unit(150, "lb"),
  21386. name: "Back",
  21387. image: {
  21388. source: "./media/characters/typhek/back.svg",
  21389. extra: 2005 / 1978,
  21390. bottom: 0.004
  21391. }
  21392. },
  21393. palm: {
  21394. height: math.unit(1.2, "feet"),
  21395. name: "Palm",
  21396. image: {
  21397. source: "./media/characters/typhek/palm.svg"
  21398. }
  21399. },
  21400. fist: {
  21401. height: math.unit(1.1, "feet"),
  21402. name: "Fist",
  21403. image: {
  21404. source: "./media/characters/typhek/fist.svg"
  21405. }
  21406. },
  21407. foot: {
  21408. height: math.unit(1.57, "feet"),
  21409. name: "Foot",
  21410. image: {
  21411. source: "./media/characters/typhek/foot.svg"
  21412. }
  21413. },
  21414. sole: {
  21415. height: math.unit(2.05, "feet"),
  21416. name: "Sole",
  21417. image: {
  21418. source: "./media/characters/typhek/sole.svg"
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Macro",
  21425. height: math.unit(40, "stories"),
  21426. default: true
  21427. },
  21428. {
  21429. name: "Megamacro",
  21430. height: math.unit(1, "mile")
  21431. },
  21432. {
  21433. name: "Gigamacro",
  21434. height: math.unit(4000, "solarradii")
  21435. },
  21436. {
  21437. name: "Universal",
  21438. height: math.unit(1.1, "universes")
  21439. }
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21444. {
  21445. side: {
  21446. height: math.unit(5 + 7 / 12, "feet"),
  21447. weight: math.unit(150, "lb"),
  21448. name: "Side",
  21449. image: {
  21450. source: "./media/characters/kassy/side.svg",
  21451. extra: 1280 / 1225,
  21452. bottom: 0.002
  21453. }
  21454. },
  21455. front: {
  21456. height: math.unit(5 + 7 / 12, "feet"),
  21457. weight: math.unit(150, "lb"),
  21458. name: "Front",
  21459. image: {
  21460. source: "./media/characters/kassy/front.svg",
  21461. extra: 1280 / 1225,
  21462. bottom: 0.025
  21463. }
  21464. },
  21465. back: {
  21466. height: math.unit(5 + 7 / 12, "feet"),
  21467. weight: math.unit(150, "lb"),
  21468. name: "Back",
  21469. image: {
  21470. source: "./media/characters/kassy/back.svg",
  21471. extra: 1280 / 1225,
  21472. bottom: 0.002
  21473. }
  21474. },
  21475. foot: {
  21476. height: math.unit(1.266, "feet"),
  21477. name: "Foot",
  21478. image: {
  21479. source: "./media/characters/kassy/foot.svg"
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(5 + 7 / 12, "feet")
  21487. },
  21488. {
  21489. name: "Macro",
  21490. height: math.unit(137, "feet"),
  21491. default: true
  21492. },
  21493. {
  21494. name: "Megamacro",
  21495. height: math.unit(1, "mile")
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21501. {
  21502. front: {
  21503. height: math.unit(6 + 1 / 12, "feet"),
  21504. weight: math.unit(200, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/neil/front.svg",
  21508. extra: 1326 / 1250,
  21509. bottom: 0.023
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Normal",
  21516. height: math.unit(6 + 1 / 12, "feet"),
  21517. default: true
  21518. },
  21519. {
  21520. name: "Macro",
  21521. height: math.unit(200, "feet")
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(5 + 9 / 12, "feet"),
  21530. weight: math.unit(190, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/atticus/front.svg",
  21534. extra: 2934 / 2785,
  21535. bottom: 0.025
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(5 + 9 / 12, "feet"),
  21543. default: true
  21544. },
  21545. {
  21546. name: "Macro",
  21547. height: math.unit(180, "feet")
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21553. {
  21554. side: {
  21555. height: math.unit(9, "feet"),
  21556. weight: math.unit(650, "lb"),
  21557. name: "Side",
  21558. image: {
  21559. source: "./media/characters/milo/side.svg",
  21560. extra: 2644 / 2310,
  21561. bottom: 0.032
  21562. }
  21563. },
  21564. },
  21565. [
  21566. {
  21567. name: "Normal",
  21568. height: math.unit(9, "feet"),
  21569. default: true
  21570. },
  21571. {
  21572. name: "Macro",
  21573. height: math.unit(300, "feet")
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21579. {
  21580. side: {
  21581. height: math.unit(8, "meters"),
  21582. weight: math.unit(90000, "kg"),
  21583. name: "Side",
  21584. image: {
  21585. source: "./media/characters/ijzer/side.svg",
  21586. extra: 2756 / 1600,
  21587. bottom: 0.01
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Small",
  21594. height: math.unit(3, "meters")
  21595. },
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(8, "meters"),
  21599. default: true
  21600. },
  21601. {
  21602. name: "Normal+",
  21603. height: math.unit(10, "meters")
  21604. },
  21605. {
  21606. name: "Bigger",
  21607. height: math.unit(24, "meters")
  21608. },
  21609. {
  21610. name: "Huge",
  21611. height: math.unit(80, "meters")
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21617. {
  21618. front: {
  21619. height: math.unit(6 + 2 / 12, "feet"),
  21620. weight: math.unit(153, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/luca-cervicum/front.svg",
  21624. extra: 370 / 327,
  21625. bottom: 0.015
  21626. }
  21627. },
  21628. back: {
  21629. height: math.unit(6 + 2 / 12, "feet"),
  21630. weight: math.unit(153, "lb"),
  21631. name: "Back",
  21632. image: {
  21633. source: "./media/characters/luca-cervicum/back.svg",
  21634. extra: 367 / 333,
  21635. bottom: 0.005
  21636. }
  21637. },
  21638. frontGear: {
  21639. height: math.unit(6 + 2 / 12, "feet"),
  21640. weight: math.unit(173, "lb"),
  21641. name: "Front (Gear)",
  21642. image: {
  21643. source: "./media/characters/luca-cervicum/front-gear.svg",
  21644. extra: 377 / 333,
  21645. bottom: 0.006
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(6 + 2 / 12, "feet"),
  21653. default: true
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21659. {
  21660. front: {
  21661. height: math.unit(6 + 1 / 12, "feet"),
  21662. weight: math.unit(304, "lb"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/oliver/front.svg",
  21666. extra: 157 / 143,
  21667. bottom: 0.08
  21668. }
  21669. },
  21670. },
  21671. [
  21672. {
  21673. name: "Normal",
  21674. height: math.unit(6 + 1 / 12, "feet"),
  21675. default: true
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21681. {
  21682. front: {
  21683. height: math.unit(5 + 7 / 12, "feet"),
  21684. weight: math.unit(140, "lb"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/shane/front.svg",
  21688. extra: 304 / 289,
  21689. bottom: 0.005
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(5 + 7 / 12, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(5 + 9 / 12, "feet"),
  21706. weight: math.unit(178, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/shin/front.svg",
  21710. extra: 159 / 151,
  21711. bottom: 0.015
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(5 + 9 / 12, "feet"),
  21719. default: true
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(5 + 10 / 12, "feet"),
  21728. weight: math.unit(168, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/xerxes/front.svg",
  21732. extra: 282 / 260,
  21733. bottom: 0.045
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(5 + 10 / 12, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(6 + 7 / 12, "feet"),
  21750. weight: math.unit(208, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/chaska/front.svg",
  21754. extra: 332 / 319,
  21755. bottom: 0.015
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(6 + 7 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(5 + 8 / 12, "feet"),
  21772. weight: math.unit(208, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/enuk/front.svg",
  21776. extra: 437 / 406,
  21777. bottom: 0.02
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(5 + 8 / 12, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(5 + 10 / 12, "feet"),
  21794. weight: math.unit(252, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/bruun/front.svg",
  21798. extra: 197 / 187,
  21799. bottom: 0.012
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(5 + 10 / 12, "feet"),
  21807. default: true
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21813. {
  21814. front: {
  21815. height: math.unit(6 + 10 / 12, "feet"),
  21816. weight: math.unit(255, "lb"),
  21817. name: "Front",
  21818. image: {
  21819. source: "./media/characters/alexeev/front.svg",
  21820. extra: 213 / 200,
  21821. bottom: 0.05
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(6 + 10 / 12, "feet"),
  21829. default: true
  21830. },
  21831. ]
  21832. ))
  21833. characterMakers.push(() => makeCharacter(
  21834. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21835. {
  21836. front: {
  21837. height: math.unit(2 + 8 / 12, "feet"),
  21838. weight: math.unit(22, "lb"),
  21839. name: "Front",
  21840. image: {
  21841. source: "./media/characters/evelyn/front.svg",
  21842. extra: 208 / 180
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(2 + 8 / 12, "feet"),
  21850. default: true
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21856. {
  21857. front: {
  21858. height: math.unit(5 + 9 / 12, "feet"),
  21859. weight: math.unit(139, "lb"),
  21860. name: "Front",
  21861. image: {
  21862. source: "./media/characters/inca/front.svg",
  21863. extra: 294 / 291,
  21864. bottom: 0.03
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(5 + 9 / 12, "feet"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(6 + 3 / 12, "feet"),
  21881. weight: math.unit(185, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/mera/front.svg",
  21885. extra: 291 / 277,
  21886. bottom: 0.03
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(6 + 3 / 12, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(6 + 7 / 12, "feet"),
  21903. weight: math.unit(160, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/ceres/front.svg",
  21907. extra: 1023 / 950,
  21908. bottom: 0.027
  21909. }
  21910. },
  21911. back: {
  21912. height: math.unit(6 + 7 / 12, "feet"),
  21913. weight: math.unit(160, "lb"),
  21914. name: "Back",
  21915. image: {
  21916. source: "./media/characters/ceres/back.svg",
  21917. extra: 1023 / 950
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(6 + 7 / 12, "feet"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(5 + 10 / 12, "feet"),
  21934. weight: math.unit(150, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/kris/front.svg",
  21938. extra: 885 / 803,
  21939. bottom: 0.03
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(5 + 10 / 12, "feet"),
  21947. default: true
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21953. {
  21954. dragon_front: {
  21955. height: math.unit(5, "feet"),
  21956. name: "Front",
  21957. image: {
  21958. source: "./media/characters/taluthus/dragon-front.svg",
  21959. extra: 1203/1098,
  21960. bottom: 46/1249
  21961. },
  21962. form: "dragon",
  21963. default: true
  21964. },
  21965. dragon_maw: {
  21966. height: math.unit(2.35, "feet"),
  21967. name: "Maw",
  21968. image: {
  21969. source: "./media/characters/taluthus/dragon-maw.svg"
  21970. },
  21971. form: "dragon",
  21972. },
  21973. kitsune_front: {
  21974. height: math.unit(7, "feet"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/taluthus/kitsune-front.svg",
  21978. extra: 900/841,
  21979. bottom: 65/965
  21980. },
  21981. form: "kitsune",
  21982. default: true
  21983. },
  21984. },
  21985. [
  21986. {
  21987. name: "Normal",
  21988. height: math.unit(5, "feet"),
  21989. form: "dragon",
  21990. default: true,
  21991. },
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(7, "feet"),
  21995. form: "kitsune",
  21996. default: true
  21997. },
  21998. {
  21999. name: "Macro",
  22000. height: math.unit(300, "feet"),
  22001. allForms: true
  22002. },
  22003. ],
  22004. {
  22005. "dragon": {
  22006. name: "Dragon",
  22007. default: true
  22008. },
  22009. "kitsune": {
  22010. name: "Kitsune",
  22011. },
  22012. }
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(5 + 9 / 12, "feet"),
  22019. weight: math.unit(145, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/dawn/front.svg",
  22023. extra: 2094 / 2016,
  22024. bottom: 0.025
  22025. }
  22026. },
  22027. back: {
  22028. height: math.unit(5 + 9 / 12, "feet"),
  22029. weight: math.unit(160, "lb"),
  22030. name: "Back",
  22031. image: {
  22032. source: "./media/characters/dawn/back.svg",
  22033. extra: 2112 / 2080,
  22034. bottom: 0.005
  22035. }
  22036. },
  22037. },
  22038. [
  22039. {
  22040. name: "Normal",
  22041. height: math.unit(6 + 7 / 12, "feet"),
  22042. default: true
  22043. },
  22044. ]
  22045. ))
  22046. characterMakers.push(() => makeCharacter(
  22047. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22048. {
  22049. anthro: {
  22050. height: math.unit(8 + 3 / 12, "feet"),
  22051. weight: math.unit(450, "lb"),
  22052. name: "Anthro",
  22053. image: {
  22054. source: "./media/characters/arador/anthro.svg",
  22055. extra: 1835 / 1718,
  22056. bottom: 0.025
  22057. }
  22058. },
  22059. feral: {
  22060. height: math.unit(4, "feet"),
  22061. weight: math.unit(200, "lb"),
  22062. name: "Feral",
  22063. image: {
  22064. source: "./media/characters/arador/feral.svg",
  22065. extra: 1683 / 1514,
  22066. bottom: 0.07
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(8 + 3 / 12, "feet")
  22074. },
  22075. {
  22076. name: "Macro",
  22077. height: math.unit(82.5, "feet"),
  22078. default: true
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(5 + 10 / 12, "feet"),
  22087. weight: math.unit(125, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/dharsi/front.svg",
  22091. extra: 716 / 630,
  22092. bottom: 0.035
  22093. }
  22094. },
  22095. },
  22096. [
  22097. {
  22098. name: "Nano",
  22099. height: math.unit(100, "nm")
  22100. },
  22101. {
  22102. name: "Micro",
  22103. height: math.unit(2, "inches")
  22104. },
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(5 + 10 / 12, "feet"),
  22108. default: true
  22109. },
  22110. {
  22111. name: "Macro",
  22112. height: math.unit(1000, "feet")
  22113. },
  22114. {
  22115. name: "Megamacro",
  22116. height: math.unit(10, "miles")
  22117. },
  22118. {
  22119. name: "Gigamacro",
  22120. height: math.unit(3000, "miles")
  22121. },
  22122. {
  22123. name: "Teramacro",
  22124. height: math.unit(500000, "miles")
  22125. },
  22126. {
  22127. name: "Teramacro+",
  22128. height: math.unit(30, "galaxies")
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(6, "feet"),
  22137. weight: math.unit(150, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/deathy/front.svg",
  22141. extra: 1552 / 1463,
  22142. bottom: 0.025
  22143. }
  22144. },
  22145. side: {
  22146. height: math.unit(6, "feet"),
  22147. weight: math.unit(150, "lb"),
  22148. name: "Side",
  22149. image: {
  22150. source: "./media/characters/deathy/side.svg",
  22151. extra: 1604 / 1455,
  22152. bottom: 0.025
  22153. }
  22154. },
  22155. back: {
  22156. height: math.unit(6, "feet"),
  22157. weight: math.unit(150, "lb"),
  22158. name: "Back",
  22159. image: {
  22160. source: "./media/characters/deathy/back.svg",
  22161. extra: 1580 / 1463,
  22162. bottom: 0.005
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Micro",
  22169. height: math.unit(5, "millimeters")
  22170. },
  22171. {
  22172. name: "Normal",
  22173. height: math.unit(6 + 5 / 12, "feet"),
  22174. default: true
  22175. },
  22176. ]
  22177. ))
  22178. characterMakers.push(() => makeCharacter(
  22179. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22180. {
  22181. front: {
  22182. height: math.unit(16, "feet"),
  22183. weight: math.unit(4000, "lb"),
  22184. name: "Front",
  22185. image: {
  22186. source: "./media/characters/juniper/front.svg",
  22187. bottom: 0.04
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Normal",
  22194. height: math.unit(16, "feet"),
  22195. default: true
  22196. },
  22197. ]
  22198. ))
  22199. characterMakers.push(() => makeCharacter(
  22200. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22201. {
  22202. front: {
  22203. height: math.unit(6, "feet"),
  22204. weight: math.unit(150, "lb"),
  22205. name: "Front",
  22206. image: {
  22207. source: "./media/characters/hipster/front.svg",
  22208. extra: 1312 / 1209,
  22209. bottom: 0.025
  22210. }
  22211. },
  22212. back: {
  22213. height: math.unit(6, "feet"),
  22214. weight: math.unit(150, "lb"),
  22215. name: "Back",
  22216. image: {
  22217. source: "./media/characters/hipster/back.svg",
  22218. extra: 1281 / 1196,
  22219. bottom: 0.01
  22220. }
  22221. },
  22222. },
  22223. [
  22224. {
  22225. name: "Micro",
  22226. height: math.unit(1, "mm")
  22227. },
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(4, "inches"),
  22231. default: true
  22232. },
  22233. {
  22234. name: "Macro",
  22235. height: math.unit(500, "feet")
  22236. },
  22237. {
  22238. name: "Megamacro",
  22239. height: math.unit(1000, "miles")
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(6, "feet"),
  22248. weight: math.unit(150, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/tendirmuldr/front.svg",
  22252. extra: 1878 / 1772,
  22253. bottom: 0.015
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Megamacro",
  22260. height: math.unit(1500, "miles"),
  22261. default: true
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22267. {
  22268. front: {
  22269. height: math.unit(14, "feet"),
  22270. weight: math.unit(12000, "lb"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/mort/front.svg",
  22274. extra: 365 / 318,
  22275. bottom: 0.01
  22276. }
  22277. },
  22278. side: {
  22279. height: math.unit(14, "feet"),
  22280. weight: math.unit(12000, "lb"),
  22281. name: "Side",
  22282. image: {
  22283. source: "./media/characters/mort/side.svg",
  22284. extra: 365 / 318,
  22285. bottom: 0.052
  22286. },
  22287. default: true
  22288. },
  22289. back: {
  22290. height: math.unit(14, "feet"),
  22291. weight: math.unit(12000, "lb"),
  22292. name: "Back",
  22293. image: {
  22294. source: "./media/characters/mort/back.svg",
  22295. extra: 371 / 332,
  22296. bottom: 0.18
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(14, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22310. {
  22311. front: {
  22312. height: math.unit(8, "feet"),
  22313. weight: math.unit(1, "ton"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/lycoa/front.svg",
  22317. extra: 1836/1728,
  22318. bottom: 81/1917
  22319. }
  22320. },
  22321. back: {
  22322. height: math.unit(8, "feet"),
  22323. weight: math.unit(1, "ton"),
  22324. name: "Back",
  22325. image: {
  22326. source: "./media/characters/lycoa/back.svg",
  22327. extra: 1785/1720,
  22328. bottom: 91/1876
  22329. }
  22330. },
  22331. head: {
  22332. height: math.unit(1.6243, "feet"),
  22333. name: "Head",
  22334. image: {
  22335. source: "./media/characters/lycoa/head.svg",
  22336. extra: 1011/782,
  22337. bottom: 0/1011
  22338. }
  22339. },
  22340. tailmaw: {
  22341. height: math.unit(1.9, "feet"),
  22342. name: "Tailmaw",
  22343. image: {
  22344. source: "./media/characters/lycoa/tailmaw.svg"
  22345. }
  22346. },
  22347. tentacles: {
  22348. height: math.unit(2.1, "feet"),
  22349. name: "Tentacles",
  22350. image: {
  22351. source: "./media/characters/lycoa/tentacles.svg"
  22352. }
  22353. },
  22354. dick: {
  22355. height: math.unit(1.73, "feet"),
  22356. name: "Dick",
  22357. image: {
  22358. source: "./media/characters/lycoa/dick.svg"
  22359. }
  22360. },
  22361. },
  22362. [
  22363. {
  22364. name: "Normal",
  22365. height: math.unit(8, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Macro",
  22370. height: math.unit(30, "feet")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22376. {
  22377. front: {
  22378. height: math.unit(4 + 2 / 12, "feet"),
  22379. weight: math.unit(70, "lb"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/naldara/front.svg",
  22383. extra: 1664/1387,
  22384. bottom: 81/1745
  22385. },
  22386. form: "anthro",
  22387. default: true
  22388. },
  22389. naga: {
  22390. height: math.unit(20, "feet"),
  22391. weight: math.unit(15000, "kg"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/naldara/naga.svg",
  22395. extra: 1590/1396,
  22396. bottom: 285/1875
  22397. },
  22398. form: "naga",
  22399. default: true
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(4 + 2 / 12, "feet"),
  22406. form: "anthro",
  22407. default: true
  22408. },
  22409. {
  22410. name: "Normal",
  22411. height: math.unit(20, "feet"),
  22412. form: "naga",
  22413. default: true
  22414. },
  22415. ],
  22416. {
  22417. "anthro": {
  22418. name: "Anthro",
  22419. default: true
  22420. },
  22421. "naga": {
  22422. name: "Naga"
  22423. }
  22424. }
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(13 + 7 / 12, "feet"),
  22431. weight: math.unit(1500, "lb"),
  22432. name: "Front",
  22433. image: {
  22434. source: "./media/characters/briar/front.svg",
  22435. extra: 1223/1157,
  22436. bottom: 123/1346
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "Normal",
  22443. height: math.unit(13 + 7 / 12, "feet"),
  22444. default: true
  22445. },
  22446. ]
  22447. ))
  22448. characterMakers.push(() => makeCharacter(
  22449. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22450. {
  22451. side: {
  22452. height: math.unit(16, "feet"),
  22453. weight: math.unit(500, "lb"),
  22454. name: "Side",
  22455. image: {
  22456. source: "./media/characters/vanguard/side.svg",
  22457. extra: 1022/914,
  22458. bottom: 30/1052
  22459. }
  22460. },
  22461. sideAlt: {
  22462. height: math.unit(10, "feet"),
  22463. weight: math.unit(500, "lb"),
  22464. name: "Side (Alt)",
  22465. image: {
  22466. source: "./media/characters/vanguard/side-alt.svg",
  22467. extra: 502 / 425,
  22468. bottom: 0.087
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "Normal",
  22475. height: math.unit(17.71, "feet"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(7.5, "feet"),
  22485. weight: math.unit(2, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/artemis/work-safe-front.svg",
  22489. extra: 1192 / 1075,
  22490. bottom: 0.07
  22491. },
  22492. form: "work-safe",
  22493. default: true
  22494. },
  22495. frontNsfw: {
  22496. height: math.unit(7.5, "feet"),
  22497. weight: math.unit(2, "lb"),
  22498. name: "Front",
  22499. image: {
  22500. source: "./media/characters/artemis/calibrating-front.svg",
  22501. extra: 1192 / 1075,
  22502. bottom: 0.07
  22503. },
  22504. form: "calibrating",
  22505. default: true
  22506. },
  22507. frontNsfwer: {
  22508. height: math.unit(7.5, "feet"),
  22509. weight: math.unit(2, "lb"),
  22510. name: "Front",
  22511. image: {
  22512. source: "./media/characters/artemis/oversize-load-front.svg",
  22513. extra: 1192 / 1075,
  22514. bottom: 0.07
  22515. },
  22516. form: "oversize-load",
  22517. default: true
  22518. },
  22519. side: {
  22520. height: math.unit(7.5, "feet"),
  22521. weight: math.unit(2, "lb"),
  22522. name: "Side",
  22523. image: {
  22524. source: "./media/characters/artemis/work-safe-side.svg",
  22525. extra: 1192 / 1075,
  22526. bottom: 0.07
  22527. },
  22528. form: "work-safe"
  22529. },
  22530. sideNsfw: {
  22531. height: math.unit(7.5, "feet"),
  22532. weight: math.unit(2, "lb"),
  22533. name: "Side",
  22534. image: {
  22535. source: "./media/characters/artemis/calibrating-side.svg",
  22536. extra: 1192 / 1075,
  22537. bottom: 0.07
  22538. },
  22539. form: "calibrating"
  22540. },
  22541. sideNsfwer: {
  22542. height: math.unit(7.5, "feet"),
  22543. weight: math.unit(2, "lb"),
  22544. name: "Side",
  22545. image: {
  22546. source: "./media/characters/artemis/oversize-load-side.svg",
  22547. extra: 1192 / 1075,
  22548. bottom: 0.07
  22549. },
  22550. form: "oversize-load"
  22551. },
  22552. maw: {
  22553. height: math.unit(1.1, "feet"),
  22554. name: "Maw",
  22555. image: {
  22556. source: "./media/characters/artemis/maw.svg"
  22557. },
  22558. form: "work-safe"
  22559. },
  22560. stomach: {
  22561. height: math.unit(0.95, "feet"),
  22562. name: "Stomach",
  22563. image: {
  22564. source: "./media/characters/artemis/stomach.svg"
  22565. },
  22566. form: "work-safe"
  22567. },
  22568. dickCanine: {
  22569. height: math.unit(1, "feet"),
  22570. name: "Dick (Canine)",
  22571. image: {
  22572. source: "./media/characters/artemis/dick-canine.svg"
  22573. },
  22574. form: "calibrating"
  22575. },
  22576. dickEquine: {
  22577. height: math.unit(0.85, "feet"),
  22578. name: "Dick (Equine)",
  22579. image: {
  22580. source: "./media/characters/artemis/dick-equine.svg"
  22581. },
  22582. form: "calibrating"
  22583. },
  22584. dickExotic: {
  22585. height: math.unit(0.85, "feet"),
  22586. name: "Dick (Exotic)",
  22587. image: {
  22588. source: "./media/characters/artemis/dick-exotic.svg"
  22589. },
  22590. form: "calibrating"
  22591. },
  22592. dickCanineBigger: {
  22593. height: math.unit(1 * 1.33, "feet"),
  22594. name: "Dick (Canine)",
  22595. image: {
  22596. source: "./media/characters/artemis/dick-canine.svg"
  22597. },
  22598. form: "oversize-load"
  22599. },
  22600. dickEquineBigger: {
  22601. height: math.unit(0.85 * 1.33, "feet"),
  22602. name: "Dick (Equine)",
  22603. image: {
  22604. source: "./media/characters/artemis/dick-equine.svg"
  22605. },
  22606. form: "oversize-load"
  22607. },
  22608. dickExoticBigger: {
  22609. height: math.unit(0.85 * 1.33, "feet"),
  22610. name: "Dick (Exotic)",
  22611. image: {
  22612. source: "./media/characters/artemis/dick-exotic.svg"
  22613. },
  22614. form: "oversize-load"
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Normal",
  22620. height: math.unit(7.5, "feet"),
  22621. form: "work-safe",
  22622. default: true
  22623. },
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(7.5, "feet"),
  22627. form: "calibrating",
  22628. default: true
  22629. },
  22630. {
  22631. name: "Normal",
  22632. height: math.unit(7.5, "feet"),
  22633. form: "oversize-load",
  22634. default: true
  22635. },
  22636. {
  22637. name: "Enlarged",
  22638. height: math.unit(12, "feet"),
  22639. form: "work-safe",
  22640. },
  22641. {
  22642. name: "Enlarged",
  22643. height: math.unit(12, "feet"),
  22644. form: "calibrating",
  22645. },
  22646. {
  22647. name: "Enlarged",
  22648. height: math.unit(12, "feet"),
  22649. form: "oversize-load",
  22650. },
  22651. ],
  22652. {
  22653. "work-safe": {
  22654. name: "Work-Safe",
  22655. default: true
  22656. },
  22657. "calibrating": {
  22658. name: "Calibrating"
  22659. },
  22660. "oversize-load": {
  22661. name: "Oversize Load"
  22662. }
  22663. }
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22667. {
  22668. front: {
  22669. height: math.unit(5 + 3 / 12, "feet"),
  22670. weight: math.unit(160, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/kira/front.svg",
  22674. extra: 906 / 786,
  22675. bottom: 0.01
  22676. }
  22677. },
  22678. back: {
  22679. height: math.unit(5 + 3 / 12, "feet"),
  22680. weight: math.unit(160, "lb"),
  22681. name: "Back",
  22682. image: {
  22683. source: "./media/characters/kira/back.svg",
  22684. extra: 882 / 757,
  22685. bottom: 0.005
  22686. }
  22687. },
  22688. frontDressed: {
  22689. height: math.unit(5 + 3 / 12, "feet"),
  22690. weight: math.unit(160, "lb"),
  22691. name: "Front (Dressed)",
  22692. image: {
  22693. source: "./media/characters/kira/front-dressed.svg",
  22694. extra: 906 / 786,
  22695. bottom: 0.01
  22696. }
  22697. },
  22698. beans: {
  22699. height: math.unit(0.92, "feet"),
  22700. name: "Beans",
  22701. image: {
  22702. source: "./media/characters/kira/beans.svg"
  22703. }
  22704. },
  22705. },
  22706. [
  22707. {
  22708. name: "Normal",
  22709. height: math.unit(5 + 3 / 12, "feet"),
  22710. default: true
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22716. {
  22717. front: {
  22718. height: math.unit(5 + 4 / 12, "feet"),
  22719. weight: math.unit(145, "lb"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/scramble/front.svg",
  22723. extra: 763 / 727,
  22724. bottom: 0.05
  22725. }
  22726. },
  22727. back: {
  22728. height: math.unit(5 + 4 / 12, "feet"),
  22729. weight: math.unit(145, "lb"),
  22730. name: "Back",
  22731. image: {
  22732. source: "./media/characters/scramble/back.svg",
  22733. extra: 826 / 737,
  22734. bottom: 0.002
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Normal",
  22741. height: math.unit(5 + 4 / 12, "feet"),
  22742. default: true
  22743. },
  22744. ]
  22745. ))
  22746. characterMakers.push(() => makeCharacter(
  22747. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22748. {
  22749. side: {
  22750. height: math.unit(6 + 2 / 12, "feet"),
  22751. weight: math.unit(190, "lb"),
  22752. name: "Side",
  22753. image: {
  22754. source: "./media/characters/biscuit/side.svg",
  22755. extra: 858 / 791,
  22756. bottom: 0.044
  22757. }
  22758. },
  22759. },
  22760. [
  22761. {
  22762. name: "Normal",
  22763. height: math.unit(6 + 2 / 12, "feet"),
  22764. default: true
  22765. },
  22766. ]
  22767. ))
  22768. characterMakers.push(() => makeCharacter(
  22769. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22770. {
  22771. front: {
  22772. height: math.unit(5 + 2 / 12, "feet"),
  22773. weight: math.unit(120, "lb"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/poffin/front.svg",
  22777. extra: 786 / 680,
  22778. bottom: 0.005
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Normal",
  22785. height: math.unit(5 + 2 / 12, "feet"),
  22786. default: true
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(6 + 3 / 12, "feet"),
  22795. weight: math.unit(519, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/dhari/front.svg",
  22799. extra: 1048 / 946,
  22800. bottom: 0.015
  22801. }
  22802. },
  22803. back: {
  22804. height: math.unit(6 + 3 / 12, "feet"),
  22805. weight: math.unit(519, "lb"),
  22806. name: "Back",
  22807. image: {
  22808. source: "./media/characters/dhari/back.svg",
  22809. extra: 1048 / 931,
  22810. bottom: 0.005
  22811. }
  22812. },
  22813. frontDressed: {
  22814. height: math.unit(6 + 3 / 12, "feet"),
  22815. weight: math.unit(519, "lb"),
  22816. name: "Front (Dressed)",
  22817. image: {
  22818. source: "./media/characters/dhari/front-dressed.svg",
  22819. extra: 1713 / 1546,
  22820. bottom: 0.02
  22821. }
  22822. },
  22823. backDressed: {
  22824. height: math.unit(6 + 3 / 12, "feet"),
  22825. weight: math.unit(519, "lb"),
  22826. name: "Back (Dressed)",
  22827. image: {
  22828. source: "./media/characters/dhari/back-dressed.svg",
  22829. extra: 1699 / 1537,
  22830. bottom: 0.01
  22831. }
  22832. },
  22833. maw: {
  22834. height: math.unit(0.95, "feet"),
  22835. name: "Maw",
  22836. image: {
  22837. source: "./media/characters/dhari/maw.svg"
  22838. }
  22839. },
  22840. wereFront: {
  22841. height: math.unit(12 + 8 / 12, "feet"),
  22842. weight: math.unit(4000, "lb"),
  22843. name: "Front (Were)",
  22844. image: {
  22845. source: "./media/characters/dhari/were-front.svg",
  22846. extra: 1065 / 969,
  22847. bottom: 0.015
  22848. }
  22849. },
  22850. wereBack: {
  22851. height: math.unit(12 + 8 / 12, "feet"),
  22852. weight: math.unit(4000, "lb"),
  22853. name: "Back (Were)",
  22854. image: {
  22855. source: "./media/characters/dhari/were-back.svg",
  22856. extra: 1065 / 969,
  22857. bottom: 0.012
  22858. }
  22859. },
  22860. wereMaw: {
  22861. height: math.unit(0.625, "meters"),
  22862. name: "Maw (Were)",
  22863. image: {
  22864. source: "./media/characters/dhari/were-maw.svg"
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Normal",
  22871. height: math.unit(6 + 3 / 12, "feet"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22878. {
  22879. anthro: {
  22880. height: math.unit(5 + 7 / 12, "feet"),
  22881. weight: math.unit(175, "lb"),
  22882. name: "Anthro",
  22883. image: {
  22884. source: "./media/characters/rena-dyne/anthro.svg",
  22885. extra: 1849 / 1785,
  22886. bottom: 0.005
  22887. }
  22888. },
  22889. taur: {
  22890. height: math.unit(15 + 6 / 12, "feet"),
  22891. weight: math.unit(8000, "lb"),
  22892. name: "Taur",
  22893. image: {
  22894. source: "./media/characters/rena-dyne/taur.svg",
  22895. extra: 2315 / 2234,
  22896. bottom: 0.033
  22897. }
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Normal",
  22903. height: math.unit(5 + 7 / 12, "feet"),
  22904. default: true
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22910. {
  22911. front: {
  22912. height: math.unit(8, "feet"),
  22913. weight: math.unit(600, "lb"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/weremeep/front.svg",
  22917. extra: 970/849,
  22918. bottom: 7/977
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Normal",
  22925. height: math.unit(8, "feet"),
  22926. default: true
  22927. },
  22928. {
  22929. name: "Lorg",
  22930. height: math.unit(12, "feet")
  22931. },
  22932. {
  22933. name: "Oh Lawd She Comin'",
  22934. height: math.unit(20, "feet")
  22935. },
  22936. ]
  22937. ))
  22938. characterMakers.push(() => makeCharacter(
  22939. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22940. {
  22941. front: {
  22942. height: math.unit(4, "feet"),
  22943. weight: math.unit(90, "lb"),
  22944. name: "Front",
  22945. image: {
  22946. source: "./media/characters/reza/front.svg",
  22947. extra: 1183 / 1111,
  22948. bottom: 0.017
  22949. }
  22950. },
  22951. back: {
  22952. height: math.unit(4, "feet"),
  22953. weight: math.unit(90, "lb"),
  22954. name: "Back",
  22955. image: {
  22956. source: "./media/characters/reza/back.svg",
  22957. extra: 1183 / 1111,
  22958. bottom: 0.01
  22959. }
  22960. },
  22961. drake: {
  22962. height: math.unit(30, "feet"),
  22963. weight: math.unit(246960, "lb"),
  22964. name: "Drake",
  22965. image: {
  22966. source: "./media/characters/reza/drake.svg",
  22967. extra: 2350 / 2024,
  22968. bottom: 60.7 / 2403
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(4, "feet"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22982. {
  22983. side: {
  22984. height: math.unit(15, "feet"),
  22985. weight: math.unit(14, "tons"),
  22986. name: "Side",
  22987. image: {
  22988. source: "./media/characters/athea/side.svg",
  22989. extra: 960 / 540,
  22990. bottom: 0.003
  22991. }
  22992. },
  22993. sitting: {
  22994. height: math.unit(6 * 2.85, "feet"),
  22995. weight: math.unit(14, "tons"),
  22996. name: "Sitting",
  22997. image: {
  22998. source: "./media/characters/athea/sitting.svg",
  22999. extra: 621 / 581,
  23000. bottom: 0.075
  23001. }
  23002. },
  23003. maw: {
  23004. height: math.unit(7.59498031496063, "feet"),
  23005. name: "Maw",
  23006. image: {
  23007. source: "./media/characters/athea/maw.svg"
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "Lap Cat",
  23014. height: math.unit(2.5, "feet")
  23015. },
  23016. {
  23017. name: "Minimacro",
  23018. height: math.unit(15, "feet"),
  23019. default: true
  23020. },
  23021. {
  23022. name: "Macro",
  23023. height: math.unit(120, "feet")
  23024. },
  23025. {
  23026. name: "Macro+",
  23027. height: math.unit(640, "feet")
  23028. },
  23029. {
  23030. name: "Colossus",
  23031. height: math.unit(2.2, "miles")
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(8 + 8 / 12, "feet"),
  23040. weight: math.unit(130, "kg"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/seroko/front.svg",
  23044. extra: 1385 / 1280,
  23045. bottom: 0.025
  23046. }
  23047. },
  23048. back: {
  23049. height: math.unit(8 + 8 / 12, "feet"),
  23050. weight: math.unit(130, "kg"),
  23051. name: "Back",
  23052. image: {
  23053. source: "./media/characters/seroko/back.svg",
  23054. extra: 1369 / 1238,
  23055. bottom: 0.018
  23056. }
  23057. },
  23058. frontDressed: {
  23059. height: math.unit(8 + 8 / 12, "feet"),
  23060. weight: math.unit(130, "kg"),
  23061. name: "Front (Dressed)",
  23062. image: {
  23063. source: "./media/characters/seroko/front-dressed.svg",
  23064. extra: 1366 / 1275,
  23065. bottom: 0.03
  23066. }
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Normal",
  23072. height: math.unit(8 + 8 / 12, "feet"),
  23073. default: true
  23074. },
  23075. ]
  23076. ))
  23077. characterMakers.push(() => makeCharacter(
  23078. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23079. {
  23080. front: {
  23081. height: math.unit(5.5, "feet"),
  23082. weight: math.unit(160, "lb"),
  23083. name: "Front",
  23084. image: {
  23085. source: "./media/characters/quatzi/front.svg",
  23086. extra: 2346 / 2242,
  23087. bottom: 0.015
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(5.5, "feet"),
  23095. default: true
  23096. },
  23097. {
  23098. name: "Big",
  23099. height: math.unit(7.7, "feet")
  23100. },
  23101. ]
  23102. ))
  23103. characterMakers.push(() => makeCharacter(
  23104. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23105. {
  23106. front: {
  23107. height: math.unit(5 + 11 / 12, "feet"),
  23108. weight: math.unit(180, "lb"),
  23109. name: "Front",
  23110. image: {
  23111. source: "./media/characters/sen/front.svg",
  23112. extra: 1321 / 1254,
  23113. bottom: 0.015
  23114. }
  23115. },
  23116. side: {
  23117. height: math.unit(5 + 11 / 12, "feet"),
  23118. weight: math.unit(180, "lb"),
  23119. name: "Side",
  23120. image: {
  23121. source: "./media/characters/sen/side.svg",
  23122. extra: 1321 / 1254,
  23123. bottom: 0.007
  23124. }
  23125. },
  23126. back: {
  23127. height: math.unit(5 + 11 / 12, "feet"),
  23128. weight: math.unit(180, "lb"),
  23129. name: "Back",
  23130. image: {
  23131. source: "./media/characters/sen/back.svg",
  23132. extra: 1321 / 1254
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(5 + 11 / 12, "feet"),
  23140. default: true
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(166.6, "cm"),
  23149. weight: math.unit(66.6, "kg"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/fruity/front.svg",
  23153. extra: 1510 / 1386,
  23154. bottom: 0.04
  23155. }
  23156. },
  23157. back: {
  23158. height: math.unit(166.6, "cm"),
  23159. weight: math.unit(66.6, "lb"),
  23160. name: "Back",
  23161. image: {
  23162. source: "./media/characters/fruity/back.svg",
  23163. extra: 1563 / 1435,
  23164. bottom: 0.005
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Normal",
  23171. height: math.unit(166.6, "cm"),
  23172. default: true
  23173. },
  23174. {
  23175. name: "Demonic",
  23176. height: math.unit(166.6, "feet")
  23177. },
  23178. ]
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23182. {
  23183. side: {
  23184. height: math.unit(10, "feet"),
  23185. weight: math.unit(500, "lb"),
  23186. name: "Side",
  23187. image: {
  23188. source: "./media/characters/zost/side.svg",
  23189. extra: 2870/2533,
  23190. bottom: 252/3122
  23191. }
  23192. },
  23193. mawFront: {
  23194. height: math.unit(1.08, "meters"),
  23195. name: "Maw (Front)",
  23196. image: {
  23197. source: "./media/characters/zost/maw-front.svg"
  23198. }
  23199. },
  23200. mawSide: {
  23201. height: math.unit(2.66, "feet"),
  23202. name: "Maw (Side)",
  23203. image: {
  23204. source: "./media/characters/zost/maw-side.svg"
  23205. }
  23206. },
  23207. wingspan: {
  23208. height: math.unit(7.4, "feet"),
  23209. name: "Wingspan",
  23210. image: {
  23211. source: "./media/characters/zost/wingspan.svg"
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Normal",
  23218. height: math.unit(10, "feet"),
  23219. default: true
  23220. },
  23221. ]
  23222. ))
  23223. characterMakers.push(() => makeCharacter(
  23224. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23225. {
  23226. front: {
  23227. height: math.unit(5 + 4 / 12, "feet"),
  23228. weight: math.unit(120, "lb"),
  23229. name: "Front",
  23230. image: {
  23231. source: "./media/characters/luci/front.svg",
  23232. extra: 1985 / 1884,
  23233. bottom: 0.04
  23234. }
  23235. },
  23236. back: {
  23237. height: math.unit(5 + 4 / 12, "feet"),
  23238. weight: math.unit(120, "lb"),
  23239. name: "Back",
  23240. image: {
  23241. source: "./media/characters/luci/back.svg",
  23242. extra: 1892 / 1791,
  23243. bottom: 0.002
  23244. }
  23245. },
  23246. },
  23247. [
  23248. {
  23249. name: "Normal",
  23250. height: math.unit(5 + 4 / 12, "feet"),
  23251. default: true
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23257. {
  23258. front: {
  23259. height: math.unit(1500, "feet"),
  23260. weight: math.unit(3.8e6, "tons"),
  23261. name: "Front",
  23262. image: {
  23263. source: "./media/characters/2th/front.svg",
  23264. extra: 3489 / 3350,
  23265. bottom: 0.1
  23266. }
  23267. },
  23268. foot: {
  23269. height: math.unit(461, "feet"),
  23270. name: "Foot",
  23271. image: {
  23272. source: "./media/characters/2th/foot.svg"
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "\"Micro\"",
  23279. height: math.unit(15 + 7 / 12, "feet")
  23280. },
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(1500, "feet"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(5000, "feet")
  23289. },
  23290. {
  23291. name: "Megamacro",
  23292. height: math.unit(15, "miles")
  23293. },
  23294. {
  23295. name: "Gigamacro",
  23296. height: math.unit(4000, "miles")
  23297. },
  23298. {
  23299. name: "Galactic",
  23300. height: math.unit(50, "AU")
  23301. },
  23302. ]
  23303. ))
  23304. characterMakers.push(() => makeCharacter(
  23305. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23306. {
  23307. front: {
  23308. height: math.unit(5 + 6 / 12, "feet"),
  23309. weight: math.unit(220, "lb"),
  23310. name: "Front",
  23311. image: {
  23312. source: "./media/characters/amethyst/front.svg",
  23313. extra: 2078 / 2040,
  23314. bottom: 0.045
  23315. }
  23316. },
  23317. back: {
  23318. height: math.unit(5 + 6 / 12, "feet"),
  23319. weight: math.unit(220, "lb"),
  23320. name: "Back",
  23321. image: {
  23322. source: "./media/characters/amethyst/back.svg",
  23323. extra: 2021 / 1989,
  23324. bottom: 0.02
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Normal",
  23331. height: math.unit(5 + 6 / 12, "feet"),
  23332. default: true
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(4 + 11 / 12, "feet"),
  23341. weight: math.unit(120, "lb"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/yumi-akiyama/front.svg",
  23345. extra: 1327 / 1235,
  23346. bottom: 0.02
  23347. }
  23348. },
  23349. back: {
  23350. height: math.unit(4 + 11 / 12, "feet"),
  23351. weight: math.unit(120, "lb"),
  23352. name: "Back",
  23353. image: {
  23354. source: "./media/characters/yumi-akiyama/back.svg",
  23355. extra: 1287 / 1245,
  23356. bottom: 0.002
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Galactic",
  23363. height: math.unit(50, "galaxies"),
  23364. default: true
  23365. },
  23366. {
  23367. name: "Universal",
  23368. height: math.unit(100, "universes")
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(8, "feet"),
  23377. weight: math.unit(500, "lb"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/rifter-yrmori/front.svg",
  23381. extra: 1180 / 1125,
  23382. bottom: 0.02
  23383. }
  23384. },
  23385. back: {
  23386. height: math.unit(8, "feet"),
  23387. weight: math.unit(500, "lb"),
  23388. name: "Back",
  23389. image: {
  23390. source: "./media/characters/rifter-yrmori/back.svg",
  23391. extra: 1190 / 1145,
  23392. bottom: 0.001
  23393. }
  23394. },
  23395. wings: {
  23396. height: math.unit(7.75, "feet"),
  23397. weight: math.unit(500, "lb"),
  23398. name: "Wings",
  23399. image: {
  23400. source: "./media/characters/rifter-yrmori/wings.svg",
  23401. extra: 1357 / 1285
  23402. }
  23403. },
  23404. maw: {
  23405. height: math.unit(0.8, "feet"),
  23406. name: "Maw",
  23407. image: {
  23408. source: "./media/characters/rifter-yrmori/maw.svg"
  23409. }
  23410. },
  23411. mawfront: {
  23412. height: math.unit(1.45, "feet"),
  23413. name: "Maw (Front)",
  23414. image: {
  23415. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(8, "feet"),
  23423. default: true
  23424. },
  23425. {
  23426. name: "Macro",
  23427. height: math.unit(42, "meters")
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23433. {
  23434. were: {
  23435. height: math.unit(25 + 6 / 12, "feet"),
  23436. weight: math.unit(10000, "lb"),
  23437. name: "Were",
  23438. image: {
  23439. source: "./media/characters/tahajin/were.svg",
  23440. extra: 801 / 770,
  23441. bottom: 0.042
  23442. }
  23443. },
  23444. aquatic: {
  23445. height: math.unit(6 + 4 / 12, "feet"),
  23446. weight: math.unit(160, "lb"),
  23447. name: "Aquatic",
  23448. image: {
  23449. source: "./media/characters/tahajin/aquatic.svg",
  23450. extra: 572 / 542,
  23451. bottom: 0.04
  23452. }
  23453. },
  23454. chow: {
  23455. height: math.unit(8 + 11 / 12, "feet"),
  23456. weight: math.unit(450, "lb"),
  23457. name: "Chow",
  23458. image: {
  23459. source: "./media/characters/tahajin/chow.svg",
  23460. extra: 660 / 640,
  23461. bottom: 0.015
  23462. }
  23463. },
  23464. demiNaga: {
  23465. height: math.unit(6 + 8 / 12, "feet"),
  23466. weight: math.unit(300, "lb"),
  23467. name: "Demi Naga",
  23468. image: {
  23469. source: "./media/characters/tahajin/demi-naga.svg",
  23470. extra: 643 / 615,
  23471. bottom: 0.1
  23472. }
  23473. },
  23474. data: {
  23475. height: math.unit(5, "inches"),
  23476. weight: math.unit(0.1, "lb"),
  23477. name: "Data",
  23478. image: {
  23479. source: "./media/characters/tahajin/data.svg"
  23480. }
  23481. },
  23482. fluu: {
  23483. height: math.unit(5 + 7 / 12, "feet"),
  23484. weight: math.unit(140, "lb"),
  23485. name: "Fluu",
  23486. image: {
  23487. source: "./media/characters/tahajin/fluu.svg",
  23488. extra: 628 / 592,
  23489. bottom: 0.02
  23490. }
  23491. },
  23492. starWarrior: {
  23493. height: math.unit(4 + 5 / 12, "feet"),
  23494. weight: math.unit(50, "lb"),
  23495. name: "Star Warrior",
  23496. image: {
  23497. source: "./media/characters/tahajin/star-warrior.svg"
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(25 + 6 / 12, "feet"),
  23505. default: true
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23511. {
  23512. front: {
  23513. height: math.unit(8, "feet"),
  23514. weight: math.unit(350, "lb"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/gabira/front.svg",
  23518. extra: 1261/1154,
  23519. bottom: 51/1312
  23520. }
  23521. },
  23522. back: {
  23523. height: math.unit(8, "feet"),
  23524. weight: math.unit(350, "lb"),
  23525. name: "Back",
  23526. image: {
  23527. source: "./media/characters/gabira/back.svg",
  23528. extra: 1265/1163,
  23529. bottom: 46/1311
  23530. }
  23531. },
  23532. head: {
  23533. height: math.unit(2.85, "feet"),
  23534. name: "Head",
  23535. image: {
  23536. source: "./media/characters/gabira/head.svg"
  23537. }
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Normal",
  23543. height: math.unit(8, "feet"),
  23544. default: true
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23550. {
  23551. front: {
  23552. height: math.unit(5 + 3 / 12, "feet"),
  23553. weight: math.unit(137, "lb"),
  23554. name: "Front",
  23555. image: {
  23556. source: "./media/characters/sasha-katraine/front.svg",
  23557. extra: 1745/1694,
  23558. bottom: 37/1782
  23559. }
  23560. },
  23561. back: {
  23562. height: math.unit(5 + 3 / 12, "feet"),
  23563. weight: math.unit(137, "lb"),
  23564. name: "Back",
  23565. image: {
  23566. source: "./media/characters/sasha-katraine/back.svg",
  23567. extra: 1776/1699,
  23568. bottom: 26/1802
  23569. }
  23570. },
  23571. },
  23572. [
  23573. {
  23574. name: "Micro",
  23575. height: math.unit(5, "inches")
  23576. },
  23577. {
  23578. name: "Normal",
  23579. height: math.unit(5 + 3 / 12, "feet"),
  23580. default: true
  23581. },
  23582. ]
  23583. ))
  23584. characterMakers.push(() => makeCharacter(
  23585. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23586. {
  23587. side: {
  23588. height: math.unit(4, "inches"),
  23589. weight: math.unit(200, "grams"),
  23590. name: "Side",
  23591. image: {
  23592. source: "./media/characters/der/side.svg",
  23593. extra: 719 / 400,
  23594. bottom: 30.6 / 749.9187
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Micro",
  23601. height: math.unit(4, "inches"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23608. {
  23609. side: {
  23610. height: math.unit(30, "meters"),
  23611. weight: math.unit(700, "tonnes"),
  23612. name: "Side",
  23613. image: {
  23614. source: "./media/characters/fixerdragon/side.svg",
  23615. extra: (1293.0514 - 116.03) / 1106.86,
  23616. bottom: 116.03 / 1293.0514
  23617. }
  23618. },
  23619. },
  23620. [
  23621. {
  23622. name: "Planck",
  23623. height: math.unit(1.6e-35, "meters")
  23624. },
  23625. {
  23626. name: "Micro",
  23627. height: math.unit(0.4, "meters")
  23628. },
  23629. {
  23630. name: "Normal",
  23631. height: math.unit(30, "meters"),
  23632. default: true
  23633. },
  23634. {
  23635. name: "Megamacro",
  23636. height: math.unit(1.2, "megameters")
  23637. },
  23638. {
  23639. name: "Teramacro",
  23640. height: math.unit(130, "terameters")
  23641. },
  23642. {
  23643. name: "Yottamacro",
  23644. height: math.unit(6200, "yottameters")
  23645. },
  23646. ]
  23647. ));
  23648. characterMakers.push(() => makeCharacter(
  23649. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23650. {
  23651. front: {
  23652. height: math.unit(8, "feet"),
  23653. weight: math.unit(250, "lb"),
  23654. name: "Front",
  23655. image: {
  23656. source: "./media/characters/kite/front.svg",
  23657. extra: 2796 / 2659,
  23658. bottom: 0.002
  23659. }
  23660. },
  23661. },
  23662. [
  23663. {
  23664. name: "Normal",
  23665. height: math.unit(8, "feet"),
  23666. default: true
  23667. },
  23668. {
  23669. name: "Macro",
  23670. height: math.unit(360, "feet")
  23671. },
  23672. {
  23673. name: "Megamacro",
  23674. height: math.unit(1500, "feet")
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23680. {
  23681. front: {
  23682. height: math.unit(5 + 11/12, "feet"),
  23683. weight: math.unit(170, "lb"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/poojawa-vynar/front.svg",
  23687. extra: 1735/1585,
  23688. bottom: 96/1831
  23689. }
  23690. },
  23691. back: {
  23692. height: math.unit(5 + 11/12, "feet"),
  23693. weight: math.unit(170, "lb"),
  23694. name: "Back",
  23695. image: {
  23696. source: "./media/characters/poojawa-vynar/back.svg",
  23697. extra: 1749/1607,
  23698. bottom: 28/1777
  23699. }
  23700. },
  23701. male: {
  23702. height: math.unit(5 + 11/12, "feet"),
  23703. weight: math.unit(170, "lb"),
  23704. name: "Male",
  23705. image: {
  23706. source: "./media/characters/poojawa-vynar/male.svg",
  23707. extra: 1855/1713,
  23708. bottom: 63/1918
  23709. }
  23710. },
  23711. taur: {
  23712. height: math.unit(5 + 11/12, "feet"),
  23713. weight: math.unit(170, "lb"),
  23714. name: "Taur",
  23715. image: {
  23716. source: "./media/characters/poojawa-vynar/taur.svg",
  23717. extra: 1151/1059,
  23718. bottom: 356/1507
  23719. }
  23720. },
  23721. frontDressed: {
  23722. height: math.unit(5 + 11/12, "feet"),
  23723. weight: math.unit(170, "lb"),
  23724. name: "Front (Dressed)",
  23725. image: {
  23726. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23727. extra: 1735/1585,
  23728. bottom: 96/1831
  23729. }
  23730. },
  23731. backDressed: {
  23732. height: math.unit(5 + 11/12, "feet"),
  23733. weight: math.unit(170, "lb"),
  23734. name: "Back (Dressed)",
  23735. image: {
  23736. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23737. extra: 1749/1607,
  23738. bottom: 28/1777
  23739. }
  23740. },
  23741. maleDressed: {
  23742. height: math.unit(5 + 11/12, "feet"),
  23743. weight: math.unit(170, "lb"),
  23744. name: "Male (Dressed)",
  23745. image: {
  23746. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23747. extra: 1855/1713,
  23748. bottom: 63/1918
  23749. }
  23750. },
  23751. taurDressed: {
  23752. height: math.unit(5 + 11/12, "feet"),
  23753. weight: math.unit(170, "lb"),
  23754. name: "Taur (Dressed)",
  23755. image: {
  23756. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23757. extra: 1151/1059,
  23758. bottom: 356/1507
  23759. }
  23760. },
  23761. maw: {
  23762. height: math.unit(1.46, "feet"),
  23763. name: "Maw",
  23764. image: {
  23765. source: "./media/characters/poojawa-vynar/maw.svg"
  23766. }
  23767. },
  23768. head: {
  23769. height: math.unit(2.34, "feet"),
  23770. name: "Head",
  23771. image: {
  23772. source: "./media/characters/poojawa-vynar/head.svg"
  23773. }
  23774. },
  23775. paw: {
  23776. height: math.unit(1.61, "feet"),
  23777. name: "Paw",
  23778. image: {
  23779. source: "./media/characters/poojawa-vynar/paw.svg"
  23780. }
  23781. },
  23782. pawToering: {
  23783. height: math.unit(1.72, "feet"),
  23784. name: "Paw (Toering)",
  23785. image: {
  23786. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23787. }
  23788. },
  23789. toering: {
  23790. height: math.unit(2.9, "inches"),
  23791. name: "Toering",
  23792. image: {
  23793. source: "./media/characters/poojawa-vynar/toering.svg"
  23794. }
  23795. },
  23796. shaft: {
  23797. height: math.unit(0.625, "feet"),
  23798. name: "Shaft",
  23799. image: {
  23800. source: "./media/characters/poojawa-vynar/shaft.svg"
  23801. }
  23802. },
  23803. spade: {
  23804. height: math.unit(0.42, "feet"),
  23805. name: "Spade",
  23806. image: {
  23807. source: "./media/characters/poojawa-vynar/spade.svg"
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Shortstack",
  23814. height: math.unit(4, "feet")
  23815. },
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(5 + 11 / 12, "feet"),
  23819. default: true
  23820. },
  23821. {
  23822. name: "Tauric",
  23823. height: math.unit(4, "meters")
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(293, "meters"),
  23832. weight: math.unit(70400, "tons"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/violette/front.svg",
  23836. extra: 1227 / 1180,
  23837. bottom: 0.005
  23838. }
  23839. },
  23840. back: {
  23841. height: math.unit(293, "meters"),
  23842. weight: math.unit(70400, "tons"),
  23843. name: "Back",
  23844. image: {
  23845. source: "./media/characters/violette/back.svg",
  23846. extra: 1227 / 1180,
  23847. bottom: 0.005
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Macro",
  23854. height: math.unit(293, "meters"),
  23855. default: true
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23861. {
  23862. front: {
  23863. height: math.unit(1050, "feet"),
  23864. weight: math.unit(200000, "tons"),
  23865. name: "Front",
  23866. image: {
  23867. source: "./media/characters/alessandra/front.svg",
  23868. extra: 960 / 912,
  23869. bottom: 0.06
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Macro",
  23876. height: math.unit(1050, "feet")
  23877. },
  23878. {
  23879. name: "Macro+",
  23880. height: math.unit(900, "meters"),
  23881. default: true
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23887. {
  23888. front: {
  23889. height: math.unit(5, "feet"),
  23890. weight: math.unit(187, "lb"),
  23891. name: "Front",
  23892. image: {
  23893. source: "./media/characters/person/front.svg",
  23894. extra: 3087 / 2945,
  23895. bottom: 91 / 3181
  23896. }
  23897. },
  23898. },
  23899. [
  23900. {
  23901. name: "Micro",
  23902. height: math.unit(3, "inches")
  23903. },
  23904. {
  23905. name: "Normal",
  23906. height: math.unit(5, "feet"),
  23907. default: true
  23908. },
  23909. {
  23910. name: "Macro",
  23911. height: math.unit(90, "feet")
  23912. },
  23913. {
  23914. name: "Max Size",
  23915. height: math.unit(280, "feet")
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23921. {
  23922. front: {
  23923. height: math.unit(4.5, "meters"),
  23924. weight: math.unit(3200, "lb"),
  23925. name: "Front",
  23926. image: {
  23927. source: "./media/characters/ty/front.svg",
  23928. extra: 1038 / 960,
  23929. bottom: 31.156 / 1068
  23930. }
  23931. },
  23932. back: {
  23933. height: math.unit(4.5, "meters"),
  23934. weight: math.unit(3200, "lb"),
  23935. name: "Back",
  23936. image: {
  23937. source: "./media/characters/ty/back.svg",
  23938. extra: 1044 / 966,
  23939. bottom: 7.48 / 1049
  23940. }
  23941. },
  23942. },
  23943. [
  23944. {
  23945. name: "Normal",
  23946. height: math.unit(4.5, "meters"),
  23947. default: true
  23948. },
  23949. ]
  23950. ))
  23951. characterMakers.push(() => makeCharacter(
  23952. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23953. {
  23954. front: {
  23955. height: math.unit(5 + 4 / 12, "feet"),
  23956. weight: math.unit(115, "lb"),
  23957. name: "Front",
  23958. image: {
  23959. source: "./media/characters/rocky/front.svg",
  23960. extra: 1012 / 975,
  23961. bottom: 54 / 1066
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Normal",
  23968. height: math.unit(5 + 4 / 12, "feet"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23975. {
  23976. upright: {
  23977. height: math.unit(6, "meters"),
  23978. weight: math.unit(4000, "kg"),
  23979. name: "Upright",
  23980. image: {
  23981. source: "./media/characters/ruin/upright.svg",
  23982. extra: 668 / 661,
  23983. bottom: 42 / 799.8396
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Normal",
  23990. height: math.unit(6, "meters"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23997. {
  23998. front: {
  23999. height: math.unit(5, "feet"),
  24000. weight: math.unit(106, "lb"),
  24001. name: "Front",
  24002. image: {
  24003. source: "./media/characters/robin/front.svg",
  24004. extra: 862 / 799,
  24005. bottom: 42.4 / 914.8856
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Normal",
  24012. height: math.unit(5, "feet"),
  24013. default: true
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24019. {
  24020. side: {
  24021. height: math.unit(3, "feet"),
  24022. weight: math.unit(225, "lb"),
  24023. name: "Side",
  24024. image: {
  24025. source: "./media/characters/saian/side.svg",
  24026. extra: 566 / 356,
  24027. bottom: 79.7 / 643
  24028. }
  24029. },
  24030. maw: {
  24031. height: math.unit(2.85, "feet"),
  24032. name: "Maw",
  24033. image: {
  24034. source: "./media/characters/saian/maw.svg"
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Normal",
  24041. height: math.unit(3, "feet"),
  24042. default: true
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24048. {
  24049. side: {
  24050. height: math.unit(8, "feet"),
  24051. weight: math.unit(300, "lb"),
  24052. name: "Side",
  24053. image: {
  24054. source: "./media/characters/equus-silvermane/side.svg",
  24055. extra: 2176 / 2050,
  24056. bottom: 65.7 / 2245
  24057. }
  24058. },
  24059. front: {
  24060. height: math.unit(8, "feet"),
  24061. weight: math.unit(300, "lb"),
  24062. name: "Front",
  24063. image: {
  24064. source: "./media/characters/equus-silvermane/front.svg",
  24065. extra: 4633 / 4400,
  24066. bottom: 71.3 / 4706.915
  24067. }
  24068. },
  24069. sideStepping: {
  24070. height: math.unit(8, "feet"),
  24071. weight: math.unit(300, "lb"),
  24072. name: "Side (Stepping)",
  24073. image: {
  24074. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24075. extra: 1968 / 1860,
  24076. bottom: 16.4 / 1989
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(8, "feet")
  24084. },
  24085. {
  24086. name: "Minimacro",
  24087. height: math.unit(75, "feet"),
  24088. default: true
  24089. },
  24090. {
  24091. name: "Macro",
  24092. height: math.unit(150, "feet")
  24093. },
  24094. {
  24095. name: "Macro+",
  24096. height: math.unit(1000, "feet")
  24097. },
  24098. {
  24099. name: "Megamacro",
  24100. height: math.unit(1, "mile")
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24106. {
  24107. side: {
  24108. height: math.unit(20, "feet"),
  24109. weight: math.unit(30000, "kg"),
  24110. name: "Side",
  24111. image: {
  24112. source: "./media/characters/windar/side.svg",
  24113. extra: 1491 / 1248,
  24114. bottom: 82.56 / 1568
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Normal",
  24121. height: math.unit(20, "feet"),
  24122. default: true
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24128. {
  24129. side: {
  24130. height: math.unit(15.66, "feet"),
  24131. weight: math.unit(150, "lb"),
  24132. name: "Side",
  24133. image: {
  24134. source: "./media/characters/melody/side.svg",
  24135. extra: 1097 / 944,
  24136. bottom: 11.8 / 1109
  24137. }
  24138. },
  24139. sideOutfit: {
  24140. height: math.unit(15.66, "feet"),
  24141. weight: math.unit(150, "lb"),
  24142. name: "Side (Outfit)",
  24143. image: {
  24144. source: "./media/characters/melody/side-outfit.svg",
  24145. extra: 1097 / 944,
  24146. bottom: 11.8 / 1109
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Normal",
  24153. height: math.unit(15.66, "feet"),
  24154. default: true
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24160. {
  24161. armoredFront: {
  24162. height: math.unit(8, "feet"),
  24163. weight: math.unit(325, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/windera/armored-front.svg",
  24167. extra: 1830/1598,
  24168. bottom: 151/1981
  24169. },
  24170. form: "armored",
  24171. default: true
  24172. },
  24173. macroFront: {
  24174. height: math.unit(70, "feet"),
  24175. weight: math.unit(315453, "lb"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/windera/macro-front.svg",
  24179. extra: 963/883,
  24180. bottom: 23/986
  24181. },
  24182. form: "macro",
  24183. default: true
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Normal",
  24189. height: math.unit(8, "feet"),
  24190. default: true,
  24191. form: "armored"
  24192. },
  24193. {
  24194. name: "Normal",
  24195. height: math.unit(70, "feet"),
  24196. default: true,
  24197. form: "macro"
  24198. },
  24199. ],
  24200. {
  24201. "armored": {
  24202. name: "Armored",
  24203. default: true
  24204. },
  24205. "macro": {
  24206. name: "Macro",
  24207. },
  24208. }
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24212. {
  24213. front: {
  24214. height: math.unit(28.75, "feet"),
  24215. weight: math.unit(2000, "kg"),
  24216. name: "Front",
  24217. image: {
  24218. source: "./media/characters/sonear/front.svg",
  24219. extra: 1041.1 / 964.9,
  24220. bottom: 53.7 / 1096.6
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(28.75, "feet"),
  24228. default: true
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24234. {
  24235. side: {
  24236. height: math.unit(25.5, "feet"),
  24237. weight: math.unit(23000, "kg"),
  24238. name: "Side",
  24239. image: {
  24240. source: "./media/characters/kanara/side.svg"
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Normal",
  24247. height: math.unit(25.5, "feet"),
  24248. default: true
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24254. {
  24255. side: {
  24256. height: math.unit(10, "feet"),
  24257. weight: math.unit(1000, "kg"),
  24258. name: "Side",
  24259. image: {
  24260. source: "./media/characters/ereus/side.svg",
  24261. extra: 1157 / 959,
  24262. bottom: 153 / 1312.5
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(10, "feet"),
  24270. default: true
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24276. {
  24277. side: {
  24278. height: math.unit(4.5, "feet"),
  24279. weight: math.unit(500, "lb"),
  24280. name: "Side",
  24281. image: {
  24282. source: "./media/characters/e-ter/side.svg",
  24283. extra: 1550 / 1248,
  24284. bottom: 146 / 1694
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(4.5, "feet"),
  24292. default: true
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24298. {
  24299. side: {
  24300. height: math.unit(9.7, "feet"),
  24301. weight: math.unit(4000, "kg"),
  24302. name: "Side",
  24303. image: {
  24304. source: "./media/characters/yamie/side.svg"
  24305. }
  24306. },
  24307. },
  24308. [
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(9.7, "feet"),
  24312. default: true
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24318. {
  24319. front: {
  24320. height: math.unit(50, "feet"),
  24321. weight: math.unit(50000, "kg"),
  24322. name: "Front",
  24323. image: {
  24324. source: "./media/characters/anders/front.svg",
  24325. extra: 570 / 539,
  24326. bottom: 14.7 / 586.7
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Large",
  24333. height: math.unit(50, "feet")
  24334. },
  24335. {
  24336. name: "Macro",
  24337. height: math.unit(2000, "feet"),
  24338. default: true
  24339. },
  24340. {
  24341. name: "Megamacro",
  24342. height: math.unit(12, "miles")
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24348. {
  24349. front: {
  24350. height: math.unit(7 + 2 / 12, "feet"),
  24351. weight: math.unit(300, "lb"),
  24352. name: "Front",
  24353. image: {
  24354. source: "./media/characters/reban/front.svg",
  24355. extra: 1287/1212,
  24356. bottom: 148/1435
  24357. }
  24358. },
  24359. head: {
  24360. height: math.unit(1.95, "feet"),
  24361. name: "Head",
  24362. image: {
  24363. source: "./media/characters/reban/head.svg"
  24364. }
  24365. },
  24366. maw: {
  24367. height: math.unit(0.95, "feet"),
  24368. name: "Maw",
  24369. image: {
  24370. source: "./media/characters/reban/maw.svg"
  24371. }
  24372. },
  24373. foot: {
  24374. height: math.unit(1.65, "feet"),
  24375. name: "Foot",
  24376. image: {
  24377. source: "./media/characters/reban/foot.svg"
  24378. }
  24379. },
  24380. dick: {
  24381. height: math.unit(7 / 5, "feet"),
  24382. name: "Dick",
  24383. image: {
  24384. source: "./media/characters/reban/dick.svg"
  24385. }
  24386. },
  24387. },
  24388. [
  24389. {
  24390. name: "Natural Height",
  24391. height: math.unit(7 + 2 / 12, "feet")
  24392. },
  24393. {
  24394. name: "Macro",
  24395. height: math.unit(500, "feet"),
  24396. default: true
  24397. },
  24398. {
  24399. name: "Canon Height",
  24400. height: math.unit(50, "AU")
  24401. },
  24402. ]
  24403. ))
  24404. characterMakers.push(() => makeCharacter(
  24405. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24406. {
  24407. front: {
  24408. height: math.unit(6, "feet"),
  24409. weight: math.unit(150, "lb"),
  24410. name: "Front",
  24411. image: {
  24412. source: "./media/characters/terrance-keayes/front.svg",
  24413. extra: 1.005,
  24414. bottom: 151 / 1615
  24415. }
  24416. },
  24417. side: {
  24418. height: math.unit(6, "feet"),
  24419. weight: math.unit(150, "lb"),
  24420. name: "Side",
  24421. image: {
  24422. source: "./media/characters/terrance-keayes/side.svg",
  24423. extra: 1.005,
  24424. bottom: 129.4 / 1544
  24425. }
  24426. },
  24427. back: {
  24428. height: math.unit(6, "feet"),
  24429. weight: math.unit(150, "lb"),
  24430. name: "Back",
  24431. image: {
  24432. source: "./media/characters/terrance-keayes/back.svg",
  24433. extra: 1.005,
  24434. bottom: 58.4 / 1557.3
  24435. }
  24436. },
  24437. dick: {
  24438. height: math.unit(6 * 0.208, "feet"),
  24439. name: "Dick",
  24440. image: {
  24441. source: "./media/characters/terrance-keayes/dick.svg"
  24442. }
  24443. },
  24444. },
  24445. [
  24446. {
  24447. name: "Canon Height",
  24448. height: math.unit(35, "miles"),
  24449. default: true
  24450. },
  24451. ]
  24452. ))
  24453. characterMakers.push(() => makeCharacter(
  24454. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24455. {
  24456. front: {
  24457. height: math.unit(6, "feet"),
  24458. weight: math.unit(150, "lb"),
  24459. name: "Front",
  24460. image: {
  24461. source: "./media/characters/ofelia/front.svg",
  24462. extra: 1130/1117,
  24463. bottom: 91/1221
  24464. }
  24465. },
  24466. back: {
  24467. height: math.unit(6, "feet"),
  24468. weight: math.unit(150, "lb"),
  24469. name: "Back",
  24470. image: {
  24471. source: "./media/characters/ofelia/back.svg",
  24472. extra: 1172/1159,
  24473. bottom: 28/1200
  24474. }
  24475. },
  24476. maw: {
  24477. height: math.unit(1, "feet"),
  24478. name: "Maw",
  24479. image: {
  24480. source: "./media/characters/ofelia/maw.svg"
  24481. }
  24482. },
  24483. foot: {
  24484. height: math.unit(1.949, "feet"),
  24485. name: "Foot",
  24486. image: {
  24487. source: "./media/characters/ofelia/foot.svg"
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Canon Height",
  24494. height: math.unit(2000, "miles"),
  24495. default: true
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24501. {
  24502. front: {
  24503. height: math.unit(6, "feet"),
  24504. weight: math.unit(150, "lb"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/samuel/front.svg",
  24508. extra: 265 / 258,
  24509. bottom: 2 / 266.1566
  24510. }
  24511. },
  24512. },
  24513. [
  24514. {
  24515. name: "Macro",
  24516. height: math.unit(100, "feet"),
  24517. default: true
  24518. },
  24519. {
  24520. name: "Full Size",
  24521. height: math.unit(1000, "miles")
  24522. },
  24523. ]
  24524. ))
  24525. characterMakers.push(() => makeCharacter(
  24526. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24527. {
  24528. front: {
  24529. height: math.unit(6, "feet"),
  24530. weight: math.unit(300, "lb"),
  24531. name: "Front",
  24532. image: {
  24533. source: "./media/characters/beishir-kiel/front.svg",
  24534. extra: 569 / 547,
  24535. bottom: 41.9 / 609
  24536. }
  24537. },
  24538. maw: {
  24539. height: math.unit(6 * 0.202, "feet"),
  24540. name: "Maw",
  24541. image: {
  24542. source: "./media/characters/beishir-kiel/maw.svg"
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Macro",
  24549. height: math.unit(300, "feet"),
  24550. default: true
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(5 + 7/12, "feet"),
  24559. weight: math.unit(120, "lb"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/logan-grey/front.svg",
  24563. extra: 1836/1738,
  24564. bottom: 108/1944
  24565. }
  24566. },
  24567. back: {
  24568. height: math.unit(5 + 7/12, "feet"),
  24569. weight: math.unit(120, "lb"),
  24570. name: "Back",
  24571. image: {
  24572. source: "./media/characters/logan-grey/back.svg",
  24573. extra: 1880/1794,
  24574. bottom: 24/1904
  24575. }
  24576. },
  24577. frontSfw: {
  24578. height: math.unit(5 + 7/12, "feet"),
  24579. weight: math.unit(120, "lb"),
  24580. name: "Front (SFW)",
  24581. image: {
  24582. source: "./media/characters/logan-grey/front-sfw.svg",
  24583. extra: 1836/1738,
  24584. bottom: 108/1944
  24585. }
  24586. },
  24587. backSfw: {
  24588. height: math.unit(5 + 7/12, "feet"),
  24589. weight: math.unit(120, "lb"),
  24590. name: "Back (SFW)",
  24591. image: {
  24592. source: "./media/characters/logan-grey/back-sfw.svg",
  24593. extra: 1880/1794,
  24594. bottom: 24/1904
  24595. }
  24596. },
  24597. hands: {
  24598. height: math.unit(0.84, "feet"),
  24599. name: "Hands",
  24600. image: {
  24601. source: "./media/characters/logan-grey/hands.svg"
  24602. }
  24603. },
  24604. paws: {
  24605. height: math.unit(0.72, "feet"),
  24606. name: "Paws",
  24607. image: {
  24608. source: "./media/characters/logan-grey/paws.svg"
  24609. }
  24610. },
  24611. cock: {
  24612. height: math.unit(1.45, "feet"),
  24613. name: "Cock",
  24614. image: {
  24615. source: "./media/characters/logan-grey/cock.svg"
  24616. }
  24617. },
  24618. cockAlt: {
  24619. height: math.unit(1.437, "feet"),
  24620. name: "Cock (alt)",
  24621. image: {
  24622. source: "./media/characters/logan-grey/cock-alt.svg"
  24623. }
  24624. },
  24625. },
  24626. [
  24627. {
  24628. name: "Normal",
  24629. height: math.unit(5 + 8 / 12, "feet")
  24630. },
  24631. {
  24632. name: "The 500 Foot Femboy",
  24633. height: math.unit(500, "feet"),
  24634. default: true
  24635. },
  24636. {
  24637. name: "Megmacro",
  24638. height: math.unit(20, "miles")
  24639. },
  24640. ]
  24641. ))
  24642. characterMakers.push(() => makeCharacter(
  24643. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24644. {
  24645. front: {
  24646. height: math.unit(8 + 2 / 12, "feet"),
  24647. weight: math.unit(275, "lb"),
  24648. name: "Front",
  24649. image: {
  24650. source: "./media/characters/draganta/front.svg",
  24651. extra: 1177 / 1135,
  24652. bottom: 33.46 / 1212.1
  24653. }
  24654. },
  24655. },
  24656. [
  24657. {
  24658. name: "Normal",
  24659. height: math.unit(8 + 6 / 12, "feet"),
  24660. default: true
  24661. },
  24662. {
  24663. name: "Macro",
  24664. height: math.unit(150, "feet")
  24665. },
  24666. {
  24667. name: "Megamacro",
  24668. height: math.unit(1000, "miles")
  24669. },
  24670. ]
  24671. ))
  24672. characterMakers.push(() => makeCharacter(
  24673. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24674. {
  24675. front: {
  24676. height: math.unit(1.72, "m"),
  24677. weight: math.unit(80, "lb"),
  24678. name: "Front",
  24679. image: {
  24680. source: "./media/characters/voski/front.svg",
  24681. extra: 2076.22 / 2022.4,
  24682. bottom: 102.7 / 2177.3866
  24683. }
  24684. },
  24685. frontFlaccid: {
  24686. height: math.unit(1.72, "m"),
  24687. weight: math.unit(80, "lb"),
  24688. name: "Front (Flaccid)",
  24689. image: {
  24690. source: "./media/characters/voski/front-flaccid.svg",
  24691. extra: 2076.22 / 2022.4,
  24692. bottom: 102.7 / 2177.3866
  24693. }
  24694. },
  24695. frontErect: {
  24696. height: math.unit(1.72, "m"),
  24697. weight: math.unit(80, "lb"),
  24698. name: "Front (Erect)",
  24699. image: {
  24700. source: "./media/characters/voski/front-erect.svg",
  24701. extra: 2076.22 / 2022.4,
  24702. bottom: 102.7 / 2177.3866
  24703. }
  24704. },
  24705. back: {
  24706. height: math.unit(1.72, "m"),
  24707. weight: math.unit(80, "lb"),
  24708. name: "Back",
  24709. image: {
  24710. source: "./media/characters/voski/back.svg",
  24711. extra: 2104 / 2051,
  24712. bottom: 10.45 / 2113.63
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Normal",
  24719. height: math.unit(1.72, "m")
  24720. },
  24721. {
  24722. name: "Macro",
  24723. height: math.unit(55, "m"),
  24724. default: true
  24725. },
  24726. {
  24727. name: "Macro+",
  24728. height: math.unit(300, "m")
  24729. },
  24730. {
  24731. name: "Macro++",
  24732. height: math.unit(700, "m")
  24733. },
  24734. {
  24735. name: "Macro+++",
  24736. height: math.unit(4500, "m")
  24737. },
  24738. {
  24739. name: "Macro++++",
  24740. height: math.unit(45, "km")
  24741. },
  24742. {
  24743. name: "Macro+++++",
  24744. height: math.unit(1220, "km")
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24750. {
  24751. front: {
  24752. height: math.unit(2.3, "m"),
  24753. weight: math.unit(304, "kg"),
  24754. name: "Front",
  24755. image: {
  24756. source: "./media/characters/icowom-lee/front.svg",
  24757. extra: 985 / 955,
  24758. bottom: 25.4 / 1012
  24759. }
  24760. },
  24761. fronttentacles: {
  24762. height: math.unit(2.3, "m"),
  24763. weight: math.unit(304, "kg"),
  24764. name: "Front-tentacles",
  24765. image: {
  24766. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24767. extra: 985 / 955,
  24768. bottom: 25.4 / 1012
  24769. }
  24770. },
  24771. back: {
  24772. height: math.unit(2.3, "m"),
  24773. weight: math.unit(304, "kg"),
  24774. name: "Back",
  24775. image: {
  24776. source: "./media/characters/icowom-lee/back.svg",
  24777. extra: 975 / 954,
  24778. bottom: 9.5 / 985
  24779. }
  24780. },
  24781. backtentacles: {
  24782. height: math.unit(2.3, "m"),
  24783. weight: math.unit(304, "kg"),
  24784. name: "Back-tentacles",
  24785. image: {
  24786. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24787. extra: 975 / 954,
  24788. bottom: 9.5 / 985
  24789. }
  24790. },
  24791. frontDressed: {
  24792. height: math.unit(2.3, "m"),
  24793. weight: math.unit(304, "kg"),
  24794. name: "Front (Dressed)",
  24795. image: {
  24796. source: "./media/characters/icowom-lee/front-dressed.svg",
  24797. extra: 3076 / 2933,
  24798. bottom: 51.4 / 3125.1889
  24799. }
  24800. },
  24801. rump: {
  24802. height: math.unit(0.776, "meters"),
  24803. name: "Rump",
  24804. image: {
  24805. source: "./media/characters/icowom-lee/rump.svg"
  24806. }
  24807. },
  24808. genitals: {
  24809. height: math.unit(0.78, "meters"),
  24810. name: "Genitals",
  24811. image: {
  24812. source: "./media/characters/icowom-lee/genitals.svg"
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(2.3, "meters"),
  24820. default: true
  24821. },
  24822. {
  24823. name: "Macro",
  24824. height: math.unit(94, "meters"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(22, "meters"),
  24834. weight: math.unit(21000, "kg"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/shock-diamond/front.svg",
  24838. extra: 2204 / 2053,
  24839. bottom: 65 / 2239.47
  24840. }
  24841. },
  24842. frontNude: {
  24843. height: math.unit(22, "meters"),
  24844. weight: math.unit(21000, "kg"),
  24845. name: "Front (Nude)",
  24846. image: {
  24847. source: "./media/characters/shock-diamond/front-nude.svg",
  24848. extra: 2514 / 2285,
  24849. bottom: 13 / 2527.56
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(3, "meters")
  24857. },
  24858. {
  24859. name: "Macro",
  24860. height: math.unit(22, "meters"),
  24861. default: true
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(5 + 4/12, "feet"),
  24870. weight: math.unit(125, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/rory/front.svg",
  24874. extra: 1790/1681,
  24875. bottom: 66/1856
  24876. },
  24877. form: "normal",
  24878. default: true
  24879. },
  24880. back: {
  24881. height: math.unit(5 + 4/12, "feet"),
  24882. weight: math.unit(125, "lb"),
  24883. name: "Back",
  24884. image: {
  24885. source: "./media/characters/rory/back.svg",
  24886. extra: 1805/1690,
  24887. bottom: 56/1861
  24888. },
  24889. form: "normal"
  24890. },
  24891. frontDressed: {
  24892. height: math.unit(5 + 4/12, "feet"),
  24893. weight: math.unit(125, "lb"),
  24894. name: "Front (Dressed)",
  24895. image: {
  24896. source: "./media/characters/rory/front-dressed.svg",
  24897. extra: 1790/1681,
  24898. bottom: 66/1856
  24899. },
  24900. form: "normal"
  24901. },
  24902. backDressed: {
  24903. height: math.unit(5 + 4/12, "feet"),
  24904. weight: math.unit(125, "lb"),
  24905. name: "Back (Dressed)",
  24906. image: {
  24907. source: "./media/characters/rory/back-dressed.svg",
  24908. extra: 1805/1690,
  24909. bottom: 56/1861
  24910. },
  24911. form: "normal"
  24912. },
  24913. frontNsfw: {
  24914. height: math.unit(5 + 4/12, "feet"),
  24915. weight: math.unit(125, "lb"),
  24916. name: "Front (NSFW)",
  24917. image: {
  24918. source: "./media/characters/rory/front-nsfw.svg",
  24919. extra: 1790/1681,
  24920. bottom: 66/1856
  24921. },
  24922. form: "normal"
  24923. },
  24924. backNsfw: {
  24925. height: math.unit(5 + 4/12, "feet"),
  24926. weight: math.unit(125, "lb"),
  24927. name: "Back (NSFW)",
  24928. image: {
  24929. source: "./media/characters/rory/back-nsfw.svg",
  24930. extra: 1805/1690,
  24931. bottom: 56/1861
  24932. },
  24933. form: "normal"
  24934. },
  24935. dick: {
  24936. height: math.unit(0.8, "feet"),
  24937. name: "Dick",
  24938. image: {
  24939. source: "./media/characters/rory/dick.svg"
  24940. },
  24941. form: "normal"
  24942. },
  24943. thicc_front: {
  24944. height: math.unit(5 + 4/12, "feet"),
  24945. weight: math.unit(195, "lb"),
  24946. name: "Front",
  24947. image: {
  24948. source: "./media/characters/rory/thicc-front.svg",
  24949. extra: 1220/1100,
  24950. bottom: 103/1323
  24951. },
  24952. form: "thicc",
  24953. default: true
  24954. },
  24955. thicc_back: {
  24956. height: math.unit(5 + 4/12, "feet"),
  24957. weight: math.unit(195, "lb"),
  24958. name: "Back",
  24959. image: {
  24960. source: "./media/characters/rory/thicc-back.svg",
  24961. extra: 1166/1086,
  24962. bottom: 35/1201
  24963. },
  24964. form: "thicc"
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Micro",
  24970. height: math.unit(3, "inches"),
  24971. allForms: true
  24972. },
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(5 + 4/12, "feet"),
  24976. allForms: true,
  24977. default: true
  24978. },
  24979. {
  24980. name: "Macro",
  24981. height: math.unit(90, "feet"),
  24982. allForms: true
  24983. },
  24984. {
  24985. name: "Supercharged",
  24986. height: math.unit(270, "feet"),
  24987. allForms: true
  24988. },
  24989. ],
  24990. {
  24991. "normal": {
  24992. name: "Normal",
  24993. default: true
  24994. },
  24995. "thicc": {
  24996. name: "Thicc",
  24997. },
  24998. }
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(5 + 9 / 12, "feet"),
  25005. weight: math.unit(190, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/sprisk/front.svg",
  25009. extra: 1225 / 1180,
  25010. bottom: 42.7 / 1266.4
  25011. }
  25012. },
  25013. frontNsfw: {
  25014. height: math.unit(5 + 9 / 12, "feet"),
  25015. weight: math.unit(190, "lb"),
  25016. name: "Front (NSFW)",
  25017. image: {
  25018. source: "./media/characters/sprisk/front-nsfw.svg",
  25019. extra: 1225 / 1180,
  25020. bottom: 42.7 / 1266.4
  25021. }
  25022. },
  25023. back: {
  25024. height: math.unit(5 + 9 / 12, "feet"),
  25025. weight: math.unit(190, "lb"),
  25026. name: "Back",
  25027. image: {
  25028. source: "./media/characters/sprisk/back.svg",
  25029. extra: 1247 / 1200,
  25030. bottom: 5.6 / 1253.04
  25031. }
  25032. },
  25033. },
  25034. [
  25035. {
  25036. name: "Tiny",
  25037. height: math.unit(2, "inches")
  25038. },
  25039. {
  25040. name: "Normal",
  25041. height: math.unit(5 + 9 / 12, "feet"),
  25042. default: true
  25043. },
  25044. {
  25045. name: "Mini Macro",
  25046. height: math.unit(18, "feet")
  25047. },
  25048. {
  25049. name: "Macro",
  25050. height: math.unit(100, "feet")
  25051. },
  25052. {
  25053. name: "MACRO",
  25054. height: math.unit(50, "miles")
  25055. },
  25056. {
  25057. name: "M A C R O",
  25058. height: math.unit(300, "miles")
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25064. {
  25065. side: {
  25066. height: math.unit(15.6, "meters"),
  25067. weight: math.unit(700000, "kg"),
  25068. name: "Side",
  25069. image: {
  25070. source: "./media/characters/bunsen/side.svg",
  25071. extra: 1644 / 358
  25072. }
  25073. },
  25074. foot: {
  25075. height: math.unit(1.611 * 1644 / 358, "meter"),
  25076. name: "Foot",
  25077. image: {
  25078. source: "./media/characters/bunsen/foot.svg"
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Small",
  25085. height: math.unit(10, "feet")
  25086. },
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(15.6, "meters"),
  25090. default: true
  25091. },
  25092. ]
  25093. ))
  25094. characterMakers.push(() => makeCharacter(
  25095. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25096. {
  25097. front: {
  25098. height: math.unit(4 + 11 / 12, "feet"),
  25099. weight: math.unit(140, "lb"),
  25100. name: "Front",
  25101. image: {
  25102. source: "./media/characters/sesh/front.svg",
  25103. extra: 3420 / 3231,
  25104. bottom: 72 / 3949.5
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Normal",
  25111. height: math.unit(4 + 11 / 12, "feet")
  25112. },
  25113. {
  25114. name: "Grown",
  25115. height: math.unit(15, "feet"),
  25116. default: true
  25117. },
  25118. {
  25119. name: "Macro",
  25120. height: math.unit(1500, "feet")
  25121. },
  25122. {
  25123. name: "Megamacro",
  25124. height: math.unit(30, "miles")
  25125. },
  25126. {
  25127. name: "Continental",
  25128. height: math.unit(3000, "miles")
  25129. },
  25130. {
  25131. name: "Gravity Mass",
  25132. height: math.unit(300000, "miles")
  25133. },
  25134. {
  25135. name: "Planet Buster",
  25136. height: math.unit(30000000, "miles")
  25137. },
  25138. {
  25139. name: "Big",
  25140. height: math.unit(3000000000, "miles")
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(9, "feet"),
  25149. weight: math.unit(350, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/pepper/front.svg",
  25153. extra: 1448 / 1312,
  25154. bottom: 9.4 / 1457.88
  25155. }
  25156. },
  25157. back: {
  25158. height: math.unit(9, "feet"),
  25159. weight: math.unit(350, "lb"),
  25160. name: "Back",
  25161. image: {
  25162. source: "./media/characters/pepper/back.svg",
  25163. extra: 1423 / 1300,
  25164. bottom: 4.6 / 1429
  25165. }
  25166. },
  25167. maw: {
  25168. height: math.unit(0.932, "feet"),
  25169. name: "Maw",
  25170. image: {
  25171. source: "./media/characters/pepper/maw.svg"
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(9, "feet"),
  25179. default: true
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25185. {
  25186. front: {
  25187. height: math.unit(6, "feet"),
  25188. weight: math.unit(150, "lb"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/maelstrom/front.svg",
  25192. extra: 2100 / 1883,
  25193. bottom: 94 / 2196.7
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Less Kaiju",
  25200. height: math.unit(200, "feet")
  25201. },
  25202. {
  25203. name: "Kaiju",
  25204. height: math.unit(400, "feet"),
  25205. default: true
  25206. },
  25207. {
  25208. name: "Kaiju-er",
  25209. height: math.unit(600, "feet")
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25215. {
  25216. front: {
  25217. height: math.unit(6 + 5 / 12, "feet"),
  25218. weight: math.unit(180, "lb"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/lexir/front.svg",
  25222. extra: 180 / 172,
  25223. bottom: 12 / 192
  25224. }
  25225. },
  25226. back: {
  25227. height: math.unit(6 + 5 / 12, "feet"),
  25228. weight: math.unit(180, "lb"),
  25229. name: "Back",
  25230. image: {
  25231. source: "./media/characters/lexir/back.svg",
  25232. extra: 1273/1201,
  25233. bottom: 39/1312
  25234. }
  25235. },
  25236. },
  25237. [
  25238. {
  25239. name: "Very Smal",
  25240. height: math.unit(1, "nm")
  25241. },
  25242. {
  25243. name: "Normal",
  25244. height: math.unit(6 + 5 / 12, "feet"),
  25245. default: true
  25246. },
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(1, "mile")
  25250. },
  25251. {
  25252. name: "Megamacro",
  25253. height: math.unit(50, "miles")
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25259. {
  25260. front: {
  25261. height: math.unit(1.5, "meters"),
  25262. weight: math.unit(100, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/maksio/front.svg",
  25266. extra: 1549 / 1531,
  25267. bottom: 123.7 / 1674.5429
  25268. }
  25269. },
  25270. back: {
  25271. height: math.unit(1.5, "meters"),
  25272. weight: math.unit(100, "lb"),
  25273. name: "Back",
  25274. image: {
  25275. source: "./media/characters/maksio/back.svg",
  25276. extra: 1541 / 1509,
  25277. bottom: 97 / 1639
  25278. }
  25279. },
  25280. hand: {
  25281. height: math.unit(0.621, "feet"),
  25282. name: "Hand",
  25283. image: {
  25284. source: "./media/characters/maksio/hand.svg"
  25285. }
  25286. },
  25287. foot: {
  25288. height: math.unit(1.611, "feet"),
  25289. name: "Foot",
  25290. image: {
  25291. source: "./media/characters/maksio/foot.svg"
  25292. }
  25293. },
  25294. },
  25295. [
  25296. {
  25297. name: "Shrunken",
  25298. height: math.unit(10, "cm")
  25299. },
  25300. {
  25301. name: "Normal",
  25302. height: math.unit(150, "cm"),
  25303. default: true
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25309. {
  25310. front: {
  25311. height: math.unit(100, "feet"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/erza-bear/front.svg",
  25315. extra: 2449 / 2390,
  25316. bottom: 46 / 2494
  25317. }
  25318. },
  25319. back: {
  25320. height: math.unit(100, "feet"),
  25321. name: "Back",
  25322. image: {
  25323. source: "./media/characters/erza-bear/back.svg",
  25324. extra: 2489 / 2430,
  25325. bottom: 85.4 / 2480
  25326. }
  25327. },
  25328. tail: {
  25329. height: math.unit(42, "feet"),
  25330. name: "Tail",
  25331. image: {
  25332. source: "./media/characters/erza-bear/tail.svg"
  25333. }
  25334. },
  25335. tongue: {
  25336. height: math.unit(8, "feet"),
  25337. name: "Tongue",
  25338. image: {
  25339. source: "./media/characters/erza-bear/tongue.svg"
  25340. }
  25341. },
  25342. dick: {
  25343. height: math.unit(10.5, "feet"),
  25344. name: "Dick",
  25345. image: {
  25346. source: "./media/characters/erza-bear/dick.svg"
  25347. }
  25348. },
  25349. dickVertical: {
  25350. height: math.unit(16.9, "feet"),
  25351. name: "Dick (Vertical)",
  25352. image: {
  25353. source: "./media/characters/erza-bear/dick-vertical.svg"
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Macro",
  25360. height: math.unit(100, "feet"),
  25361. default: true
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(172, "cm"),
  25370. weight: math.unit(73, "kg"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/violet-flor/front.svg",
  25374. extra: 1530 / 1442,
  25375. bottom: 61.9 / 1588.8
  25376. }
  25377. },
  25378. back: {
  25379. height: math.unit(180, "cm"),
  25380. weight: math.unit(73, "kg"),
  25381. name: "Back",
  25382. image: {
  25383. source: "./media/characters/violet-flor/back.svg",
  25384. extra: 1692 / 1630,
  25385. bottom: 20 / 1712
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(172, "cm"),
  25393. default: true
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(6, "feet"),
  25402. weight: math.unit(220, "lb"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/lynn-rhea/front.svg",
  25406. extra: 310 / 273
  25407. }
  25408. },
  25409. back: {
  25410. height: math.unit(6, "feet"),
  25411. weight: math.unit(220, "lb"),
  25412. name: "Back",
  25413. image: {
  25414. source: "./media/characters/lynn-rhea/back.svg",
  25415. extra: 310 / 273
  25416. }
  25417. },
  25418. dicks: {
  25419. height: math.unit(0.9, "feet"),
  25420. name: "Dicks",
  25421. image: {
  25422. source: "./media/characters/lynn-rhea/dicks.svg"
  25423. }
  25424. },
  25425. slit: {
  25426. height: math.unit(0.4, "feet"),
  25427. name: "Slit",
  25428. image: {
  25429. source: "./media/characters/lynn-rhea/slit.svg"
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Micro",
  25436. height: math.unit(1, "inch")
  25437. },
  25438. {
  25439. name: "Macro",
  25440. height: math.unit(60, "feet"),
  25441. default: true
  25442. },
  25443. {
  25444. name: "Megamacro",
  25445. height: math.unit(2, "miles")
  25446. },
  25447. {
  25448. name: "Gigamacro",
  25449. height: math.unit(3, "earths")
  25450. },
  25451. {
  25452. name: "Galactic",
  25453. height: math.unit(0.8, "galaxies")
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25459. {
  25460. front: {
  25461. height: math.unit(1600, "feet"),
  25462. weight: math.unit(85758785169, "kg"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/valathos/front.svg",
  25466. extra: 1451 / 1339
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Macro",
  25473. height: math.unit(1600, "feet"),
  25474. default: true
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25480. {
  25481. front: {
  25482. height: math.unit(7 + 5 / 12, "feet"),
  25483. weight: math.unit(300, "lb"),
  25484. name: "Front",
  25485. image: {
  25486. source: "./media/characters/azula/front.svg",
  25487. extra: 3208 / 2880,
  25488. bottom: 80.2 / 3277
  25489. }
  25490. },
  25491. back: {
  25492. height: math.unit(7 + 5 / 12, "feet"),
  25493. weight: math.unit(300, "lb"),
  25494. name: "Back",
  25495. image: {
  25496. source: "./media/characters/azula/back.svg",
  25497. extra: 3169 / 2822,
  25498. bottom: 150.6 / 3321
  25499. }
  25500. },
  25501. },
  25502. [
  25503. {
  25504. name: "Normal",
  25505. height: math.unit(7 + 5 / 12, "feet"),
  25506. default: true
  25507. },
  25508. {
  25509. name: "Big",
  25510. height: math.unit(20, "feet")
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25516. {
  25517. front: {
  25518. height: math.unit(5 + 1 / 12, "feet"),
  25519. weight: math.unit(110, "lb"),
  25520. name: "Front",
  25521. image: {
  25522. source: "./media/characters/rupert/front.svg",
  25523. extra: 1549 / 1495,
  25524. bottom: 54.2 / 1604.4
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(5 + 1 / 12, "feet"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25538. {
  25539. front: {
  25540. height: math.unit(8 + 4 / 12, "feet"),
  25541. weight: math.unit(350, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/sheera-castellar/front.svg",
  25545. extra: 1957 / 1894,
  25546. bottom: 26.97 / 1975.017
  25547. }
  25548. },
  25549. side: {
  25550. height: math.unit(8 + 4 / 12, "feet"),
  25551. weight: math.unit(350, "lb"),
  25552. name: "Side",
  25553. image: {
  25554. source: "./media/characters/sheera-castellar/side.svg",
  25555. extra: 1957 / 1894
  25556. }
  25557. },
  25558. back: {
  25559. height: math.unit(8 + 4 / 12, "feet"),
  25560. weight: math.unit(350, "lb"),
  25561. name: "Back",
  25562. image: {
  25563. source: "./media/characters/sheera-castellar/back.svg",
  25564. extra: 1957 / 1894
  25565. }
  25566. },
  25567. angled: {
  25568. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25569. weight: math.unit(350, "lb"),
  25570. name: "Angled",
  25571. image: {
  25572. source: "./media/characters/sheera-castellar/angled.svg",
  25573. extra: 1807 / 1707,
  25574. bottom: 68 / 1875
  25575. }
  25576. },
  25577. genitals: {
  25578. height: math.unit(2.2, "feet"),
  25579. name: "Genitals",
  25580. image: {
  25581. source: "./media/characters/sheera-castellar/genitals.svg"
  25582. }
  25583. },
  25584. taur: {
  25585. height: math.unit(10 + 6/12, "feet"),
  25586. name: "Taur",
  25587. image: {
  25588. source: "./media/characters/sheera-castellar/taur.svg",
  25589. extra: 2017/1909,
  25590. bottom: 185/2202
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(8 + 4 / 12, "feet")
  25598. },
  25599. {
  25600. name: "Macro",
  25601. height: math.unit(150, "feet"),
  25602. default: true
  25603. },
  25604. {
  25605. name: "Macro+",
  25606. height: math.unit(800, "feet")
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25612. {
  25613. front: {
  25614. height: math.unit(6, "feet"),
  25615. weight: math.unit(150, "lb"),
  25616. name: "Front",
  25617. image: {
  25618. source: "./media/characters/jaipur/front.svg",
  25619. extra: 3860 / 3731,
  25620. bottom: 287 / 4140
  25621. }
  25622. },
  25623. back: {
  25624. height: math.unit(6, "feet"),
  25625. weight: math.unit(150, "lb"),
  25626. name: "Back",
  25627. image: {
  25628. source: "./media/characters/jaipur/back.svg",
  25629. extra: 1637/1561,
  25630. bottom: 154/1791
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(1.85, "meters"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Macro",
  25642. height: math.unit(150, "meters")
  25643. },
  25644. {
  25645. name: "Macro+",
  25646. height: math.unit(0.5, "miles")
  25647. },
  25648. {
  25649. name: "Macro++",
  25650. height: math.unit(2.5, "miles")
  25651. },
  25652. {
  25653. name: "Macro+++",
  25654. height: math.unit(12, "miles")
  25655. },
  25656. {
  25657. name: "Macro++++",
  25658. height: math.unit(120, "miles")
  25659. },
  25660. {
  25661. name: "Macro+++++",
  25662. height: math.unit(1200, "miles")
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25668. {
  25669. front: {
  25670. height: math.unit(6, "feet"),
  25671. weight: math.unit(150, "lb"),
  25672. name: "Front",
  25673. image: {
  25674. source: "./media/characters/sheila-wolf/front.svg",
  25675. extra: 1931 / 1808,
  25676. bottom: 29.5 / 1960
  25677. }
  25678. },
  25679. dick: {
  25680. height: math.unit(1.464, "feet"),
  25681. name: "Dick",
  25682. image: {
  25683. source: "./media/characters/sheila-wolf/dick.svg"
  25684. }
  25685. },
  25686. muzzle: {
  25687. height: math.unit(0.513, "feet"),
  25688. name: "Muzzle",
  25689. image: {
  25690. source: "./media/characters/sheila-wolf/muzzle.svg"
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Macro",
  25697. height: math.unit(70, "feet"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(32, "meters"),
  25707. weight: math.unit(300000, "kg"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/almor/front.svg",
  25711. extra: 1408 / 1322,
  25712. bottom: 94.6 / 1506.5
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Macro",
  25719. height: math.unit(32, "meters"),
  25720. default: true
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25726. {
  25727. front: {
  25728. height: math.unit(7, "feet"),
  25729. weight: math.unit(200, "lb"),
  25730. name: "Front",
  25731. image: {
  25732. source: "./media/characters/silver/front.svg",
  25733. extra: 472.1 / 450.5,
  25734. bottom: 26.5 / 499.424
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "Normal",
  25741. height: math.unit(7, "feet"),
  25742. default: true
  25743. },
  25744. {
  25745. name: "Macro",
  25746. height: math.unit(800, "feet")
  25747. },
  25748. {
  25749. name: "Megamacro",
  25750. height: math.unit(250, "miles")
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25756. {
  25757. front: {
  25758. height: math.unit(6, "feet"),
  25759. weight: math.unit(150, "lb"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/pliskin/front.svg",
  25763. extra: 1469 / 1359,
  25764. bottom: 70 / 1540
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Micro",
  25771. height: math.unit(3, "inches")
  25772. },
  25773. {
  25774. name: "Normal",
  25775. height: math.unit(5 + 11 / 12, "feet"),
  25776. default: true
  25777. },
  25778. {
  25779. name: "Macro",
  25780. height: math.unit(120, "feet")
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25786. {
  25787. front: {
  25788. height: math.unit(6, "feet"),
  25789. weight: math.unit(150, "lb"),
  25790. name: "Front",
  25791. image: {
  25792. source: "./media/characters/sammy/front.svg",
  25793. extra: 1193 / 1089,
  25794. bottom: 30.5 / 1226
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Macro",
  25801. height: math.unit(1700, "feet"),
  25802. default: true
  25803. },
  25804. {
  25805. name: "Examacro",
  25806. height: math.unit(2.5e9, "lightyears")
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(21, "meters"),
  25815. weight: math.unit(12, "tonnes"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/kuru/front.svg",
  25819. extra: 4301 / 3785,
  25820. bottom: 371.3 / 4691
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Macro",
  25827. height: math.unit(21, "meters"),
  25828. default: true
  25829. },
  25830. ]
  25831. ))
  25832. characterMakers.push(() => makeCharacter(
  25833. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25834. {
  25835. front: {
  25836. height: math.unit(23, "meters"),
  25837. weight: math.unit(12.2, "tonnes"),
  25838. name: "Front",
  25839. image: {
  25840. source: "./media/characters/rakka/front.svg",
  25841. extra: 4670 / 4169,
  25842. bottom: 301 / 4968.7
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Macro",
  25849. height: math.unit(23, "meters"),
  25850. default: true
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25856. {
  25857. front: {
  25858. height: math.unit(6, "feet"),
  25859. weight: math.unit(150, "lb"),
  25860. name: "Front",
  25861. image: {
  25862. source: "./media/characters/rhys-feline/front.svg",
  25863. extra: 2488 / 2308,
  25864. bottom: 35.67 / 2519.19
  25865. }
  25866. },
  25867. },
  25868. [
  25869. {
  25870. name: "Really Small",
  25871. height: math.unit(1, "nm")
  25872. },
  25873. {
  25874. name: "Micro",
  25875. height: math.unit(4, "inches")
  25876. },
  25877. {
  25878. name: "Normal",
  25879. height: math.unit(4 + 10 / 12, "feet"),
  25880. default: true
  25881. },
  25882. {
  25883. name: "Macro",
  25884. height: math.unit(100, "feet")
  25885. },
  25886. {
  25887. name: "Megamacto",
  25888. height: math.unit(50, "miles")
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25894. {
  25895. side: {
  25896. height: math.unit(30, "feet"),
  25897. weight: math.unit(35000, "kg"),
  25898. name: "Side",
  25899. image: {
  25900. source: "./media/characters/alydar/side.svg",
  25901. extra: 234 / 222,
  25902. bottom: 6.5 / 241
  25903. }
  25904. },
  25905. front: {
  25906. height: math.unit(30, "feet"),
  25907. weight: math.unit(35000, "kg"),
  25908. name: "Front",
  25909. image: {
  25910. source: "./media/characters/alydar/front.svg",
  25911. extra: 223.37 / 210.2,
  25912. bottom: 22.3 / 246.76
  25913. }
  25914. },
  25915. top: {
  25916. height: math.unit(64.54, "feet"),
  25917. weight: math.unit(35000, "kg"),
  25918. name: "Top",
  25919. image: {
  25920. source: "./media/characters/alydar/top.svg"
  25921. }
  25922. },
  25923. anthro: {
  25924. height: math.unit(30, "feet"),
  25925. weight: math.unit(9000, "kg"),
  25926. name: "Anthro",
  25927. image: {
  25928. source: "./media/characters/alydar/anthro.svg",
  25929. extra: 432 / 421,
  25930. bottom: 7.18 / 440
  25931. }
  25932. },
  25933. maw: {
  25934. height: math.unit(11.693, "feet"),
  25935. name: "Maw",
  25936. image: {
  25937. source: "./media/characters/alydar/maw.svg"
  25938. }
  25939. },
  25940. head: {
  25941. height: math.unit(11.693, "feet"),
  25942. name: "Head",
  25943. image: {
  25944. source: "./media/characters/alydar/head.svg"
  25945. }
  25946. },
  25947. headAlt: {
  25948. height: math.unit(12.861, "feet"),
  25949. name: "Head (Alt)",
  25950. image: {
  25951. source: "./media/characters/alydar/head-alt.svg"
  25952. }
  25953. },
  25954. wing: {
  25955. height: math.unit(20.712, "feet"),
  25956. name: "Wing",
  25957. image: {
  25958. source: "./media/characters/alydar/wing.svg"
  25959. }
  25960. },
  25961. wingFeather: {
  25962. height: math.unit(9.662, "feet"),
  25963. name: "Wing Feather",
  25964. image: {
  25965. source: "./media/characters/alydar/wing-feather.svg"
  25966. }
  25967. },
  25968. countourFeather: {
  25969. height: math.unit(4.154, "feet"),
  25970. name: "Contour Feather",
  25971. image: {
  25972. source: "./media/characters/alydar/contour-feather.svg"
  25973. }
  25974. },
  25975. },
  25976. [
  25977. {
  25978. name: "Diplomatic",
  25979. height: math.unit(13, "feet"),
  25980. default: true
  25981. },
  25982. {
  25983. name: "Small",
  25984. height: math.unit(30, "feet")
  25985. },
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(95, "feet"),
  25989. default: true
  25990. },
  25991. {
  25992. name: "Large",
  25993. height: math.unit(285, "feet")
  25994. },
  25995. {
  25996. name: "Incomprehensible",
  25997. height: math.unit(450, "megameters")
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26003. {
  26004. side: {
  26005. height: math.unit(11, "feet"),
  26006. weight: math.unit(1750, "kg"),
  26007. name: "Side",
  26008. image: {
  26009. source: "./media/characters/selicia/side.svg",
  26010. extra: 440 / 396,
  26011. bottom: 24.8 / 465.979
  26012. }
  26013. },
  26014. maw: {
  26015. height: math.unit(4.665, "feet"),
  26016. name: "Maw",
  26017. image: {
  26018. source: "./media/characters/selicia/maw.svg"
  26019. }
  26020. },
  26021. },
  26022. [
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(11, "feet"),
  26026. default: true
  26027. },
  26028. ]
  26029. ))
  26030. characterMakers.push(() => makeCharacter(
  26031. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26032. {
  26033. side: {
  26034. height: math.unit(2 + 6 / 12, "feet"),
  26035. weight: math.unit(30, "lb"),
  26036. name: "Side",
  26037. image: {
  26038. source: "./media/characters/layla/side.svg",
  26039. extra: 244 / 188,
  26040. bottom: 18.2 / 262.1
  26041. }
  26042. },
  26043. back: {
  26044. height: math.unit(2 + 6 / 12, "feet"),
  26045. weight: math.unit(30, "lb"),
  26046. name: "Back",
  26047. image: {
  26048. source: "./media/characters/layla/back.svg",
  26049. extra: 308 / 241.5,
  26050. bottom: 8.9 / 316.8
  26051. }
  26052. },
  26053. cumming: {
  26054. height: math.unit(2 + 6 / 12, "feet"),
  26055. weight: math.unit(30, "lb"),
  26056. name: "Cumming",
  26057. image: {
  26058. source: "./media/characters/layla/cumming.svg",
  26059. extra: 342 / 279,
  26060. bottom: 595 / 938
  26061. }
  26062. },
  26063. dickFlaccid: {
  26064. height: math.unit(2.595, "feet"),
  26065. name: "Flaccid Genitals",
  26066. image: {
  26067. source: "./media/characters/layla/dick-flaccid.svg"
  26068. }
  26069. },
  26070. dickErect: {
  26071. height: math.unit(2.359, "feet"),
  26072. name: "Erect Genitals",
  26073. image: {
  26074. source: "./media/characters/layla/dick-erect.svg"
  26075. }
  26076. },
  26077. dragon: {
  26078. height: math.unit(40, "feet"),
  26079. name: "Dragon",
  26080. image: {
  26081. source: "./media/characters/layla/dragon.svg",
  26082. extra: 610/535,
  26083. bottom: 367/977
  26084. }
  26085. },
  26086. taur: {
  26087. height: math.unit(30, "feet"),
  26088. name: "Taur",
  26089. image: {
  26090. source: "./media/characters/layla/taur.svg",
  26091. extra: 1268/1199,
  26092. bottom: 112/1380
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Micro",
  26099. height: math.unit(1, "inch")
  26100. },
  26101. {
  26102. name: "Small",
  26103. height: math.unit(1, "foot")
  26104. },
  26105. {
  26106. name: "Normal",
  26107. height: math.unit(2 + 6 / 12, "feet"),
  26108. default: true
  26109. },
  26110. {
  26111. name: "Macro",
  26112. height: math.unit(200, "feet")
  26113. },
  26114. {
  26115. name: "Megamacro",
  26116. height: math.unit(1000, "miles")
  26117. },
  26118. {
  26119. name: "Planetary",
  26120. height: math.unit(8000, "miles")
  26121. },
  26122. {
  26123. name: "True Layla",
  26124. height: math.unit(200000 * 7, "multiverses")
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26130. {
  26131. back: {
  26132. height: math.unit(10.5, "feet"),
  26133. weight: math.unit(800, "lb"),
  26134. name: "Back",
  26135. image: {
  26136. source: "./media/characters/knox/back.svg",
  26137. extra: 1486 / 1089,
  26138. bottom: 107 / 1601.4
  26139. }
  26140. },
  26141. side: {
  26142. height: math.unit(10.5, "feet"),
  26143. weight: math.unit(800, "lb"),
  26144. name: "Side",
  26145. image: {
  26146. source: "./media/characters/knox/side.svg",
  26147. extra: 244 / 218,
  26148. bottom: 14 / 260
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Compact",
  26155. height: math.unit(10.5, "feet"),
  26156. default: true
  26157. },
  26158. {
  26159. name: "Dynamax",
  26160. height: math.unit(210, "feet")
  26161. },
  26162. {
  26163. name: "Full Macro",
  26164. height: math.unit(850, "feet")
  26165. },
  26166. ]
  26167. ))
  26168. characterMakers.push(() => makeCharacter(
  26169. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26170. {
  26171. front: {
  26172. height: math.unit(28, "feet"),
  26173. weight: math.unit(10500, "lb"),
  26174. name: "Front",
  26175. image: {
  26176. source: "./media/characters/kayda/front.svg",
  26177. extra: 1536 / 1428,
  26178. bottom: 68.7 / 1603
  26179. }
  26180. },
  26181. back: {
  26182. height: math.unit(28, "feet"),
  26183. weight: math.unit(10500, "lb"),
  26184. name: "Back",
  26185. image: {
  26186. source: "./media/characters/kayda/back.svg",
  26187. extra: 1557 / 1464,
  26188. bottom: 39.5 / 1597.49
  26189. }
  26190. },
  26191. dick: {
  26192. height: math.unit(3.858, "feet"),
  26193. name: "Dick",
  26194. image: {
  26195. source: "./media/characters/kayda/dick.svg"
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Macro",
  26202. height: math.unit(28, "feet"),
  26203. default: true
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(10 + 11 / 12, "feet"),
  26212. weight: math.unit(1400, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/brian/front.svg",
  26216. extra: 737 / 692,
  26217. bottom: 55.4 / 785
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(10 + 11 / 12, "feet"),
  26225. default: true
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26231. {
  26232. front: {
  26233. height: math.unit(5 + 8 / 12, "feet"),
  26234. weight: math.unit(140, "lb"),
  26235. name: "Front",
  26236. image: {
  26237. source: "./media/characters/khemri/front.svg",
  26238. extra: 4780 / 4059,
  26239. bottom: 80.1 / 4859.25
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Micro",
  26246. height: math.unit(6, "inches")
  26247. },
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(5 + 8 / 12, "feet"),
  26251. default: true
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26257. {
  26258. front: {
  26259. height: math.unit(13, "feet"),
  26260. weight: math.unit(1700, "lb"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/felix-braveheart/front.svg",
  26264. extra: 1222 / 1157,
  26265. bottom: 53.2 / 1280
  26266. }
  26267. },
  26268. back: {
  26269. height: math.unit(13, "feet"),
  26270. weight: math.unit(1700, "lb"),
  26271. name: "Back",
  26272. image: {
  26273. source: "./media/characters/felix-braveheart/back.svg",
  26274. extra: 1277 / 1203,
  26275. bottom: 50.2 / 1327
  26276. }
  26277. },
  26278. feral: {
  26279. height: math.unit(6, "feet"),
  26280. weight: math.unit(400, "lb"),
  26281. name: "Feral",
  26282. image: {
  26283. source: "./media/characters/felix-braveheart/feral.svg",
  26284. extra: 682 / 625,
  26285. bottom: 6.9 / 688
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(13, "feet"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26299. {
  26300. side: {
  26301. height: math.unit(5 + 11 / 12, "feet"),
  26302. weight: math.unit(1400, "lb"),
  26303. name: "Side",
  26304. image: {
  26305. source: "./media/characters/shadow-blade/side.svg",
  26306. extra: 1726 / 1267,
  26307. bottom: 58.4 / 1785
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Normal",
  26314. height: math.unit(5 + 11 / 12, "feet"),
  26315. default: true
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26321. {
  26322. front: {
  26323. height: math.unit(1 + 6 / 12, "feet"),
  26324. weight: math.unit(25, "lb"),
  26325. name: "Front",
  26326. image: {
  26327. source: "./media/characters/karla-halldor/front.svg",
  26328. extra: 1459 / 1383,
  26329. bottom: 12 / 1472
  26330. }
  26331. },
  26332. },
  26333. [
  26334. {
  26335. name: "Normal",
  26336. height: math.unit(1 + 6 / 12, "feet"),
  26337. default: true
  26338. },
  26339. ]
  26340. ))
  26341. characterMakers.push(() => makeCharacter(
  26342. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26343. {
  26344. front: {
  26345. height: math.unit(6 + 2 / 12, "feet"),
  26346. weight: math.unit(160, "lb"),
  26347. name: "Front",
  26348. image: {
  26349. source: "./media/characters/ariam/front.svg",
  26350. extra: 1073/976,
  26351. bottom: 52/1125
  26352. }
  26353. },
  26354. back: {
  26355. height: math.unit(6 + 2/12, "feet"),
  26356. weight: math.unit(160, "lb"),
  26357. name: "Back",
  26358. image: {
  26359. source: "./media/characters/ariam/back.svg",
  26360. extra: 1103/1023,
  26361. bottom: 9/1112
  26362. }
  26363. },
  26364. dressed: {
  26365. height: math.unit(6 + 2/12, "feet"),
  26366. weight: math.unit(160, "lb"),
  26367. name: "Dressed",
  26368. image: {
  26369. source: "./media/characters/ariam/dressed.svg",
  26370. extra: 1099/1009,
  26371. bottom: 25/1124
  26372. }
  26373. },
  26374. squatting: {
  26375. height: math.unit(4.1, "feet"),
  26376. weight: math.unit(160, "lb"),
  26377. name: "Squatting",
  26378. image: {
  26379. source: "./media/characters/ariam/squatting.svg",
  26380. extra: 2617 / 2112,
  26381. bottom: 61.2 / 2681,
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(6 + 2 / 12, "feet"),
  26389. default: true
  26390. },
  26391. {
  26392. name: "Normal+",
  26393. height: math.unit(4, "meters")
  26394. },
  26395. {
  26396. name: "Macro",
  26397. height: math.unit(50, "meters")
  26398. },
  26399. {
  26400. name: "Macro+",
  26401. height: math.unit(100, "meters")
  26402. },
  26403. {
  26404. name: "Megamacro",
  26405. height: math.unit(20, "km")
  26406. },
  26407. {
  26408. name: "Caretaker",
  26409. height: math.unit(444, "megameters")
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(1.67, "meters"),
  26418. weight: math.unit(140, "lb"),
  26419. name: "Front",
  26420. image: {
  26421. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26422. extra: 438 / 410,
  26423. bottom: 0.75 / 439
  26424. }
  26425. },
  26426. },
  26427. [
  26428. {
  26429. name: "Shrunken",
  26430. height: math.unit(7.6, "cm")
  26431. },
  26432. {
  26433. name: "Human Scale",
  26434. height: math.unit(1.67, "meters")
  26435. },
  26436. {
  26437. name: "Wolxi Scale",
  26438. height: math.unit(36.7, "meters"),
  26439. default: true
  26440. },
  26441. ]
  26442. ))
  26443. characterMakers.push(() => makeCharacter(
  26444. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26445. {
  26446. front: {
  26447. height: math.unit(1.73, "meters"),
  26448. weight: math.unit(240, "lb"),
  26449. name: "Front",
  26450. image: {
  26451. source: "./media/characters/izue-two-mothers/front.svg",
  26452. extra: 469 / 437,
  26453. bottom: 1.24 / 470.6
  26454. }
  26455. },
  26456. },
  26457. [
  26458. {
  26459. name: "Shrunken",
  26460. height: math.unit(7.86, "cm")
  26461. },
  26462. {
  26463. name: "Human Scale",
  26464. height: math.unit(1.73, "meters")
  26465. },
  26466. {
  26467. name: "Wolxi Scale",
  26468. height: math.unit(38, "meters"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26475. {
  26476. front: {
  26477. height: math.unit(1.55, "meters"),
  26478. weight: math.unit(120, "lb"),
  26479. name: "Front",
  26480. image: {
  26481. source: "./media/characters/teeku-love-shack/front.svg",
  26482. extra: 387 / 362,
  26483. bottom: 1.51 / 388
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Shrunken",
  26490. height: math.unit(7, "cm")
  26491. },
  26492. {
  26493. name: "Human Scale",
  26494. height: math.unit(1.55, "meters")
  26495. },
  26496. {
  26497. name: "Wolxi Scale",
  26498. height: math.unit(34.1, "meters"),
  26499. default: true
  26500. },
  26501. ]
  26502. ))
  26503. characterMakers.push(() => makeCharacter(
  26504. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26505. {
  26506. front: {
  26507. height: math.unit(1.83, "meters"),
  26508. weight: math.unit(135, "lb"),
  26509. name: "Front",
  26510. image: {
  26511. source: "./media/characters/dejma-the-red/front.svg",
  26512. extra: 480 / 458,
  26513. bottom: 1.8 / 482
  26514. }
  26515. },
  26516. },
  26517. [
  26518. {
  26519. name: "Shrunken",
  26520. height: math.unit(8.3, "cm")
  26521. },
  26522. {
  26523. name: "Human Scale",
  26524. height: math.unit(1.83, "meters")
  26525. },
  26526. {
  26527. name: "Wolxi Scale",
  26528. height: math.unit(40, "meters"),
  26529. default: true
  26530. },
  26531. ]
  26532. ))
  26533. characterMakers.push(() => makeCharacter(
  26534. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26535. {
  26536. front: {
  26537. height: math.unit(1.78, "meters"),
  26538. weight: math.unit(65, "kg"),
  26539. name: "Front",
  26540. image: {
  26541. source: "./media/characters/aki/front.svg",
  26542. extra: 452 / 415
  26543. }
  26544. },
  26545. frontNsfw: {
  26546. height: math.unit(1.78, "meters"),
  26547. weight: math.unit(65, "kg"),
  26548. name: "Front (NSFW)",
  26549. image: {
  26550. source: "./media/characters/aki/front-nsfw.svg",
  26551. extra: 452 / 415
  26552. }
  26553. },
  26554. back: {
  26555. height: math.unit(1.78, "meters"),
  26556. weight: math.unit(65, "kg"),
  26557. name: "Back",
  26558. image: {
  26559. source: "./media/characters/aki/back.svg",
  26560. extra: 452 / 415
  26561. }
  26562. },
  26563. rump: {
  26564. height: math.unit(2.05, "feet"),
  26565. name: "Rump",
  26566. image: {
  26567. source: "./media/characters/aki/rump.svg"
  26568. }
  26569. },
  26570. dick: {
  26571. height: math.unit(0.95, "feet"),
  26572. name: "Dick",
  26573. image: {
  26574. source: "./media/characters/aki/dick.svg"
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Micro",
  26581. height: math.unit(15, "cm")
  26582. },
  26583. {
  26584. name: "Normal",
  26585. height: math.unit(178, "cm"),
  26586. default: true
  26587. },
  26588. {
  26589. name: "Macro",
  26590. height: math.unit(214, "m")
  26591. },
  26592. {
  26593. name: "Macro+",
  26594. height: math.unit(534, "m")
  26595. },
  26596. ]
  26597. ))
  26598. characterMakers.push(() => makeCharacter(
  26599. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26600. {
  26601. front: {
  26602. height: math.unit(5 + 5 / 12, "feet"),
  26603. weight: math.unit(120, "lb"),
  26604. name: "Front",
  26605. image: {
  26606. source: "./media/characters/ari/front.svg",
  26607. extra: 1550/1471,
  26608. bottom: 39/1589
  26609. }
  26610. },
  26611. },
  26612. [
  26613. {
  26614. name: "Normal",
  26615. height: math.unit(5 + 5 / 12, "feet")
  26616. },
  26617. {
  26618. name: "Macro",
  26619. height: math.unit(100, "feet"),
  26620. default: true
  26621. },
  26622. {
  26623. name: "Megamacro",
  26624. height: math.unit(100, "miles")
  26625. },
  26626. {
  26627. name: "Gigamacro",
  26628. height: math.unit(80000, "miles")
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26634. {
  26635. side: {
  26636. height: math.unit(9, "feet"),
  26637. weight: math.unit(400, "kg"),
  26638. name: "Side",
  26639. image: {
  26640. source: "./media/characters/bolt/side.svg",
  26641. extra: 1126 / 896,
  26642. bottom: 60 / 1187.3,
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Micro",
  26649. height: math.unit(5, "inches")
  26650. },
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(9, "feet"),
  26654. default: true
  26655. },
  26656. {
  26657. name: "Macro",
  26658. height: math.unit(700, "feet")
  26659. },
  26660. {
  26661. name: "Max Size",
  26662. height: math.unit(1.52e22, "yottameters")
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26668. {
  26669. front: {
  26670. height: math.unit(4.3, "meters"),
  26671. weight: math.unit(3, "tons"),
  26672. name: "Front",
  26673. image: {
  26674. source: "./media/characters/draekon-sylviar/front.svg",
  26675. extra: 2072/1512,
  26676. bottom: 74/2146
  26677. }
  26678. },
  26679. back: {
  26680. height: math.unit(4.3, "meters"),
  26681. weight: math.unit(3, "tons"),
  26682. name: "Back",
  26683. image: {
  26684. source: "./media/characters/draekon-sylviar/back.svg",
  26685. extra: 1639/1483,
  26686. bottom: 41/1680
  26687. }
  26688. },
  26689. feral: {
  26690. height: math.unit(1.15, "meters"),
  26691. weight: math.unit(3, "tons"),
  26692. name: "Feral",
  26693. image: {
  26694. source: "./media/characters/draekon-sylviar/feral.svg",
  26695. extra: 1033/395,
  26696. bottom: 130/1163
  26697. }
  26698. },
  26699. maw: {
  26700. height: math.unit(1.3, "meters"),
  26701. name: "Maw",
  26702. image: {
  26703. source: "./media/characters/draekon-sylviar/maw.svg"
  26704. }
  26705. },
  26706. mawSeparated: {
  26707. height: math.unit(1.53, "meters"),
  26708. name: "Separated Maw",
  26709. image: {
  26710. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26711. }
  26712. },
  26713. tail: {
  26714. height: math.unit(1.15, "meters"),
  26715. name: "Tail",
  26716. image: {
  26717. source: "./media/characters/draekon-sylviar/tail.svg"
  26718. }
  26719. },
  26720. tailDick: {
  26721. height: math.unit(1.15, "meters"),
  26722. name: "Tail (Dick)",
  26723. image: {
  26724. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26725. }
  26726. },
  26727. tailDickSeparated: {
  26728. height: math.unit(1.19, "meters"),
  26729. name: "Tail (Separated Dick)",
  26730. image: {
  26731. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26732. }
  26733. },
  26734. slit: {
  26735. height: math.unit(1, "meters"),
  26736. name: "Slit",
  26737. image: {
  26738. source: "./media/characters/draekon-sylviar/slit.svg"
  26739. }
  26740. },
  26741. dick: {
  26742. height: math.unit(1.15, "meters"),
  26743. name: "Dick",
  26744. image: {
  26745. source: "./media/characters/draekon-sylviar/dick.svg"
  26746. }
  26747. },
  26748. dickSeparated: {
  26749. height: math.unit(1.1, "meters"),
  26750. name: "Separated Dick",
  26751. image: {
  26752. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26753. }
  26754. },
  26755. sheath: {
  26756. height: math.unit(1.15, "meters"),
  26757. name: "Sheath",
  26758. image: {
  26759. source: "./media/characters/draekon-sylviar/sheath.svg"
  26760. }
  26761. },
  26762. },
  26763. [
  26764. {
  26765. name: "Small",
  26766. height: math.unit(4.53 / 2, "meters"),
  26767. default: true
  26768. },
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(4.53, "meters"),
  26772. default: true
  26773. },
  26774. {
  26775. name: "Large",
  26776. height: math.unit(4.53 * 2, "meters"),
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26782. {
  26783. front: {
  26784. height: math.unit(6 + 2 / 12, "feet"),
  26785. weight: math.unit(180, "lb"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/brawler/front.svg",
  26789. extra: 3301 / 3027,
  26790. bottom: 138 / 3439
  26791. }
  26792. },
  26793. },
  26794. [
  26795. {
  26796. name: "Normal",
  26797. height: math.unit(6 + 2 / 12, "feet"),
  26798. default: true
  26799. },
  26800. ]
  26801. ))
  26802. characterMakers.push(() => makeCharacter(
  26803. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26804. {
  26805. front: {
  26806. height: math.unit(11, "feet"),
  26807. weight: math.unit(1000, "lb"),
  26808. name: "Front",
  26809. image: {
  26810. source: "./media/characters/alex/front.svg",
  26811. bottom: 44.5 / 620
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Micro",
  26818. height: math.unit(5, "inches")
  26819. },
  26820. {
  26821. name: "Normal",
  26822. height: math.unit(11, "feet"),
  26823. default: true
  26824. },
  26825. {
  26826. name: "Macro",
  26827. height: math.unit(9.5e9, "feet")
  26828. },
  26829. {
  26830. name: "Max Size",
  26831. height: math.unit(1.4e283, "yottameters")
  26832. },
  26833. ]
  26834. ))
  26835. characterMakers.push(() => makeCharacter(
  26836. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26837. {
  26838. female: {
  26839. height: math.unit(29.9, "m"),
  26840. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26841. name: "Female",
  26842. image: {
  26843. source: "./media/characters/zenari/female.svg",
  26844. extra: 3281.6 / 3217,
  26845. bottom: 72.2 / 3353
  26846. }
  26847. },
  26848. male: {
  26849. height: math.unit(27.7, "m"),
  26850. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26851. name: "Male",
  26852. image: {
  26853. source: "./media/characters/zenari/male.svg",
  26854. extra: 3008 / 2991,
  26855. bottom: 54.6 / 3069
  26856. }
  26857. },
  26858. },
  26859. [
  26860. {
  26861. name: "Macro",
  26862. height: math.unit(29.7, "meters"),
  26863. default: true
  26864. },
  26865. ]
  26866. ))
  26867. characterMakers.push(() => makeCharacter(
  26868. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26869. {
  26870. female: {
  26871. height: math.unit(23.8, "m"),
  26872. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26873. name: "Female",
  26874. image: {
  26875. source: "./media/characters/mactarian/female.svg",
  26876. extra: 2662 / 2569,
  26877. bottom: 73 / 2736
  26878. }
  26879. },
  26880. male: {
  26881. height: math.unit(23.8, "m"),
  26882. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26883. name: "Male",
  26884. image: {
  26885. source: "./media/characters/mactarian/male.svg",
  26886. extra: 2673 / 2600,
  26887. bottom: 76 / 2750
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Macro",
  26894. height: math.unit(23.8, "meters"),
  26895. default: true
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26901. {
  26902. female: {
  26903. height: math.unit(19.3, "m"),
  26904. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26905. name: "Female",
  26906. image: {
  26907. source: "./media/characters/umok/female.svg",
  26908. extra: 2186 / 2078,
  26909. bottom: 87 / 2277
  26910. }
  26911. },
  26912. male: {
  26913. height: math.unit(19.5, "m"),
  26914. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26915. name: "Male",
  26916. image: {
  26917. source: "./media/characters/umok/male.svg",
  26918. extra: 2233 / 2140,
  26919. bottom: 24.4 / 2258
  26920. }
  26921. },
  26922. },
  26923. [
  26924. {
  26925. name: "Macro",
  26926. height: math.unit(19.3, "meters"),
  26927. default: true
  26928. },
  26929. ]
  26930. ))
  26931. characterMakers.push(() => makeCharacter(
  26932. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26933. {
  26934. female: {
  26935. height: math.unit(26.15, "m"),
  26936. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26937. name: "Female",
  26938. image: {
  26939. source: "./media/characters/joraxian/female.svg",
  26940. extra: 2912 / 2824,
  26941. bottom: 36 / 2956
  26942. }
  26943. },
  26944. male: {
  26945. height: math.unit(25.4, "m"),
  26946. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26947. name: "Male",
  26948. image: {
  26949. source: "./media/characters/joraxian/male.svg",
  26950. extra: 2877 / 2721,
  26951. bottom: 82 / 2967
  26952. }
  26953. },
  26954. },
  26955. [
  26956. {
  26957. name: "Macro",
  26958. height: math.unit(26.15, "meters"),
  26959. default: true
  26960. },
  26961. ]
  26962. ))
  26963. characterMakers.push(() => makeCharacter(
  26964. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26965. {
  26966. female: {
  26967. height: math.unit(21.6, "m"),
  26968. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26969. name: "Female",
  26970. image: {
  26971. source: "./media/characters/sthara/female.svg",
  26972. extra: 2516 / 2347,
  26973. bottom: 21.5 / 2537
  26974. }
  26975. },
  26976. male: {
  26977. height: math.unit(24, "m"),
  26978. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26979. name: "Male",
  26980. image: {
  26981. source: "./media/characters/sthara/male.svg",
  26982. extra: 2732 / 2607,
  26983. bottom: 23 / 2732
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Macro",
  26990. height: math.unit(21.6, "meters"),
  26991. default: true
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(6 + 4 / 12, "feet"),
  27000. weight: math.unit(175, "lb"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/luka-bryzant/front.svg",
  27004. extra: 311 / 289,
  27005. bottom: 4 / 315
  27006. }
  27007. },
  27008. back: {
  27009. height: math.unit(6 + 4 / 12, "feet"),
  27010. weight: math.unit(175, "lb"),
  27011. name: "Back",
  27012. image: {
  27013. source: "./media/characters/luka-bryzant/back.svg",
  27014. extra: 311 / 289,
  27015. bottom: 3.8 / 313.7
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Micro",
  27022. height: math.unit(10, "inches")
  27023. },
  27024. {
  27025. name: "Normal",
  27026. height: math.unit(6 + 4 / 12, "feet"),
  27027. default: true
  27028. },
  27029. {
  27030. name: "Large",
  27031. height: math.unit(12, "feet")
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(5 + 7 / 12, "feet"),
  27040. weight: math.unit(185, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/aman-aquila/front.svg",
  27044. extra: 1013 / 976,
  27045. bottom: 45.6 / 1057
  27046. }
  27047. },
  27048. side: {
  27049. height: math.unit(5 + 7 / 12, "feet"),
  27050. weight: math.unit(185, "lb"),
  27051. name: "Side",
  27052. image: {
  27053. source: "./media/characters/aman-aquila/side.svg",
  27054. extra: 1054 / 1011,
  27055. bottom: 15 / 1070
  27056. }
  27057. },
  27058. back: {
  27059. height: math.unit(5 + 7 / 12, "feet"),
  27060. weight: math.unit(185, "lb"),
  27061. name: "Back",
  27062. image: {
  27063. source: "./media/characters/aman-aquila/back.svg",
  27064. extra: 1026 / 970,
  27065. bottom: 12 / 1039
  27066. }
  27067. },
  27068. head: {
  27069. height: math.unit(1.211, "feet"),
  27070. name: "Head",
  27071. image: {
  27072. source: "./media/characters/aman-aquila/head.svg",
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Minimicro",
  27079. height: math.unit(0.057, "inches")
  27080. },
  27081. {
  27082. name: "Micro",
  27083. height: math.unit(7, "inches")
  27084. },
  27085. {
  27086. name: "Mini",
  27087. height: math.unit(3 + 7 / 12, "feet")
  27088. },
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(5 + 7 / 12, "feet"),
  27092. default: true
  27093. },
  27094. {
  27095. name: "Macro",
  27096. height: math.unit(157 + 7 / 12, "feet")
  27097. },
  27098. {
  27099. name: "Megamacro",
  27100. height: math.unit(1557 + 7 / 12, "feet")
  27101. },
  27102. {
  27103. name: "Gigamacro",
  27104. height: math.unit(15557 + 7 / 12, "feet")
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27110. {
  27111. front: {
  27112. height: math.unit(3 + 2 / 12, "inches"),
  27113. weight: math.unit(0.3, "ounces"),
  27114. name: "Front",
  27115. image: {
  27116. source: "./media/characters/hiphae/front.svg",
  27117. extra: 1931 / 1683,
  27118. bottom: 24 / 1955
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(3 + 1 / 2, "inches"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(5 + 10 / 12, "feet"),
  27135. weight: math.unit(165, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/nicky/front.svg",
  27139. extra: 3144 / 2886,
  27140. bottom: 45.6 / 3192
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(5 + 10 / 12, "feet"),
  27145. weight: math.unit(165, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/nicky/back.svg",
  27149. extra: 3055 / 2804,
  27150. bottom: 28.4 / 3087
  27151. }
  27152. },
  27153. frontclothed: {
  27154. height: math.unit(5 + 10 / 12, "feet"),
  27155. weight: math.unit(165, "lb"),
  27156. name: "Front-clothed",
  27157. image: {
  27158. source: "./media/characters/nicky/front-clothed.svg",
  27159. extra: 3184.9 / 2926.9,
  27160. bottom: 86.5 / 3239.9
  27161. }
  27162. },
  27163. foot: {
  27164. height: math.unit(1.16, "feet"),
  27165. name: "Foot",
  27166. image: {
  27167. source: "./media/characters/nicky/foot.svg"
  27168. }
  27169. },
  27170. feet: {
  27171. height: math.unit(1.34, "feet"),
  27172. name: "Feet",
  27173. image: {
  27174. source: "./media/characters/nicky/feet.svg"
  27175. }
  27176. },
  27177. maw: {
  27178. height: math.unit(0.9, "feet"),
  27179. name: "Maw",
  27180. image: {
  27181. source: "./media/characters/nicky/maw.svg"
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(5 + 10 / 12, "feet"),
  27189. default: true
  27190. },
  27191. {
  27192. name: "Macro",
  27193. height: math.unit(60, "feet")
  27194. },
  27195. {
  27196. name: "Megamacro",
  27197. height: math.unit(1, "mile")
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27203. {
  27204. side: {
  27205. height: math.unit(10, "feet"),
  27206. weight: math.unit(600, "lb"),
  27207. name: "Side",
  27208. image: {
  27209. source: "./media/characters/blair/side.svg",
  27210. bottom: 16.6 / 475,
  27211. extra: 458 / 431
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Micro",
  27218. height: math.unit(8, "inches")
  27219. },
  27220. {
  27221. name: "Normal",
  27222. height: math.unit(10, "feet"),
  27223. default: true
  27224. },
  27225. {
  27226. name: "Macro",
  27227. height: math.unit(180, "feet")
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(5 + 4 / 12, "feet"),
  27236. weight: math.unit(125, "lb"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/fisher/front.svg",
  27240. extra: 444 / 390,
  27241. bottom: 2 / 444.8
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Micro",
  27248. height: math.unit(4, "inches")
  27249. },
  27250. {
  27251. name: "Normal",
  27252. height: math.unit(5 + 4 / 12, "feet"),
  27253. default: true
  27254. },
  27255. {
  27256. name: "Macro",
  27257. height: math.unit(100, "feet")
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(6.71, "feet"),
  27266. weight: math.unit(200, "lb"),
  27267. preyCapacity: math.unit(1000000, "people"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/gliss/front.svg",
  27271. extra: 2347 / 2231,
  27272. bottom: 113 / 2462
  27273. }
  27274. },
  27275. hammerspaceSize: {
  27276. height: math.unit(6.71 * 717, "feet"),
  27277. weight: math.unit(200, "lb"),
  27278. preyCapacity: math.unit(1000000, "people"),
  27279. name: "Hammerspace Size",
  27280. image: {
  27281. source: "./media/characters/gliss/front.svg",
  27282. extra: 2347 / 2231,
  27283. bottom: 113 / 2462
  27284. }
  27285. },
  27286. },
  27287. [
  27288. {
  27289. name: "Normal",
  27290. height: math.unit(6.71, "feet"),
  27291. default: true
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27297. {
  27298. side: {
  27299. height: math.unit(1.44, "m"),
  27300. weight: math.unit(80, "kg"),
  27301. name: "Side",
  27302. image: {
  27303. source: "./media/characters/dune-anderson/side.svg",
  27304. bottom: 49 / 1426
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Wolf-sized",
  27311. height: math.unit(1.44, "meters")
  27312. },
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(5.05, "meters"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Big",
  27320. height: math.unit(14.4, "meters")
  27321. },
  27322. {
  27323. name: "Huge",
  27324. height: math.unit(144, "meters")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(7, "feet"),
  27333. weight: math.unit(425, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/hind/front.svg",
  27337. extra: 2091 / 1860,
  27338. bottom: 129 / 2220
  27339. }
  27340. },
  27341. back: {
  27342. height: math.unit(7, "feet"),
  27343. weight: math.unit(425, "lb"),
  27344. name: "Back",
  27345. image: {
  27346. source: "./media/characters/hind/back.svg",
  27347. extra: 2091 / 1860,
  27348. bottom: 24.6 / 2309
  27349. }
  27350. },
  27351. tail: {
  27352. height: math.unit(2.8, "feet"),
  27353. name: "Tail",
  27354. image: {
  27355. source: "./media/characters/hind/tail.svg"
  27356. }
  27357. },
  27358. head: {
  27359. height: math.unit(2.55, "feet"),
  27360. name: "Head",
  27361. image: {
  27362. source: "./media/characters/hind/head.svg"
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "XS",
  27369. height: math.unit(0.7, "feet")
  27370. },
  27371. {
  27372. name: "Normal",
  27373. height: math.unit(7, "feet"),
  27374. default: true
  27375. },
  27376. {
  27377. name: "XL",
  27378. height: math.unit(70, "feet")
  27379. },
  27380. ]
  27381. ))
  27382. characterMakers.push(() => makeCharacter(
  27383. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27384. {
  27385. front: {
  27386. height: math.unit(2.1, "meters"),
  27387. weight: math.unit(150, "lb"),
  27388. name: "Front",
  27389. image: {
  27390. source: "./media/characters/tharquench-sizestealer/front.svg",
  27391. extra: 1605/1470,
  27392. bottom: 36/1641
  27393. }
  27394. },
  27395. frontAlt: {
  27396. height: math.unit(2.1, "meters"),
  27397. weight: math.unit(150, "lb"),
  27398. name: "Front (Alt)",
  27399. image: {
  27400. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27401. extra: 2318 / 2063,
  27402. bottom: 93.4 / 2410
  27403. }
  27404. },
  27405. },
  27406. [
  27407. {
  27408. name: "Nano",
  27409. height: math.unit(1, "mm")
  27410. },
  27411. {
  27412. name: "Micro",
  27413. height: math.unit(1, "cm")
  27414. },
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(2.1, "meters"),
  27418. default: true
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(7 + 5 / 12, "feet"),
  27427. weight: math.unit(357, "lb"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/solex-draconov/front.svg",
  27431. extra: 1993 / 1865,
  27432. bottom: 117 / 2111
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Natural Height",
  27439. height: math.unit(7 + 5 / 12, "feet"),
  27440. default: true
  27441. },
  27442. {
  27443. name: "Macro",
  27444. height: math.unit(350, "feet")
  27445. },
  27446. {
  27447. name: "Macro+",
  27448. height: math.unit(1000, "feet")
  27449. },
  27450. {
  27451. name: "Megamacro",
  27452. height: math.unit(20, "km")
  27453. },
  27454. {
  27455. name: "Megamacro+",
  27456. height: math.unit(1000, "km")
  27457. },
  27458. {
  27459. name: "Gigamacro",
  27460. height: math.unit(2.5, "Gm")
  27461. },
  27462. {
  27463. name: "Teramacro",
  27464. height: math.unit(15, "Tm")
  27465. },
  27466. {
  27467. name: "Galactic",
  27468. height: math.unit(30, "Zm")
  27469. },
  27470. {
  27471. name: "Universal",
  27472. height: math.unit(21000, "Ym")
  27473. },
  27474. {
  27475. name: "Omniversal",
  27476. height: math.unit(9.861e50, "Ym")
  27477. },
  27478. {
  27479. name: "Existential",
  27480. height: math.unit(1e300, "meters")
  27481. },
  27482. ]
  27483. ))
  27484. characterMakers.push(() => makeCharacter(
  27485. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27486. {
  27487. side: {
  27488. height: math.unit(25, "feet"),
  27489. weight: math.unit(90000, "lb"),
  27490. name: "Side",
  27491. image: {
  27492. source: "./media/characters/mandarax/side.svg",
  27493. extra: 614 / 332,
  27494. bottom: 55 / 630
  27495. }
  27496. },
  27497. lounging: {
  27498. height: math.unit(15.4, "feet"),
  27499. weight: math.unit(90000, "lb"),
  27500. name: "Lounging",
  27501. image: {
  27502. source: "./media/characters/mandarax/lounging.svg",
  27503. extra: 817/609,
  27504. bottom: 685/1502
  27505. }
  27506. },
  27507. head: {
  27508. height: math.unit(11.4, "feet"),
  27509. name: "Head",
  27510. image: {
  27511. source: "./media/characters/mandarax/head.svg"
  27512. }
  27513. },
  27514. belly: {
  27515. height: math.unit(33, "feet"),
  27516. name: "Belly",
  27517. preyCapacity: math.unit(500, "people"),
  27518. image: {
  27519. source: "./media/characters/mandarax/belly.svg"
  27520. }
  27521. },
  27522. dick: {
  27523. height: math.unit(8.46, "feet"),
  27524. name: "Dick",
  27525. image: {
  27526. source: "./media/characters/mandarax/dick.svg"
  27527. }
  27528. },
  27529. top: {
  27530. height: math.unit(28, "meters"),
  27531. name: "Top",
  27532. image: {
  27533. source: "./media/characters/mandarax/top.svg"
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(25, "feet"),
  27541. default: true
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(5, "feet"),
  27550. weight: math.unit(90, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/pixil/front.svg",
  27554. extra: 2000 / 1618,
  27555. bottom: 12.3 / 2011
  27556. }
  27557. },
  27558. },
  27559. [
  27560. {
  27561. name: "Normal",
  27562. height: math.unit(5, "feet"),
  27563. default: true
  27564. },
  27565. {
  27566. name: "Megamacro",
  27567. height: math.unit(10, "miles"),
  27568. },
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27573. {
  27574. front: {
  27575. height: math.unit(7 + 2 / 12, "feet"),
  27576. weight: math.unit(200, "lb"),
  27577. name: "Front",
  27578. image: {
  27579. source: "./media/characters/angel/front.svg",
  27580. extra: 1830 / 1737,
  27581. bottom: 22.6 / 1854,
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(7 + 2 / 12, "feet"),
  27589. default: true
  27590. },
  27591. {
  27592. name: "Macro",
  27593. height: math.unit(1000, "feet")
  27594. },
  27595. {
  27596. name: "Megamacro",
  27597. height: math.unit(2, "miles")
  27598. },
  27599. {
  27600. name: "Gigamacro",
  27601. height: math.unit(20, "earths")
  27602. },
  27603. ]
  27604. ))
  27605. characterMakers.push(() => makeCharacter(
  27606. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27607. {
  27608. front: {
  27609. height: math.unit(5, "feet"),
  27610. weight: math.unit(180, "lb"),
  27611. name: "Front",
  27612. image: {
  27613. source: "./media/characters/mekana/front.svg",
  27614. extra: 1671 / 1605,
  27615. bottom: 3.5 / 1691
  27616. }
  27617. },
  27618. side: {
  27619. height: math.unit(5, "feet"),
  27620. weight: math.unit(180, "lb"),
  27621. name: "Side",
  27622. image: {
  27623. source: "./media/characters/mekana/side.svg",
  27624. extra: 1671 / 1605,
  27625. bottom: 3.5 / 1691
  27626. }
  27627. },
  27628. back: {
  27629. height: math.unit(5, "feet"),
  27630. weight: math.unit(180, "lb"),
  27631. name: "Back",
  27632. image: {
  27633. source: "./media/characters/mekana/back.svg",
  27634. extra: 1671 / 1605,
  27635. bottom: 3.5 / 1691
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(5, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(4 + 6 / 12, "feet"),
  27652. weight: math.unit(80, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/pixie/front.svg",
  27656. extra: 1924 / 1825,
  27657. bottom: 22.4 / 1946
  27658. }
  27659. },
  27660. },
  27661. [
  27662. {
  27663. name: "Normal",
  27664. height: math.unit(4 + 6 / 12, "feet"),
  27665. default: true
  27666. },
  27667. {
  27668. name: "Macro",
  27669. height: math.unit(40, "feet")
  27670. },
  27671. ]
  27672. ))
  27673. characterMakers.push(() => makeCharacter(
  27674. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27675. {
  27676. front: {
  27677. height: math.unit(2.1, "meters"),
  27678. weight: math.unit(200, "lb"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/the-lascivious/front.svg",
  27682. extra: 1 / 0.893,
  27683. bottom: 3.5 / 573.7
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Human Scale",
  27690. height: math.unit(2.1, "meters")
  27691. },
  27692. {
  27693. name: "Wolxi Scale",
  27694. height: math.unit(46.2, "m"),
  27695. default: true
  27696. },
  27697. {
  27698. name: "Boinker of Buildings",
  27699. height: math.unit(10, "km")
  27700. },
  27701. {
  27702. name: "Shagger of Skyscrapers",
  27703. height: math.unit(40, "km")
  27704. },
  27705. {
  27706. name: "Banger of Boroughs",
  27707. height: math.unit(4000, "km")
  27708. },
  27709. {
  27710. name: "Screwer of States",
  27711. height: math.unit(100000, "km")
  27712. },
  27713. {
  27714. name: "Pounder of Planets",
  27715. height: math.unit(2000000, "km")
  27716. },
  27717. ]
  27718. ))
  27719. characterMakers.push(() => makeCharacter(
  27720. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27721. {
  27722. front: {
  27723. height: math.unit(6, "feet"),
  27724. weight: math.unit(150, "lb"),
  27725. name: "Front",
  27726. image: {
  27727. source: "./media/characters/aj/front.svg",
  27728. extra: 2039 / 1562,
  27729. bottom: 40 / 2079
  27730. }
  27731. },
  27732. },
  27733. [
  27734. {
  27735. name: "Normal",
  27736. height: math.unit(11 + 6 / 12, "feet"),
  27737. default: true
  27738. },
  27739. {
  27740. name: "Megamacro",
  27741. height: math.unit(60, "megameters")
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27747. {
  27748. side: {
  27749. height: math.unit(31 + 8 / 12, "feet"),
  27750. weight: math.unit(75000, "kg"),
  27751. name: "Side",
  27752. image: {
  27753. source: "./media/characters/koros/side.svg",
  27754. extra: 1442 / 1297,
  27755. bottom: 122.7 / 1562
  27756. }
  27757. },
  27758. dicksKingsCrown: {
  27759. height: math.unit(6, "feet"),
  27760. name: "Dicks (King's Crown)",
  27761. image: {
  27762. source: "./media/characters/koros/dicks-kings-crown.svg"
  27763. }
  27764. },
  27765. dicksTailSet: {
  27766. height: math.unit(3, "feet"),
  27767. name: "Dicks (Tail Set)",
  27768. image: {
  27769. source: "./media/characters/koros/dicks-tail-set.svg"
  27770. }
  27771. },
  27772. dickCumming: {
  27773. height: math.unit(7.98, "feet"),
  27774. name: "Dick (Cumming)",
  27775. image: {
  27776. source: "./media/characters/koros/dick-cumming.svg"
  27777. }
  27778. },
  27779. dicksBack: {
  27780. height: math.unit(5.9, "feet"),
  27781. name: "Dicks (Back)",
  27782. image: {
  27783. source: "./media/characters/koros/dicks-back.svg"
  27784. }
  27785. },
  27786. dicksFront: {
  27787. height: math.unit(3.72, "feet"),
  27788. name: "Dicks (Front)",
  27789. image: {
  27790. source: "./media/characters/koros/dicks-front.svg"
  27791. }
  27792. },
  27793. dicksPeeking: {
  27794. height: math.unit(3.0, "feet"),
  27795. name: "Dicks (Peeking)",
  27796. image: {
  27797. source: "./media/characters/koros/dicks-peeking.svg"
  27798. }
  27799. },
  27800. eye: {
  27801. height: math.unit(1.7, "feet"),
  27802. name: "Eye",
  27803. image: {
  27804. source: "./media/characters/koros/eye.svg"
  27805. }
  27806. },
  27807. headFront: {
  27808. height: math.unit(11.69, "feet"),
  27809. name: "Head (Front)",
  27810. image: {
  27811. source: "./media/characters/koros/head-front.svg"
  27812. }
  27813. },
  27814. headSide: {
  27815. height: math.unit(14, "feet"),
  27816. name: "Head (Side)",
  27817. image: {
  27818. source: "./media/characters/koros/head-side.svg"
  27819. }
  27820. },
  27821. leg: {
  27822. height: math.unit(17, "feet"),
  27823. name: "Leg",
  27824. image: {
  27825. source: "./media/characters/koros/leg.svg"
  27826. }
  27827. },
  27828. mawSide: {
  27829. height: math.unit(12.8, "feet"),
  27830. name: "Maw (Side)",
  27831. image: {
  27832. source: "./media/characters/koros/maw-side.svg"
  27833. }
  27834. },
  27835. mawSpitting: {
  27836. height: math.unit(17, "feet"),
  27837. name: "Maw (Spitting)",
  27838. image: {
  27839. source: "./media/characters/koros/maw-spitting.svg"
  27840. }
  27841. },
  27842. slit: {
  27843. height: math.unit(2.8, "feet"),
  27844. name: "Slit",
  27845. image: {
  27846. source: "./media/characters/koros/slit.svg"
  27847. }
  27848. },
  27849. stomach: {
  27850. height: math.unit(6.8, "feet"),
  27851. preyCapacity: math.unit(20, "people"),
  27852. name: "Stomach",
  27853. image: {
  27854. source: "./media/characters/koros/stomach.svg"
  27855. }
  27856. },
  27857. wingspanBottom: {
  27858. height: math.unit(114, "feet"),
  27859. name: "Wingspan (Bottom)",
  27860. image: {
  27861. source: "./media/characters/koros/wingspan-bottom.svg"
  27862. }
  27863. },
  27864. wingspanTop: {
  27865. height: math.unit(104, "feet"),
  27866. name: "Wingspan (Top)",
  27867. image: {
  27868. source: "./media/characters/koros/wingspan-top.svg"
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(31 + 8 / 12, "feet"),
  27876. default: true
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27882. {
  27883. front: {
  27884. height: math.unit(18 + 5 / 12, "feet"),
  27885. weight: math.unit(3750, "kg"),
  27886. name: "Front",
  27887. image: {
  27888. source: "./media/characters/vexx/front.svg",
  27889. extra: 426 / 396,
  27890. bottom: 31.5 / 458
  27891. }
  27892. },
  27893. maw: {
  27894. height: math.unit(6, "feet"),
  27895. name: "Maw",
  27896. image: {
  27897. source: "./media/characters/vexx/maw.svg"
  27898. }
  27899. },
  27900. },
  27901. [
  27902. {
  27903. name: "Normal",
  27904. height: math.unit(18 + 5 / 12, "feet"),
  27905. default: true
  27906. },
  27907. ]
  27908. ))
  27909. characterMakers.push(() => makeCharacter(
  27910. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27911. {
  27912. front: {
  27913. height: math.unit(17 + 6 / 12, "feet"),
  27914. weight: math.unit(150, "lb"),
  27915. name: "Front",
  27916. image: {
  27917. source: "./media/characters/baadra/front.svg",
  27918. extra: 1694/1553,
  27919. bottom: 179/1873
  27920. }
  27921. },
  27922. frontAlt: {
  27923. height: math.unit(17 + 6 / 12, "feet"),
  27924. weight: math.unit(150, "lb"),
  27925. name: "Front (Alt)",
  27926. image: {
  27927. source: "./media/characters/baadra/front-alt.svg",
  27928. extra: 3137 / 2890,
  27929. bottom: 168.4 / 3305
  27930. }
  27931. },
  27932. back: {
  27933. height: math.unit(17 + 6 / 12, "feet"),
  27934. weight: math.unit(150, "lb"),
  27935. name: "Back",
  27936. image: {
  27937. source: "./media/characters/baadra/back.svg",
  27938. extra: 3142 / 2890,
  27939. bottom: 220 / 3371
  27940. }
  27941. },
  27942. head: {
  27943. height: math.unit(5.45, "feet"),
  27944. name: "Head",
  27945. image: {
  27946. source: "./media/characters/baadra/head.svg"
  27947. }
  27948. },
  27949. headAngry: {
  27950. height: math.unit(4.95, "feet"),
  27951. name: "Head (Angry)",
  27952. image: {
  27953. source: "./media/characters/baadra/head-angry.svg"
  27954. }
  27955. },
  27956. headOpen: {
  27957. height: math.unit(6, "feet"),
  27958. name: "Head (Open)",
  27959. image: {
  27960. source: "./media/characters/baadra/head-open.svg"
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(17 + 6 / 12, "feet"),
  27968. default: true
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(7 + 3 / 12, "feet"),
  27977. weight: math.unit(180, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/juri/front.svg",
  27981. extra: 1401 / 1237,
  27982. bottom: 18.5 / 1418
  27983. }
  27984. },
  27985. side: {
  27986. height: math.unit(7 + 3 / 12, "feet"),
  27987. weight: math.unit(180, "lb"),
  27988. name: "Side",
  27989. image: {
  27990. source: "./media/characters/juri/side.svg",
  27991. extra: 1424 / 1242,
  27992. bottom: 18.5 / 1447
  27993. }
  27994. },
  27995. sitting: {
  27996. height: math.unit(6, "feet"),
  27997. weight: math.unit(180, "lb"),
  27998. name: "Sitting",
  27999. image: {
  28000. source: "./media/characters/juri/sitting.svg",
  28001. extra: 1270 / 1143,
  28002. bottom: 100 / 1343
  28003. }
  28004. },
  28005. back: {
  28006. height: math.unit(7 + 3 / 12, "feet"),
  28007. weight: math.unit(180, "lb"),
  28008. name: "Back",
  28009. image: {
  28010. source: "./media/characters/juri/back.svg",
  28011. extra: 1377 / 1240,
  28012. bottom: 23.7 / 1405
  28013. }
  28014. },
  28015. maw: {
  28016. height: math.unit(2.8, "feet"),
  28017. name: "Maw",
  28018. image: {
  28019. source: "./media/characters/juri/maw.svg"
  28020. }
  28021. },
  28022. stomach: {
  28023. height: math.unit(0.89, "feet"),
  28024. preyCapacity: math.unit(4, "liters"),
  28025. name: "Stomach",
  28026. image: {
  28027. source: "./media/characters/juri/stomach.svg"
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Normal",
  28034. height: math.unit(7 + 3 / 12, "feet"),
  28035. default: true
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28041. {
  28042. fox: {
  28043. height: math.unit(5 + 6 / 12, "feet"),
  28044. weight: math.unit(140, "lb"),
  28045. name: "Fox",
  28046. image: {
  28047. source: "./media/characters/maxene-sita/fox.svg",
  28048. extra: 146 / 138,
  28049. bottom: 2.1 / 148.19
  28050. }
  28051. },
  28052. foxLaying: {
  28053. height: math.unit(1.70, "feet"),
  28054. weight: math.unit(140, "lb"),
  28055. name: "Fox (Laying)",
  28056. image: {
  28057. source: "./media/characters/maxene-sita/fox-laying.svg",
  28058. extra: 910 / 572,
  28059. bottom: 71 / 981
  28060. }
  28061. },
  28062. kitsune: {
  28063. height: math.unit(10, "feet"),
  28064. weight: math.unit(800, "lb"),
  28065. name: "Kitsune",
  28066. image: {
  28067. source: "./media/characters/maxene-sita/kitsune.svg",
  28068. extra: 185 / 176,
  28069. bottom: 4.7 / 189.9
  28070. }
  28071. },
  28072. hellhound: {
  28073. height: math.unit(10, "feet"),
  28074. weight: math.unit(700, "lb"),
  28075. name: "Hellhound",
  28076. image: {
  28077. source: "./media/characters/maxene-sita/hellhound.svg",
  28078. extra: 1600 / 1545,
  28079. bottom: 81 / 1681
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(5 + 6 / 12, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28093. {
  28094. front: {
  28095. height: math.unit(3 + 4 / 12, "feet"),
  28096. weight: math.unit(70, "lb"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/maia/front.svg",
  28100. extra: 227 / 219.5,
  28101. bottom: 40 / 267
  28102. }
  28103. },
  28104. back: {
  28105. height: math.unit(3 + 4 / 12, "feet"),
  28106. weight: math.unit(70, "lb"),
  28107. name: "Back",
  28108. image: {
  28109. source: "./media/characters/maia/back.svg",
  28110. extra: 237 / 225
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(3 + 4 / 12, "feet"),
  28118. default: true
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(5 + 10 / 12, "feet"),
  28127. weight: math.unit(197, "lb"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/jabaro/front.svg",
  28131. extra: 225 / 216,
  28132. bottom: 5.06 / 230
  28133. }
  28134. },
  28135. back: {
  28136. height: math.unit(5 + 10 / 12, "feet"),
  28137. weight: math.unit(197, "lb"),
  28138. name: "Back",
  28139. image: {
  28140. source: "./media/characters/jabaro/back.svg",
  28141. extra: 225 / 219,
  28142. bottom: 1.9 / 227
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Normal",
  28149. height: math.unit(5 + 10 / 12, "feet"),
  28150. default: true
  28151. },
  28152. ]
  28153. ))
  28154. characterMakers.push(() => makeCharacter(
  28155. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28156. {
  28157. front: {
  28158. height: math.unit(5 + 8 / 12, "feet"),
  28159. weight: math.unit(139, "lb"),
  28160. name: "Front",
  28161. image: {
  28162. source: "./media/characters/risa/front.svg",
  28163. extra: 270 / 260,
  28164. bottom: 11.2 / 282
  28165. }
  28166. },
  28167. back: {
  28168. height: math.unit(5 + 8 / 12, "feet"),
  28169. weight: math.unit(139, "lb"),
  28170. name: "Back",
  28171. image: {
  28172. source: "./media/characters/risa/back.svg",
  28173. extra: 264 / 255,
  28174. bottom: 4 / 268
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(5 + 8 / 12, "feet"),
  28182. default: true
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28188. {
  28189. front: {
  28190. height: math.unit(2 + 11 / 12, "feet"),
  28191. weight: math.unit(30, "lb"),
  28192. name: "Front",
  28193. image: {
  28194. source: "./media/characters/weatley/front.svg",
  28195. bottom: 10.7 / 414,
  28196. extra: 403.5 / 362
  28197. }
  28198. },
  28199. back: {
  28200. height: math.unit(2 + 11 / 12, "feet"),
  28201. weight: math.unit(30, "lb"),
  28202. name: "Back",
  28203. image: {
  28204. source: "./media/characters/weatley/back.svg",
  28205. bottom: 10.7 / 414,
  28206. extra: 403.5 / 362
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Normal",
  28213. height: math.unit(2 + 11 / 12, "feet"),
  28214. default: true
  28215. },
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28220. {
  28221. front: {
  28222. height: math.unit(5 + 2 / 12, "feet"),
  28223. weight: math.unit(50, "kg"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/mercury-crescent/front.svg",
  28227. extra: 1088 / 1033,
  28228. bottom: 18.9 / 1109
  28229. }
  28230. },
  28231. },
  28232. [
  28233. {
  28234. name: "Normal",
  28235. height: math.unit(5 + 2 / 12, "feet"),
  28236. default: true
  28237. },
  28238. ]
  28239. ))
  28240. characterMakers.push(() => makeCharacter(
  28241. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28242. {
  28243. front: {
  28244. height: math.unit(2, "feet"),
  28245. weight: math.unit(15, "kg"),
  28246. name: "Front",
  28247. image: {
  28248. source: "./media/characters/diamond-jones/front.svg",
  28249. extra: 727/723,
  28250. bottom: 46/773
  28251. }
  28252. },
  28253. },
  28254. [
  28255. {
  28256. name: "Normal",
  28257. height: math.unit(2, "feet"),
  28258. default: true
  28259. },
  28260. ]
  28261. ))
  28262. characterMakers.push(() => makeCharacter(
  28263. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28264. {
  28265. front: {
  28266. height: math.unit(3, "feet"),
  28267. weight: math.unit(30, "kg"),
  28268. name: "Front",
  28269. image: {
  28270. source: "./media/characters/sweet-bit/front.svg",
  28271. extra: 675 / 567,
  28272. bottom: 27.7 / 703
  28273. }
  28274. },
  28275. },
  28276. [
  28277. {
  28278. name: "Normal",
  28279. height: math.unit(3, "feet"),
  28280. default: true
  28281. },
  28282. ]
  28283. ))
  28284. characterMakers.push(() => makeCharacter(
  28285. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28286. {
  28287. side: {
  28288. height: math.unit(9.178, "feet"),
  28289. weight: math.unit(500, "lb"),
  28290. name: "Side",
  28291. image: {
  28292. source: "./media/characters/umbrazen/side.svg",
  28293. extra: 1730 / 1473,
  28294. bottom: 34.6 / 1765
  28295. }
  28296. },
  28297. },
  28298. [
  28299. {
  28300. name: "Normal",
  28301. height: math.unit(9.178, "feet"),
  28302. default: true
  28303. },
  28304. ]
  28305. ))
  28306. characterMakers.push(() => makeCharacter(
  28307. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28308. {
  28309. front: {
  28310. height: math.unit(10, "feet"),
  28311. weight: math.unit(750, "lb"),
  28312. name: "Front",
  28313. image: {
  28314. source: "./media/characters/arlist/front.svg",
  28315. extra: 961 / 778,
  28316. bottom: 6.2 / 986
  28317. }
  28318. },
  28319. },
  28320. [
  28321. {
  28322. name: "Normal",
  28323. height: math.unit(10, "feet"),
  28324. default: true
  28325. },
  28326. ]
  28327. ))
  28328. characterMakers.push(() => makeCharacter(
  28329. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28330. {
  28331. front: {
  28332. height: math.unit(5 + 1 / 12, "feet"),
  28333. weight: math.unit(110, "lb"),
  28334. name: "Front",
  28335. image: {
  28336. source: "./media/characters/aradel/front.svg",
  28337. extra: 324 / 303,
  28338. bottom: 3.6 / 329.4
  28339. }
  28340. },
  28341. },
  28342. [
  28343. {
  28344. name: "Normal",
  28345. height: math.unit(5 + 1 / 12, "feet"),
  28346. default: true
  28347. },
  28348. ]
  28349. ))
  28350. characterMakers.push(() => makeCharacter(
  28351. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28352. {
  28353. dressed: {
  28354. height: math.unit(3 + 8 / 12, "feet"),
  28355. weight: math.unit(50, "lb"),
  28356. name: "Dressed",
  28357. image: {
  28358. source: "./media/characters/serryn/dressed.svg",
  28359. extra: 1792 / 1656,
  28360. bottom: 43.5 / 1840
  28361. }
  28362. },
  28363. nude: {
  28364. height: math.unit(3 + 8 / 12, "feet"),
  28365. weight: math.unit(50, "lb"),
  28366. name: "Nude",
  28367. image: {
  28368. source: "./media/characters/serryn/nude.svg",
  28369. extra: 1792 / 1656,
  28370. bottom: 43.5 / 1840
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(3 + 8 / 12, "feet"),
  28378. default: true
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(7 + 10 / 12, "feet"),
  28387. weight: math.unit(255, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/xavier-thyme/front.svg",
  28391. extra: 3733 / 3642,
  28392. bottom: 131 / 3869
  28393. }
  28394. },
  28395. frontRaven: {
  28396. height: math.unit(7 + 10 / 12, "feet"),
  28397. weight: math.unit(255, "lb"),
  28398. name: "Front (Raven)",
  28399. image: {
  28400. source: "./media/characters/xavier-thyme/front-raven.svg",
  28401. extra: 4385 / 3642,
  28402. bottom: 131 / 4517
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(7 + 10 / 12, "feet"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28416. {
  28417. front: {
  28418. height: math.unit(1.6, "m"),
  28419. weight: math.unit(50, "kg"),
  28420. name: "Front",
  28421. image: {
  28422. source: "./media/characters/kiki/front.svg",
  28423. extra: 4682 / 3610,
  28424. bottom: 115 / 4777
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(1.6, "meters"),
  28432. default: true
  28433. },
  28434. ]
  28435. ))
  28436. characterMakers.push(() => makeCharacter(
  28437. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28438. {
  28439. front: {
  28440. height: math.unit(50, "m"),
  28441. weight: math.unit(500, "tonnes"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/ryoko/front.svg",
  28445. extra: 4632 / 3926,
  28446. bottom: 193 / 4823
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(50, "meters"),
  28454. default: true
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28460. {
  28461. front: {
  28462. height: math.unit(30, "m"),
  28463. weight: math.unit(22, "tonnes"),
  28464. name: "Front",
  28465. image: {
  28466. source: "./media/characters/elio/front.svg",
  28467. extra: 4582 / 3720,
  28468. bottom: 236 / 4828
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(30, "meters"),
  28476. default: true
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(6 + 3 / 12, "feet"),
  28485. weight: math.unit(120, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/azura/front.svg",
  28489. extra: 1149 / 1135,
  28490. bottom: 45 / 1194
  28491. }
  28492. },
  28493. frontClothed: {
  28494. height: math.unit(6 + 3 / 12, "feet"),
  28495. weight: math.unit(120, "lb"),
  28496. name: "Front (Clothed)",
  28497. image: {
  28498. source: "./media/characters/azura/front-clothed.svg",
  28499. extra: 1149 / 1135,
  28500. bottom: 45 / 1194
  28501. }
  28502. },
  28503. },
  28504. [
  28505. {
  28506. name: "Normal",
  28507. height: math.unit(6 + 3 / 12, "feet"),
  28508. default: true
  28509. },
  28510. {
  28511. name: "Macro",
  28512. height: math.unit(20 + 6 / 12, "feet")
  28513. },
  28514. {
  28515. name: "Megamacro",
  28516. height: math.unit(12, "miles")
  28517. },
  28518. {
  28519. name: "Gigamacro",
  28520. height: math.unit(10000, "miles")
  28521. },
  28522. {
  28523. name: "Teramacro",
  28524. height: math.unit(900000, "miles")
  28525. },
  28526. ]
  28527. ))
  28528. characterMakers.push(() => makeCharacter(
  28529. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28530. {
  28531. front: {
  28532. height: math.unit(12, "feet"),
  28533. weight: math.unit(1, "ton"),
  28534. capacity: math.unit(660000, "gallons"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/zeus/front.svg",
  28538. extra: 5005 / 4717,
  28539. bottom: 363 / 5388
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Normal",
  28546. height: math.unit(12, "feet")
  28547. },
  28548. {
  28549. name: "Preferred Size",
  28550. height: math.unit(0.5, "miles"),
  28551. default: true
  28552. },
  28553. {
  28554. name: "Giga Horse",
  28555. height: math.unit(300, "miles")
  28556. },
  28557. {
  28558. name: "Riding Planets",
  28559. height: math.unit(30, "megameters")
  28560. },
  28561. {
  28562. name: "Cosmic Giant",
  28563. height: math.unit(3, "zettameters")
  28564. },
  28565. {
  28566. name: "Breeding God",
  28567. height: math.unit(9.92e22, "yottameters")
  28568. },
  28569. ]
  28570. ))
  28571. characterMakers.push(() => makeCharacter(
  28572. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28573. {
  28574. side: {
  28575. height: math.unit(9, "feet"),
  28576. weight: math.unit(1500, "kg"),
  28577. name: "Side",
  28578. image: {
  28579. source: "./media/characters/fang/side.svg",
  28580. extra: 924 / 866,
  28581. bottom: 47.5 / 972.3
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(9, "feet"),
  28589. default: true
  28590. },
  28591. {
  28592. name: "Macro",
  28593. height: math.unit(75 + 6 / 12, "feet")
  28594. },
  28595. {
  28596. name: "Teramacro",
  28597. height: math.unit(50000, "miles")
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(10, "feet"),
  28606. weight: math.unit(2, "tons"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/rekhit/front.svg",
  28610. extra: 2796 / 2590,
  28611. bottom: 225 / 3022
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Normal",
  28618. height: math.unit(10, "feet"),
  28619. default: true
  28620. },
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(500, "feet")
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(7 + 6.451 / 12, "feet"),
  28632. weight: math.unit(310, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/dahlia-verrick/front.svg",
  28636. extra: 1488 / 1365,
  28637. bottom: 6.2 / 1495
  28638. }
  28639. },
  28640. back: {
  28641. height: math.unit(7 + 6.451 / 12, "feet"),
  28642. weight: math.unit(310, "lb"),
  28643. name: "Back",
  28644. image: {
  28645. source: "./media/characters/dahlia-verrick/back.svg",
  28646. extra: 1472 / 1351,
  28647. bottom: 5.28 / 1477
  28648. }
  28649. },
  28650. frontBusiness: {
  28651. height: math.unit(7 + 6.451 / 12, "feet"),
  28652. weight: math.unit(200, "lb"),
  28653. name: "Front (Business)",
  28654. image: {
  28655. source: "./media/characters/dahlia-verrick/front-business.svg",
  28656. extra: 1478 / 1381,
  28657. bottom: 5.5 / 1484
  28658. }
  28659. },
  28660. frontCasual: {
  28661. height: math.unit(7 + 6.451 / 12, "feet"),
  28662. weight: math.unit(200, "lb"),
  28663. name: "Front (Casual)",
  28664. image: {
  28665. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28666. extra: 1478 / 1381,
  28667. bottom: 5.5 / 1484
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Travel-Sized",
  28674. height: math.unit(7.45, "inches")
  28675. },
  28676. {
  28677. name: "Normal",
  28678. height: math.unit(7 + 6.451 / 12, "feet"),
  28679. default: true
  28680. },
  28681. {
  28682. name: "Hitting the Town",
  28683. height: math.unit(37 + 8 / 12, "feet")
  28684. },
  28685. {
  28686. name: "Stomp in the Suburbs",
  28687. height: math.unit(964 + 9.728 / 12, "feet")
  28688. },
  28689. {
  28690. name: "Sit on the City",
  28691. height: math.unit(61747 + 10.592 / 12, "feet")
  28692. },
  28693. {
  28694. name: "Glomp the Globe",
  28695. height: math.unit(252919327 + 4.832 / 12, "feet")
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(6 + 4 / 12, "feet"),
  28704. weight: math.unit(320, "lb"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/balina-mahigan/front.svg",
  28708. extra: 447 / 428,
  28709. bottom: 18 / 466
  28710. }
  28711. },
  28712. back: {
  28713. height: math.unit(6 + 4 / 12, "feet"),
  28714. weight: math.unit(320, "lb"),
  28715. name: "Back",
  28716. image: {
  28717. source: "./media/characters/balina-mahigan/back.svg",
  28718. extra: 445 / 428,
  28719. bottom: 4.07 / 448
  28720. }
  28721. },
  28722. arm: {
  28723. height: math.unit(1.88, "feet"),
  28724. name: "Arm",
  28725. image: {
  28726. source: "./media/characters/balina-mahigan/arm.svg"
  28727. }
  28728. },
  28729. backPort: {
  28730. height: math.unit(0.685, "feet"),
  28731. name: "Back Port",
  28732. image: {
  28733. source: "./media/characters/balina-mahigan/back-port.svg"
  28734. }
  28735. },
  28736. hoofpaw: {
  28737. height: math.unit(1.41, "feet"),
  28738. name: "Hoofpaw",
  28739. image: {
  28740. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28741. }
  28742. },
  28743. leftHandBack: {
  28744. height: math.unit(0.938, "feet"),
  28745. name: "Left Hand (Back)",
  28746. image: {
  28747. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28748. }
  28749. },
  28750. leftHandFront: {
  28751. height: math.unit(0.938, "feet"),
  28752. name: "Left Hand (Front)",
  28753. image: {
  28754. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28755. }
  28756. },
  28757. rightHandBack: {
  28758. height: math.unit(0.95, "feet"),
  28759. name: "Right Hand (Back)",
  28760. image: {
  28761. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28762. }
  28763. },
  28764. rightHandFront: {
  28765. height: math.unit(0.95, "feet"),
  28766. name: "Right Hand (Front)",
  28767. image: {
  28768. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28769. }
  28770. },
  28771. },
  28772. [
  28773. {
  28774. name: "Normal",
  28775. height: math.unit(6 + 4 / 12, "feet"),
  28776. default: true
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(6, "feet"),
  28785. weight: math.unit(320, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/balina-mejeri/front.svg",
  28789. extra: 517 / 488,
  28790. bottom: 44.2 / 561
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(6 + 4 / 12, "feet")
  28798. },
  28799. {
  28800. name: "Business",
  28801. height: math.unit(155, "feet"),
  28802. default: true
  28803. },
  28804. ]
  28805. ))
  28806. characterMakers.push(() => makeCharacter(
  28807. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28808. {
  28809. kneeling: {
  28810. height: math.unit(6 + 4 / 12, "feet"),
  28811. weight: math.unit(300 * 20, "lb"),
  28812. name: "Kneeling",
  28813. image: {
  28814. source: "./media/characters/balbarian/kneeling.svg",
  28815. extra: 922 / 862,
  28816. bottom: 42.4 / 965
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Normal",
  28823. height: math.unit(6 + 4 / 12, "feet")
  28824. },
  28825. {
  28826. name: "Treasured",
  28827. height: math.unit(18 + 9 / 12, "feet"),
  28828. default: true
  28829. },
  28830. {
  28831. name: "Macro",
  28832. height: math.unit(900, "feet")
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(6 + 4 / 12, "feet"),
  28841. weight: math.unit(325, "lb"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/balina-amarini/front.svg",
  28845. extra: 415 / 403,
  28846. bottom: 19 / 433.4
  28847. }
  28848. },
  28849. back: {
  28850. height: math.unit(6 + 4 / 12, "feet"),
  28851. weight: math.unit(325, "lb"),
  28852. name: "Back",
  28853. image: {
  28854. source: "./media/characters/balina-amarini/back.svg",
  28855. extra: 415 / 403,
  28856. bottom: 13.5 / 432
  28857. }
  28858. },
  28859. overdrive: {
  28860. height: math.unit(6 + 4 / 12, "feet"),
  28861. weight: math.unit(400, "lb"),
  28862. name: "Overdrive",
  28863. image: {
  28864. source: "./media/characters/balina-amarini/overdrive.svg",
  28865. extra: 269 / 259,
  28866. bottom: 12 / 282
  28867. }
  28868. },
  28869. },
  28870. [
  28871. {
  28872. name: "Boom",
  28873. height: math.unit(9 + 10 / 12, "feet"),
  28874. default: true
  28875. },
  28876. {
  28877. name: "Macro",
  28878. height: math.unit(280, "feet")
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28884. {
  28885. goddess: {
  28886. height: math.unit(600, "feet"),
  28887. weight: math.unit(2000000, "tons"),
  28888. name: "Goddess",
  28889. image: {
  28890. source: "./media/characters/lady-kubwa/goddess.svg",
  28891. extra: 1240.5 / 1223,
  28892. bottom: 22 / 1263
  28893. }
  28894. },
  28895. goddesser: {
  28896. height: math.unit(900, "feet"),
  28897. weight: math.unit(20000000, "lb"),
  28898. name: "Goddess-er",
  28899. image: {
  28900. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28901. extra: 899 / 888,
  28902. bottom: 12.6 / 912
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Macro",
  28909. height: math.unit(600, "feet"),
  28910. default: true
  28911. },
  28912. {
  28913. name: "Megamacro",
  28914. height: math.unit(250, "miles")
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(7 + 7 / 12, "feet"),
  28923. weight: math.unit(250, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/tala-grovehorn/front.svg",
  28927. extra: 2636 / 2525,
  28928. bottom: 147 / 2781
  28929. }
  28930. },
  28931. back: {
  28932. height: math.unit(7 + 7 / 12, "feet"),
  28933. weight: math.unit(250, "lb"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/tala-grovehorn/back.svg",
  28937. extra: 2635 / 2539,
  28938. bottom: 100 / 2732.8
  28939. }
  28940. },
  28941. mouth: {
  28942. height: math.unit(1.15, "feet"),
  28943. name: "Mouth",
  28944. image: {
  28945. source: "./media/characters/tala-grovehorn/mouth.svg"
  28946. }
  28947. },
  28948. dick: {
  28949. height: math.unit(2.36, "feet"),
  28950. name: "Dick",
  28951. image: {
  28952. source: "./media/characters/tala-grovehorn/dick.svg"
  28953. }
  28954. },
  28955. slit: {
  28956. height: math.unit(0.61, "feet"),
  28957. name: "Slit",
  28958. image: {
  28959. source: "./media/characters/tala-grovehorn/slit.svg"
  28960. }
  28961. },
  28962. },
  28963. [
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28968. {
  28969. front: {
  28970. height: math.unit(7 + 7 / 12, "feet"),
  28971. weight: math.unit(225, "lb"),
  28972. name: "Front",
  28973. image: {
  28974. source: "./media/characters/epona/front.svg",
  28975. extra: 2445 / 2290,
  28976. bottom: 251 / 2696
  28977. }
  28978. },
  28979. back: {
  28980. height: math.unit(7 + 7 / 12, "feet"),
  28981. weight: math.unit(225, "lb"),
  28982. name: "Back",
  28983. image: {
  28984. source: "./media/characters/epona/back.svg",
  28985. extra: 2546 / 2408,
  28986. bottom: 44 / 2589
  28987. }
  28988. },
  28989. genitals: {
  28990. height: math.unit(1.5, "feet"),
  28991. name: "Genitals",
  28992. image: {
  28993. source: "./media/characters/epona/genitals.svg"
  28994. }
  28995. },
  28996. },
  28997. [
  28998. {
  28999. name: "Normal",
  29000. height: math.unit(7 + 7 / 12, "feet"),
  29001. default: true
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29007. {
  29008. front: {
  29009. height: math.unit(7, "feet"),
  29010. weight: math.unit(518, "lb"),
  29011. name: "Front",
  29012. image: {
  29013. source: "./media/characters/avia-bloodbourn/front.svg",
  29014. extra: 1466 / 1350,
  29015. bottom: 65 / 1527
  29016. }
  29017. },
  29018. },
  29019. [
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(9.35, "feet"),
  29027. weight: math.unit(600, "lb"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/amera/front.svg",
  29031. extra: 891 / 818,
  29032. bottom: 30 / 922.7
  29033. }
  29034. },
  29035. back: {
  29036. height: math.unit(9.35, "feet"),
  29037. weight: math.unit(600, "lb"),
  29038. name: "Back",
  29039. image: {
  29040. source: "./media/characters/amera/back.svg",
  29041. extra: 876 / 824,
  29042. bottom: 6.8 / 884
  29043. }
  29044. },
  29045. dick: {
  29046. height: math.unit(2.14, "feet"),
  29047. name: "Dick",
  29048. image: {
  29049. source: "./media/characters/amera/dick.svg"
  29050. }
  29051. },
  29052. },
  29053. [
  29054. {
  29055. name: "Normal",
  29056. height: math.unit(9.35, "feet"),
  29057. default: true
  29058. },
  29059. ]
  29060. ))
  29061. characterMakers.push(() => makeCharacter(
  29062. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29063. {
  29064. kneeling: {
  29065. height: math.unit(3 + 4 / 12, "feet"),
  29066. weight: math.unit(90, "lb"),
  29067. name: "Kneeling",
  29068. image: {
  29069. source: "./media/characters/rosewen/kneeling.svg",
  29070. extra: 1835 / 1571,
  29071. bottom: 27.7 / 1862
  29072. }
  29073. },
  29074. },
  29075. [
  29076. {
  29077. name: "Normal",
  29078. height: math.unit(3 + 4 / 12, "feet"),
  29079. default: true
  29080. },
  29081. ]
  29082. ))
  29083. characterMakers.push(() => makeCharacter(
  29084. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29085. {
  29086. front: {
  29087. height: math.unit(5 + 10 / 12, "feet"),
  29088. weight: math.unit(200, "lb"),
  29089. name: "Front",
  29090. image: {
  29091. source: "./media/characters/sabah/front.svg",
  29092. extra: 849 / 763,
  29093. bottom: 33.9 / 881
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(5 + 10 / 12, "feet"),
  29101. default: true
  29102. },
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29107. {
  29108. front: {
  29109. height: math.unit(3 + 5 / 12, "feet"),
  29110. weight: math.unit(40, "kg"),
  29111. name: "Front",
  29112. image: {
  29113. source: "./media/characters/purple-flame/front.svg",
  29114. extra: 1577 / 1412,
  29115. bottom: 97 / 1694
  29116. }
  29117. },
  29118. frontDressed: {
  29119. height: math.unit(3 + 5 / 12, "feet"),
  29120. weight: math.unit(40, "kg"),
  29121. name: "Front (Dressed)",
  29122. image: {
  29123. source: "./media/characters/purple-flame/front-dressed.svg",
  29124. extra: 1577 / 1412,
  29125. bottom: 97 / 1694
  29126. }
  29127. },
  29128. headphones: {
  29129. height: math.unit(0.85, "feet"),
  29130. name: "Headphones",
  29131. image: {
  29132. source: "./media/characters/purple-flame/headphones.svg"
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Really Small",
  29139. height: math.unit(5, "cm")
  29140. },
  29141. {
  29142. name: "Micro",
  29143. height: math.unit(1 + 5 / 12, "feet")
  29144. },
  29145. {
  29146. name: "Normal",
  29147. height: math.unit(3 + 5 / 12, "feet"),
  29148. default: true
  29149. },
  29150. {
  29151. name: "Minimacro",
  29152. height: math.unit(125, "feet")
  29153. },
  29154. {
  29155. name: "Macro",
  29156. height: math.unit(0.5, "miles")
  29157. },
  29158. {
  29159. name: "Megamacro",
  29160. height: math.unit(50, "miles")
  29161. },
  29162. {
  29163. name: "Gigantic",
  29164. height: math.unit(750, "miles")
  29165. },
  29166. {
  29167. name: "Planetary",
  29168. height: math.unit(15000, "miles")
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29174. {
  29175. front: {
  29176. height: math.unit(14, "feet"),
  29177. weight: math.unit(959, "lb"),
  29178. name: "Front",
  29179. image: {
  29180. source: "./media/characters/arsenal/front.svg",
  29181. extra: 2357 / 2157,
  29182. bottom: 93 / 2458
  29183. }
  29184. },
  29185. },
  29186. [
  29187. {
  29188. name: "Normal",
  29189. height: math.unit(14, "feet"),
  29190. default: true
  29191. },
  29192. ]
  29193. ))
  29194. characterMakers.push(() => makeCharacter(
  29195. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29196. {
  29197. front: {
  29198. height: math.unit(6, "feet"),
  29199. weight: math.unit(150, "lb"),
  29200. name: "Front",
  29201. image: {
  29202. source: "./media/characters/adira/front.svg",
  29203. extra: 1078 / 1029,
  29204. bottom: 87 / 1166
  29205. }
  29206. },
  29207. },
  29208. [
  29209. {
  29210. name: "Micro",
  29211. height: math.unit(4, "inches"),
  29212. default: true
  29213. },
  29214. {
  29215. name: "Macro",
  29216. height: math.unit(50, "feet")
  29217. },
  29218. ]
  29219. ))
  29220. characterMakers.push(() => makeCharacter(
  29221. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29222. {
  29223. front: {
  29224. height: math.unit(16, "feet"),
  29225. weight: math.unit(1000, "lb"),
  29226. name: "Front",
  29227. image: {
  29228. source: "./media/characters/grim/front.svg",
  29229. extra: 622 / 614,
  29230. bottom: 18.1 / 642
  29231. }
  29232. },
  29233. back: {
  29234. height: math.unit(16, "feet"),
  29235. weight: math.unit(1000, "lb"),
  29236. name: "Back",
  29237. image: {
  29238. source: "./media/characters/grim/back.svg",
  29239. extra: 610.6 / 602,
  29240. bottom: 40.8 / 652
  29241. }
  29242. },
  29243. hunched: {
  29244. height: math.unit(9.75, "feet"),
  29245. weight: math.unit(1000, "lb"),
  29246. name: "Hunched",
  29247. image: {
  29248. source: "./media/characters/grim/hunched.svg",
  29249. extra: 304 / 297,
  29250. bottom: 35.4 / 394
  29251. }
  29252. },
  29253. },
  29254. [
  29255. {
  29256. name: "Normal",
  29257. height: math.unit(16, "feet"),
  29258. default: true
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(2.3, "meters"),
  29267. weight: math.unit(300, "lb"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/sinja/front-sfw.svg",
  29271. extra: 1393 / 1294,
  29272. bottom: 70 / 1463
  29273. }
  29274. },
  29275. frontNsfw: {
  29276. height: math.unit(2.3, "meters"),
  29277. weight: math.unit(300, "lb"),
  29278. name: "Front (NSFW)",
  29279. image: {
  29280. source: "./media/characters/sinja/front-nsfw.svg",
  29281. extra: 1393 / 1294,
  29282. bottom: 70 / 1463
  29283. }
  29284. },
  29285. back: {
  29286. height: math.unit(2.3, "meters"),
  29287. weight: math.unit(300, "lb"),
  29288. name: "Back",
  29289. image: {
  29290. source: "./media/characters/sinja/back.svg",
  29291. extra: 1393 / 1294,
  29292. bottom: 70 / 1463
  29293. }
  29294. },
  29295. head: {
  29296. height: math.unit(1.771, "feet"),
  29297. name: "Head",
  29298. image: {
  29299. source: "./media/characters/sinja/head.svg"
  29300. }
  29301. },
  29302. slit: {
  29303. height: math.unit(0.8, "feet"),
  29304. name: "Slit",
  29305. image: {
  29306. source: "./media/characters/sinja/slit.svg"
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(2.3, "meters")
  29314. },
  29315. {
  29316. name: "Macro",
  29317. height: math.unit(91, "meters"),
  29318. default: true
  29319. },
  29320. {
  29321. name: "Megamacro",
  29322. height: math.unit(91440, "meters")
  29323. },
  29324. {
  29325. name: "Gigamacro",
  29326. height: math.unit(60960000, "meters")
  29327. },
  29328. {
  29329. name: "Teramacro",
  29330. height: math.unit(9144000000, "meters")
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29336. {
  29337. front: {
  29338. height: math.unit(1.7, "meters"),
  29339. weight: math.unit(130, "lb"),
  29340. name: "Front",
  29341. image: {
  29342. source: "./media/characters/kyu/front.svg",
  29343. extra: 415 / 395,
  29344. bottom: 5 / 420
  29345. }
  29346. },
  29347. head: {
  29348. height: math.unit(1.75, "feet"),
  29349. name: "Head",
  29350. image: {
  29351. source: "./media/characters/kyu/head.svg"
  29352. }
  29353. },
  29354. foot: {
  29355. height: math.unit(0.81, "feet"),
  29356. name: "Foot",
  29357. image: {
  29358. source: "./media/characters/kyu/foot.svg"
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(1.7, "meters")
  29366. },
  29367. {
  29368. name: "Macro",
  29369. height: math.unit(131, "feet"),
  29370. default: true
  29371. },
  29372. {
  29373. name: "Megamacro",
  29374. height: math.unit(91440, "meters")
  29375. },
  29376. {
  29377. name: "Gigamacro",
  29378. height: math.unit(60960000, "meters")
  29379. },
  29380. {
  29381. name: "Teramacro",
  29382. height: math.unit(9144000000, "meters")
  29383. },
  29384. ]
  29385. ))
  29386. characterMakers.push(() => makeCharacter(
  29387. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29388. {
  29389. front: {
  29390. height: math.unit(7 + 1 / 12, "feet"),
  29391. weight: math.unit(250, "lb"),
  29392. name: "Front",
  29393. image: {
  29394. source: "./media/characters/joey/front.svg",
  29395. extra: 1791 / 1537,
  29396. bottom: 28 / 1816
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Micro",
  29403. height: math.unit(3, "inches")
  29404. },
  29405. {
  29406. name: "Normal",
  29407. height: math.unit(7 + 1 / 12, "feet"),
  29408. default: true
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29414. {
  29415. front: {
  29416. height: math.unit(165, "cm"),
  29417. weight: math.unit(140, "lb"),
  29418. name: "Front",
  29419. image: {
  29420. source: "./media/characters/sam-evans/front.svg",
  29421. extra: 3417 / 3230,
  29422. bottom: 41.3 / 3417
  29423. }
  29424. },
  29425. frontSixTails: {
  29426. height: math.unit(165, "cm"),
  29427. weight: math.unit(140, "lb"),
  29428. name: "Front-six-tails",
  29429. image: {
  29430. source: "./media/characters/sam-evans/front-six-tails.svg",
  29431. extra: 3417 / 3230,
  29432. bottom: 41.3 / 3417
  29433. }
  29434. },
  29435. back: {
  29436. height: math.unit(165, "cm"),
  29437. weight: math.unit(140, "lb"),
  29438. name: "Back",
  29439. image: {
  29440. source: "./media/characters/sam-evans/back.svg",
  29441. extra: 3227 / 3032,
  29442. bottom: 6.8 / 3234
  29443. }
  29444. },
  29445. face: {
  29446. height: math.unit(0.68, "feet"),
  29447. name: "Face",
  29448. image: {
  29449. source: "./media/characters/sam-evans/face.svg"
  29450. }
  29451. },
  29452. },
  29453. [
  29454. {
  29455. name: "Normal",
  29456. height: math.unit(165, "cm"),
  29457. default: true
  29458. },
  29459. {
  29460. name: "Macro",
  29461. height: math.unit(100, "meters")
  29462. },
  29463. {
  29464. name: "Macro+",
  29465. height: math.unit(800, "meters")
  29466. },
  29467. {
  29468. name: "Macro++",
  29469. height: math.unit(3, "km")
  29470. },
  29471. {
  29472. name: "Macro+++",
  29473. height: math.unit(30, "km")
  29474. },
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(10, "feet"),
  29482. weight: math.unit(750, "lb"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/juliet-a/front.svg",
  29486. extra: 1766 / 1720,
  29487. bottom: 43 / 1809
  29488. }
  29489. },
  29490. back: {
  29491. height: math.unit(10, "feet"),
  29492. weight: math.unit(750, "lb"),
  29493. name: "Back",
  29494. image: {
  29495. source: "./media/characters/juliet-a/back.svg",
  29496. extra: 1781 / 1734,
  29497. bottom: 35 / 1810,
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Normal",
  29504. height: math.unit(10, "feet"),
  29505. default: true
  29506. },
  29507. {
  29508. name: "Dragon Form",
  29509. height: math.unit(250, "feet")
  29510. },
  29511. {
  29512. name: "Macro",
  29513. height: math.unit(1000, "feet")
  29514. },
  29515. {
  29516. name: "Megamacro",
  29517. height: math.unit(10000, "feet")
  29518. }
  29519. ]
  29520. ))
  29521. characterMakers.push(() => makeCharacter(
  29522. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29523. {
  29524. regular: {
  29525. height: math.unit(7 + 3 / 12, "feet"),
  29526. weight: math.unit(260, "lb"),
  29527. name: "Regular",
  29528. image: {
  29529. source: "./media/characters/wild/regular.svg",
  29530. extra: 97.45 / 92,
  29531. bottom: 6.8 / 104.3
  29532. }
  29533. },
  29534. biggums: {
  29535. height: math.unit(8 + 6 / 12, "feet"),
  29536. weight: math.unit(425, "lb"),
  29537. name: "Biggums",
  29538. image: {
  29539. source: "./media/characters/wild/biggums.svg",
  29540. extra: 97.45 / 92,
  29541. bottom: 7.5 / 132.34
  29542. }
  29543. },
  29544. mawRegular: {
  29545. height: math.unit(1.24, "feet"),
  29546. name: "Maw (Regular)",
  29547. image: {
  29548. source: "./media/characters/wild/maw.svg"
  29549. }
  29550. },
  29551. mawBiggums: {
  29552. height: math.unit(1.47, "feet"),
  29553. name: "Maw (Biggums)",
  29554. image: {
  29555. source: "./media/characters/wild/maw.svg"
  29556. }
  29557. },
  29558. },
  29559. [
  29560. {
  29561. name: "Normal",
  29562. height: math.unit(7 + 3 / 12, "feet"),
  29563. default: true
  29564. },
  29565. ]
  29566. ))
  29567. characterMakers.push(() => makeCharacter(
  29568. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29569. {
  29570. front: {
  29571. height: math.unit(2.5, "meters"),
  29572. weight: math.unit(200, "kg"),
  29573. name: "Front",
  29574. image: {
  29575. source: "./media/characters/vidar/front.svg",
  29576. extra: 2994 / 2795,
  29577. bottom: 56 / 3061
  29578. }
  29579. },
  29580. back: {
  29581. height: math.unit(2.5, "meters"),
  29582. weight: math.unit(200, "kg"),
  29583. name: "Back",
  29584. image: {
  29585. source: "./media/characters/vidar/back.svg",
  29586. extra: 3131 / 2928,
  29587. bottom: 13.5 / 3141.5
  29588. }
  29589. },
  29590. feral: {
  29591. height: math.unit(2.5, "meters"),
  29592. weight: math.unit(2000, "kg"),
  29593. name: "Feral",
  29594. image: {
  29595. source: "./media/characters/vidar/feral.svg",
  29596. extra: 2790 / 1765,
  29597. bottom: 6 / 2796
  29598. }
  29599. },
  29600. },
  29601. [
  29602. {
  29603. name: "Normal",
  29604. height: math.unit(2.5, "meters"),
  29605. default: true
  29606. },
  29607. {
  29608. name: "Macro",
  29609. height: math.unit(100, "meters")
  29610. },
  29611. ]
  29612. ))
  29613. characterMakers.push(() => makeCharacter(
  29614. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29615. {
  29616. front: {
  29617. height: math.unit(5 + 9 / 12, "feet"),
  29618. weight: math.unit(120, "lb"),
  29619. name: "Front",
  29620. image: {
  29621. source: "./media/characters/ash/front.svg",
  29622. extra: 2189 / 1961,
  29623. bottom: 5.2 / 2194
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(5 + 9 / 12, "feet"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(9, "feet"),
  29640. weight: math.unit(10000, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/gygabite/front.svg",
  29644. bottom: 31.7 / 537.8,
  29645. extra: 505 / 370
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Normal",
  29652. height: math.unit(9, "feet"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(12, "feet"),
  29662. weight: math.unit(4000, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/p0tat0/front.svg",
  29666. extra: 1065 / 921,
  29667. bottom: 55.7 / 1121.25
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(12, "feet"),
  29675. default: true
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29681. {
  29682. side: {
  29683. height: math.unit(6.5, "feet"),
  29684. weight: math.unit(800, "lb"),
  29685. name: "Side",
  29686. image: {
  29687. source: "./media/characters/dusk/side.svg",
  29688. extra: 615 / 373,
  29689. bottom: 53 / 664
  29690. }
  29691. },
  29692. sitting: {
  29693. height: math.unit(7, "feet"),
  29694. weight: math.unit(800, "lb"),
  29695. name: "Sitting",
  29696. image: {
  29697. source: "./media/characters/dusk/sitting.svg",
  29698. extra: 753 / 425,
  29699. bottom: 33 / 774
  29700. }
  29701. },
  29702. head: {
  29703. height: math.unit(6.1, "feet"),
  29704. name: "Head",
  29705. image: {
  29706. source: "./media/characters/dusk/head.svg"
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Normal",
  29713. height: math.unit(7, "feet"),
  29714. default: true
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29720. {
  29721. front: {
  29722. height: math.unit(15, "feet"),
  29723. weight: math.unit(7000, "lb"),
  29724. name: "Front",
  29725. image: {
  29726. source: "./media/characters/jay-direwolf/front.svg",
  29727. extra: 1810 / 1732,
  29728. bottom: 66 / 1892
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(15, "feet"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(4 + 9 / 12, "feet"),
  29745. weight: math.unit(130, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/anchovie/front.svg",
  29749. extra: 382 / 350,
  29750. bottom: 25 / 409
  29751. }
  29752. },
  29753. back: {
  29754. height: math.unit(4 + 9 / 12, "feet"),
  29755. weight: math.unit(130, "lb"),
  29756. name: "Back",
  29757. image: {
  29758. source: "./media/characters/anchovie/back.svg",
  29759. extra: 385 / 352,
  29760. bottom: 16.6 / 402
  29761. }
  29762. },
  29763. frontDressed: {
  29764. height: math.unit(4 + 9 / 12, "feet"),
  29765. weight: math.unit(130, "lb"),
  29766. name: "Front (Dressed)",
  29767. image: {
  29768. source: "./media/characters/anchovie/front-dressed.svg",
  29769. extra: 382 / 350,
  29770. bottom: 25 / 409
  29771. }
  29772. },
  29773. backDressed: {
  29774. height: math.unit(4 + 9 / 12, "feet"),
  29775. weight: math.unit(130, "lb"),
  29776. name: "Back (Dressed)",
  29777. image: {
  29778. source: "./media/characters/anchovie/back-dressed.svg",
  29779. extra: 385 / 352,
  29780. bottom: 16.6 / 402
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Micro",
  29787. height: math.unit(6.4, "inches")
  29788. },
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(4 + 9 / 12, "feet"),
  29792. default: true
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29798. {
  29799. front: {
  29800. height: math.unit(2, "meters"),
  29801. weight: math.unit(180, "lb"),
  29802. name: "Front",
  29803. image: {
  29804. source: "./media/characters/acidrenamon/front.svg",
  29805. extra: 987 / 890,
  29806. bottom: 22.8 / 1009
  29807. }
  29808. },
  29809. back: {
  29810. height: math.unit(2, "meters"),
  29811. weight: math.unit(180, "lb"),
  29812. name: "Back",
  29813. image: {
  29814. source: "./media/characters/acidrenamon/back.svg",
  29815. extra: 983 / 891,
  29816. bottom: 8.4 / 992
  29817. }
  29818. },
  29819. head: {
  29820. height: math.unit(1.92, "feet"),
  29821. name: "Head",
  29822. image: {
  29823. source: "./media/characters/acidrenamon/head.svg"
  29824. }
  29825. },
  29826. rump: {
  29827. height: math.unit(1.72, "feet"),
  29828. name: "Rump",
  29829. image: {
  29830. source: "./media/characters/acidrenamon/rump.svg"
  29831. }
  29832. },
  29833. tail: {
  29834. height: math.unit(4.2, "feet"),
  29835. name: "Tail",
  29836. image: {
  29837. source: "./media/characters/acidrenamon/tail.svg"
  29838. }
  29839. },
  29840. },
  29841. [
  29842. {
  29843. name: "Normal",
  29844. height: math.unit(2, "meters"),
  29845. default: true
  29846. },
  29847. {
  29848. name: "Minimacro",
  29849. height: math.unit(7, "meters")
  29850. },
  29851. {
  29852. name: "Macro",
  29853. height: math.unit(200, "meters")
  29854. },
  29855. {
  29856. name: "Gigamacro",
  29857. height: math.unit(0.2, "earths")
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29863. {
  29864. front: {
  29865. height: math.unit(152, "feet"),
  29866. name: "Front",
  29867. image: {
  29868. source: "./media/characters/kenzie-lee/front.svg",
  29869. extra: 1869/1774,
  29870. bottom: 128/1997
  29871. }
  29872. },
  29873. side: {
  29874. height: math.unit(86, "feet"),
  29875. name: "Side",
  29876. image: {
  29877. source: "./media/characters/kenzie-lee/side.svg",
  29878. extra: 930/815,
  29879. bottom: 177/1107
  29880. }
  29881. },
  29882. paw: {
  29883. height: math.unit(15, "feet"),
  29884. name: "Paw",
  29885. image: {
  29886. source: "./media/characters/kenzie-lee/paw.svg"
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Kenzie Flea",
  29893. height: math.unit(2, "mm"),
  29894. default: true
  29895. },
  29896. {
  29897. name: "Micro",
  29898. height: math.unit(2, "inches")
  29899. },
  29900. {
  29901. name: "Normal",
  29902. height: math.unit(152, "feet")
  29903. },
  29904. {
  29905. name: "Megamacro",
  29906. height: math.unit(7, "miles")
  29907. },
  29908. {
  29909. name: "Gigamacro",
  29910. height: math.unit(8000, "miles")
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29916. {
  29917. front: {
  29918. height: math.unit(6, "feet"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/withers/front.svg",
  29922. extra: 1935/1760,
  29923. bottom: 72/2007
  29924. }
  29925. },
  29926. back: {
  29927. height: math.unit(6, "feet"),
  29928. name: "Back",
  29929. image: {
  29930. source: "./media/characters/withers/back.svg",
  29931. extra: 1944/1792,
  29932. bottom: 12/1956
  29933. }
  29934. },
  29935. dressed: {
  29936. height: math.unit(6, "feet"),
  29937. name: "Dressed",
  29938. image: {
  29939. source: "./media/characters/withers/dressed.svg",
  29940. extra: 1937/1765,
  29941. bottom: 73/2010
  29942. }
  29943. },
  29944. phase1: {
  29945. height: math.unit(1.1, "feet"),
  29946. name: "Phase 1",
  29947. image: {
  29948. source: "./media/characters/withers/phase-1.svg",
  29949. extra: 1885/1232,
  29950. bottom: 0/1885
  29951. }
  29952. },
  29953. phase2: {
  29954. height: math.unit(1.05, "feet"),
  29955. name: "Phase 2",
  29956. image: {
  29957. source: "./media/characters/withers/phase-2.svg",
  29958. extra: 1792/1090,
  29959. bottom: 0/1792
  29960. }
  29961. },
  29962. partyWipe: {
  29963. height: math.unit(1.1, "feet"),
  29964. name: "Party Wipe",
  29965. image: {
  29966. source: "./media/characters/withers/party-wipe.svg",
  29967. extra: 1864/1207,
  29968. bottom: 0/1864
  29969. }
  29970. },
  29971. },
  29972. [
  29973. {
  29974. name: "Macro",
  29975. height: math.unit(167, "feet"),
  29976. default: true
  29977. },
  29978. {
  29979. name: "Megamacro",
  29980. height: math.unit(15, "miles")
  29981. }
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29986. {
  29987. front: {
  29988. height: math.unit(6 + 7 / 12, "feet"),
  29989. weight: math.unit(250, "lb"),
  29990. name: "Front",
  29991. image: {
  29992. source: "./media/characters/nemoskii/front.svg",
  29993. extra: 2270 / 1734,
  29994. bottom: 86 / 2354
  29995. }
  29996. },
  29997. back: {
  29998. height: math.unit(6 + 7 / 12, "feet"),
  29999. weight: math.unit(250, "lb"),
  30000. name: "Back",
  30001. image: {
  30002. source: "./media/characters/nemoskii/back.svg",
  30003. extra: 1845 / 1788,
  30004. bottom: 10.5 / 1852
  30005. }
  30006. },
  30007. head: {
  30008. height: math.unit(1.31, "feet"),
  30009. name: "Head",
  30010. image: {
  30011. source: "./media/characters/nemoskii/head.svg"
  30012. }
  30013. },
  30014. },
  30015. [
  30016. {
  30017. name: "Micro",
  30018. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30019. },
  30020. {
  30021. name: "Normal",
  30022. height: math.unit(6 + 7 / 12, "feet"),
  30023. default: true
  30024. },
  30025. {
  30026. name: "Macro",
  30027. height: math.unit((6 + 7 / 12) * 150, "feet")
  30028. },
  30029. {
  30030. name: "Macro+",
  30031. height: math.unit((6 + 7 / 12) * 500, "feet")
  30032. },
  30033. {
  30034. name: "Megamacro",
  30035. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30036. },
  30037. ]
  30038. ))
  30039. characterMakers.push(() => makeCharacter(
  30040. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30041. {
  30042. front: {
  30043. height: math.unit(1, "mile"),
  30044. weight: math.unit(265261.9, "lb"),
  30045. name: "Front",
  30046. image: {
  30047. source: "./media/characters/shui/front.svg",
  30048. extra: 1633 / 1564,
  30049. bottom: 91.5 / 1726
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Macro",
  30056. height: math.unit(1, "mile"),
  30057. default: true
  30058. },
  30059. ]
  30060. ))
  30061. characterMakers.push(() => makeCharacter(
  30062. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30063. {
  30064. front: {
  30065. height: math.unit(12 + 6 / 12, "feet"),
  30066. weight: math.unit(1342, "lb"),
  30067. name: "Front",
  30068. image: {
  30069. source: "./media/characters/arokh-takakura/front.svg",
  30070. extra: 1089 / 1043,
  30071. bottom: 77.4 / 1176.7
  30072. }
  30073. },
  30074. back: {
  30075. height: math.unit(12 + 6 / 12, "feet"),
  30076. weight: math.unit(1342, "lb"),
  30077. name: "Back",
  30078. image: {
  30079. source: "./media/characters/arokh-takakura/back.svg",
  30080. extra: 1046 / 1019,
  30081. bottom: 102 / 1150
  30082. }
  30083. },
  30084. },
  30085. [
  30086. {
  30087. name: "Big",
  30088. height: math.unit(12 + 6 / 12, "feet"),
  30089. default: true
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30095. {
  30096. front: {
  30097. height: math.unit(5 + 6 / 12, "feet"),
  30098. weight: math.unit(150, "lb"),
  30099. name: "Front",
  30100. image: {
  30101. source: "./media/characters/theo/front.svg",
  30102. extra: 1184 / 1131,
  30103. bottom: 7.4 / 1191
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Micro",
  30110. height: math.unit(5, "inches")
  30111. },
  30112. {
  30113. name: "Normal",
  30114. height: math.unit(5 + 6 / 12, "feet"),
  30115. default: true
  30116. },
  30117. ]
  30118. ))
  30119. characterMakers.push(() => makeCharacter(
  30120. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30121. {
  30122. front: {
  30123. height: math.unit(5 + 9 / 12, "feet"),
  30124. weight: math.unit(130, "lb"),
  30125. name: "Front",
  30126. image: {
  30127. source: "./media/characters/cecelia-swift/front.svg",
  30128. extra: 502 / 484,
  30129. bottom: 23 / 523
  30130. }
  30131. },
  30132. back: {
  30133. height: math.unit(5 + 9 / 12, "feet"),
  30134. weight: math.unit(130, "lb"),
  30135. name: "Back",
  30136. image: {
  30137. source: "./media/characters/cecelia-swift/back.svg",
  30138. extra: 499 / 485,
  30139. bottom: 12 / 511
  30140. }
  30141. },
  30142. head: {
  30143. height: math.unit(0.90, "feet"),
  30144. name: "Head",
  30145. image: {
  30146. source: "./media/characters/cecelia-swift/head.svg"
  30147. }
  30148. },
  30149. rump: {
  30150. height: math.unit(1.75, "feet"),
  30151. name: "Rump",
  30152. image: {
  30153. source: "./media/characters/cecelia-swift/rump.svg"
  30154. }
  30155. },
  30156. },
  30157. [
  30158. {
  30159. name: "Normal",
  30160. height: math.unit(5 + 9 / 12, "feet"),
  30161. default: true
  30162. },
  30163. {
  30164. name: "Big",
  30165. height: math.unit(50, "feet")
  30166. },
  30167. {
  30168. name: "Macro",
  30169. height: math.unit(100, "feet")
  30170. },
  30171. {
  30172. name: "Macro+",
  30173. height: math.unit(500, "feet")
  30174. },
  30175. {
  30176. name: "Macro++",
  30177. height: math.unit(1000, "feet")
  30178. },
  30179. ]
  30180. ))
  30181. characterMakers.push(() => makeCharacter(
  30182. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30183. {
  30184. front: {
  30185. height: math.unit(6, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Front",
  30188. image: {
  30189. source: "./media/characters/kaunan/front.svg",
  30190. extra: 2890 / 2523,
  30191. bottom: 49 / 2939
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Macro",
  30198. height: math.unit(150, "feet"),
  30199. default: true
  30200. },
  30201. ]
  30202. ))
  30203. characterMakers.push(() => makeCharacter(
  30204. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30205. {
  30206. dressed: {
  30207. height: math.unit(175, "cm"),
  30208. weight: math.unit(60, "kg"),
  30209. name: "Dressed",
  30210. image: {
  30211. source: "./media/characters/fei/dressed.svg",
  30212. extra: 1402/1278,
  30213. bottom: 27/1429
  30214. }
  30215. },
  30216. nude: {
  30217. height: math.unit(175, "cm"),
  30218. weight: math.unit(60, "kg"),
  30219. name: "Nude",
  30220. image: {
  30221. source: "./media/characters/fei/nude.svg",
  30222. extra: 1402/1278,
  30223. bottom: 27/1429
  30224. }
  30225. },
  30226. heels: {
  30227. height: math.unit(0.466, "feet"),
  30228. name: "Heels",
  30229. image: {
  30230. source: "./media/characters/fei/heels.svg",
  30231. extra: 156/152,
  30232. bottom: 28/184
  30233. }
  30234. },
  30235. },
  30236. [
  30237. {
  30238. name: "Mortal",
  30239. height: math.unit(175, "cm")
  30240. },
  30241. {
  30242. name: "Normal",
  30243. height: math.unit(3500, "m")
  30244. },
  30245. {
  30246. name: "Stroll",
  30247. height: math.unit(18.4, "km"),
  30248. default: true
  30249. },
  30250. {
  30251. name: "Showoff",
  30252. height: math.unit(175, "km")
  30253. },
  30254. ]
  30255. ))
  30256. characterMakers.push(() => makeCharacter(
  30257. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30258. {
  30259. front: {
  30260. height: math.unit(7, "feet"),
  30261. weight: math.unit(1000, "kg"),
  30262. name: "Front",
  30263. image: {
  30264. source: "./media/characters/edrax/front.svg",
  30265. extra: 2838 / 2550,
  30266. bottom: 130 / 2968
  30267. }
  30268. },
  30269. },
  30270. [
  30271. {
  30272. name: "Small",
  30273. height: math.unit(7, "feet")
  30274. },
  30275. {
  30276. name: "Normal",
  30277. height: math.unit(1500, "meters")
  30278. },
  30279. {
  30280. name: "Mega",
  30281. height: math.unit(12000000, "km"),
  30282. default: true
  30283. },
  30284. {
  30285. name: "Megamacro",
  30286. height: math.unit(10600000, "lightyears")
  30287. },
  30288. {
  30289. name: "Hypermacro",
  30290. height: math.unit(256, "yottameters")
  30291. },
  30292. ]
  30293. ))
  30294. characterMakers.push(() => makeCharacter(
  30295. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30296. {
  30297. front: {
  30298. height: math.unit(10, "feet"),
  30299. weight: math.unit(750, "lb"),
  30300. name: "Front",
  30301. image: {
  30302. source: "./media/characters/clove/front.svg",
  30303. extra: 1918/1751,
  30304. bottom: 52/1970
  30305. }
  30306. },
  30307. back: {
  30308. height: math.unit(10, "feet"),
  30309. weight: math.unit(750, "lb"),
  30310. name: "Back",
  30311. image: {
  30312. source: "./media/characters/clove/back.svg",
  30313. extra: 1912/1747,
  30314. bottom: 50/1962
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Normal",
  30321. height: math.unit(10, "feet"),
  30322. default: true
  30323. },
  30324. ]
  30325. ))
  30326. characterMakers.push(() => makeCharacter(
  30327. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30328. {
  30329. front: {
  30330. height: math.unit(4, "feet"),
  30331. weight: math.unit(50, "lb"),
  30332. name: "Front",
  30333. image: {
  30334. source: "./media/characters/alex-rabbit/front.svg",
  30335. extra: 507 / 458,
  30336. bottom: 18.5 / 527
  30337. }
  30338. },
  30339. back: {
  30340. height: math.unit(4, "feet"),
  30341. weight: math.unit(50, "lb"),
  30342. name: "Back",
  30343. image: {
  30344. source: "./media/characters/alex-rabbit/back.svg",
  30345. extra: 502 / 460,
  30346. bottom: 18.9 / 521
  30347. }
  30348. },
  30349. },
  30350. [
  30351. {
  30352. name: "Normal",
  30353. height: math.unit(4, "feet"),
  30354. default: true
  30355. },
  30356. ]
  30357. ))
  30358. characterMakers.push(() => makeCharacter(
  30359. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30360. {
  30361. front: {
  30362. height: math.unit(1 + 3 / 12, "feet"),
  30363. weight: math.unit(80, "lb"),
  30364. name: "Front",
  30365. image: {
  30366. source: "./media/characters/zander-rose/front.svg",
  30367. extra: 916 / 797,
  30368. bottom: 17 / 933
  30369. }
  30370. },
  30371. back: {
  30372. height: math.unit(1 + 3 / 12, "feet"),
  30373. weight: math.unit(80, "lb"),
  30374. name: "Back",
  30375. image: {
  30376. source: "./media/characters/zander-rose/back.svg",
  30377. extra: 903 / 779,
  30378. bottom: 31 / 934
  30379. }
  30380. },
  30381. },
  30382. [
  30383. {
  30384. name: "Normal",
  30385. height: math.unit(1 + 3 / 12, "feet"),
  30386. default: true
  30387. },
  30388. ]
  30389. ))
  30390. characterMakers.push(() => makeCharacter(
  30391. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30392. {
  30393. anthro: {
  30394. height: math.unit(6, "feet"),
  30395. weight: math.unit(150, "lb"),
  30396. name: "Anthro",
  30397. image: {
  30398. source: "./media/characters/razz/anthro.svg",
  30399. extra: 1437 / 1343,
  30400. bottom: 48 / 1485
  30401. }
  30402. },
  30403. feral: {
  30404. height: math.unit(6, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Feral",
  30407. image: {
  30408. source: "./media/characters/razz/feral.svg",
  30409. extra: 2569 / 1385,
  30410. bottom: 95 / 2664
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Normal",
  30417. height: math.unit(6, "feet"),
  30418. default: true
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30424. {
  30425. front: {
  30426. height: math.unit(9 + 4 / 12, "feet"),
  30427. weight: math.unit(500, "lb"),
  30428. name: "Front",
  30429. image: {
  30430. source: "./media/characters/morrigan/front.svg",
  30431. extra: 2707 / 2579,
  30432. bottom: 156 / 2863
  30433. }
  30434. },
  30435. },
  30436. [
  30437. {
  30438. name: "Normal",
  30439. height: math.unit(9 + 4 / 12, "feet"),
  30440. default: true
  30441. },
  30442. ]
  30443. ))
  30444. characterMakers.push(() => makeCharacter(
  30445. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30446. {
  30447. front: {
  30448. height: math.unit(5, "stories"),
  30449. weight: math.unit(4000, "lb"),
  30450. name: "Front",
  30451. image: {
  30452. source: "./media/characters/jenene/front.svg",
  30453. extra: 1780 / 1710,
  30454. bottom: 57 / 1837
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Normal",
  30461. height: math.unit(5, "stories"),
  30462. default: true
  30463. },
  30464. ]
  30465. ))
  30466. characterMakers.push(() => makeCharacter(
  30467. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30468. {
  30469. taurSfw: {
  30470. height: math.unit(10, "meters"),
  30471. weight: math.unit(17500, "kg"),
  30472. name: "Taur",
  30473. image: {
  30474. source: "./media/characters/faey/taur-sfw.svg",
  30475. extra: 1200 / 968,
  30476. bottom: 41 / 1241
  30477. }
  30478. },
  30479. chestmaw: {
  30480. height: math.unit(2.01, "meters"),
  30481. name: "Chestmaw",
  30482. image: {
  30483. source: "./media/characters/faey/chestmaw.svg"
  30484. }
  30485. },
  30486. foot: {
  30487. height: math.unit(2.43, "meters"),
  30488. name: "Foot",
  30489. image: {
  30490. source: "./media/characters/faey/foot.svg"
  30491. }
  30492. },
  30493. jaws: {
  30494. height: math.unit(1.66, "meters"),
  30495. name: "Jaws",
  30496. image: {
  30497. source: "./media/characters/faey/jaws.svg"
  30498. }
  30499. },
  30500. tongues: {
  30501. height: math.unit(2.01, "meters"),
  30502. name: "Tongues",
  30503. image: {
  30504. source: "./media/characters/faey/tongues.svg"
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Small",
  30511. height: math.unit(10, "meters"),
  30512. default: true
  30513. },
  30514. {
  30515. name: "Big",
  30516. height: math.unit(500000, "km")
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30522. {
  30523. front: {
  30524. height: math.unit(7, "feet"),
  30525. weight: math.unit(275, "lb"),
  30526. name: "Front",
  30527. image: {
  30528. source: "./media/characters/roku/front.svg",
  30529. extra: 903 / 878,
  30530. bottom: 37 / 940
  30531. }
  30532. },
  30533. },
  30534. [
  30535. {
  30536. name: "Normal",
  30537. height: math.unit(7, "feet"),
  30538. default: true
  30539. },
  30540. {
  30541. name: "Macro",
  30542. height: math.unit(500, "feet")
  30543. },
  30544. {
  30545. name: "Megamacro",
  30546. height: math.unit(200, "miles")
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(6 + 2 / 12, "feet"),
  30555. weight: math.unit(150, "lb"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/lira/front.svg",
  30559. extra: 1727 / 1605,
  30560. bottom: 26 / 1753
  30561. }
  30562. },
  30563. back: {
  30564. height: math.unit(6 + 2 / 12, "feet"),
  30565. weight: math.unit(150, "lb"),
  30566. name: "Back",
  30567. image: {
  30568. source: "./media/characters/lira/back.svg",
  30569. extra: 1713/1621,
  30570. bottom: 20/1733
  30571. }
  30572. },
  30573. hand: {
  30574. height: math.unit(0.75, "feet"),
  30575. name: "Hand",
  30576. image: {
  30577. source: "./media/characters/lira/hand.svg"
  30578. }
  30579. },
  30580. maw: {
  30581. height: math.unit(0.65, "feet"),
  30582. name: "Maw",
  30583. image: {
  30584. source: "./media/characters/lira/maw.svg"
  30585. }
  30586. },
  30587. pawDigi: {
  30588. height: math.unit(1.6, "feet"),
  30589. name: "Paw Digi",
  30590. image: {
  30591. source: "./media/characters/lira/paw-digi.svg"
  30592. }
  30593. },
  30594. pawPlanti: {
  30595. height: math.unit(1.4, "feet"),
  30596. name: "Paw Planti",
  30597. image: {
  30598. source: "./media/characters/lira/paw-planti.svg"
  30599. }
  30600. },
  30601. },
  30602. [
  30603. {
  30604. name: "Normal",
  30605. height: math.unit(6 + 2 / 12, "feet"),
  30606. default: true
  30607. },
  30608. {
  30609. name: "Macro",
  30610. height: math.unit(100, "feet")
  30611. },
  30612. {
  30613. name: "Macro²",
  30614. height: math.unit(1600, "feet")
  30615. },
  30616. {
  30617. name: "Planetary",
  30618. height: math.unit(20, "earths")
  30619. },
  30620. ]
  30621. ))
  30622. characterMakers.push(() => makeCharacter(
  30623. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30624. {
  30625. front: {
  30626. height: math.unit(6, "feet"),
  30627. weight: math.unit(150, "lb"),
  30628. name: "Front",
  30629. image: {
  30630. source: "./media/characters/hadjet/front.svg",
  30631. extra: 1480 / 1346,
  30632. bottom: 26 / 1506
  30633. }
  30634. },
  30635. frontNsfw: {
  30636. height: math.unit(6, "feet"),
  30637. weight: math.unit(150, "lb"),
  30638. name: "Front (NSFW)",
  30639. image: {
  30640. source: "./media/characters/hadjet/front-nsfw.svg",
  30641. extra: 1440 / 1358,
  30642. bottom: 52 / 1492
  30643. }
  30644. },
  30645. },
  30646. [
  30647. {
  30648. name: "Macro",
  30649. height: math.unit(10, "stories"),
  30650. default: true
  30651. },
  30652. {
  30653. name: "Megamacro",
  30654. height: math.unit(1.5, "miles")
  30655. },
  30656. {
  30657. name: "Megamacro+",
  30658. height: math.unit(5, "miles")
  30659. },
  30660. ]
  30661. ))
  30662. characterMakers.push(() => makeCharacter(
  30663. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30664. {
  30665. side: {
  30666. height: math.unit(106, "feet"),
  30667. weight: math.unit(500, "tonnes"),
  30668. name: "Side",
  30669. image: {
  30670. source: "./media/characters/kodran/side.svg",
  30671. extra: 553 / 480,
  30672. bottom: 33 / 586
  30673. }
  30674. },
  30675. front: {
  30676. height: math.unit(132, "feet"),
  30677. weight: math.unit(500, "tonnes"),
  30678. name: "Front",
  30679. image: {
  30680. source: "./media/characters/kodran/front.svg",
  30681. extra: 667 / 643,
  30682. bottom: 42 / 709
  30683. }
  30684. },
  30685. flying: {
  30686. height: math.unit(350, "feet"),
  30687. weight: math.unit(500, "tonnes"),
  30688. name: "Flying",
  30689. image: {
  30690. source: "./media/characters/kodran/flying.svg"
  30691. }
  30692. },
  30693. foot: {
  30694. height: math.unit(33, "feet"),
  30695. name: "Foot",
  30696. image: {
  30697. source: "./media/characters/kodran/foot.svg"
  30698. }
  30699. },
  30700. footFront: {
  30701. height: math.unit(19, "feet"),
  30702. name: "Foot (Front)",
  30703. image: {
  30704. source: "./media/characters/kodran/foot-front.svg",
  30705. extra: 261 / 261,
  30706. bottom: 91 / 352
  30707. }
  30708. },
  30709. headFront: {
  30710. height: math.unit(53, "feet"),
  30711. name: "Head (Front)",
  30712. image: {
  30713. source: "./media/characters/kodran/head-front.svg"
  30714. }
  30715. },
  30716. headSide: {
  30717. height: math.unit(65, "feet"),
  30718. name: "Head (Side)",
  30719. image: {
  30720. source: "./media/characters/kodran/head-side.svg"
  30721. }
  30722. },
  30723. throat: {
  30724. height: math.unit(79, "feet"),
  30725. name: "Throat",
  30726. image: {
  30727. source: "./media/characters/kodran/throat.svg"
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Large",
  30734. height: math.unit(106, "feet"),
  30735. default: true
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30741. {
  30742. side: {
  30743. height: math.unit(11, "feet"),
  30744. weight: math.unit(150, "lb"),
  30745. name: "Side",
  30746. image: {
  30747. source: "./media/characters/pyxaron/side.svg",
  30748. extra: 305 / 195,
  30749. bottom: 17 / 322
  30750. }
  30751. },
  30752. },
  30753. [
  30754. {
  30755. name: "Normal",
  30756. height: math.unit(11, "feet"),
  30757. default: true
  30758. },
  30759. ]
  30760. ))
  30761. characterMakers.push(() => makeCharacter(
  30762. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30763. {
  30764. front: {
  30765. height: math.unit(6, "feet"),
  30766. weight: math.unit(150, "lb"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/meep/front.svg",
  30770. extra: 88 / 80,
  30771. bottom: 6 / 94
  30772. }
  30773. },
  30774. },
  30775. [
  30776. {
  30777. name: "Fun Sized",
  30778. height: math.unit(2, "inches"),
  30779. default: true
  30780. },
  30781. {
  30782. name: "Friend Sized",
  30783. height: math.unit(8, "inches")
  30784. },
  30785. ]
  30786. ))
  30787. characterMakers.push(() => makeCharacter(
  30788. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30789. {
  30790. front: {
  30791. height: math.unit(15, "feet"),
  30792. weight: math.unit(2500, "lb"),
  30793. name: "Front",
  30794. image: {
  30795. source: "./media/characters/holly-rabbit/front.svg",
  30796. extra: 1433 / 1233,
  30797. bottom: 125 / 1558
  30798. }
  30799. },
  30800. dick: {
  30801. height: math.unit(4.6, "feet"),
  30802. name: "Dick",
  30803. image: {
  30804. source: "./media/characters/holly-rabbit/dick.svg"
  30805. }
  30806. },
  30807. },
  30808. [
  30809. {
  30810. name: "Normal",
  30811. height: math.unit(15, "feet"),
  30812. default: true
  30813. },
  30814. {
  30815. name: "Macro",
  30816. height: math.unit(250, "feet")
  30817. },
  30818. {
  30819. name: "Macro+",
  30820. height: math.unit(2500, "feet")
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(3.02, "meters"),
  30829. weight: math.unit(500, "kg"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/drena/front.svg",
  30833. extra: 282 / 243,
  30834. bottom: 8 / 290
  30835. }
  30836. },
  30837. side: {
  30838. height: math.unit(3.02, "meters"),
  30839. weight: math.unit(500, "kg"),
  30840. name: "Side",
  30841. image: {
  30842. source: "./media/characters/drena/side.svg",
  30843. extra: 280 / 245,
  30844. bottom: 10 / 290
  30845. }
  30846. },
  30847. back: {
  30848. height: math.unit(3.02, "meters"),
  30849. weight: math.unit(500, "kg"),
  30850. name: "Back",
  30851. image: {
  30852. source: "./media/characters/drena/back.svg",
  30853. extra: 278 / 243,
  30854. bottom: 2 / 280
  30855. }
  30856. },
  30857. foot: {
  30858. height: math.unit(0.75, "meters"),
  30859. name: "Foot",
  30860. image: {
  30861. source: "./media/characters/drena/foot.svg"
  30862. }
  30863. },
  30864. maw: {
  30865. height: math.unit(0.82, "meters"),
  30866. name: "Maw",
  30867. image: {
  30868. source: "./media/characters/drena/maw.svg"
  30869. }
  30870. },
  30871. eating: {
  30872. height: math.unit(0.75, "meters"),
  30873. name: "Eating",
  30874. image: {
  30875. source: "./media/characters/drena/eating.svg"
  30876. }
  30877. },
  30878. rump: {
  30879. height: math.unit(0.93, "meters"),
  30880. name: "Rump",
  30881. image: {
  30882. source: "./media/characters/drena/rump.svg"
  30883. }
  30884. },
  30885. },
  30886. [
  30887. {
  30888. name: "Normal",
  30889. height: math.unit(3.02, "meters"),
  30890. default: true
  30891. },
  30892. ]
  30893. ))
  30894. characterMakers.push(() => makeCharacter(
  30895. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30896. {
  30897. front: {
  30898. height: math.unit(6 + 4 / 12, "feet"),
  30899. weight: math.unit(250, "lb"),
  30900. name: "Front",
  30901. image: {
  30902. source: "./media/characters/remmyzilla/front.svg",
  30903. extra: 4033 / 3588,
  30904. bottom: 123 / 4156
  30905. }
  30906. },
  30907. back: {
  30908. height: math.unit(6 + 4 / 12, "feet"),
  30909. weight: math.unit(250, "lb"),
  30910. name: "Back",
  30911. image: {
  30912. source: "./media/characters/remmyzilla/back.svg",
  30913. extra: 2687 / 2555,
  30914. bottom: 48 / 2735
  30915. }
  30916. },
  30917. paw: {
  30918. height: math.unit(1.73, "feet"),
  30919. name: "Paw",
  30920. image: {
  30921. source: "./media/characters/remmyzilla/paw.svg"
  30922. },
  30923. extraAttributes: {
  30924. "toeSize": {
  30925. name: "Toe Size",
  30926. power: 2,
  30927. type: "area",
  30928. base: math.unit(0.0035, "m^2")
  30929. },
  30930. "padSize": {
  30931. name: "Pad Size",
  30932. power: 2,
  30933. type: "area",
  30934. base: math.unit(0.015, "m^2")
  30935. },
  30936. "pawsize": {
  30937. name: "Paw Size",
  30938. power: 2,
  30939. type: "area",
  30940. base: math.unit(0.072, "m^2")
  30941. },
  30942. }
  30943. },
  30944. maw: {
  30945. height: math.unit(1.73, "feet"),
  30946. name: "Maw",
  30947. image: {
  30948. source: "./media/characters/remmyzilla/maw.svg"
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "Normal",
  30955. height: math.unit(6 + 4 / 12, "feet")
  30956. },
  30957. {
  30958. name: "Minimacro",
  30959. height: math.unit(12 + 8 / 12, "feet")
  30960. },
  30961. {
  30962. name: "Normal",
  30963. height: math.unit(640, "feet"),
  30964. default: true
  30965. },
  30966. {
  30967. name: "Megamacro",
  30968. height: math.unit(6400, "feet")
  30969. },
  30970. {
  30971. name: "Gigamacro",
  30972. height: math.unit(64000, "miles")
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30978. {
  30979. front: {
  30980. height: math.unit(2.5, "meters"),
  30981. weight: math.unit(300, "lb"),
  30982. name: "Front",
  30983. image: {
  30984. source: "./media/characters/lawrence/front.svg",
  30985. extra: 357 / 335,
  30986. bottom: 30 / 387
  30987. }
  30988. },
  30989. back: {
  30990. height: math.unit(2.5, "meters"),
  30991. weight: math.unit(300, "lb"),
  30992. name: "Back",
  30993. image: {
  30994. source: "./media/characters/lawrence/back.svg",
  30995. extra: 357 / 338,
  30996. bottom: 16 / 373
  30997. }
  30998. },
  30999. head: {
  31000. height: math.unit(0.9, "meter"),
  31001. name: "Head",
  31002. image: {
  31003. source: "./media/characters/lawrence/head.svg"
  31004. }
  31005. },
  31006. maw: {
  31007. height: math.unit(0.7, "meter"),
  31008. name: "Maw",
  31009. image: {
  31010. source: "./media/characters/lawrence/maw.svg"
  31011. }
  31012. },
  31013. footBottom: {
  31014. height: math.unit(0.5, "meter"),
  31015. name: "Foot (Bottom)",
  31016. image: {
  31017. source: "./media/characters/lawrence/foot-bottom.svg"
  31018. }
  31019. },
  31020. footTop: {
  31021. height: math.unit(0.5, "meter"),
  31022. name: "Foot (Top)",
  31023. image: {
  31024. source: "./media/characters/lawrence/foot-top.svg"
  31025. }
  31026. },
  31027. },
  31028. [
  31029. {
  31030. name: "Normal",
  31031. height: math.unit(2.5, "meters"),
  31032. default: true
  31033. },
  31034. {
  31035. name: "Macro",
  31036. height: math.unit(95, "meters")
  31037. },
  31038. {
  31039. name: "Megamacro",
  31040. height: math.unit(150, "km")
  31041. },
  31042. ]
  31043. ))
  31044. characterMakers.push(() => makeCharacter(
  31045. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31046. {
  31047. front: {
  31048. height: math.unit(4.2, "meters"),
  31049. preyCapacity: math.unit(50, "m^3"),
  31050. weight: math.unit(30, "tonnes"),
  31051. name: "Front",
  31052. image: {
  31053. source: "./media/characters/sydney/front.svg",
  31054. extra: 1177/1129,
  31055. bottom: 197/1374
  31056. },
  31057. extraAttributes: {
  31058. "length": {
  31059. name: "Length",
  31060. power: 1,
  31061. type: "length",
  31062. base: math.unit(21, "meters")
  31063. },
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(4.2, "meters"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31077. {
  31078. back: {
  31079. height: math.unit(201, "feet"),
  31080. name: "Back",
  31081. image: {
  31082. source: "./media/characters/jessica/back.svg",
  31083. extra: 273 / 259,
  31084. bottom: 7 / 280
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(201, "feet"),
  31092. default: true
  31093. },
  31094. {
  31095. name: "Megamacro",
  31096. height: math.unit(8, "miles")
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31102. {
  31103. side: {
  31104. height: math.unit(5.6, "m"),
  31105. weight: math.unit(8000, "kg"),
  31106. name: "Side",
  31107. image: {
  31108. source: "./media/characters/victoria/side.svg",
  31109. extra: 1542/1229,
  31110. bottom: 124/1666
  31111. }
  31112. },
  31113. maw: {
  31114. height: math.unit(7.14, "feet"),
  31115. name: "Maw",
  31116. image: {
  31117. source: "./media/characters/victoria/maw.svg"
  31118. }
  31119. },
  31120. },
  31121. [
  31122. {
  31123. name: "Normal",
  31124. height: math.unit(5.6, "m"),
  31125. default: true
  31126. },
  31127. ]
  31128. ))
  31129. characterMakers.push(() => makeCharacter(
  31130. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31131. {
  31132. front: {
  31133. height: math.unit(5 + 6 / 12, "feet"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/cat/front.svg",
  31137. extra: 1449/1295,
  31138. bottom: 34/1483
  31139. },
  31140. form: "cat",
  31141. default: true
  31142. },
  31143. back: {
  31144. height: math.unit(5 + 6 / 12, "feet"),
  31145. name: "Back",
  31146. image: {
  31147. source: "./media/characters/cat/back.svg",
  31148. extra: 1466/1301,
  31149. bottom: 19/1485
  31150. },
  31151. form: "cat"
  31152. },
  31153. taur: {
  31154. height: math.unit(7, "feet"),
  31155. name: "Taur",
  31156. image: {
  31157. source: "./media/characters/cat/taur.svg",
  31158. extra: 1389/1233,
  31159. bottom: 83/1472
  31160. },
  31161. form: "taur",
  31162. default: true
  31163. },
  31164. lucarioFront: {
  31165. height: math.unit(4, "feet"),
  31166. name: "Lucario (Front)",
  31167. image: {
  31168. source: "./media/characters/cat/lucario-front.svg",
  31169. extra: 1149/1019,
  31170. bottom: 84/1233
  31171. },
  31172. form: "lucario",
  31173. default: true
  31174. },
  31175. lucarioBack: {
  31176. height: math.unit(4, "feet"),
  31177. name: "Lucario (Back)",
  31178. image: {
  31179. source: "./media/characters/cat/lucario-back.svg",
  31180. extra: 1190/1059,
  31181. bottom: 33/1223
  31182. },
  31183. form: "lucario"
  31184. },
  31185. megaLucario: {
  31186. height: math.unit(4, "feet"),
  31187. name: "Mega Lucario",
  31188. image: {
  31189. source: "./media/characters/cat/mega-lucario.svg",
  31190. extra: 1515 / 1319,
  31191. bottom: 63 / 1578
  31192. },
  31193. form: "lucario"
  31194. },
  31195. nickit: {
  31196. height: math.unit(2, "feet"),
  31197. name: "Nickit",
  31198. image: {
  31199. source: "./media/characters/cat/nickit.svg",
  31200. extra: 1980 / 1585,
  31201. bottom: 102 / 2082
  31202. },
  31203. form: "nickit",
  31204. default: true
  31205. },
  31206. lopunnyFront: {
  31207. height: math.unit(5, "feet"),
  31208. name: "Lopunny (Front)",
  31209. image: {
  31210. source: "./media/characters/cat/lopunny-front.svg",
  31211. extra: 1782 / 1469,
  31212. bottom: 38 / 1820
  31213. },
  31214. form: "lopunny",
  31215. default: true
  31216. },
  31217. lopunnyBack: {
  31218. height: math.unit(5, "feet"),
  31219. name: "Lopunny (Back)",
  31220. image: {
  31221. source: "./media/characters/cat/lopunny-back.svg",
  31222. extra: 1660 / 1490,
  31223. bottom: 25 / 1685
  31224. },
  31225. form: "lopunny"
  31226. },
  31227. },
  31228. [
  31229. {
  31230. name: "Really small",
  31231. height: math.unit(1, "nm")
  31232. },
  31233. {
  31234. name: "Micro",
  31235. height: math.unit(5, "inches")
  31236. },
  31237. {
  31238. name: "Normal",
  31239. height: math.unit(5 + 6 / 12, "feet"),
  31240. default: true
  31241. },
  31242. {
  31243. name: "Macro",
  31244. height: math.unit(50, "feet")
  31245. },
  31246. {
  31247. name: "Macro+",
  31248. height: math.unit(150, "feet")
  31249. },
  31250. {
  31251. name: "Megamacro",
  31252. height: math.unit(100, "miles")
  31253. },
  31254. ]
  31255. ))
  31256. characterMakers.push(() => makeCharacter(
  31257. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31258. {
  31259. front: {
  31260. height: math.unit(63.4, "meters"),
  31261. weight: math.unit(3.28349e+6, "kilograms"),
  31262. name: "Front",
  31263. image: {
  31264. source: "./media/characters/kirina-violet/front.svg",
  31265. extra: 2812 / 2725,
  31266. bottom: 0 / 2812
  31267. }
  31268. },
  31269. back: {
  31270. height: math.unit(63.4, "meters"),
  31271. weight: math.unit(3.28349e+6, "kilograms"),
  31272. name: "Back",
  31273. image: {
  31274. source: "./media/characters/kirina-violet/back.svg",
  31275. extra: 2812 / 2725,
  31276. bottom: 0 / 2812
  31277. }
  31278. },
  31279. mouth: {
  31280. height: math.unit(4.35, "meters"),
  31281. name: "Mouth",
  31282. image: {
  31283. source: "./media/characters/kirina-violet/mouth.svg"
  31284. }
  31285. },
  31286. paw: {
  31287. height: math.unit(5.6, "meters"),
  31288. name: "Paw",
  31289. image: {
  31290. source: "./media/characters/kirina-violet/paw.svg"
  31291. }
  31292. },
  31293. tail: {
  31294. height: math.unit(18, "meters"),
  31295. name: "Tail",
  31296. image: {
  31297. source: "./media/characters/kirina-violet/tail.svg"
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(63.4, "meters"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(75, "feet"),
  31314. name: "Front",
  31315. image: {
  31316. source: "./media/characters/cat-gigachu/front.svg",
  31317. extra: 1239/1027,
  31318. bottom: 32/1271
  31319. }
  31320. },
  31321. back: {
  31322. height: math.unit(75, "feet"),
  31323. name: "Back",
  31324. image: {
  31325. source: "./media/characters/cat-gigachu/back.svg",
  31326. extra: 1229/1030,
  31327. bottom: 9/1238
  31328. }
  31329. },
  31330. },
  31331. [
  31332. {
  31333. name: "Dynamax",
  31334. height: math.unit(75, "feet"),
  31335. default: true
  31336. },
  31337. ]
  31338. ))
  31339. characterMakers.push(() => makeCharacter(
  31340. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31341. {
  31342. front: {
  31343. height: math.unit(6, "feet"),
  31344. weight: math.unit(150, "lb"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/sfaiyan/front.svg",
  31348. extra: 999 / 978,
  31349. bottom: 5 / 1004
  31350. }
  31351. },
  31352. },
  31353. [
  31354. {
  31355. name: "Normal",
  31356. height: math.unit(1.82, "meters")
  31357. },
  31358. {
  31359. name: "Giant",
  31360. height: math.unit(2.27, "km"),
  31361. default: true
  31362. },
  31363. ]
  31364. ))
  31365. characterMakers.push(() => makeCharacter(
  31366. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31367. {
  31368. front: {
  31369. height: math.unit(179, "cm"),
  31370. weight: math.unit(100, "kg"),
  31371. name: "Front",
  31372. image: {
  31373. source: "./media/characters/raunehkeli/front.svg",
  31374. extra: 1934 / 1926,
  31375. bottom: 0 / 1934
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Normal",
  31382. height: math.unit(179, "cm")
  31383. },
  31384. {
  31385. name: "Maximum",
  31386. height: math.unit(575, "meters"),
  31387. default: true
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31393. {
  31394. front: {
  31395. height: math.unit(6, "feet"),
  31396. weight: math.unit(150, "lb"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31400. extra: 2625 / 2518,
  31401. bottom: 60 / 2685
  31402. }
  31403. },
  31404. },
  31405. [
  31406. {
  31407. name: "Normal",
  31408. height: math.unit(6 + 2 / 12, "feet")
  31409. },
  31410. {
  31411. name: "Macro",
  31412. height: math.unit(1180, "feet"),
  31413. default: true
  31414. },
  31415. ]
  31416. ))
  31417. characterMakers.push(() => makeCharacter(
  31418. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31419. {
  31420. front: {
  31421. height: math.unit(5 + 6 / 12, "feet"),
  31422. weight: math.unit(108, "lb"),
  31423. name: "Front",
  31424. image: {
  31425. source: "./media/characters/lilith-zott/front.svg",
  31426. extra: 2510 / 2238,
  31427. bottom: 100 / 2610
  31428. }
  31429. },
  31430. frontDressed: {
  31431. height: math.unit(5 + 6 / 12, "feet"),
  31432. weight: math.unit(108, "lb"),
  31433. name: "Front (Dressed)",
  31434. image: {
  31435. source: "./media/characters/lilith-zott/front-dressed.svg",
  31436. extra: 2510 / 2238,
  31437. bottom: 100 / 2610
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Normal",
  31444. height: math.unit(5 + 6 / 12, "feet")
  31445. },
  31446. {
  31447. name: "Macro",
  31448. height: math.unit(1030, "feet"),
  31449. default: true
  31450. },
  31451. ]
  31452. ))
  31453. characterMakers.push(() => makeCharacter(
  31454. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31455. {
  31456. front: {
  31457. height: math.unit(6, "feet"),
  31458. weight: math.unit(150, "lb"),
  31459. name: "Front",
  31460. image: {
  31461. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31462. extra: 2567 / 2435,
  31463. bottom: 39 / 2606
  31464. }
  31465. },
  31466. frontSuper: {
  31467. height: math.unit(6, "feet"),
  31468. name: "Front (Super)",
  31469. image: {
  31470. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31471. extra: 2567 / 2435,
  31472. bottom: 39 / 2606
  31473. }
  31474. },
  31475. },
  31476. [
  31477. {
  31478. name: "Normal",
  31479. height: math.unit(5 + 10 / 12, "feet")
  31480. },
  31481. {
  31482. name: "Macro",
  31483. height: math.unit(1100, "feet"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(100, "miles"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/sona/front.svg",
  31496. extra: 2433 / 2201,
  31497. bottom: 53 / 2486
  31498. }
  31499. },
  31500. foot: {
  31501. height: math.unit(16.1, "miles"),
  31502. name: "Foot",
  31503. image: {
  31504. source: "./media/characters/sona/foot.svg"
  31505. }
  31506. },
  31507. },
  31508. [
  31509. {
  31510. name: "Macro",
  31511. height: math.unit(100, "miles"),
  31512. default: true
  31513. },
  31514. ]
  31515. ))
  31516. characterMakers.push(() => makeCharacter(
  31517. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31518. {
  31519. front: {
  31520. height: math.unit(6, "feet"),
  31521. weight: math.unit(150, "lb"),
  31522. name: "Front",
  31523. image: {
  31524. source: "./media/characters/bailey/front.svg",
  31525. extra: 1778 / 1724,
  31526. bottom: 30 / 1808
  31527. }
  31528. },
  31529. },
  31530. [
  31531. {
  31532. name: "Micro",
  31533. height: math.unit(4, "inches")
  31534. },
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(5 + 5 / 12, "feet"),
  31538. default: true
  31539. },
  31540. {
  31541. name: "Macro",
  31542. height: math.unit(250, "feet")
  31543. },
  31544. {
  31545. name: "Megamacro",
  31546. height: math.unit(100, "miles")
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(5 + 2 / 12, "feet"),
  31555. weight: math.unit(120, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/snaps/front.svg",
  31559. extra: 2370 / 2177,
  31560. bottom: 48 / 2418
  31561. }
  31562. },
  31563. back: {
  31564. height: math.unit(5 + 2 / 12, "feet"),
  31565. weight: math.unit(120, "lb"),
  31566. name: "Back",
  31567. image: {
  31568. source: "./media/characters/snaps/back.svg",
  31569. extra: 2408 / 2258,
  31570. bottom: 15 / 2423
  31571. }
  31572. },
  31573. },
  31574. [
  31575. {
  31576. name: "Micro",
  31577. height: math.unit(9, "inches")
  31578. },
  31579. {
  31580. name: "Normal",
  31581. height: math.unit(5 + 2 / 12, "feet"),
  31582. default: true
  31583. },
  31584. {
  31585. name: "Mini Macro",
  31586. height: math.unit(10, "feet")
  31587. },
  31588. ]
  31589. ))
  31590. characterMakers.push(() => makeCharacter(
  31591. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31592. {
  31593. front: {
  31594. height: math.unit(1.8, "meters"),
  31595. weight: math.unit(85, "kg"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/azteck/front.svg",
  31599. extra: 2815 / 2625,
  31600. bottom: 89 / 2904
  31601. }
  31602. },
  31603. back: {
  31604. height: math.unit(1.8, "meters"),
  31605. weight: math.unit(85, "kg"),
  31606. name: "Back",
  31607. image: {
  31608. source: "./media/characters/azteck/back.svg",
  31609. extra: 2856 / 2648,
  31610. bottom: 85 / 2941
  31611. }
  31612. },
  31613. frontDressed: {
  31614. height: math.unit(1.8, "meters"),
  31615. weight: math.unit(85, "kg"),
  31616. name: "Front (Dressed)",
  31617. image: {
  31618. source: "./media/characters/azteck/front-dressed.svg",
  31619. extra: 2147 / 2003,
  31620. bottom: 68 / 2215
  31621. }
  31622. },
  31623. head: {
  31624. height: math.unit(0.47, "meters"),
  31625. weight: math.unit(85, "kg"),
  31626. name: "Head",
  31627. image: {
  31628. source: "./media/characters/azteck/head.svg"
  31629. }
  31630. },
  31631. },
  31632. [
  31633. {
  31634. name: "Bite sized",
  31635. height: math.unit(16, "cm")
  31636. },
  31637. {
  31638. name: "Normal",
  31639. height: math.unit(1.8, "meters"),
  31640. default: true
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(6, "feet"),
  31649. weight: math.unit(150, "lb"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/pidge/front.svg",
  31653. extra: 1936/1820,
  31654. bottom: 0/1936
  31655. }
  31656. },
  31657. back: {
  31658. height: math.unit(6, "feet"),
  31659. weight: math.unit(150, "lb"),
  31660. name: "Back",
  31661. image: {
  31662. source: "./media/characters/pidge/back.svg",
  31663. extra: 1938/1843,
  31664. bottom: 0/1938
  31665. }
  31666. },
  31667. casual: {
  31668. height: math.unit(6, "feet"),
  31669. weight: math.unit(150, "lb"),
  31670. name: "Casual",
  31671. image: {
  31672. source: "./media/characters/pidge/casual.svg",
  31673. extra: 1936/1820,
  31674. bottom: 0/1936
  31675. }
  31676. },
  31677. tech: {
  31678. height: math.unit(6, "feet"),
  31679. weight: math.unit(150, "lb"),
  31680. name: "Tech",
  31681. image: {
  31682. source: "./media/characters/pidge/tech.svg",
  31683. extra: 1802/1682,
  31684. bottom: 0/1802
  31685. }
  31686. },
  31687. head: {
  31688. height: math.unit(1.61, "feet"),
  31689. name: "Head",
  31690. image: {
  31691. source: "./media/characters/pidge/head.svg"
  31692. }
  31693. },
  31694. collar: {
  31695. height: math.unit(0.82, "feet"),
  31696. name: "Collar",
  31697. image: {
  31698. source: "./media/characters/pidge/collar.svg"
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Macro",
  31705. height: math.unit(2, "mile"),
  31706. default: true
  31707. },
  31708. {
  31709. name: "PUPPY",
  31710. height: math.unit(20, "miles")
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31716. {
  31717. front: {
  31718. height: math.unit(6, "feet"),
  31719. weight: math.unit(150, "lb"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/en/front.svg",
  31723. extra: 1697 / 1563,
  31724. bottom: 103 / 1800
  31725. }
  31726. },
  31727. back: {
  31728. height: math.unit(6, "feet"),
  31729. weight: math.unit(150, "lb"),
  31730. name: "Back",
  31731. image: {
  31732. source: "./media/characters/en/back.svg",
  31733. extra: 1700 / 1570,
  31734. bottom: 51 / 1751
  31735. }
  31736. },
  31737. frontDressed: {
  31738. height: math.unit(6, "feet"),
  31739. weight: math.unit(150, "lb"),
  31740. name: "Front (Dressed)",
  31741. image: {
  31742. source: "./media/characters/en/front-dressed.svg",
  31743. extra: 1697 / 1563,
  31744. bottom: 103 / 1800
  31745. }
  31746. },
  31747. backDressed: {
  31748. height: math.unit(6, "feet"),
  31749. weight: math.unit(150, "lb"),
  31750. name: "Back (Dressed)",
  31751. image: {
  31752. source: "./media/characters/en/back-dressed.svg",
  31753. extra: 1700 / 1570,
  31754. bottom: 51 / 1751
  31755. }
  31756. },
  31757. },
  31758. [
  31759. {
  31760. name: "Macro",
  31761. height: math.unit(210, "feet"),
  31762. default: true
  31763. },
  31764. ]
  31765. ))
  31766. characterMakers.push(() => makeCharacter(
  31767. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31768. {
  31769. front: {
  31770. height: math.unit(6, "feet"),
  31771. weight: math.unit(150, "lb"),
  31772. name: "Front",
  31773. image: {
  31774. source: "./media/characters/haze-orris/front.svg",
  31775. extra: 3975 / 3525,
  31776. bottom: 137 / 4112
  31777. }
  31778. },
  31779. },
  31780. [
  31781. {
  31782. name: "Micro",
  31783. height: math.unit(150, "mm"),
  31784. default: true
  31785. },
  31786. ]
  31787. ))
  31788. characterMakers.push(() => makeCharacter(
  31789. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31790. {
  31791. front: {
  31792. height: math.unit(6, "feet"),
  31793. weight: math.unit(150, "lb"),
  31794. name: "Front",
  31795. image: {
  31796. source: "./media/characters/casselene-yaro/front.svg",
  31797. extra: 4721 / 4541,
  31798. bottom: 82 / 4803
  31799. }
  31800. },
  31801. back: {
  31802. height: math.unit(6, "feet"),
  31803. weight: math.unit(150, "lb"),
  31804. name: "Back",
  31805. image: {
  31806. source: "./media/characters/casselene-yaro/back.svg",
  31807. extra: 4569 / 4377,
  31808. bottom: 69 / 4638
  31809. }
  31810. },
  31811. dressed: {
  31812. height: math.unit(6, "feet"),
  31813. weight: math.unit(150, "lb"),
  31814. name: "Dressed",
  31815. image: {
  31816. source: "./media/characters/casselene-yaro/dressed.svg",
  31817. extra: 4721 / 4541,
  31818. bottom: 82 / 4803
  31819. }
  31820. },
  31821. maw: {
  31822. height: math.unit(1, "feet"),
  31823. name: "Maw",
  31824. image: {
  31825. source: "./media/characters/casselene-yaro/maw.svg"
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Macro",
  31832. height: math.unit(190, "feet"),
  31833. default: true
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31839. {
  31840. front: {
  31841. height: math.unit(10, "feet"),
  31842. weight: math.unit(15015, "lb"),
  31843. name: "Front",
  31844. image: {
  31845. source: "./media/characters/platine/front.svg",
  31846. extra: 1741/1650,
  31847. bottom: 84/1825
  31848. }
  31849. },
  31850. side: {
  31851. height: math.unit(10, "feet"),
  31852. weight: math.unit(15015, "lb"),
  31853. name: "Side",
  31854. image: {
  31855. source: "./media/characters/platine/side.svg",
  31856. extra: 1790/1705,
  31857. bottom: 29/1819
  31858. }
  31859. },
  31860. },
  31861. [
  31862. {
  31863. name: "Normal",
  31864. height: math.unit(10, "feet"),
  31865. default: true
  31866. },
  31867. {
  31868. name: "Macro",
  31869. height: math.unit(100, "feet")
  31870. },
  31871. {
  31872. name: "Megamacro",
  31873. height: math.unit(1000, "feet")
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31879. {
  31880. front: {
  31881. height: math.unit(15 + 5 / 12, "feet"),
  31882. weight: math.unit(4600, "lb"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/neapolitan-ananassa/front.svg",
  31886. extra: 2903 / 2736,
  31887. bottom: 0 / 2903
  31888. }
  31889. },
  31890. side: {
  31891. height: math.unit(15 + 5 / 12, "feet"),
  31892. weight: math.unit(4600, "lb"),
  31893. name: "Side",
  31894. image: {
  31895. source: "./media/characters/neapolitan-ananassa/side.svg",
  31896. extra: 2925 / 2719,
  31897. bottom: 0 / 2925
  31898. }
  31899. },
  31900. back: {
  31901. height: math.unit(15 + 5 / 12, "feet"),
  31902. weight: math.unit(4600, "lb"),
  31903. name: "Back",
  31904. image: {
  31905. source: "./media/characters/neapolitan-ananassa/back.svg",
  31906. extra: 2903 / 2736,
  31907. bottom: 0 / 2903
  31908. }
  31909. },
  31910. },
  31911. [
  31912. {
  31913. name: "Normal",
  31914. height: math.unit(15 + 5 / 12, "feet"),
  31915. default: true
  31916. },
  31917. {
  31918. name: "Post-Millenium",
  31919. height: math.unit(35 + 5 / 12, "feet")
  31920. },
  31921. {
  31922. name: "Post-Era",
  31923. height: math.unit(450 + 5 / 12, "feet")
  31924. },
  31925. ]
  31926. ))
  31927. characterMakers.push(() => makeCharacter(
  31928. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31929. {
  31930. front: {
  31931. height: math.unit(300, "meters"),
  31932. weight: math.unit(125000, "tonnes"),
  31933. name: "Front",
  31934. image: {
  31935. source: "./media/characters/pazuzu/front.svg",
  31936. extra: 877 / 794,
  31937. bottom: 47 / 924
  31938. }
  31939. },
  31940. },
  31941. [
  31942. {
  31943. name: "Macro",
  31944. height: math.unit(300, "meters"),
  31945. default: true
  31946. },
  31947. ]
  31948. ))
  31949. characterMakers.push(() => makeCharacter(
  31950. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31951. {
  31952. side: {
  31953. height: math.unit(10 + 7 / 12, "feet"),
  31954. weight: math.unit(2.5, "tons"),
  31955. name: "Side",
  31956. image: {
  31957. source: "./media/characters/aasha/side.svg",
  31958. extra: 1345 / 1245,
  31959. bottom: 111 / 1456
  31960. }
  31961. },
  31962. back: {
  31963. height: math.unit(10 + 7 / 12, "feet"),
  31964. weight: math.unit(2.5, "tons"),
  31965. name: "Back",
  31966. image: {
  31967. source: "./media/characters/aasha/back.svg",
  31968. extra: 1133 / 1057,
  31969. bottom: 257 / 1390
  31970. }
  31971. },
  31972. },
  31973. [
  31974. {
  31975. name: "Normal",
  31976. height: math.unit(10 + 7 / 12, "feet"),
  31977. default: true
  31978. },
  31979. ]
  31980. ))
  31981. characterMakers.push(() => makeCharacter(
  31982. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31983. {
  31984. front: {
  31985. height: math.unit(6 + 3 / 12, "feet"),
  31986. name: "Front",
  31987. image: {
  31988. source: "./media/characters/nevan/front.svg",
  31989. extra: 704 / 704,
  31990. bottom: 28 / 732
  31991. }
  31992. },
  31993. back: {
  31994. height: math.unit(6 + 3 / 12, "feet"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/nevan/back.svg",
  31998. extra: 714 / 714,
  31999. bottom: 21 / 735
  32000. }
  32001. },
  32002. frontFlaccid: {
  32003. height: math.unit(6 + 3 / 12, "feet"),
  32004. name: "Front (Flaccid)",
  32005. image: {
  32006. source: "./media/characters/nevan/front-flaccid.svg",
  32007. extra: 704 / 704,
  32008. bottom: 28 / 732
  32009. }
  32010. },
  32011. frontErect: {
  32012. height: math.unit(6 + 3 / 12, "feet"),
  32013. name: "Front (Erect)",
  32014. image: {
  32015. source: "./media/characters/nevan/front-erect.svg",
  32016. extra: 704 / 704,
  32017. bottom: 28 / 732
  32018. }
  32019. },
  32020. backFlaccid: {
  32021. height: math.unit(6 + 3 / 12, "feet"),
  32022. name: "Back (Flaccid)",
  32023. image: {
  32024. source: "./media/characters/nevan/back-flaccid.svg",
  32025. extra: 714 / 714,
  32026. bottom: 21 / 735
  32027. }
  32028. },
  32029. },
  32030. [
  32031. {
  32032. name: "Normal",
  32033. height: math.unit(6 + 3 / 12, "feet"),
  32034. default: true
  32035. },
  32036. ]
  32037. ))
  32038. characterMakers.push(() => makeCharacter(
  32039. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32040. {
  32041. front: {
  32042. height: math.unit(4, "feet"),
  32043. name: "Front",
  32044. image: {
  32045. source: "./media/characters/arhan/front.svg",
  32046. extra: 3368 / 3133,
  32047. bottom: 0 / 3368
  32048. }
  32049. },
  32050. side: {
  32051. height: math.unit(4, "feet"),
  32052. name: "Side",
  32053. image: {
  32054. source: "./media/characters/arhan/side.svg",
  32055. extra: 3347 / 3105,
  32056. bottom: 0 / 3347
  32057. }
  32058. },
  32059. tongue: {
  32060. height: math.unit(1.42, "feet"),
  32061. name: "Tongue",
  32062. image: {
  32063. source: "./media/characters/arhan/tongue.svg"
  32064. }
  32065. },
  32066. head: {
  32067. height: math.unit(0.85, "feet"),
  32068. name: "Head",
  32069. image: {
  32070. source: "./media/characters/arhan/head.svg"
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(4, "feet"),
  32078. default: true
  32079. },
  32080. ]
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32084. {
  32085. front: {
  32086. height: math.unit(5 + 7.5 / 12, "feet"),
  32087. weight: math.unit(120, "lb"),
  32088. name: "Front",
  32089. image: {
  32090. source: "./media/characters/digi-duncan/front.svg",
  32091. extra: 330 / 326,
  32092. bottom: 16 / 346
  32093. }
  32094. },
  32095. side: {
  32096. height: math.unit(5 + 7.5 / 12, "feet"),
  32097. weight: math.unit(120, "lb"),
  32098. name: "Side",
  32099. image: {
  32100. source: "./media/characters/digi-duncan/side.svg",
  32101. extra: 341 / 337,
  32102. bottom: 1 / 342
  32103. }
  32104. },
  32105. back: {
  32106. height: math.unit(5 + 7.5 / 12, "feet"),
  32107. weight: math.unit(120, "lb"),
  32108. name: "Back",
  32109. image: {
  32110. source: "./media/characters/digi-duncan/back.svg",
  32111. extra: 330 / 326,
  32112. bottom: 12 / 342
  32113. }
  32114. },
  32115. },
  32116. [
  32117. {
  32118. name: "Speck",
  32119. height: math.unit(0.25, "mm")
  32120. },
  32121. {
  32122. name: "Micro",
  32123. height: math.unit(5, "mm")
  32124. },
  32125. {
  32126. name: "Tiny",
  32127. height: math.unit(0.5, "inches"),
  32128. default: true
  32129. },
  32130. {
  32131. name: "Human",
  32132. height: math.unit(5 + 7.5 / 12, "feet")
  32133. },
  32134. {
  32135. name: "Minigiant",
  32136. height: math.unit(8 + 5.25, "feet")
  32137. },
  32138. {
  32139. name: "Giant",
  32140. height: math.unit(2000, "feet")
  32141. },
  32142. {
  32143. name: "Mega",
  32144. height: math.unit(371.1, "miles")
  32145. },
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32150. {
  32151. front: {
  32152. height: math.unit(2, "meters"),
  32153. weight: math.unit(350, "kg"),
  32154. name: "Front",
  32155. image: {
  32156. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32157. extra: 898 / 838,
  32158. bottom: 9 / 907
  32159. }
  32160. },
  32161. },
  32162. [
  32163. {
  32164. name: "Micro",
  32165. height: math.unit(8, "meters")
  32166. },
  32167. {
  32168. name: "Normal",
  32169. height: math.unit(50, "meters"),
  32170. default: true
  32171. },
  32172. {
  32173. name: "Macro",
  32174. height: math.unit(500, "meters")
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32180. {
  32181. front: {
  32182. height: math.unit(6 + 6 / 12, "feet"),
  32183. name: "Front",
  32184. image: {
  32185. source: "./media/characters/khardesh/front.svg",
  32186. extra: 1788/1596,
  32187. bottom: 66/1854
  32188. }
  32189. },
  32190. back: {
  32191. height: math.unit(6 + 6 / 12, "feet"),
  32192. name: "Back",
  32193. image: {
  32194. source: "./media/characters/khardesh/back.svg",
  32195. extra: 1781/1584,
  32196. bottom: 68/1849
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Normal",
  32203. height: math.unit(6 + 6 / 12, "feet"),
  32204. default: true
  32205. },
  32206. {
  32207. name: "Normal+",
  32208. height: math.unit(4, "meters")
  32209. },
  32210. {
  32211. name: "Macro",
  32212. height: math.unit(50, "meters")
  32213. },
  32214. {
  32215. name: "Macro+",
  32216. height: math.unit(100, "meters")
  32217. },
  32218. {
  32219. name: "Megamacro",
  32220. height: math.unit(20, "km")
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32226. {
  32227. front: {
  32228. height: math.unit(6, "feet"),
  32229. weight: math.unit(150, "lb"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/kosho/front.svg",
  32233. extra: 1847 / 1847,
  32234. bottom: 86 / 1933
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Second-stage micro",
  32241. height: math.unit(0.5, "inches")
  32242. },
  32243. {
  32244. name: "First-stage micro",
  32245. height: math.unit(6, "inches")
  32246. },
  32247. {
  32248. name: "Normal",
  32249. height: math.unit(6, "feet"),
  32250. default: true
  32251. },
  32252. {
  32253. name: "First-stage macro",
  32254. height: math.unit(72, "feet")
  32255. },
  32256. {
  32257. name: "Second-stage macro",
  32258. height: math.unit(864, "feet")
  32259. },
  32260. ]
  32261. ))
  32262. characterMakers.push(() => makeCharacter(
  32263. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32264. {
  32265. normal: {
  32266. height: math.unit(4 + 6 / 12, "feet"),
  32267. name: "Normal",
  32268. image: {
  32269. source: "./media/characters/hydra/normal.svg",
  32270. extra: 2833 / 2634,
  32271. bottom: 68 / 2901
  32272. }
  32273. },
  32274. smol: {
  32275. height: math.unit(0.705, "inches"),
  32276. name: "Smol",
  32277. image: {
  32278. source: "./media/characters/hydra/smol.svg",
  32279. extra: 2715 / 2540,
  32280. bottom: 0 / 2715
  32281. }
  32282. },
  32283. },
  32284. [
  32285. {
  32286. name: "Normal",
  32287. height: math.unit(4 + 6 / 12, "feet"),
  32288. default: true
  32289. }
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32294. {
  32295. front: {
  32296. height: math.unit(0.6, "cm"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/daz/front.svg",
  32300. extra: 1682 / 1164,
  32301. bottom: 42 / 1724
  32302. }
  32303. },
  32304. },
  32305. [
  32306. {
  32307. name: "Normal",
  32308. height: math.unit(0.6, "cm"),
  32309. default: true
  32310. },
  32311. ]
  32312. ))
  32313. characterMakers.push(() => makeCharacter(
  32314. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32315. {
  32316. front: {
  32317. height: math.unit(6, "feet"),
  32318. weight: math.unit(235, "lb"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/theo-pangolin/front.svg",
  32322. extra: 1996 / 1969,
  32323. bottom: 115 / 2111
  32324. }
  32325. },
  32326. back: {
  32327. height: math.unit(6, "feet"),
  32328. weight: math.unit(235, "lb"),
  32329. name: "Back",
  32330. image: {
  32331. source: "./media/characters/theo-pangolin/back.svg",
  32332. extra: 1979 / 1979,
  32333. bottom: 40 / 2019
  32334. }
  32335. },
  32336. feral: {
  32337. height: math.unit(2, "feet"),
  32338. weight: math.unit(30, "lb"),
  32339. name: "Feral",
  32340. image: {
  32341. source: "./media/characters/theo-pangolin/feral.svg",
  32342. extra: 803 / 791,
  32343. bottom: 181 / 984
  32344. }
  32345. },
  32346. footFive: {
  32347. height: math.unit(1.43, "feet"),
  32348. name: "Foot (Five Toes)",
  32349. image: {
  32350. source: "./media/characters/theo-pangolin/foot-five.svg"
  32351. }
  32352. },
  32353. footFour: {
  32354. height: math.unit(1.43, "feet"),
  32355. name: "Foot (Four Toes)",
  32356. image: {
  32357. source: "./media/characters/theo-pangolin/foot-four.svg"
  32358. }
  32359. },
  32360. handFour: {
  32361. height: math.unit(0.81, "feet"),
  32362. name: "Hand (Four Fingers)",
  32363. image: {
  32364. source: "./media/characters/theo-pangolin/hand-four.svg"
  32365. }
  32366. },
  32367. handThree: {
  32368. height: math.unit(0.81, "feet"),
  32369. name: "Hand (Three Fingers)",
  32370. image: {
  32371. source: "./media/characters/theo-pangolin/hand-three.svg"
  32372. }
  32373. },
  32374. headFront: {
  32375. height: math.unit(1.37, "feet"),
  32376. name: "Head (Front)",
  32377. image: {
  32378. source: "./media/characters/theo-pangolin/head-front.svg"
  32379. }
  32380. },
  32381. headSide: {
  32382. height: math.unit(1.43, "feet"),
  32383. name: "Head (Side)",
  32384. image: {
  32385. source: "./media/characters/theo-pangolin/head-side.svg"
  32386. }
  32387. },
  32388. tongue: {
  32389. height: math.unit(2.29, "feet"),
  32390. name: "Tongue",
  32391. image: {
  32392. source: "./media/characters/theo-pangolin/tongue.svg"
  32393. }
  32394. },
  32395. },
  32396. [
  32397. {
  32398. name: "Normal",
  32399. height: math.unit(6, "feet")
  32400. },
  32401. {
  32402. name: "Macro",
  32403. height: math.unit(400, "feet"),
  32404. default: true
  32405. },
  32406. ]
  32407. ))
  32408. characterMakers.push(() => makeCharacter(
  32409. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32410. {
  32411. front: {
  32412. height: math.unit(6, "inches"),
  32413. weight: math.unit(0.036, "kg"),
  32414. name: "Front",
  32415. image: {
  32416. source: "./media/characters/renée/front.svg",
  32417. extra: 900 / 886,
  32418. bottom: 8 / 908
  32419. }
  32420. },
  32421. },
  32422. [
  32423. {
  32424. name: "Nano",
  32425. height: math.unit(1, "nm")
  32426. },
  32427. {
  32428. name: "Micro",
  32429. height: math.unit(1, "mm")
  32430. },
  32431. {
  32432. name: "Normal",
  32433. height: math.unit(6, "inches")
  32434. },
  32435. {
  32436. name: "Macro",
  32437. height: math.unit(2000, "feet"),
  32438. default: true
  32439. },
  32440. {
  32441. name: "Megamacro",
  32442. height: math.unit(2, "km")
  32443. },
  32444. {
  32445. name: "Gigamacro",
  32446. height: math.unit(2000, "km")
  32447. },
  32448. {
  32449. name: "Teramacro",
  32450. height: math.unit(250000, "km")
  32451. },
  32452. ]
  32453. ))
  32454. characterMakers.push(() => makeCharacter(
  32455. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32456. {
  32457. front: {
  32458. height: math.unit(4, "meters"),
  32459. weight: math.unit(150, "kg"),
  32460. name: "Front",
  32461. image: {
  32462. source: "./media/characters/caledvwlch/front.svg",
  32463. extra: 1757/1537,
  32464. bottom: 31/1788
  32465. }
  32466. },
  32467. side: {
  32468. height: math.unit(4, "meters"),
  32469. weight: math.unit(150, "kg"),
  32470. name: "Side",
  32471. image: {
  32472. source: "./media/characters/caledvwlch/side.svg",
  32473. extra: 1605 / 1536,
  32474. bottom: 31 / 1636
  32475. }
  32476. },
  32477. back: {
  32478. height: math.unit(4, "meters"),
  32479. weight: math.unit(150, "kg"),
  32480. name: "Back",
  32481. image: {
  32482. source: "./media/characters/caledvwlch/back.svg",
  32483. extra: 1635 / 1565,
  32484. bottom: 27 / 1662
  32485. }
  32486. },
  32487. },
  32488. [
  32489. {
  32490. name: "\"Incognito\"",
  32491. height: math.unit(4, "meters")
  32492. },
  32493. {
  32494. name: "Small rampage",
  32495. height: math.unit(600, "meters")
  32496. },
  32497. {
  32498. name: "Mega",
  32499. height: math.unit(30, "km")
  32500. },
  32501. {
  32502. name: "Home-size",
  32503. height: math.unit(50, "km"),
  32504. default: true
  32505. },
  32506. {
  32507. name: "Giga",
  32508. height: math.unit(300, "km")
  32509. },
  32510. {
  32511. name: "Lounging",
  32512. height: math.unit(11000, "km")
  32513. },
  32514. {
  32515. name: "Planet snacking",
  32516. height: math.unit(2000000, "km")
  32517. },
  32518. ]
  32519. ))
  32520. characterMakers.push(() => makeCharacter(
  32521. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32522. {
  32523. front: {
  32524. height: math.unit(6, "feet"),
  32525. weight: math.unit(215, "lb"),
  32526. name: "Front",
  32527. image: {
  32528. source: "./media/characters/sapphire-svell/front.svg",
  32529. extra: 495 / 455,
  32530. bottom: 20 / 515
  32531. }
  32532. },
  32533. back: {
  32534. height: math.unit(6, "feet"),
  32535. weight: math.unit(216, "lb"),
  32536. name: "Back",
  32537. image: {
  32538. source: "./media/characters/sapphire-svell/back.svg",
  32539. extra: 497 / 477,
  32540. bottom: 7 / 504
  32541. }
  32542. },
  32543. maw: {
  32544. height: math.unit(1.57, "feet"),
  32545. name: "Maw",
  32546. image: {
  32547. source: "./media/characters/sapphire-svell/maw.svg"
  32548. }
  32549. },
  32550. foot: {
  32551. height: math.unit(1.07, "feet"),
  32552. name: "Foot",
  32553. image: {
  32554. source: "./media/characters/sapphire-svell/foot.svg"
  32555. }
  32556. },
  32557. toering: {
  32558. height: math.unit(1.7, "inch"),
  32559. name: "Toering",
  32560. image: {
  32561. source: "./media/characters/sapphire-svell/toering.svg"
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Normal",
  32568. height: math.unit(300, "feet"),
  32569. default: true
  32570. },
  32571. {
  32572. name: "Augmented",
  32573. height: math.unit(1250, "feet")
  32574. },
  32575. {
  32576. name: "Unleashed",
  32577. height: math.unit(3000, "feet")
  32578. },
  32579. ]
  32580. ))
  32581. characterMakers.push(() => makeCharacter(
  32582. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32583. {
  32584. side: {
  32585. height: math.unit(2 + 3 / 12, "feet"),
  32586. weight: math.unit(110, "lb"),
  32587. name: "Side",
  32588. image: {
  32589. source: "./media/characters/glitch-flux/side.svg",
  32590. extra: 997 / 805,
  32591. bottom: 20 / 1017
  32592. }
  32593. },
  32594. },
  32595. [
  32596. {
  32597. name: "Normal",
  32598. height: math.unit(2 + 3 / 12, "feet"),
  32599. default: true
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32605. {
  32606. front: {
  32607. height: math.unit(4, "meters"),
  32608. name: "Front",
  32609. image: {
  32610. source: "./media/characters/mid/front.svg",
  32611. extra: 507 / 476,
  32612. bottom: 17 / 524
  32613. }
  32614. },
  32615. back: {
  32616. height: math.unit(4, "meters"),
  32617. name: "Back",
  32618. image: {
  32619. source: "./media/characters/mid/back.svg",
  32620. extra: 519 / 487,
  32621. bottom: 7 / 526
  32622. }
  32623. },
  32624. stuck: {
  32625. height: math.unit(2.2, "meters"),
  32626. name: "Stuck",
  32627. image: {
  32628. source: "./media/characters/mid/stuck.svg",
  32629. extra: 1951 / 1869,
  32630. bottom: 88 / 2039
  32631. }
  32632. }
  32633. },
  32634. [
  32635. {
  32636. name: "Normal",
  32637. height: math.unit(4, "meters"),
  32638. default: true
  32639. },
  32640. {
  32641. name: "Big",
  32642. height: math.unit(10, "meters")
  32643. },
  32644. {
  32645. name: "Macro",
  32646. height: math.unit(800, "meters")
  32647. },
  32648. {
  32649. name: "Megamacro",
  32650. height: math.unit(100, "km")
  32651. },
  32652. {
  32653. name: "Overgrown",
  32654. height: math.unit(1, "parsec")
  32655. },
  32656. ]
  32657. ))
  32658. characterMakers.push(() => makeCharacter(
  32659. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32660. {
  32661. front: {
  32662. height: math.unit(2.5, "meters"),
  32663. weight: math.unit(225, "kg"),
  32664. name: "Front",
  32665. image: {
  32666. source: "./media/characters/iris/front.svg",
  32667. extra: 3348 / 3251,
  32668. bottom: 205 / 3553
  32669. }
  32670. },
  32671. maw: {
  32672. height: math.unit(0.56, "meter"),
  32673. name: "Maw",
  32674. image: {
  32675. source: "./media/characters/iris/maw.svg"
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Mewter cat",
  32682. height: math.unit(1.2, "meters")
  32683. },
  32684. {
  32685. name: "Normal",
  32686. height: math.unit(2.5, "meters"),
  32687. default: true
  32688. },
  32689. {
  32690. name: "Minimacro",
  32691. height: math.unit(18, "feet")
  32692. },
  32693. {
  32694. name: "Macro",
  32695. height: math.unit(140, "feet")
  32696. },
  32697. {
  32698. name: "Macro+",
  32699. height: math.unit(180, "meters")
  32700. },
  32701. {
  32702. name: "Megamacro",
  32703. height: math.unit(2746, "meters")
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32709. {
  32710. front: {
  32711. height: math.unit(6, "feet"),
  32712. weight: math.unit(135, "lb"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/axel/front.svg",
  32716. extra: 908 / 908,
  32717. bottom: 58 / 966
  32718. }
  32719. },
  32720. side: {
  32721. height: math.unit(6, "feet"),
  32722. weight: math.unit(135, "lb"),
  32723. name: "Side",
  32724. image: {
  32725. source: "./media/characters/axel/side.svg",
  32726. extra: 958 / 958,
  32727. bottom: 11 / 969
  32728. }
  32729. },
  32730. back: {
  32731. height: math.unit(6, "feet"),
  32732. weight: math.unit(135, "lb"),
  32733. name: "Back",
  32734. image: {
  32735. source: "./media/characters/axel/back.svg",
  32736. extra: 887 / 887,
  32737. bottom: 34 / 921
  32738. }
  32739. },
  32740. head: {
  32741. height: math.unit(1.07, "feet"),
  32742. name: "Head",
  32743. image: {
  32744. source: "./media/characters/axel/head.svg"
  32745. }
  32746. },
  32747. beak: {
  32748. height: math.unit(1.4, "feet"),
  32749. name: "Beak",
  32750. image: {
  32751. source: "./media/characters/axel/beak.svg"
  32752. }
  32753. },
  32754. beakSide: {
  32755. height: math.unit(1.4, "feet"),
  32756. name: "Beak Side",
  32757. image: {
  32758. source: "./media/characters/axel/beak-side.svg"
  32759. }
  32760. },
  32761. sheath: {
  32762. height: math.unit(0.5, "feet"),
  32763. name: "Sheath",
  32764. image: {
  32765. source: "./media/characters/axel/sheath.svg"
  32766. }
  32767. },
  32768. dick: {
  32769. height: math.unit(0.98, "feet"),
  32770. name: "Dick",
  32771. image: {
  32772. source: "./media/characters/axel/dick.svg"
  32773. }
  32774. },
  32775. },
  32776. [
  32777. {
  32778. name: "Macro",
  32779. height: math.unit(68, "meters"),
  32780. default: true
  32781. },
  32782. ]
  32783. ))
  32784. characterMakers.push(() => makeCharacter(
  32785. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32786. {
  32787. front: {
  32788. height: math.unit(3.5, "meters"),
  32789. weight: math.unit(1200, "kg"),
  32790. name: "Front",
  32791. image: {
  32792. source: "./media/characters/joanna/front.svg",
  32793. extra: 1596 / 1488,
  32794. bottom: 29 / 1625
  32795. }
  32796. },
  32797. back: {
  32798. height: math.unit(3.5, "meters"),
  32799. weight: math.unit(1200, "kg"),
  32800. name: "Back",
  32801. image: {
  32802. source: "./media/characters/joanna/back.svg",
  32803. extra: 1594 / 1495,
  32804. bottom: 26 / 1620
  32805. }
  32806. },
  32807. frontShorts: {
  32808. height: math.unit(3.5, "meters"),
  32809. weight: math.unit(1200, "kg"),
  32810. name: "Front (Shorts)",
  32811. image: {
  32812. source: "./media/characters/joanna/front-shorts.svg",
  32813. extra: 1596 / 1488,
  32814. bottom: 29 / 1625
  32815. }
  32816. },
  32817. frontBiker: {
  32818. height: math.unit(3.5, "meters"),
  32819. weight: math.unit(1200, "kg"),
  32820. name: "Front (Biker)",
  32821. image: {
  32822. source: "./media/characters/joanna/front-biker.svg",
  32823. extra: 1596 / 1488,
  32824. bottom: 29 / 1625
  32825. }
  32826. },
  32827. backBiker: {
  32828. height: math.unit(3.5, "meters"),
  32829. weight: math.unit(1200, "kg"),
  32830. name: "Back (Biker)",
  32831. image: {
  32832. source: "./media/characters/joanna/back-biker.svg",
  32833. extra: 1594 / 1495,
  32834. bottom: 88 / 1682
  32835. }
  32836. },
  32837. bikeLeft: {
  32838. height: math.unit(2.4, "meters"),
  32839. weight: math.unit(1600, "kg"),
  32840. name: "Bike (Left)",
  32841. image: {
  32842. source: "./media/characters/joanna/bike-left.svg",
  32843. extra: 720 / 720,
  32844. bottom: 8 / 728
  32845. }
  32846. },
  32847. bikeRight: {
  32848. height: math.unit(2.4, "meters"),
  32849. weight: math.unit(1600, "kg"),
  32850. name: "Bike (Right)",
  32851. image: {
  32852. source: "./media/characters/joanna/bike-right.svg",
  32853. extra: 720 / 720,
  32854. bottom: 8 / 728
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Incognito",
  32861. height: math.unit(3.5, "meters")
  32862. },
  32863. {
  32864. name: "Casual Big",
  32865. height: math.unit(200, "meters")
  32866. },
  32867. {
  32868. name: "Macro",
  32869. height: math.unit(600, "meters")
  32870. },
  32871. {
  32872. name: "Original",
  32873. height: math.unit(20, "km"),
  32874. default: true
  32875. },
  32876. {
  32877. name: "Giga",
  32878. height: math.unit(400, "km")
  32879. },
  32880. {
  32881. name: "Lounging",
  32882. height: math.unit(1500, "km")
  32883. },
  32884. {
  32885. name: "Planetary",
  32886. height: math.unit(200000, "km")
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32892. {
  32893. front: {
  32894. height: math.unit(6, "feet"),
  32895. weight: math.unit(150, "lb"),
  32896. name: "Front",
  32897. image: {
  32898. source: "./media/characters/hugo-sigil/front.svg",
  32899. extra: 522 / 500,
  32900. bottom: 2 / 524
  32901. }
  32902. },
  32903. back: {
  32904. height: math.unit(6, "feet"),
  32905. weight: math.unit(150, "lb"),
  32906. name: "Back",
  32907. image: {
  32908. source: "./media/characters/hugo-sigil/back.svg",
  32909. extra: 519 / 495,
  32910. bottom: 5 / 524
  32911. }
  32912. },
  32913. maw: {
  32914. height: math.unit(1.4, "feet"),
  32915. weight: math.unit(150, "lb"),
  32916. name: "Maw",
  32917. image: {
  32918. source: "./media/characters/hugo-sigil/maw.svg"
  32919. }
  32920. },
  32921. feet: {
  32922. height: math.unit(1.56, "feet"),
  32923. weight: math.unit(150, "lb"),
  32924. name: "Feet",
  32925. image: {
  32926. source: "./media/characters/hugo-sigil/feet.svg",
  32927. extra: 177 / 177,
  32928. bottom: 12 / 189
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Normal",
  32935. height: math.unit(6, "feet")
  32936. },
  32937. {
  32938. name: "Macro",
  32939. height: math.unit(200, "feet"),
  32940. default: true
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32946. {
  32947. front: {
  32948. height: math.unit(6, "feet"),
  32949. weight: math.unit(150, "lb"),
  32950. name: "Front",
  32951. image: {
  32952. source: "./media/characters/peri/front.svg",
  32953. extra: 2354 / 2233,
  32954. bottom: 49 / 2403
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Really Small",
  32961. height: math.unit(1, "nm")
  32962. },
  32963. {
  32964. name: "Micro",
  32965. height: math.unit(4, "inches")
  32966. },
  32967. {
  32968. name: "Normal",
  32969. height: math.unit(7, "inches"),
  32970. default: true
  32971. },
  32972. {
  32973. name: "Macro",
  32974. height: math.unit(400, "feet")
  32975. },
  32976. {
  32977. name: "Megamacro",
  32978. height: math.unit(100, "miles")
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32984. {
  32985. frontSlim: {
  32986. height: math.unit(7, "feet"),
  32987. name: "Front (Slim)",
  32988. image: {
  32989. source: "./media/characters/issilora/front-slim.svg",
  32990. extra: 529 / 449,
  32991. bottom: 53 / 582
  32992. }
  32993. },
  32994. sideSlim: {
  32995. height: math.unit(7, "feet"),
  32996. name: "Side (Slim)",
  32997. image: {
  32998. source: "./media/characters/issilora/side-slim.svg",
  32999. extra: 570 / 480,
  33000. bottom: 30 / 600
  33001. }
  33002. },
  33003. backSlim: {
  33004. height: math.unit(7, "feet"),
  33005. name: "Back (Slim)",
  33006. image: {
  33007. source: "./media/characters/issilora/back-slim.svg",
  33008. extra: 537 / 455,
  33009. bottom: 46 / 583
  33010. }
  33011. },
  33012. frontBuff: {
  33013. height: math.unit(7, "feet"),
  33014. name: "Front (Buff)",
  33015. image: {
  33016. source: "./media/characters/issilora/front-buff.svg",
  33017. extra: 2310 / 2035,
  33018. bottom: 335 / 2645
  33019. }
  33020. },
  33021. head: {
  33022. height: math.unit(1.94, "feet"),
  33023. name: "Head",
  33024. image: {
  33025. source: "./media/characters/issilora/head.svg"
  33026. }
  33027. },
  33028. },
  33029. [
  33030. {
  33031. name: "Minimum",
  33032. height: math.unit(7, "feet")
  33033. },
  33034. {
  33035. name: "Comfortable",
  33036. height: math.unit(17, "feet")
  33037. },
  33038. {
  33039. name: "Fun Size",
  33040. height: math.unit(47, "feet")
  33041. },
  33042. {
  33043. name: "Natural Macro",
  33044. height: math.unit(137, "feet"),
  33045. default: true
  33046. },
  33047. {
  33048. name: "Maximum Kaiju",
  33049. height: math.unit(397, "feet")
  33050. },
  33051. ]
  33052. ))
  33053. characterMakers.push(() => makeCharacter(
  33054. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33055. {
  33056. front: {
  33057. height: math.unit(50 + 9/12, "feet"),
  33058. weight: math.unit(32.8, "tons"),
  33059. name: "Front",
  33060. image: {
  33061. source: "./media/characters/irb'iiritaahn/front.svg",
  33062. extra: 1878/1826,
  33063. bottom: 326/2204
  33064. }
  33065. },
  33066. back: {
  33067. height: math.unit(50 + 9/12, "feet"),
  33068. weight: math.unit(32.8, "tons"),
  33069. name: "Back",
  33070. image: {
  33071. source: "./media/characters/irb'iiritaahn/back.svg",
  33072. extra: 2052/2018,
  33073. bottom: 152/2204
  33074. }
  33075. },
  33076. head: {
  33077. height: math.unit(12.86, "feet"),
  33078. name: "Head",
  33079. image: {
  33080. source: "./media/characters/irb'iiritaahn/head.svg"
  33081. }
  33082. },
  33083. maw: {
  33084. height: math.unit(9.66, "feet"),
  33085. name: "Maw",
  33086. image: {
  33087. source: "./media/characters/irb'iiritaahn/maw.svg"
  33088. }
  33089. },
  33090. frontDick: {
  33091. height: math.unit(8.78461, "feet"),
  33092. name: "Front Dick",
  33093. image: {
  33094. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33095. }
  33096. },
  33097. rearDick: {
  33098. height: math.unit(8.78461, "feet"),
  33099. name: "Rear Dick",
  33100. image: {
  33101. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33102. }
  33103. },
  33104. rearDickUnfolded: {
  33105. height: math.unit(8.78, "feet"),
  33106. name: "Rear Dick (Unfolded)",
  33107. image: {
  33108. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33109. }
  33110. },
  33111. wings: {
  33112. height: math.unit(43, "feet"),
  33113. name: "Wings",
  33114. image: {
  33115. source: "./media/characters/irb'iiritaahn/wings.svg"
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Macro",
  33122. height: math.unit(50 + 9/12, "feet"),
  33123. default: true
  33124. },
  33125. ]
  33126. ))
  33127. characterMakers.push(() => makeCharacter(
  33128. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33129. {
  33130. front: {
  33131. height: math.unit(205, "cm"),
  33132. weight: math.unit(102, "kg"),
  33133. name: "Front",
  33134. image: {
  33135. source: "./media/characters/irbisgreif/front.svg",
  33136. extra: 785/706,
  33137. bottom: 13/798
  33138. }
  33139. },
  33140. back: {
  33141. height: math.unit(205, "cm"),
  33142. weight: math.unit(102, "kg"),
  33143. name: "Back",
  33144. image: {
  33145. source: "./media/characters/irbisgreif/back.svg",
  33146. extra: 713/701,
  33147. bottom: 26/739
  33148. }
  33149. },
  33150. frontDressed: {
  33151. height: math.unit(216, "cm"),
  33152. weight: math.unit(102, "kg"),
  33153. name: "Front-dressed",
  33154. image: {
  33155. source: "./media/characters/irbisgreif/front-dressed.svg",
  33156. extra: 902/776,
  33157. bottom: 14/916
  33158. }
  33159. },
  33160. sideDressed: {
  33161. height: math.unit(195, "cm"),
  33162. weight: math.unit(102, "kg"),
  33163. name: "Side-dressed",
  33164. image: {
  33165. source: "./media/characters/irbisgreif/side-dressed.svg",
  33166. extra: 788/688,
  33167. bottom: 21/809
  33168. }
  33169. },
  33170. backDressed: {
  33171. height: math.unit(216, "cm"),
  33172. weight: math.unit(102, "kg"),
  33173. name: "Back-dressed",
  33174. image: {
  33175. source: "./media/characters/irbisgreif/back-dressed.svg",
  33176. extra: 901/783,
  33177. bottom: 10/911
  33178. }
  33179. },
  33180. dick: {
  33181. height: math.unit(0.49, "feet"),
  33182. name: "Dick",
  33183. image: {
  33184. source: "./media/characters/irbisgreif/dick.svg"
  33185. }
  33186. },
  33187. wingTop: {
  33188. height: math.unit(1.93 , "feet"),
  33189. name: "Wing-top",
  33190. image: {
  33191. source: "./media/characters/irbisgreif/wing-top.svg"
  33192. }
  33193. },
  33194. wingBottom: {
  33195. height: math.unit(1.93 , "feet"),
  33196. name: "Wing-bottom",
  33197. image: {
  33198. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33199. }
  33200. },
  33201. },
  33202. [
  33203. {
  33204. name: "Normal",
  33205. height: math.unit(216, "cm"),
  33206. default: true
  33207. },
  33208. ]
  33209. ))
  33210. characterMakers.push(() => makeCharacter(
  33211. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33212. {
  33213. front: {
  33214. height: math.unit(6, "feet"),
  33215. weight: math.unit(150, "lb"),
  33216. name: "Front",
  33217. image: {
  33218. source: "./media/characters/pride/front.svg",
  33219. extra: 1299/1230,
  33220. bottom: 18/1317
  33221. }
  33222. },
  33223. },
  33224. [
  33225. {
  33226. name: "Normal",
  33227. height: math.unit(7, "feet")
  33228. },
  33229. {
  33230. name: "Mini-macro",
  33231. height: math.unit(11, "feet")
  33232. },
  33233. {
  33234. name: "Macro",
  33235. height: math.unit(15, "meters"),
  33236. default: true
  33237. },
  33238. {
  33239. name: "Macro+",
  33240. height: math.unit(40, "meters")
  33241. },
  33242. ]
  33243. ))
  33244. characterMakers.push(() => makeCharacter(
  33245. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33246. {
  33247. front: {
  33248. height: math.unit(4 + 2 / 12, "feet"),
  33249. weight: math.unit(95, "lb"),
  33250. name: "Front",
  33251. image: {
  33252. source: "./media/characters/vaelophis-nyx/front.svg",
  33253. extra: 2532/2330,
  33254. bottom: 0/2532
  33255. }
  33256. },
  33257. back: {
  33258. height: math.unit(4 + 2 / 12, "feet"),
  33259. weight: math.unit(95, "lb"),
  33260. name: "Back",
  33261. image: {
  33262. source: "./media/characters/vaelophis-nyx/back.svg",
  33263. extra: 2484/2361,
  33264. bottom: 0/2484
  33265. }
  33266. },
  33267. feralSide: {
  33268. height: math.unit(2 + 1/12, "feet"),
  33269. weight: math.unit(20, "lb"),
  33270. name: "Feral (Side)",
  33271. image: {
  33272. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33273. extra: 1721/1581,
  33274. bottom: 70/1791
  33275. }
  33276. },
  33277. feralLazing: {
  33278. height: math.unit(1.08, "feet"),
  33279. weight: math.unit(20, "lb"),
  33280. name: "Feral (Lazing)",
  33281. image: {
  33282. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33283. extra: 822/822,
  33284. bottom: 248/1070
  33285. }
  33286. },
  33287. ear: {
  33288. height: math.unit(0.416, "feet"),
  33289. name: "Ear",
  33290. image: {
  33291. source: "./media/characters/vaelophis-nyx/ear.svg"
  33292. }
  33293. },
  33294. eye: {
  33295. height: math.unit(0.0748, "feet"),
  33296. name: "Eye",
  33297. image: {
  33298. source: "./media/characters/vaelophis-nyx/eye.svg"
  33299. }
  33300. },
  33301. mouth: {
  33302. height: math.unit(0.378, "feet"),
  33303. name: "Mouth",
  33304. image: {
  33305. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33306. }
  33307. },
  33308. spade: {
  33309. height: math.unit(0.55, "feet"),
  33310. name: "Spade",
  33311. image: {
  33312. source: "./media/characters/vaelophis-nyx/spade.svg"
  33313. }
  33314. },
  33315. },
  33316. [
  33317. {
  33318. name: "Normal",
  33319. height: math.unit(4 + 2/12, "feet"),
  33320. default: true
  33321. },
  33322. ]
  33323. ))
  33324. characterMakers.push(() => makeCharacter(
  33325. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33326. {
  33327. front: {
  33328. height: math.unit(7, "feet"),
  33329. weight: math.unit(231, "lb"),
  33330. name: "Front",
  33331. image: {
  33332. source: "./media/characters/flux/front.svg",
  33333. extra: 919/871,
  33334. bottom: 0/919
  33335. }
  33336. },
  33337. back: {
  33338. height: math.unit(7, "feet"),
  33339. weight: math.unit(231, "lb"),
  33340. name: "Back",
  33341. image: {
  33342. source: "./media/characters/flux/back.svg",
  33343. extra: 1040/992,
  33344. bottom: 0/1040
  33345. }
  33346. },
  33347. frontDressed: {
  33348. height: math.unit(7, "feet"),
  33349. weight: math.unit(231, "lb"),
  33350. name: "Front (Dressed)",
  33351. image: {
  33352. source: "./media/characters/flux/front-dressed.svg",
  33353. extra: 919/871,
  33354. bottom: 0/919
  33355. }
  33356. },
  33357. feralSide: {
  33358. height: math.unit(5, "feet"),
  33359. weight: math.unit(150, "lb"),
  33360. name: "Feral (Side)",
  33361. image: {
  33362. source: "./media/characters/flux/feral-side.svg",
  33363. extra: 598/528,
  33364. bottom: 28/626
  33365. }
  33366. },
  33367. head: {
  33368. height: math.unit(1.585, "feet"),
  33369. name: "Head",
  33370. image: {
  33371. source: "./media/characters/flux/head.svg"
  33372. }
  33373. },
  33374. headSide: {
  33375. height: math.unit(1.74, "feet"),
  33376. name: "Head (Side)",
  33377. image: {
  33378. source: "./media/characters/flux/head-side.svg"
  33379. }
  33380. },
  33381. headSideFire: {
  33382. height: math.unit(1.76, "feet"),
  33383. name: "Head (Side, Fire)",
  33384. image: {
  33385. source: "./media/characters/flux/head-side-fire.svg"
  33386. }
  33387. },
  33388. },
  33389. [
  33390. {
  33391. name: "Normal",
  33392. height: math.unit(7, "feet"),
  33393. default: true
  33394. },
  33395. ]
  33396. ))
  33397. characterMakers.push(() => makeCharacter(
  33398. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33399. {
  33400. front: {
  33401. height: math.unit(9, "feet"),
  33402. weight: math.unit(1012, "lb"),
  33403. name: "Front",
  33404. image: {
  33405. source: "./media/characters/ulfra-lupae/front.svg",
  33406. extra: 1083/1011,
  33407. bottom: 67/1150
  33408. }
  33409. },
  33410. },
  33411. [
  33412. {
  33413. name: "Micro",
  33414. height: math.unit(6, "inches")
  33415. },
  33416. {
  33417. name: "Socializing",
  33418. height: math.unit(6 + 5/12, "feet")
  33419. },
  33420. {
  33421. name: "Normal",
  33422. height: math.unit(9, "feet"),
  33423. default: true
  33424. },
  33425. {
  33426. name: "Macro",
  33427. height: math.unit(150, "feet")
  33428. },
  33429. ]
  33430. ))
  33431. characterMakers.push(() => makeCharacter(
  33432. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33433. {
  33434. front: {
  33435. height: math.unit(5 + 2/12, "feet"),
  33436. weight: math.unit(120, "lb"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/timber/front.svg",
  33440. extra: 2814/2705,
  33441. bottom: 181/2995
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Normal",
  33448. height: math.unit(5 + 2/12, "feet"),
  33449. default: true
  33450. },
  33451. ]
  33452. ))
  33453. characterMakers.push(() => makeCharacter(
  33454. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33455. {
  33456. front: {
  33457. height: math.unit(9, "feet"),
  33458. name: "Front",
  33459. image: {
  33460. source: "./media/characters/nicki/front.svg",
  33461. extra: 1240/990,
  33462. bottom: 45/1285
  33463. },
  33464. form: "anthro",
  33465. default: true
  33466. },
  33467. side: {
  33468. height: math.unit(9, "feet"),
  33469. name: "Side",
  33470. image: {
  33471. source: "./media/characters/nicki/side.svg",
  33472. extra: 1047/973,
  33473. bottom: 61/1108
  33474. },
  33475. form: "anthro"
  33476. },
  33477. back: {
  33478. height: math.unit(9, "feet"),
  33479. name: "Back",
  33480. image: {
  33481. source: "./media/characters/nicki/back.svg",
  33482. extra: 1006/965,
  33483. bottom: 39/1045
  33484. },
  33485. form: "anthro"
  33486. },
  33487. taur: {
  33488. height: math.unit(15, "feet"),
  33489. name: "Taur",
  33490. image: {
  33491. source: "./media/characters/nicki/taur.svg",
  33492. extra: 1592/1347,
  33493. bottom: 0/1592
  33494. },
  33495. form: "taur",
  33496. default: true
  33497. },
  33498. },
  33499. [
  33500. {
  33501. name: "Normal",
  33502. height: math.unit(9, "feet"),
  33503. form: "anthro",
  33504. default: true
  33505. },
  33506. {
  33507. name: "Normal",
  33508. height: math.unit(15, "feet"),
  33509. form: "taur",
  33510. default: true
  33511. }
  33512. ],
  33513. {
  33514. "anthro": {
  33515. name: "Anthro",
  33516. default: true
  33517. },
  33518. "taur": {
  33519. name: "Taur"
  33520. }
  33521. }
  33522. ))
  33523. characterMakers.push(() => makeCharacter(
  33524. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33525. {
  33526. front: {
  33527. height: math.unit(7 + 10/12, "feet"),
  33528. weight: math.unit(3.5, "tons"),
  33529. name: "Front",
  33530. image: {
  33531. source: "./media/characters/lee/front.svg",
  33532. extra: 1773/1615,
  33533. bottom: 86/1859
  33534. }
  33535. },
  33536. hand: {
  33537. height: math.unit(1.78, "feet"),
  33538. name: "Hand",
  33539. image: {
  33540. source: "./media/characters/lee/hand.svg"
  33541. }
  33542. },
  33543. maw: {
  33544. height: math.unit(1.18, "feet"),
  33545. name: "Maw",
  33546. image: {
  33547. source: "./media/characters/lee/maw.svg"
  33548. }
  33549. },
  33550. },
  33551. [
  33552. {
  33553. name: "Normal",
  33554. height: math.unit(7 + 10/12, "feet"),
  33555. default: true
  33556. },
  33557. ]
  33558. ))
  33559. characterMakers.push(() => makeCharacter(
  33560. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33561. {
  33562. front: {
  33563. height: math.unit(9, "feet"),
  33564. name: "Front",
  33565. image: {
  33566. source: "./media/characters/guti/front.svg",
  33567. extra: 4551/4355,
  33568. bottom: 123/4674
  33569. }
  33570. },
  33571. tongue: {
  33572. height: math.unit(1, "feet"),
  33573. name: "Tongue",
  33574. image: {
  33575. source: "./media/characters/guti/tongue.svg"
  33576. }
  33577. },
  33578. paw: {
  33579. height: math.unit(1.18, "feet"),
  33580. name: "Paw",
  33581. image: {
  33582. source: "./media/characters/guti/paw.svg"
  33583. }
  33584. },
  33585. },
  33586. [
  33587. {
  33588. name: "Normal",
  33589. height: math.unit(9, "feet"),
  33590. default: true
  33591. },
  33592. ]
  33593. ))
  33594. characterMakers.push(() => makeCharacter(
  33595. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33596. {
  33597. side: {
  33598. height: math.unit(5, "meters"),
  33599. name: "Side",
  33600. image: {
  33601. source: "./media/characters/vesper/side.svg",
  33602. extra: 1605/1518,
  33603. bottom: 0/1605
  33604. }
  33605. },
  33606. },
  33607. [
  33608. {
  33609. name: "Small",
  33610. height: math.unit(5, "meters")
  33611. },
  33612. {
  33613. name: "Sage",
  33614. height: math.unit(100, "meters"),
  33615. default: true
  33616. },
  33617. {
  33618. name: "Fun Size",
  33619. height: math.unit(600, "meters")
  33620. },
  33621. {
  33622. name: "Goddess",
  33623. height: math.unit(20000, "km")
  33624. },
  33625. {
  33626. name: "Maximum",
  33627. height: math.unit(5, "galaxies")
  33628. },
  33629. ]
  33630. ))
  33631. characterMakers.push(() => makeCharacter(
  33632. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33633. {
  33634. front: {
  33635. height: math.unit(6 + 3/12, "feet"),
  33636. weight: math.unit(190, "lb"),
  33637. name: "Front",
  33638. image: {
  33639. source: "./media/characters/gawain/front.svg",
  33640. extra: 2222/2139,
  33641. bottom: 90/2312
  33642. }
  33643. },
  33644. back: {
  33645. height: math.unit(6 + 3/12, "feet"),
  33646. weight: math.unit(190, "lb"),
  33647. name: "Back",
  33648. image: {
  33649. source: "./media/characters/gawain/back.svg",
  33650. extra: 2199/2111,
  33651. bottom: 73/2272
  33652. }
  33653. },
  33654. },
  33655. [
  33656. {
  33657. name: "Normal",
  33658. height: math.unit(6 + 3/12, "feet"),
  33659. default: true
  33660. },
  33661. ]
  33662. ))
  33663. characterMakers.push(() => makeCharacter(
  33664. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33665. {
  33666. side: {
  33667. height: math.unit(3.5, "meters"),
  33668. weight: math.unit(16000, "lb"),
  33669. name: "Side",
  33670. image: {
  33671. source: "./media/characters/dascalti/side.svg",
  33672. extra: 392/273,
  33673. bottom: 47/439
  33674. }
  33675. },
  33676. breath: {
  33677. height: math.unit(7.4, "feet"),
  33678. name: "Breath",
  33679. image: {
  33680. source: "./media/characters/dascalti/breath.svg"
  33681. }
  33682. },
  33683. fed: {
  33684. height: math.unit(3.6, "meters"),
  33685. weight: math.unit(16000, "lb"),
  33686. name: "Fed",
  33687. image: {
  33688. source: "./media/characters/dascalti/fed.svg",
  33689. extra: 1419/820,
  33690. bottom: 95/1514
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Normal",
  33697. height: math.unit(3.5, "meters"),
  33698. default: true
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(3 + 5/12, "feet"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/mauve/front.svg",
  33710. extra: 1126/1033,
  33711. bottom: 65/1191
  33712. }
  33713. },
  33714. side: {
  33715. height: math.unit(3 + 5/12, "feet"),
  33716. name: "Side",
  33717. image: {
  33718. source: "./media/characters/mauve/side.svg",
  33719. extra: 1089/1001,
  33720. bottom: 29/1118
  33721. }
  33722. },
  33723. back: {
  33724. height: math.unit(3 + 5/12, "feet"),
  33725. name: "Back",
  33726. image: {
  33727. source: "./media/characters/mauve/back.svg",
  33728. extra: 1173/1053,
  33729. bottom: 109/1282
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Normal",
  33736. height: math.unit(3 + 5/12, "feet"),
  33737. default: true
  33738. },
  33739. ]
  33740. ))
  33741. characterMakers.push(() => makeCharacter(
  33742. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33743. {
  33744. front: {
  33745. height: math.unit(6 + 3/12, "feet"),
  33746. weight: math.unit(430, "lb"),
  33747. name: "Front",
  33748. image: {
  33749. source: "./media/characters/carlos/front.svg",
  33750. extra: 1964/1913,
  33751. bottom: 70/2034
  33752. }
  33753. },
  33754. },
  33755. [
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(6 + 3/12, "feet"),
  33759. default: true
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33765. {
  33766. back: {
  33767. height: math.unit(5 + 10/12, "feet"),
  33768. weight: math.unit(200, "lb"),
  33769. name: "Back",
  33770. image: {
  33771. source: "./media/characters/jax/back.svg",
  33772. extra: 764/739,
  33773. bottom: 25/789
  33774. }
  33775. },
  33776. },
  33777. [
  33778. {
  33779. name: "Normal",
  33780. height: math.unit(5 + 10/12, "feet"),
  33781. default: true
  33782. },
  33783. ]
  33784. ))
  33785. characterMakers.push(() => makeCharacter(
  33786. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33787. {
  33788. front: {
  33789. height: math.unit(8, "feet"),
  33790. weight: math.unit(250, "lb"),
  33791. name: "Front",
  33792. image: {
  33793. source: "./media/characters/eikthynir/front.svg",
  33794. extra: 1332/1166,
  33795. bottom: 82/1414
  33796. }
  33797. },
  33798. back: {
  33799. height: math.unit(8, "feet"),
  33800. weight: math.unit(250, "lb"),
  33801. name: "Back",
  33802. image: {
  33803. source: "./media/characters/eikthynir/back.svg",
  33804. extra: 1342/1190,
  33805. bottom: 19/1361
  33806. }
  33807. },
  33808. dick: {
  33809. height: math.unit(2.35, "feet"),
  33810. name: "Dick",
  33811. image: {
  33812. source: "./media/characters/eikthynir/dick.svg"
  33813. }
  33814. },
  33815. },
  33816. [
  33817. {
  33818. name: "Normal",
  33819. height: math.unit(8, "feet"),
  33820. default: true
  33821. },
  33822. ]
  33823. ))
  33824. characterMakers.push(() => makeCharacter(
  33825. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33826. {
  33827. front: {
  33828. height: math.unit(99, "meters"),
  33829. weight: math.unit(13000, "tons"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/zlmos/front.svg",
  33833. extra: 2202/1992,
  33834. bottom: 315/2517
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Macro",
  33841. height: math.unit(99, "meters"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33848. {
  33849. front: {
  33850. height: math.unit(6 + 5/12, "feet"),
  33851. name: "Front",
  33852. image: {
  33853. source: "./media/characters/purri/front.svg",
  33854. extra: 1698/1610,
  33855. bottom: 32/1730
  33856. }
  33857. },
  33858. frontAlt: {
  33859. height: math.unit(6 + 5/12, "feet"),
  33860. name: "Front (Alt)",
  33861. image: {
  33862. source: "./media/characters/purri/front-alt.svg",
  33863. extra: 450/420,
  33864. bottom: 26/476
  33865. }
  33866. },
  33867. boots: {
  33868. height: math.unit(5.5, "feet"),
  33869. name: "Boots",
  33870. image: {
  33871. source: "./media/characters/purri/boots.svg",
  33872. extra: 905/853,
  33873. bottom: 18/923
  33874. }
  33875. },
  33876. lying: {
  33877. height: math.unit(2, "feet"),
  33878. name: "Lying",
  33879. image: {
  33880. source: "./media/characters/purri/lying.svg",
  33881. extra: 940/843,
  33882. bottom: 146/1086
  33883. }
  33884. },
  33885. devious: {
  33886. height: math.unit(1.77, "feet"),
  33887. name: "Devious",
  33888. image: {
  33889. source: "./media/characters/purri/devious.svg",
  33890. extra: 1440/1155,
  33891. bottom: 147/1587
  33892. }
  33893. },
  33894. bean: {
  33895. height: math.unit(1.94, "feet"),
  33896. name: "Bean",
  33897. image: {
  33898. source: "./media/characters/purri/bean.svg"
  33899. }
  33900. },
  33901. },
  33902. [
  33903. {
  33904. name: "Micro",
  33905. height: math.unit(1, "mm")
  33906. },
  33907. {
  33908. name: "Normal",
  33909. height: math.unit(6 + 5/12, "feet"),
  33910. default: true
  33911. },
  33912. {
  33913. name: "Macro :3c",
  33914. height: math.unit(2, "miles")
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33920. {
  33921. front: {
  33922. height: math.unit(6 + 2/12, "feet"),
  33923. weight: math.unit(250, "lb"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/moonlight/front.svg",
  33927. extra: 1044/908,
  33928. bottom: 56/1100
  33929. }
  33930. },
  33931. feral: {
  33932. height: math.unit(3 + 1/12, "feet"),
  33933. weight: math.unit(50, "kg"),
  33934. name: "Feral",
  33935. image: {
  33936. source: "./media/characters/moonlight/feral.svg",
  33937. extra: 3705/2791,
  33938. bottom: 145/3850
  33939. }
  33940. },
  33941. paw: {
  33942. height: math.unit(1, "feet"),
  33943. name: "Paw",
  33944. image: {
  33945. source: "./media/characters/moonlight/paw.svg"
  33946. }
  33947. },
  33948. paws: {
  33949. height: math.unit(0.98, "feet"),
  33950. name: "Paws",
  33951. image: {
  33952. source: "./media/characters/moonlight/paws.svg",
  33953. extra: 939/939,
  33954. bottom: 50/989
  33955. }
  33956. },
  33957. mouth: {
  33958. height: math.unit(0.48, "feet"),
  33959. name: "Mouth",
  33960. image: {
  33961. source: "./media/characters/moonlight/mouth.svg"
  33962. }
  33963. },
  33964. dick: {
  33965. height: math.unit(1.46, "feet"),
  33966. name: "Dick",
  33967. image: {
  33968. source: "./media/characters/moonlight/dick.svg"
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Normal",
  33975. height: math.unit(6 + 2/12, "feet"),
  33976. default: true
  33977. },
  33978. {
  33979. name: "Macro",
  33980. height: math.unit(300, "feet")
  33981. },
  33982. {
  33983. name: "Macro+",
  33984. height: math.unit(1, "mile")
  33985. },
  33986. {
  33987. name: "Mt. Moon",
  33988. height: math.unit(5, "miles")
  33989. },
  33990. {
  33991. name: "Megamacro",
  33992. height: math.unit(15, "miles")
  33993. },
  33994. ]
  33995. ))
  33996. characterMakers.push(() => makeCharacter(
  33997. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33998. {
  33999. back: {
  34000. height: math.unit(6, "feet"),
  34001. weight: math.unit(150, "lb"),
  34002. name: "Back",
  34003. image: {
  34004. source: "./media/characters/sylen/back.svg",
  34005. extra: 1335/1273,
  34006. bottom: 107/1442
  34007. }
  34008. },
  34009. },
  34010. [
  34011. {
  34012. name: "Normal",
  34013. height: math.unit(5 + 5/12, "feet")
  34014. },
  34015. {
  34016. name: "Megamacro",
  34017. height: math.unit(3, "miles"),
  34018. default: true
  34019. },
  34020. ]
  34021. ))
  34022. characterMakers.push(() => makeCharacter(
  34023. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34024. {
  34025. front: {
  34026. height: math.unit(6, "feet"),
  34027. weight: math.unit(190, "lb"),
  34028. name: "Front",
  34029. image: {
  34030. source: "./media/characters/huttser/front.svg",
  34031. extra: 1152/1058,
  34032. bottom: 23/1175
  34033. }
  34034. },
  34035. side: {
  34036. height: math.unit(6, "feet"),
  34037. weight: math.unit(190, "lb"),
  34038. name: "Side",
  34039. image: {
  34040. source: "./media/characters/huttser/side.svg",
  34041. extra: 1174/1065,
  34042. bottom: 18/1192
  34043. }
  34044. },
  34045. back: {
  34046. height: math.unit(6, "feet"),
  34047. weight: math.unit(190, "lb"),
  34048. name: "Back",
  34049. image: {
  34050. source: "./media/characters/huttser/back.svg",
  34051. extra: 1158/1056,
  34052. bottom: 12/1170
  34053. }
  34054. },
  34055. },
  34056. [
  34057. ]
  34058. ))
  34059. characterMakers.push(() => makeCharacter(
  34060. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34061. {
  34062. side: {
  34063. height: math.unit(12 + 9/12, "feet"),
  34064. weight: math.unit(15000, "lb"),
  34065. name: "Side",
  34066. image: {
  34067. source: "./media/characters/faan/side.svg",
  34068. extra: 2747/2697,
  34069. bottom: 0/2747
  34070. }
  34071. },
  34072. front: {
  34073. height: math.unit(12 + 9/12, "feet"),
  34074. weight: math.unit(15000, "lb"),
  34075. name: "Front",
  34076. image: {
  34077. source: "./media/characters/faan/front.svg",
  34078. extra: 607/571,
  34079. bottom: 24/631
  34080. }
  34081. },
  34082. head: {
  34083. height: math.unit(2.85, "feet"),
  34084. name: "Head",
  34085. image: {
  34086. source: "./media/characters/faan/head.svg"
  34087. }
  34088. },
  34089. headAlt: {
  34090. height: math.unit(3.13, "feet"),
  34091. name: "Head-alt",
  34092. image: {
  34093. source: "./media/characters/faan/head-alt.svg"
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Normal",
  34100. height: math.unit(12 + 9/12, "feet"),
  34101. default: true
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(6, "feet"),
  34110. weight: math.unit(300, "lb"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/tanio/front.svg",
  34114. extra: 711/673,
  34115. bottom: 25/736
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(6, "feet"),
  34123. default: true
  34124. },
  34125. ]
  34126. ))
  34127. characterMakers.push(() => makeCharacter(
  34128. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34129. {
  34130. front: {
  34131. height: math.unit(3, "inches"),
  34132. name: "Front",
  34133. image: {
  34134. source: "./media/characters/noboru/front.svg",
  34135. extra: 1039/932,
  34136. bottom: 18/1057
  34137. }
  34138. },
  34139. },
  34140. [
  34141. {
  34142. name: "Micro",
  34143. height: math.unit(3, "inches"),
  34144. default: true
  34145. },
  34146. ]
  34147. ))
  34148. characterMakers.push(() => makeCharacter(
  34149. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34150. {
  34151. front: {
  34152. height: math.unit(1.85, "meters"),
  34153. weight: math.unit(80, "kg"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/daniel-barrett/front.svg",
  34157. extra: 355/337,
  34158. bottom: 9/364
  34159. }
  34160. },
  34161. },
  34162. [
  34163. {
  34164. name: "Pico",
  34165. height: math.unit(0.0433, "mm")
  34166. },
  34167. {
  34168. name: "Nano",
  34169. height: math.unit(1.5, "mm")
  34170. },
  34171. {
  34172. name: "Micro",
  34173. height: math.unit(5.3, "cm"),
  34174. default: true
  34175. },
  34176. {
  34177. name: "Normal",
  34178. height: math.unit(1.85, "meters")
  34179. },
  34180. {
  34181. name: "Macro",
  34182. height: math.unit(64.7, "meters")
  34183. },
  34184. {
  34185. name: "Megamacro",
  34186. height: math.unit(2.26, "km")
  34187. },
  34188. {
  34189. name: "Gigamacro",
  34190. height: math.unit(79, "km")
  34191. },
  34192. {
  34193. name: "Teramacro",
  34194. height: math.unit(2765, "km")
  34195. },
  34196. {
  34197. name: "Petamacro",
  34198. height: math.unit(96678, "km")
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34204. {
  34205. front: {
  34206. height: math.unit(30, "meters"),
  34207. weight: math.unit(400, "tons"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/zeel/front.svg",
  34211. extra: 2599/2599,
  34212. bottom: 226/2825
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Macro",
  34219. height: math.unit(30, "meters"),
  34220. default: true
  34221. },
  34222. ]
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34226. {
  34227. front: {
  34228. height: math.unit(6 + 7/12, "feet"),
  34229. weight: math.unit(210, "lb"),
  34230. name: "Front",
  34231. image: {
  34232. source: "./media/characters/tarn/front.svg",
  34233. extra: 3517/3220,
  34234. bottom: 91/3608
  34235. }
  34236. },
  34237. back: {
  34238. height: math.unit(6 + 7/12, "feet"),
  34239. weight: math.unit(210, "lb"),
  34240. name: "Back",
  34241. image: {
  34242. source: "./media/characters/tarn/back.svg",
  34243. extra: 3566/3241,
  34244. bottom: 34/3600
  34245. }
  34246. },
  34247. dick: {
  34248. height: math.unit(1.65, "feet"),
  34249. name: "Dick",
  34250. image: {
  34251. source: "./media/characters/tarn/dick.svg"
  34252. }
  34253. },
  34254. paw: {
  34255. height: math.unit(1.80, "feet"),
  34256. name: "Paw",
  34257. image: {
  34258. source: "./media/characters/tarn/paw.svg"
  34259. }
  34260. },
  34261. tongue: {
  34262. height: math.unit(0.97, "feet"),
  34263. name: "Tongue",
  34264. image: {
  34265. source: "./media/characters/tarn/tongue.svg"
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Micro",
  34272. height: math.unit(4, "inches")
  34273. },
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(6 + 7/12, "feet"),
  34277. default: true
  34278. },
  34279. {
  34280. name: "Macro",
  34281. height: math.unit(300, "feet")
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34287. {
  34288. front: {
  34289. height: math.unit(5 + 7/12, "feet"),
  34290. weight: math.unit(80, "kg"),
  34291. name: "Front",
  34292. image: {
  34293. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34294. extra: 3023/2865,
  34295. bottom: 33/3056
  34296. }
  34297. },
  34298. back: {
  34299. height: math.unit(5 + 7/12, "feet"),
  34300. weight: math.unit(80, "kg"),
  34301. name: "Back",
  34302. image: {
  34303. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34304. extra: 3020/2886,
  34305. bottom: 30/3050
  34306. }
  34307. },
  34308. dick: {
  34309. height: math.unit(0.98, "feet"),
  34310. name: "Dick",
  34311. image: {
  34312. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34313. }
  34314. },
  34315. anatomy: {
  34316. height: math.unit(2.86, "feet"),
  34317. name: "Anatomy",
  34318. image: {
  34319. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34320. }
  34321. },
  34322. },
  34323. [
  34324. {
  34325. name: "Really Small",
  34326. height: math.unit(2, "inches")
  34327. },
  34328. {
  34329. name: "Micro",
  34330. height: math.unit(5.583, "inches")
  34331. },
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(5 + 7/12, "feet"),
  34335. default: true
  34336. },
  34337. {
  34338. name: "Macro",
  34339. height: math.unit(67, "feet")
  34340. },
  34341. {
  34342. name: "Megamacro",
  34343. height: math.unit(134, "feet")
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34349. {
  34350. front: {
  34351. height: math.unit(9, "feet"),
  34352. weight: math.unit(120, "lb"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/sally/front.svg",
  34356. extra: 1506/1349,
  34357. bottom: 66/1572
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Normal",
  34364. height: math.unit(9, "feet"),
  34365. default: true
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(8, "feet"),
  34374. weight: math.unit(900, "lb"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/owen/front.svg",
  34378. extra: 1761/1657,
  34379. bottom: 74/1835
  34380. }
  34381. },
  34382. side: {
  34383. height: math.unit(8, "feet"),
  34384. weight: math.unit(900, "lb"),
  34385. name: "Side",
  34386. image: {
  34387. source: "./media/characters/owen/side.svg",
  34388. extra: 1797/1734,
  34389. bottom: 30/1827
  34390. }
  34391. },
  34392. back: {
  34393. height: math.unit(8, "feet"),
  34394. weight: math.unit(900, "lb"),
  34395. name: "Back",
  34396. image: {
  34397. source: "./media/characters/owen/back.svg",
  34398. extra: 1796/1706,
  34399. bottom: 59/1855
  34400. }
  34401. },
  34402. maw: {
  34403. height: math.unit(1.76, "feet"),
  34404. name: "Maw",
  34405. image: {
  34406. source: "./media/characters/owen/maw.svg"
  34407. }
  34408. },
  34409. },
  34410. [
  34411. {
  34412. name: "Normal",
  34413. height: math.unit(8, "feet"),
  34414. default: true
  34415. },
  34416. ]
  34417. ))
  34418. characterMakers.push(() => makeCharacter(
  34419. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34420. {
  34421. front: {
  34422. height: math.unit(4, "feet"),
  34423. weight: math.unit(400, "lb"),
  34424. name: "Front",
  34425. image: {
  34426. source: "./media/characters/ryth/front.svg",
  34427. extra: 1920/1748,
  34428. bottom: 42/1962
  34429. }
  34430. },
  34431. back: {
  34432. height: math.unit(4, "feet"),
  34433. weight: math.unit(400, "lb"),
  34434. name: "Back",
  34435. image: {
  34436. source: "./media/characters/ryth/back.svg",
  34437. extra: 1897/1690,
  34438. bottom: 89/1986
  34439. }
  34440. },
  34441. mouth: {
  34442. height: math.unit(1.39, "feet"),
  34443. name: "Mouth",
  34444. image: {
  34445. source: "./media/characters/ryth/mouth.svg"
  34446. }
  34447. },
  34448. tailmaw: {
  34449. height: math.unit(1.23, "feet"),
  34450. name: "Tailmaw",
  34451. image: {
  34452. source: "./media/characters/ryth/tailmaw.svg"
  34453. }
  34454. },
  34455. goia: {
  34456. height: math.unit(4, "meters"),
  34457. weight: math.unit(10800, "lb"),
  34458. name: "Goia",
  34459. image: {
  34460. source: "./media/characters/ryth/goia.svg",
  34461. extra: 745/640,
  34462. bottom: 107/852
  34463. }
  34464. },
  34465. goiaFront: {
  34466. height: math.unit(4, "meters"),
  34467. weight: math.unit(10800, "lb"),
  34468. name: "Goia (Front)",
  34469. image: {
  34470. source: "./media/characters/ryth/goia-front.svg",
  34471. extra: 750/586,
  34472. bottom: 114/864
  34473. }
  34474. },
  34475. goiaMaw: {
  34476. height: math.unit(5.55, "feet"),
  34477. name: "Goia Maw",
  34478. image: {
  34479. source: "./media/characters/ryth/goia-maw.svg"
  34480. }
  34481. },
  34482. goiaForepaw: {
  34483. height: math.unit(3.5, "feet"),
  34484. name: "Goia Forepaw",
  34485. image: {
  34486. source: "./media/characters/ryth/goia-forepaw.svg"
  34487. }
  34488. },
  34489. goiaHindpaw: {
  34490. height: math.unit(5.55, "feet"),
  34491. name: "Goia Hindpaw",
  34492. image: {
  34493. source: "./media/characters/ryth/goia-hindpaw.svg"
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(4, "feet"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(7, "feet"),
  34510. weight: math.unit(180, "lb"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/necrolance/front.svg",
  34514. extra: 1062/947,
  34515. bottom: 41/1103
  34516. }
  34517. },
  34518. back: {
  34519. height: math.unit(7, "feet"),
  34520. weight: math.unit(180, "lb"),
  34521. name: "Back",
  34522. image: {
  34523. source: "./media/characters/necrolance/back.svg",
  34524. extra: 1045/984,
  34525. bottom: 14/1059
  34526. }
  34527. },
  34528. wing: {
  34529. height: math.unit(2.67, "feet"),
  34530. name: "Wing",
  34531. image: {
  34532. source: "./media/characters/necrolance/wing.svg"
  34533. }
  34534. },
  34535. },
  34536. [
  34537. {
  34538. name: "Normal",
  34539. height: math.unit(7, "feet"),
  34540. default: true
  34541. },
  34542. ]
  34543. ))
  34544. characterMakers.push(() => makeCharacter(
  34545. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34546. {
  34547. front: {
  34548. height: math.unit(76, "meters"),
  34549. weight: math.unit(30000, "tons"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/tyler/front.svg",
  34553. extra: 1640/1640,
  34554. bottom: 114/1754
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Macro",
  34561. height: math.unit(76, "meters"),
  34562. default: true
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34568. {
  34569. front: {
  34570. height: math.unit(4 + 11/12, "feet"),
  34571. weight: math.unit(132, "lb"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/icey/front.svg",
  34575. extra: 2750/2550,
  34576. bottom: 33/2783
  34577. }
  34578. },
  34579. back: {
  34580. height: math.unit(4 + 11/12, "feet"),
  34581. weight: math.unit(132, "lb"),
  34582. name: "Back",
  34583. image: {
  34584. source: "./media/characters/icey/back.svg",
  34585. extra: 2624/2481,
  34586. bottom: 35/2659
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(4 + 11/12, "feet"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(100, "feet"),
  34603. weight: math.unit(0, "lb"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/smile/front.svg",
  34607. extra: 2983/2912,
  34608. bottom: 162/3145
  34609. }
  34610. },
  34611. back: {
  34612. height: math.unit(100, "feet"),
  34613. weight: math.unit(0, "lb"),
  34614. name: "Back",
  34615. image: {
  34616. source: "./media/characters/smile/back.svg",
  34617. extra: 3143/3031,
  34618. bottom: 91/3234
  34619. }
  34620. },
  34621. head: {
  34622. height: math.unit(26.3, "feet"),
  34623. weight: math.unit(0, "lb"),
  34624. name: "Head",
  34625. image: {
  34626. source: "./media/characters/smile/head.svg"
  34627. }
  34628. },
  34629. collar: {
  34630. height: math.unit(5.3, "feet"),
  34631. weight: math.unit(0, "lb"),
  34632. name: "Collar",
  34633. image: {
  34634. source: "./media/characters/smile/collar.svg"
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Macro",
  34641. height: math.unit(100, "feet"),
  34642. default: true
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34648. {
  34649. dragon: {
  34650. height: math.unit(26, "feet"),
  34651. weight: math.unit(36, "tons"),
  34652. name: "Dragon",
  34653. image: {
  34654. source: "./media/characters/arimphae/dragon.svg",
  34655. extra: 1574/983,
  34656. bottom: 357/1931
  34657. }
  34658. },
  34659. drake: {
  34660. height: math.unit(9, "feet"),
  34661. weight: math.unit(1.5, "tons"),
  34662. name: "Drake",
  34663. image: {
  34664. source: "./media/characters/arimphae/drake.svg",
  34665. extra: 1120/925,
  34666. bottom: 435/1555
  34667. }
  34668. },
  34669. },
  34670. [
  34671. {
  34672. name: "Small",
  34673. height: math.unit(26*5/9, "feet")
  34674. },
  34675. {
  34676. name: "Normal",
  34677. height: math.unit(26, "feet"),
  34678. default: true
  34679. },
  34680. ]
  34681. ))
  34682. characterMakers.push(() => makeCharacter(
  34683. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34684. {
  34685. front: {
  34686. height: math.unit(8 + 9/12, "feet"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/xander/front.svg",
  34690. extra: 1237/974,
  34691. bottom: 94/1331
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Normal",
  34698. height: math.unit(8 + 9/12, "feet"),
  34699. default: true
  34700. },
  34701. {
  34702. name: "Gaze Grabber",
  34703. height: math.unit(13 + 8/12, "feet")
  34704. },
  34705. {
  34706. name: "Jaw Dropper",
  34707. height: math.unit(27, "feet")
  34708. },
  34709. {
  34710. name: "Show Stopper",
  34711. height: math.unit(136, "feet")
  34712. },
  34713. {
  34714. name: "Superstar",
  34715. height: math.unit(1.9e6, "miles")
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34721. {
  34722. side: {
  34723. height: math.unit(2100, "feet"),
  34724. name: "Side",
  34725. image: {
  34726. source: "./media/characters/osiris/side.svg",
  34727. extra: 1105/939,
  34728. bottom: 167/1272
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Macro",
  34735. height: math.unit(2100, "feet"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(6 + 8/12, "feet"),
  34745. weight: math.unit(225, "lb"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/rhys-londe/front.svg",
  34749. extra: 2258/2141,
  34750. bottom: 188/2446
  34751. }
  34752. },
  34753. back: {
  34754. height: math.unit(6 + 8/12, "feet"),
  34755. weight: math.unit(225, "lb"),
  34756. name: "Back",
  34757. image: {
  34758. source: "./media/characters/rhys-londe/back.svg",
  34759. extra: 2237/2137,
  34760. bottom: 63/2300
  34761. }
  34762. },
  34763. frontNsfw: {
  34764. height: math.unit(6 + 8/12, "feet"),
  34765. weight: math.unit(225, "lb"),
  34766. name: "Front (NSFW)",
  34767. image: {
  34768. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34769. extra: 2258/2141,
  34770. bottom: 188/2446
  34771. }
  34772. },
  34773. backNsfw: {
  34774. height: math.unit(6 + 8/12, "feet"),
  34775. weight: math.unit(225, "lb"),
  34776. name: "Back (NSFW)",
  34777. image: {
  34778. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34779. extra: 2237/2137,
  34780. bottom: 63/2300
  34781. }
  34782. },
  34783. dick: {
  34784. height: math.unit(30, "inches"),
  34785. name: "Dick",
  34786. image: {
  34787. source: "./media/characters/rhys-londe/dick.svg"
  34788. }
  34789. },
  34790. maw: {
  34791. height: math.unit(1.6, "feet"),
  34792. name: "Maw",
  34793. image: {
  34794. source: "./media/characters/rhys-londe/maw.svg"
  34795. }
  34796. },
  34797. },
  34798. [
  34799. {
  34800. name: "Normal",
  34801. height: math.unit(6 + 8/12, "feet"),
  34802. default: true
  34803. },
  34804. ]
  34805. ))
  34806. characterMakers.push(() => makeCharacter(
  34807. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34808. {
  34809. front: {
  34810. height: math.unit(3 + 10/12, "feet"),
  34811. weight: math.unit(90, "lb"),
  34812. name: "Front",
  34813. image: {
  34814. source: "./media/characters/taivas-ensim/front.svg",
  34815. extra: 1327/1216,
  34816. bottom: 96/1423
  34817. }
  34818. },
  34819. back: {
  34820. height: math.unit(3 + 10/12, "feet"),
  34821. weight: math.unit(90, "lb"),
  34822. name: "Back",
  34823. image: {
  34824. source: "./media/characters/taivas-ensim/back.svg",
  34825. extra: 1355/1247,
  34826. bottom: 11/1366
  34827. }
  34828. },
  34829. frontNsfw: {
  34830. height: math.unit(3 + 10/12, "feet"),
  34831. weight: math.unit(90, "lb"),
  34832. name: "Front (NSFW)",
  34833. image: {
  34834. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34835. extra: 1327/1216,
  34836. bottom: 96/1423
  34837. }
  34838. },
  34839. backNsfw: {
  34840. height: math.unit(3 + 10/12, "feet"),
  34841. weight: math.unit(90, "lb"),
  34842. name: "Back (NSFW)",
  34843. image: {
  34844. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34845. extra: 1355/1247,
  34846. bottom: 11/1366
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Normal",
  34853. height: math.unit(3 + 10/12, "feet"),
  34854. default: true
  34855. },
  34856. ]
  34857. ))
  34858. characterMakers.push(() => makeCharacter(
  34859. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34860. {
  34861. front: {
  34862. height: math.unit(9 + 6/12, "feet"),
  34863. weight: math.unit(940, "lb"),
  34864. name: "Front",
  34865. image: {
  34866. source: "./media/characters/byliss/front.svg",
  34867. extra: 1327/1290,
  34868. bottom: 82/1409
  34869. }
  34870. },
  34871. back: {
  34872. height: math.unit(9 + 6/12, "feet"),
  34873. weight: math.unit(940, "lb"),
  34874. name: "Back",
  34875. image: {
  34876. source: "./media/characters/byliss/back.svg",
  34877. extra: 1376/1349,
  34878. bottom: 9/1385
  34879. }
  34880. },
  34881. frontNsfw: {
  34882. height: math.unit(9 + 6/12, "feet"),
  34883. weight: math.unit(940, "lb"),
  34884. name: "Front (NSFW)",
  34885. image: {
  34886. source: "./media/characters/byliss/front-nsfw.svg",
  34887. extra: 1327/1290,
  34888. bottom: 82/1409
  34889. }
  34890. },
  34891. backNsfw: {
  34892. height: math.unit(9 + 6/12, "feet"),
  34893. weight: math.unit(940, "lb"),
  34894. name: "Back (NSFW)",
  34895. image: {
  34896. source: "./media/characters/byliss/back-nsfw.svg",
  34897. extra: 1376/1349,
  34898. bottom: 9/1385
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Normal",
  34905. height: math.unit(9 + 6/12, "feet"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34912. {
  34913. front: {
  34914. height: math.unit(5 + 2/12, "feet"),
  34915. weight: math.unit(200, "lb"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/noraly/front.svg",
  34919. extra: 4985/4773,
  34920. bottom: 150/5135
  34921. }
  34922. },
  34923. full: {
  34924. height: math.unit(5 + 2/12, "feet"),
  34925. weight: math.unit(164, "lb"),
  34926. name: "Full",
  34927. image: {
  34928. source: "./media/characters/noraly/full.svg",
  34929. extra: 1114/1059,
  34930. bottom: 35/1149
  34931. }
  34932. },
  34933. fuller: {
  34934. height: math.unit(5 + 2/12, "feet"),
  34935. weight: math.unit(230, "lb"),
  34936. name: "Fuller",
  34937. image: {
  34938. source: "./media/characters/noraly/fuller.svg",
  34939. extra: 1114/1059,
  34940. bottom: 35/1149
  34941. }
  34942. },
  34943. fullest: {
  34944. height: math.unit(5 + 2/12, "feet"),
  34945. weight: math.unit(300, "lb"),
  34946. name: "Fullest",
  34947. image: {
  34948. source: "./media/characters/noraly/fullest.svg",
  34949. extra: 1114/1059,
  34950. bottom: 35/1149
  34951. }
  34952. },
  34953. },
  34954. [
  34955. {
  34956. name: "Normal",
  34957. height: math.unit(5 + 2/12, "feet"),
  34958. default: true
  34959. },
  34960. ]
  34961. ))
  34962. characterMakers.push(() => makeCharacter(
  34963. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34964. {
  34965. front: {
  34966. height: math.unit(5 + 2/12, "feet"),
  34967. weight: math.unit(210, "lb"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/pera/front.svg",
  34971. extra: 1560/1531,
  34972. bottom: 165/1725
  34973. }
  34974. },
  34975. back: {
  34976. height: math.unit(5 + 2/12, "feet"),
  34977. weight: math.unit(210, "lb"),
  34978. name: "Back",
  34979. image: {
  34980. source: "./media/characters/pera/back.svg",
  34981. extra: 1523/1493,
  34982. bottom: 152/1675
  34983. }
  34984. },
  34985. dick: {
  34986. height: math.unit(2.4, "feet"),
  34987. name: "Dick",
  34988. image: {
  34989. source: "./media/characters/pera/dick.svg"
  34990. }
  34991. },
  34992. },
  34993. [
  34994. {
  34995. name: "Normal",
  34996. height: math.unit(5 + 2/12, "feet"),
  34997. default: true
  34998. },
  34999. ]
  35000. ))
  35001. characterMakers.push(() => makeCharacter(
  35002. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35003. {
  35004. front: {
  35005. height: math.unit(12, "feet"),
  35006. weight: math.unit(3200, "lb"),
  35007. name: "Front",
  35008. image: {
  35009. source: "./media/characters/julian/front.svg",
  35010. extra: 2962/2701,
  35011. bottom: 184/3146
  35012. }
  35013. },
  35014. maw: {
  35015. height: math.unit(5.35, "feet"),
  35016. name: "Maw",
  35017. image: {
  35018. source: "./media/characters/julian/maw.svg"
  35019. }
  35020. },
  35021. paw: {
  35022. height: math.unit(3.07, "feet"),
  35023. name: "Paw",
  35024. image: {
  35025. source: "./media/characters/julian/paw.svg"
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Default",
  35032. height: math.unit(12, "feet"),
  35033. default: true
  35034. },
  35035. {
  35036. name: "Big",
  35037. height: math.unit(50, "feet")
  35038. },
  35039. {
  35040. name: "Really Big",
  35041. height: math.unit(1, "mile")
  35042. },
  35043. {
  35044. name: "Extremely Big",
  35045. height: math.unit(100, "miles")
  35046. },
  35047. {
  35048. name: "Planet Hugger",
  35049. height: math.unit(200, "megameters")
  35050. },
  35051. {
  35052. name: "Unreasonably Big",
  35053. height: math.unit(1e300, "meters")
  35054. },
  35055. ]
  35056. ))
  35057. characterMakers.push(() => makeCharacter(
  35058. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35059. {
  35060. solgooleo: {
  35061. height: math.unit(4, "meters"),
  35062. weight: math.unit(6000*1.5, "kg"),
  35063. volume: math.unit(6000, "liters"),
  35064. name: "Solgooleo",
  35065. image: {
  35066. source: "./media/characters/pi/solgooleo.svg",
  35067. extra: 388/331,
  35068. bottom: 29/417
  35069. }
  35070. },
  35071. },
  35072. [
  35073. {
  35074. name: "Normal",
  35075. height: math.unit(4, "meters"),
  35076. default: true
  35077. },
  35078. ]
  35079. ))
  35080. characterMakers.push(() => makeCharacter(
  35081. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35082. {
  35083. front: {
  35084. height: math.unit(8, "feet"),
  35085. weight: math.unit(4, "tons"),
  35086. name: "Front",
  35087. image: {
  35088. source: "./media/characters/shaun/front.svg",
  35089. extra: 503/495,
  35090. bottom: 20/523
  35091. }
  35092. },
  35093. back: {
  35094. height: math.unit(8, "feet"),
  35095. weight: math.unit(4, "tons"),
  35096. name: "Back",
  35097. image: {
  35098. source: "./media/characters/shaun/back.svg",
  35099. extra: 487/480,
  35100. bottom: 20/507
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Lorg",
  35107. height: math.unit(8, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35114. {
  35115. frontAnthro: {
  35116. height: math.unit(7, "feet"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/sini/front-anthro.svg",
  35120. extra: 726/678,
  35121. bottom: 35/761
  35122. },
  35123. form: "anthro",
  35124. default: true
  35125. },
  35126. backAnthro: {
  35127. height: math.unit(7, "feet"),
  35128. name: "Back",
  35129. image: {
  35130. source: "./media/characters/sini/back-anthro.svg",
  35131. extra: 743/701,
  35132. bottom: 12/755
  35133. },
  35134. form: "anthro",
  35135. },
  35136. frontAnthroNsfw: {
  35137. height: math.unit(7, "feet"),
  35138. name: "Front (NSFW)",
  35139. image: {
  35140. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35141. extra: 726/678,
  35142. bottom: 35/761
  35143. },
  35144. form: "anthro"
  35145. },
  35146. backAnthroNsfw: {
  35147. height: math.unit(7, "feet"),
  35148. name: "Back (NSFW)",
  35149. image: {
  35150. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35151. extra: 743/701,
  35152. bottom: 12/755
  35153. },
  35154. form: "anthro",
  35155. },
  35156. mawAnthro: {
  35157. height: math.unit(2.14, "feet"),
  35158. name: "Maw",
  35159. image: {
  35160. source: "./media/characters/sini/maw-anthro.svg"
  35161. },
  35162. form: "anthro"
  35163. },
  35164. dick: {
  35165. height: math.unit(1.45, "feet"),
  35166. name: "Dick",
  35167. image: {
  35168. source: "./media/characters/sini/dick-anthro.svg"
  35169. },
  35170. form: "anthro"
  35171. },
  35172. feral: {
  35173. height: math.unit(16, "feet"),
  35174. name: "Feral",
  35175. image: {
  35176. source: "./media/characters/sini/feral.svg",
  35177. extra: 814/605,
  35178. bottom: 11/825
  35179. },
  35180. form: "feral",
  35181. default: true
  35182. },
  35183. feralNsfw: {
  35184. height: math.unit(16, "feet"),
  35185. name: "Feral (NSFW)",
  35186. image: {
  35187. source: "./media/characters/sini/feral-nsfw.svg",
  35188. extra: 814/605,
  35189. bottom: 11/825
  35190. },
  35191. form: "feral"
  35192. },
  35193. mawFeral: {
  35194. height: math.unit(5.66, "feet"),
  35195. name: "Maw",
  35196. image: {
  35197. source: "./media/characters/sini/maw-feral.svg"
  35198. },
  35199. form: "feral",
  35200. },
  35201. pawFeral: {
  35202. height: math.unit(5.17, "feet"),
  35203. name: "Paw",
  35204. image: {
  35205. source: "./media/characters/sini/paw-feral.svg"
  35206. },
  35207. form: "feral",
  35208. },
  35209. rumpFeral: {
  35210. height: math.unit(13.11, "feet"),
  35211. name: "Rump",
  35212. image: {
  35213. source: "./media/characters/sini/rump-feral.svg"
  35214. },
  35215. form: "feral",
  35216. },
  35217. dickFeral: {
  35218. height: math.unit(1, "feet"),
  35219. name: "Dick",
  35220. image: {
  35221. source: "./media/characters/sini/dick-feral.svg"
  35222. },
  35223. form: "feral",
  35224. },
  35225. eyeFeral: {
  35226. height: math.unit(1.23, "feet"),
  35227. name: "Eye",
  35228. image: {
  35229. source: "./media/characters/sini/eye-feral.svg"
  35230. },
  35231. form: "feral",
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(7, "feet"),
  35238. default: true,
  35239. form: "anthro"
  35240. },
  35241. {
  35242. name: "Normal",
  35243. height: math.unit(16, "feet"),
  35244. default: true,
  35245. form: "feral"
  35246. },
  35247. ],
  35248. {
  35249. "anthro": {
  35250. name: "Anthro",
  35251. default: true
  35252. },
  35253. "feral": {
  35254. name: "Feral",
  35255. }
  35256. }
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35260. {
  35261. side: {
  35262. height: math.unit(47.2, "meters"),
  35263. weight: math.unit(10000, "tons"),
  35264. name: "Side",
  35265. image: {
  35266. source: "./media/characters/raylldo/side.svg",
  35267. extra: 2363/642,
  35268. bottom: 221/2584
  35269. }
  35270. },
  35271. top: {
  35272. height: math.unit(240, "meters"),
  35273. weight: math.unit(10000, "tons"),
  35274. name: "Top",
  35275. image: {
  35276. source: "./media/characters/raylldo/top.svg"
  35277. }
  35278. },
  35279. bottom: {
  35280. height: math.unit(240, "meters"),
  35281. weight: math.unit(10000, "tons"),
  35282. name: "Bottom",
  35283. image: {
  35284. source: "./media/characters/raylldo/bottom.svg"
  35285. }
  35286. },
  35287. head: {
  35288. height: math.unit(38.6, "meters"),
  35289. name: "Head",
  35290. image: {
  35291. source: "./media/characters/raylldo/head.svg",
  35292. extra: 1335/1112,
  35293. bottom: 0/1335
  35294. }
  35295. },
  35296. maw: {
  35297. height: math.unit(16.37, "meters"),
  35298. name: "Maw",
  35299. image: {
  35300. source: "./media/characters/raylldo/maw.svg",
  35301. extra: 883/660,
  35302. bottom: 0/883
  35303. },
  35304. extraAttributes: {
  35305. preyCapacity: {
  35306. name: "Capacity",
  35307. power: 3,
  35308. type: "volume",
  35309. base: math.unit(1000, "people")
  35310. },
  35311. tongueSize: {
  35312. name: "Tongue Size",
  35313. power: 2,
  35314. type: "area",
  35315. base: math.unit(21, "m^2")
  35316. }
  35317. }
  35318. },
  35319. forepaw: {
  35320. height: math.unit(18, "meters"),
  35321. name: "Forepaw",
  35322. image: {
  35323. source: "./media/characters/raylldo/forepaw.svg"
  35324. }
  35325. },
  35326. hindpaw: {
  35327. height: math.unit(23, "meters"),
  35328. name: "Hindpaw",
  35329. image: {
  35330. source: "./media/characters/raylldo/hindpaw.svg"
  35331. }
  35332. },
  35333. genitals: {
  35334. height: math.unit(42, "meters"),
  35335. name: "Genitals",
  35336. image: {
  35337. source: "./media/characters/raylldo/genitals.svg"
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(47.2, "meters"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35351. {
  35352. anthroFront: {
  35353. height: math.unit(9, "feet"),
  35354. weight: math.unit(600, "lb"),
  35355. name: "Anthro (Front)",
  35356. image: {
  35357. source: "./media/characters/glint/anthro-front.svg",
  35358. extra: 1097/1018,
  35359. bottom: 28/1125
  35360. }
  35361. },
  35362. anthroBack: {
  35363. height: math.unit(9, "feet"),
  35364. weight: math.unit(600, "lb"),
  35365. name: "Anthro (Back)",
  35366. image: {
  35367. source: "./media/characters/glint/anthro-back.svg",
  35368. extra: 1154/997,
  35369. bottom: 36/1190
  35370. }
  35371. },
  35372. feral: {
  35373. height: math.unit(11, "feet"),
  35374. weight: math.unit(50000, "lb"),
  35375. name: "Feral",
  35376. image: {
  35377. source: "./media/characters/glint/feral.svg",
  35378. extra: 3035/1585,
  35379. bottom: 1169/4204
  35380. }
  35381. },
  35382. dickAnthro: {
  35383. height: math.unit(0.7, "meters"),
  35384. name: "Dick (Anthro)",
  35385. image: {
  35386. source: "./media/characters/glint/dick-anthro.svg"
  35387. }
  35388. },
  35389. dickFeral: {
  35390. height: math.unit(2.65, "meters"),
  35391. name: "Dick (Feral)",
  35392. image: {
  35393. source: "./media/characters/glint/dick-feral.svg"
  35394. }
  35395. },
  35396. slitHidden: {
  35397. height: math.unit(5.85, "meters"),
  35398. name: "Slit (Hidden)",
  35399. image: {
  35400. source: "./media/characters/glint/slit-hidden.svg"
  35401. }
  35402. },
  35403. slitErect: {
  35404. height: math.unit(5.85, "meters"),
  35405. name: "Slit (Erect)",
  35406. image: {
  35407. source: "./media/characters/glint/slit-erect.svg"
  35408. }
  35409. },
  35410. mawAnthro: {
  35411. height: math.unit(0.63, "meters"),
  35412. name: "Maw (Anthro)",
  35413. image: {
  35414. source: "./media/characters/glint/maw.svg"
  35415. }
  35416. },
  35417. mawFeral: {
  35418. height: math.unit(2.89, "meters"),
  35419. name: "Maw (Feral)",
  35420. image: {
  35421. source: "./media/characters/glint/maw.svg"
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(9, "feet"),
  35429. default: true
  35430. },
  35431. ]
  35432. ))
  35433. characterMakers.push(() => makeCharacter(
  35434. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35435. {
  35436. side: {
  35437. height: math.unit(15, "feet"),
  35438. weight: math.unit(5000, "kg"),
  35439. name: "Side",
  35440. image: {
  35441. source: "./media/characters/kairne/side.svg",
  35442. extra: 979/811,
  35443. bottom: 13/992
  35444. }
  35445. },
  35446. front: {
  35447. height: math.unit(15, "feet"),
  35448. weight: math.unit(5000, "kg"),
  35449. name: "Front",
  35450. image: {
  35451. source: "./media/characters/kairne/front.svg",
  35452. extra: 908/814,
  35453. bottom: 26/934
  35454. }
  35455. },
  35456. sideNsfw: {
  35457. height: math.unit(15, "feet"),
  35458. weight: math.unit(5000, "kg"),
  35459. name: "Side (NSFW)",
  35460. image: {
  35461. source: "./media/characters/kairne/side-nsfw.svg",
  35462. extra: 979/811,
  35463. bottom: 13/992
  35464. }
  35465. },
  35466. frontNsfw: {
  35467. height: math.unit(15, "feet"),
  35468. weight: math.unit(5000, "kg"),
  35469. name: "Front (NSFW)",
  35470. image: {
  35471. source: "./media/characters/kairne/front-nsfw.svg",
  35472. extra: 908/814,
  35473. bottom: 26/934
  35474. }
  35475. },
  35476. dickCaged: {
  35477. height: math.unit(0.65, "meters"),
  35478. name: "Dick-caged",
  35479. image: {
  35480. source: "./media/characters/kairne/dick-caged.svg"
  35481. }
  35482. },
  35483. dick: {
  35484. height: math.unit(0.79, "meters"),
  35485. name: "Dick",
  35486. image: {
  35487. source: "./media/characters/kairne/dick.svg"
  35488. }
  35489. },
  35490. genitals: {
  35491. height: math.unit(1.29, "meters"),
  35492. name: "Genitals",
  35493. image: {
  35494. source: "./media/characters/kairne/genitals.svg"
  35495. }
  35496. },
  35497. maw: {
  35498. height: math.unit(1.73, "meters"),
  35499. name: "Maw",
  35500. image: {
  35501. source: "./media/characters/kairne/maw.svg"
  35502. }
  35503. },
  35504. },
  35505. [
  35506. {
  35507. name: "Normal",
  35508. height: math.unit(15, "feet"),
  35509. default: true
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(5 + 8/12, "feet"),
  35518. weight: math.unit(139, "lb"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/biscuit-jackal/front.svg",
  35522. extra: 2106/1961,
  35523. bottom: 58/2164
  35524. }
  35525. },
  35526. back: {
  35527. height: math.unit(5 + 8/12, "feet"),
  35528. weight: math.unit(139, "lb"),
  35529. name: "Back",
  35530. image: {
  35531. source: "./media/characters/biscuit-jackal/back.svg",
  35532. extra: 2132/1976,
  35533. bottom: 57/2189
  35534. }
  35535. },
  35536. werejackal: {
  35537. height: math.unit(6 + 3/12, "feet"),
  35538. weight: math.unit(188, "lb"),
  35539. name: "Werejackal",
  35540. image: {
  35541. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35542. extra: 2373/2178,
  35543. bottom: 53/2426
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(5 + 8/12, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(140, "cm"),
  35560. weight: math.unit(45, "kg"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/tayra-white/front.svg",
  35564. extra: 2229/2192,
  35565. bottom: 75/2304
  35566. }
  35567. },
  35568. },
  35569. [
  35570. {
  35571. name: "Normal",
  35572. height: math.unit(140, "cm"),
  35573. default: true
  35574. },
  35575. ]
  35576. ))
  35577. characterMakers.push(() => makeCharacter(
  35578. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35579. {
  35580. front: {
  35581. height: math.unit(4 + 5/12, "feet"),
  35582. name: "Front",
  35583. image: {
  35584. source: "./media/characters/scoop/front.svg",
  35585. extra: 1257/1136,
  35586. bottom: 69/1326
  35587. }
  35588. },
  35589. back: {
  35590. height: math.unit(4 + 5/12, "feet"),
  35591. name: "Back",
  35592. image: {
  35593. source: "./media/characters/scoop/back.svg",
  35594. extra: 1321/1152,
  35595. bottom: 32/1353
  35596. }
  35597. },
  35598. maw: {
  35599. height: math.unit(0.68, "feet"),
  35600. name: "Maw",
  35601. image: {
  35602. source: "./media/characters/scoop/maw.svg"
  35603. }
  35604. },
  35605. },
  35606. [
  35607. {
  35608. name: "Really Small",
  35609. height: math.unit(1, "mm")
  35610. },
  35611. {
  35612. name: "Micro",
  35613. height: math.unit(1, "inch")
  35614. },
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(4 + 5/12, "feet"),
  35618. default: true
  35619. },
  35620. {
  35621. name: "Macro",
  35622. height: math.unit(200, "feet")
  35623. },
  35624. {
  35625. name: "Megamacro",
  35626. height: math.unit(3240, "feet")
  35627. },
  35628. {
  35629. name: "Teramacro",
  35630. height: math.unit(2500, "miles")
  35631. },
  35632. ]
  35633. ))
  35634. characterMakers.push(() => makeCharacter(
  35635. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35636. {
  35637. front: {
  35638. height: math.unit(15 + 7/12, "feet"),
  35639. weight: math.unit(1150, "tons"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/saphinara/front.svg",
  35643. extra: 1837/1643,
  35644. bottom: 84/1921
  35645. },
  35646. form: "normal",
  35647. default: true
  35648. },
  35649. side: {
  35650. height: math.unit(15 + 7/12, "feet"),
  35651. weight: math.unit(1150, "tons"),
  35652. name: "Side",
  35653. image: {
  35654. source: "./media/characters/saphinara/side.svg",
  35655. extra: 605/547,
  35656. bottom: 6/611
  35657. },
  35658. form: "normal"
  35659. },
  35660. back: {
  35661. height: math.unit(15 + 7/12, "feet"),
  35662. weight: math.unit(1150, "tons"),
  35663. name: "Back",
  35664. image: {
  35665. source: "./media/characters/saphinara/back.svg",
  35666. extra: 591/531,
  35667. bottom: 13/604
  35668. },
  35669. form: "normal"
  35670. },
  35671. frontTail: {
  35672. height: math.unit(15 + 7/12, "feet"),
  35673. weight: math.unit(1150, "tons"),
  35674. name: "Front (Full Tail)",
  35675. image: {
  35676. source: "./media/characters/saphinara/front-tail.svg",
  35677. extra: 2256/1630,
  35678. bottom: 261/2517
  35679. },
  35680. form: "normal"
  35681. },
  35682. insides: {
  35683. height: math.unit(11.92, "feet"),
  35684. name: "Insides",
  35685. image: {
  35686. source: "./media/characters/saphinara/insides.svg"
  35687. },
  35688. form: "normal"
  35689. },
  35690. head: {
  35691. height: math.unit(4.17, "feet"),
  35692. name: "Head",
  35693. image: {
  35694. source: "./media/characters/saphinara/head.svg"
  35695. },
  35696. form: "normal"
  35697. },
  35698. tongue: {
  35699. height: math.unit(4.60, "feet"),
  35700. name: "Tongue",
  35701. image: {
  35702. source: "./media/characters/saphinara/tongue.svg"
  35703. },
  35704. form: "normal"
  35705. },
  35706. headEnraged: {
  35707. height: math.unit(5.55, "feet"),
  35708. name: "Head (Enraged)",
  35709. image: {
  35710. source: "./media/characters/saphinara/head-enraged.svg"
  35711. },
  35712. form: "normal"
  35713. },
  35714. wings: {
  35715. height: math.unit(11.95, "feet"),
  35716. name: "Wings",
  35717. image: {
  35718. source: "./media/characters/saphinara/wings.svg"
  35719. },
  35720. form: "normal"
  35721. },
  35722. feathers: {
  35723. height: math.unit(8.92, "feet"),
  35724. name: "Feathers",
  35725. image: {
  35726. source: "./media/characters/saphinara/feathers.svg"
  35727. },
  35728. form: "normal"
  35729. },
  35730. shackles: {
  35731. height: math.unit(2, "feet"),
  35732. name: "Shackles",
  35733. image: {
  35734. source: "./media/characters/saphinara/shackles.svg"
  35735. },
  35736. form: "normal"
  35737. },
  35738. eyes: {
  35739. height: math.unit(1.331, "feet"),
  35740. name: "Eyes",
  35741. image: {
  35742. source: "./media/characters/saphinara/eyes.svg"
  35743. },
  35744. form: "normal"
  35745. },
  35746. eyesEnraged: {
  35747. height: math.unit(1.331, "feet"),
  35748. name: "Eyes (Enraged)",
  35749. image: {
  35750. source: "./media/characters/saphinara/eyes-enraged.svg"
  35751. },
  35752. form: "normal"
  35753. },
  35754. trueFormSide: {
  35755. height: math.unit(200, "feet"),
  35756. weight: math.unit(1e7, "tons"),
  35757. name: "Side",
  35758. image: {
  35759. source: "./media/characters/saphinara/true-form-side.svg",
  35760. extra: 1399/770,
  35761. bottom: 97/1496
  35762. },
  35763. form: "true-form",
  35764. default: true
  35765. },
  35766. trueFormMaw: {
  35767. height: math.unit(71.5, "feet"),
  35768. name: "Maw",
  35769. image: {
  35770. source: "./media/characters/saphinara/true-form-maw.svg",
  35771. extra: 2302/1453,
  35772. bottom: 0/2302
  35773. },
  35774. form: "true-form"
  35775. },
  35776. meowberusSide: {
  35777. height: math.unit(75, "feet"),
  35778. weight: math.unit(180000, "kg"),
  35779. preyCapacity: math.unit(50000, "people"),
  35780. name: "Side",
  35781. image: {
  35782. source: "./media/characters/saphinara/meowberus-side.svg",
  35783. extra: 1400/711,
  35784. bottom: 126/1526
  35785. },
  35786. form: "meowberus",
  35787. extraAttributes: {
  35788. "pawArea": {
  35789. name: "Paw Size",
  35790. power: 2,
  35791. type: "area",
  35792. base: math.unit(35, "m^2")
  35793. }
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(15 + 7/12, "feet"),
  35801. default: true,
  35802. form: "normal"
  35803. },
  35804. {
  35805. name: "Angry",
  35806. height: math.unit(30 + 6/12, "feet"),
  35807. form: "normal"
  35808. },
  35809. {
  35810. name: "Enraged",
  35811. height: math.unit(102 + 1/12, "feet"),
  35812. form: "normal"
  35813. },
  35814. {
  35815. name: "True",
  35816. height: math.unit(200, "feet"),
  35817. default: true,
  35818. form: "true-form"
  35819. },
  35820. {
  35821. name: "Normal",
  35822. height: math.unit(75, "feet"),
  35823. default: true,
  35824. form: "meowberus"
  35825. },
  35826. ],
  35827. {
  35828. "normal": {
  35829. name: "Normal",
  35830. default: true
  35831. },
  35832. "true-form": {
  35833. name: "True Form"
  35834. },
  35835. "meowberus": {
  35836. name: "Meowberus",
  35837. },
  35838. }
  35839. ))
  35840. characterMakers.push(() => makeCharacter(
  35841. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35842. {
  35843. front: {
  35844. height: math.unit(6 + 8/12, "feet"),
  35845. weight: math.unit(300, "lb"),
  35846. name: "Front",
  35847. image: {
  35848. source: "./media/characters/jrain/front.svg",
  35849. extra: 3039/2865,
  35850. bottom: 399/3438
  35851. }
  35852. },
  35853. back: {
  35854. height: math.unit(6 + 8/12, "feet"),
  35855. weight: math.unit(300, "lb"),
  35856. name: "Back",
  35857. image: {
  35858. source: "./media/characters/jrain/back.svg",
  35859. extra: 3089/2938,
  35860. bottom: 172/3261
  35861. }
  35862. },
  35863. head: {
  35864. height: math.unit(2.14, "feet"),
  35865. name: "Head",
  35866. image: {
  35867. source: "./media/characters/jrain/head.svg"
  35868. }
  35869. },
  35870. maw: {
  35871. height: math.unit(1.77, "feet"),
  35872. name: "Maw",
  35873. image: {
  35874. source: "./media/characters/jrain/maw.svg"
  35875. }
  35876. },
  35877. leftHand: {
  35878. height: math.unit(1.1, "feet"),
  35879. name: "Left Hand",
  35880. image: {
  35881. source: "./media/characters/jrain/left-hand.svg"
  35882. }
  35883. },
  35884. rightHand: {
  35885. height: math.unit(1.1, "feet"),
  35886. name: "Right Hand",
  35887. image: {
  35888. source: "./media/characters/jrain/right-hand.svg"
  35889. }
  35890. },
  35891. eye: {
  35892. height: math.unit(0.35, "feet"),
  35893. name: "Eye",
  35894. image: {
  35895. source: "./media/characters/jrain/eye.svg"
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Normal",
  35902. height: math.unit(6 + 8/12, "feet"),
  35903. default: true
  35904. },
  35905. {
  35906. name: "Casually Large",
  35907. height: math.unit(25, "feet")
  35908. },
  35909. {
  35910. name: "Giant",
  35911. height: math.unit(100, "feet")
  35912. },
  35913. {
  35914. name: "Kaiju",
  35915. height: math.unit(300, "feet")
  35916. },
  35917. ]
  35918. ))
  35919. characterMakers.push(() => makeCharacter(
  35920. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35921. {
  35922. dragon: {
  35923. height: math.unit(5, "meters"),
  35924. name: "Dragon",
  35925. image: {
  35926. source: "./media/characters/sabrina/dragon.svg",
  35927. extra: 3670 / 2365,
  35928. bottom: 333 / 4003
  35929. }
  35930. },
  35931. gryphon: {
  35932. height: math.unit(3, "meters"),
  35933. name: "Gryphon",
  35934. image: {
  35935. source: "./media/characters/sabrina/gryphon.svg",
  35936. extra: 1576 / 945,
  35937. bottom: 71 / 1647
  35938. }
  35939. },
  35940. snake: {
  35941. height: math.unit(12, "meters"),
  35942. name: "Snake",
  35943. image: {
  35944. source: "./media/characters/sabrina/snake.svg",
  35945. extra: 1758 / 1320,
  35946. bottom: 186 / 1944
  35947. }
  35948. },
  35949. collar: {
  35950. height: math.unit(1.86, "meters"),
  35951. name: "Collar",
  35952. image: {
  35953. source: "./media/characters/sabrina/collar.svg"
  35954. }
  35955. },
  35956. eye: {
  35957. height: math.unit(0.53, "meters"),
  35958. name: "Eye",
  35959. image: {
  35960. source: "./media/characters/sabrina/eye.svg"
  35961. }
  35962. },
  35963. foot: {
  35964. height: math.unit(1.86, "meters"),
  35965. name: "Foot",
  35966. image: {
  35967. source: "./media/characters/sabrina/foot.svg"
  35968. }
  35969. },
  35970. hand: {
  35971. height: math.unit(1.32, "meters"),
  35972. name: "Hand",
  35973. image: {
  35974. source: "./media/characters/sabrina/hand.svg"
  35975. }
  35976. },
  35977. head: {
  35978. height: math.unit(2.44, "meters"),
  35979. name: "Head",
  35980. image: {
  35981. source: "./media/characters/sabrina/head.svg"
  35982. }
  35983. },
  35984. headAngry: {
  35985. height: math.unit(2.44, "meters"),
  35986. name: "Head (Angry))",
  35987. image: {
  35988. source: "./media/characters/sabrina/head-angry.svg"
  35989. }
  35990. },
  35991. maw: {
  35992. height: math.unit(1.65, "meters"),
  35993. name: "Maw",
  35994. image: {
  35995. source: "./media/characters/sabrina/maw.svg"
  35996. }
  35997. },
  35998. spikes: {
  35999. height: math.unit(1.69, "meters"),
  36000. name: "Spikes",
  36001. image: {
  36002. source: "./media/characters/sabrina/spikes.svg"
  36003. }
  36004. },
  36005. stomach: {
  36006. height: math.unit(1.15, "meters"),
  36007. name: "Stomach",
  36008. image: {
  36009. source: "./media/characters/sabrina/stomach.svg"
  36010. }
  36011. },
  36012. tongue: {
  36013. height: math.unit(1.27, "meters"),
  36014. name: "Tongue",
  36015. image: {
  36016. source: "./media/characters/sabrina/tongue.svg"
  36017. }
  36018. },
  36019. wingDorsal: {
  36020. height: math.unit(4.85, "meters"),
  36021. name: "Wing (Dorsal)",
  36022. image: {
  36023. source: "./media/characters/sabrina/wing-dorsal.svg"
  36024. }
  36025. },
  36026. wingVentral: {
  36027. height: math.unit(4.85, "meters"),
  36028. name: "Wing (Ventral)",
  36029. image: {
  36030. source: "./media/characters/sabrina/wing-ventral.svg"
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Normal",
  36037. height: math.unit(5, "meters"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36044. {
  36045. frontMaid: {
  36046. height: math.unit(5 + 5/12, "feet"),
  36047. weight: math.unit(130, "lb"),
  36048. name: "Front (Maid)",
  36049. image: {
  36050. source: "./media/characters/midnight-tales/front-maid.svg",
  36051. extra: 489/454,
  36052. bottom: 61/550
  36053. }
  36054. },
  36055. frontFormal: {
  36056. height: math.unit(5 + 5/12, "feet"),
  36057. weight: math.unit(130, "lb"),
  36058. name: "Front (Formal)",
  36059. image: {
  36060. source: "./media/characters/midnight-tales/front-formal.svg",
  36061. extra: 489/454,
  36062. bottom: 61/550
  36063. }
  36064. },
  36065. back: {
  36066. height: math.unit(5 + 5/12, "feet"),
  36067. weight: math.unit(130, "lb"),
  36068. name: "Back",
  36069. image: {
  36070. source: "./media/characters/midnight-tales/back.svg",
  36071. extra: 498/456,
  36072. bottom: 33/531
  36073. }
  36074. },
  36075. frontBeast: {
  36076. height: math.unit(40, "feet"),
  36077. weight: math.unit(64000, "lb"),
  36078. name: "Front (Beast)",
  36079. image: {
  36080. source: "./media/characters/midnight-tales/front-beast.svg",
  36081. extra: 927/860,
  36082. bottom: 53/980
  36083. }
  36084. },
  36085. backBeast: {
  36086. height: math.unit(40, "feet"),
  36087. weight: math.unit(64000, "lb"),
  36088. name: "Back (Beast)",
  36089. image: {
  36090. source: "./media/characters/midnight-tales/back-beast.svg",
  36091. extra: 929/855,
  36092. bottom: 16/945
  36093. }
  36094. },
  36095. footBeast: {
  36096. height: math.unit(6.7, "feet"),
  36097. name: "Foot (Beast)",
  36098. image: {
  36099. source: "./media/characters/midnight-tales/foot-beast.svg"
  36100. }
  36101. },
  36102. headBeast: {
  36103. height: math.unit(8, "feet"),
  36104. name: "Head (Beast)",
  36105. image: {
  36106. source: "./media/characters/midnight-tales/head-beast.svg"
  36107. }
  36108. },
  36109. },
  36110. [
  36111. {
  36112. name: "Normal",
  36113. height: math.unit(5 + 5 / 12, "feet"),
  36114. default: true
  36115. },
  36116. {
  36117. name: "Macro",
  36118. height: math.unit(25, "feet")
  36119. },
  36120. ]
  36121. ))
  36122. characterMakers.push(() => makeCharacter(
  36123. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36124. {
  36125. front: {
  36126. height: math.unit(5 + 10/12, "feet"),
  36127. name: "Front",
  36128. image: {
  36129. source: "./media/characters/argon/front.svg",
  36130. extra: 2009/1935,
  36131. bottom: 118/2127
  36132. }
  36133. },
  36134. back: {
  36135. height: math.unit(5 + 10/12, "feet"),
  36136. name: "Back",
  36137. image: {
  36138. source: "./media/characters/argon/back.svg",
  36139. extra: 2047/1992,
  36140. bottom: 20/2067
  36141. }
  36142. },
  36143. frontDressed: {
  36144. height: math.unit(5 + 10/12, "feet"),
  36145. name: "Front (Dressed)",
  36146. image: {
  36147. source: "./media/characters/argon/front-dressed.svg",
  36148. extra: 2009/1935,
  36149. bottom: 118/2127
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Normal",
  36156. height: math.unit(5 + 10/12, "feet"),
  36157. default: true
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(8 + 6/12, "feet"),
  36166. weight: math.unit(1150, "lb"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/kichi/front.svg",
  36170. extra: 1267/1164,
  36171. bottom: 61/1328
  36172. }
  36173. },
  36174. back: {
  36175. height: math.unit(8 + 6/12, "feet"),
  36176. weight: math.unit(1150, "lb"),
  36177. name: "Back",
  36178. image: {
  36179. source: "./media/characters/kichi/back.svg",
  36180. extra: 1273/1166,
  36181. bottom: 33/1306
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Normal",
  36188. height: math.unit(8 + 6/12, "feet"),
  36189. default: true
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(6, "feet"),
  36198. weight: math.unit(210, "lb"),
  36199. name: "Front",
  36200. image: {
  36201. source: "./media/characters/manetel-greyscale/front.svg",
  36202. extra: 350/312,
  36203. bottom: 8/358
  36204. }
  36205. },
  36206. },
  36207. [
  36208. {
  36209. name: "Micro",
  36210. height: math.unit(2, "inches")
  36211. },
  36212. {
  36213. name: "Normal",
  36214. height: math.unit(6, "feet"),
  36215. default: true
  36216. },
  36217. {
  36218. name: "Minimacro",
  36219. height: math.unit(17, "feet")
  36220. },
  36221. {
  36222. name: "Macro",
  36223. height: math.unit(117, "feet")
  36224. },
  36225. ]
  36226. ))
  36227. characterMakers.push(() => makeCharacter(
  36228. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36229. {
  36230. side: {
  36231. height: math.unit(5 + 1/12, "feet"),
  36232. weight: math.unit(418, "lb"),
  36233. name: "Side",
  36234. image: {
  36235. source: "./media/characters/softpurr/side.svg",
  36236. extra: 1993/1945,
  36237. bottom: 134/2127
  36238. }
  36239. },
  36240. front: {
  36241. height: math.unit(5 + 1/12, "feet"),
  36242. weight: math.unit(418, "lb"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/softpurr/front.svg",
  36246. extra: 1950/1856,
  36247. bottom: 174/2124
  36248. }
  36249. },
  36250. paw: {
  36251. height: math.unit(1, "feet"),
  36252. name: "Paw",
  36253. image: {
  36254. source: "./media/characters/softpurr/paw.svg"
  36255. }
  36256. },
  36257. },
  36258. [
  36259. {
  36260. name: "Normal",
  36261. height: math.unit(5 + 1/12, "feet"),
  36262. default: true
  36263. },
  36264. ]
  36265. ))
  36266. characterMakers.push(() => makeCharacter(
  36267. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36268. {
  36269. front: {
  36270. height: math.unit(260, "meters"),
  36271. name: "Front",
  36272. image: {
  36273. source: "./media/characters/anahita/front.svg",
  36274. extra: 665/635,
  36275. bottom: 89/754
  36276. }
  36277. },
  36278. },
  36279. [
  36280. {
  36281. name: "Macro",
  36282. height: math.unit(260, "meters"),
  36283. default: true
  36284. },
  36285. ]
  36286. ))
  36287. characterMakers.push(() => makeCharacter(
  36288. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36289. {
  36290. front: {
  36291. height: math.unit(4 + 10/12, "feet"),
  36292. weight: math.unit(160, "lb"),
  36293. name: "Front",
  36294. image: {
  36295. source: "./media/characters/chip-mouse/front.svg",
  36296. extra: 3528/3408,
  36297. bottom: 0/3528
  36298. }
  36299. },
  36300. frontNsfw: {
  36301. height: math.unit(4 + 10/12, "feet"),
  36302. weight: math.unit(160, "lb"),
  36303. name: "Front (NSFW)",
  36304. image: {
  36305. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36306. extra: 3528/3408,
  36307. bottom: 0/3528
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(4 + 10/12, "feet"),
  36315. default: true
  36316. },
  36317. ]
  36318. ))
  36319. characterMakers.push(() => makeCharacter(
  36320. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36321. {
  36322. side: {
  36323. height: math.unit(10, "feet"),
  36324. weight: math.unit(14000, "lb"),
  36325. name: "Side",
  36326. image: {
  36327. source: "./media/characters/kremm/side.svg",
  36328. extra: 1390/1053,
  36329. bottom: 90/1480
  36330. }
  36331. },
  36332. gut: {
  36333. height: math.unit(5.8, "feet"),
  36334. name: "Gut",
  36335. image: {
  36336. source: "./media/characters/kremm/gut.svg"
  36337. }
  36338. },
  36339. ass: {
  36340. height: math.unit(6.1, "feet"),
  36341. name: "Ass",
  36342. image: {
  36343. source: "./media/characters/kremm/ass.svg"
  36344. }
  36345. },
  36346. jaws: {
  36347. height: math.unit(2.2, "feet"),
  36348. name: "Jaws",
  36349. image: {
  36350. source: "./media/characters/kremm/jaws.svg"
  36351. }
  36352. },
  36353. dick: {
  36354. height: math.unit(4.26, "feet"),
  36355. name: "Dick",
  36356. image: {
  36357. source: "./media/characters/kremm/dick.svg"
  36358. }
  36359. },
  36360. },
  36361. [
  36362. {
  36363. name: "Normal",
  36364. height: math.unit(10, "feet"),
  36365. default: true
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36371. {
  36372. front: {
  36373. height: math.unit(30, "stories"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/kai/front.svg",
  36377. extra: 1892/1718,
  36378. bottom: 162/2054
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Macro",
  36385. height: math.unit(30, "stories"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(6 + 4/12, "feet"),
  36395. weight: math.unit(145, "lb"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/sykes/front.svg",
  36399. extra: 1321 / 1187,
  36400. bottom: 66 / 1387
  36401. }
  36402. },
  36403. back: {
  36404. height: math.unit(6 + 4/12, "feet"),
  36405. weight: math.unit(145, "lb"),
  36406. name: "Back",
  36407. image: {
  36408. source: "./media/characters/sykes/back.svg",
  36409. extra: 1326/1181,
  36410. bottom: 31/1357
  36411. }
  36412. },
  36413. traditionalOutfit: {
  36414. height: math.unit(6 + 4/12, "feet"),
  36415. weight: math.unit(145, "lb"),
  36416. name: "Traditional Outfit",
  36417. image: {
  36418. source: "./media/characters/sykes/traditional-outfit.svg",
  36419. extra: 1321 / 1187,
  36420. bottom: 66 / 1387
  36421. }
  36422. },
  36423. adventureOutfit: {
  36424. height: math.unit(6 + 4/12, "feet"),
  36425. weight: math.unit(145, "lb"),
  36426. name: "Adventure Outfit",
  36427. image: {
  36428. source: "./media/characters/sykes/adventure-outfit.svg",
  36429. extra: 1321 / 1187,
  36430. bottom: 66 / 1387
  36431. }
  36432. },
  36433. handLeft: {
  36434. height: math.unit(0.9, "feet"),
  36435. name: "Hand (Left)",
  36436. image: {
  36437. source: "./media/characters/sykes/hand-left.svg"
  36438. }
  36439. },
  36440. handRight: {
  36441. height: math.unit(0.839, "feet"),
  36442. name: "Hand (Right)",
  36443. image: {
  36444. source: "./media/characters/sykes/hand-right.svg"
  36445. }
  36446. },
  36447. leftFoot: {
  36448. height: math.unit(1.2, "feet"),
  36449. name: "Foot (Left)",
  36450. image: {
  36451. source: "./media/characters/sykes/foot-left.svg"
  36452. }
  36453. },
  36454. rightFoot: {
  36455. height: math.unit(1.2, "feet"),
  36456. name: "Foot (Right)",
  36457. image: {
  36458. source: "./media/characters/sykes/foot-right.svg"
  36459. }
  36460. },
  36461. maw: {
  36462. height: math.unit(1.93, "feet"),
  36463. name: "Maw",
  36464. image: {
  36465. source: "./media/characters/sykes/maw.svg"
  36466. }
  36467. },
  36468. teeth: {
  36469. height: math.unit(0.51, "feet"),
  36470. name: "Teeth",
  36471. image: {
  36472. source: "./media/characters/sykes/teeth.svg"
  36473. }
  36474. },
  36475. tongue: {
  36476. height: math.unit(2.13, "feet"),
  36477. name: "Tongue",
  36478. image: {
  36479. source: "./media/characters/sykes/tongue.svg"
  36480. }
  36481. },
  36482. uvula: {
  36483. height: math.unit(0.16, "feet"),
  36484. name: "Uvula",
  36485. image: {
  36486. source: "./media/characters/sykes/uvula.svg"
  36487. }
  36488. },
  36489. collar: {
  36490. height: math.unit(0.287, "feet"),
  36491. name: "Collar",
  36492. image: {
  36493. source: "./media/characters/sykes/collar.svg"
  36494. }
  36495. },
  36496. tail: {
  36497. height: math.unit(3.8, "feet"),
  36498. name: "Tail",
  36499. image: {
  36500. source: "./media/characters/sykes/tail.svg"
  36501. }
  36502. },
  36503. },
  36504. [
  36505. {
  36506. name: "Shrunken",
  36507. height: math.unit(5, "inches")
  36508. },
  36509. {
  36510. name: "Normal",
  36511. height: math.unit(6 + 4 / 12, "feet"),
  36512. default: true
  36513. },
  36514. {
  36515. name: "Big",
  36516. height: math.unit(15, "feet")
  36517. },
  36518. ]
  36519. ))
  36520. characterMakers.push(() => makeCharacter(
  36521. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36522. {
  36523. front: {
  36524. height: math.unit(5 + 8/12, "feet"),
  36525. weight: math.unit(190, "lb"),
  36526. name: "Front",
  36527. image: {
  36528. source: "./media/characters/oven-otter/front.svg",
  36529. extra: 1809/1740,
  36530. bottom: 181/1990
  36531. }
  36532. },
  36533. back: {
  36534. height: math.unit(5 + 8/12, "feet"),
  36535. weight: math.unit(190, "lb"),
  36536. name: "Back",
  36537. image: {
  36538. source: "./media/characters/oven-otter/back.svg",
  36539. extra: 1709/1635,
  36540. bottom: 118/1827
  36541. }
  36542. },
  36543. hand: {
  36544. height: math.unit(1.07, "feet"),
  36545. name: "Hand",
  36546. image: {
  36547. source: "./media/characters/oven-otter/hand.svg"
  36548. }
  36549. },
  36550. beans: {
  36551. height: math.unit(1.74, "feet"),
  36552. name: "Beans",
  36553. image: {
  36554. source: "./media/characters/oven-otter/beans.svg"
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Micro",
  36561. height: math.unit(0.5, "inches")
  36562. },
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(5 + 8/12, "feet"),
  36566. default: true
  36567. },
  36568. {
  36569. name: "Macro",
  36570. height: math.unit(250, "feet")
  36571. },
  36572. {
  36573. name: "Really High",
  36574. height: math.unit(420, "feet")
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(5, "meters"),
  36583. weight: math.unit(292000000000000, "kg"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/devourer/front.svg",
  36587. extra: 1800/1733,
  36588. bottom: 211/2011
  36589. }
  36590. },
  36591. maw: {
  36592. height: math.unit(1.1, "meter"),
  36593. name: "Maw",
  36594. image: {
  36595. source: "./media/characters/devourer/maw.svg"
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Small",
  36602. height: math.unit(3, "meters")
  36603. },
  36604. {
  36605. name: "Large",
  36606. height: math.unit(5, "meters"),
  36607. default: true
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36613. {
  36614. front: {
  36615. height: math.unit(6, "feet"),
  36616. weight: math.unit(400, "lb"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/ellarby/front.svg",
  36620. extra: 1909/1763,
  36621. bottom: 80/1989
  36622. }
  36623. },
  36624. back: {
  36625. height: math.unit(6, "feet"),
  36626. weight: math.unit(400, "lb"),
  36627. name: "Back",
  36628. image: {
  36629. source: "./media/characters/ellarby/back.svg",
  36630. extra: 1914/1784,
  36631. bottom: 172/2086
  36632. }
  36633. },
  36634. },
  36635. [
  36636. {
  36637. name: "Mischief",
  36638. height: math.unit(18, "inches")
  36639. },
  36640. {
  36641. name: "Trouble",
  36642. height: math.unit(12, "feet")
  36643. },
  36644. {
  36645. name: "Havoc",
  36646. height: math.unit(200, "feet"),
  36647. default: true
  36648. },
  36649. {
  36650. name: "Pandemonium",
  36651. height: math.unit(1, "mile")
  36652. },
  36653. {
  36654. name: "Catastrophe",
  36655. height: math.unit(100, "miles")
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36661. {
  36662. front: {
  36663. height: math.unit(4.7, "meters"),
  36664. weight: math.unit(6500, "kg"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/vex/front.svg",
  36668. extra: 1288/1140,
  36669. bottom: 100/1388
  36670. }
  36671. },
  36672. },
  36673. [
  36674. {
  36675. name: "Normal",
  36676. height: math.unit(4.7, "meters"),
  36677. default: true
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36683. {
  36684. normal: {
  36685. height: math.unit(6, "feet"),
  36686. weight: math.unit(350, "lb"),
  36687. name: "Normal",
  36688. image: {
  36689. source: "./media/characters/teshy/normal.svg",
  36690. extra: 1795/1735,
  36691. bottom: 16/1811
  36692. }
  36693. },
  36694. monsterFront: {
  36695. height: math.unit(12, "feet"),
  36696. weight: math.unit(4700, "lb"),
  36697. name: "Monster (Front)",
  36698. image: {
  36699. source: "./media/characters/teshy/monster-front.svg",
  36700. extra: 2042/2034,
  36701. bottom: 128/2170
  36702. }
  36703. },
  36704. monsterSide: {
  36705. height: math.unit(12, "feet"),
  36706. weight: math.unit(4700, "lb"),
  36707. name: "Monster (Side)",
  36708. image: {
  36709. source: "./media/characters/teshy/monster-side.svg",
  36710. extra: 2067/2056,
  36711. bottom: 70/2137
  36712. }
  36713. },
  36714. monsterBack: {
  36715. height: math.unit(12, "feet"),
  36716. weight: math.unit(4700, "lb"),
  36717. name: "Monster (Back)",
  36718. image: {
  36719. source: "./media/characters/teshy/monster-back.svg",
  36720. extra: 1921/1914,
  36721. bottom: 171/2092
  36722. }
  36723. },
  36724. },
  36725. [
  36726. {
  36727. name: "Normal",
  36728. height: math.unit(6, "feet"),
  36729. default: true
  36730. },
  36731. ]
  36732. ))
  36733. characterMakers.push(() => makeCharacter(
  36734. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36735. {
  36736. front: {
  36737. height: math.unit(6, "feet"),
  36738. name: "Front",
  36739. image: {
  36740. source: "./media/characters/ramey/front.svg",
  36741. extra: 790/787,
  36742. bottom: 27/817
  36743. }
  36744. },
  36745. },
  36746. [
  36747. {
  36748. name: "Normal",
  36749. height: math.unit(6, "feet"),
  36750. default: true
  36751. },
  36752. ]
  36753. ))
  36754. characterMakers.push(() => makeCharacter(
  36755. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36756. {
  36757. front: {
  36758. height: math.unit(5 + 5/12, "feet"),
  36759. weight: math.unit(120, "lb"),
  36760. name: "Front",
  36761. image: {
  36762. source: "./media/characters/phirae/front.svg",
  36763. extra: 2491/2436,
  36764. bottom: 38/2529
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(5 + 5/12, "feet"),
  36772. default: true
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36778. {
  36779. front: {
  36780. height: math.unit(5 + 3/12, "feet"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/stagglas/front.svg",
  36784. extra: 962/882,
  36785. bottom: 53/1015
  36786. }
  36787. },
  36788. feral: {
  36789. height: math.unit(335, "cm"),
  36790. name: "Feral",
  36791. image: {
  36792. source: "./media/characters/stagglas/feral.svg",
  36793. extra: 1732/1090,
  36794. bottom: 48/1780
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(5 + 3/12, "feet"),
  36802. default: true
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(5 + 4/12, "feet"),
  36811. weight: math.unit(145, "lb"),
  36812. name: "Front",
  36813. image: {
  36814. source: "./media/characters/starra/front.svg",
  36815. extra: 1790/1691,
  36816. bottom: 91/1881
  36817. }
  36818. },
  36819. },
  36820. [
  36821. {
  36822. name: "Normal",
  36823. height: math.unit(5 + 4/12, "feet"),
  36824. default: true
  36825. },
  36826. ]
  36827. ))
  36828. characterMakers.push(() => makeCharacter(
  36829. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36830. {
  36831. front: {
  36832. height: math.unit(3.5, "meters"),
  36833. name: "Front",
  36834. image: {
  36835. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36836. extra: 1248/972,
  36837. bottom: 38/1286
  36838. }
  36839. },
  36840. },
  36841. [
  36842. {
  36843. name: "Normal",
  36844. height: math.unit(3.5, "meters"),
  36845. default: true
  36846. },
  36847. ]
  36848. ))
  36849. characterMakers.push(() => makeCharacter(
  36850. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36851. {
  36852. side: {
  36853. height: math.unit(8 + 2/12, "feet"),
  36854. weight: math.unit(1240, "lb"),
  36855. name: "Side",
  36856. image: {
  36857. source: "./media/characters/mika-valentine/side.svg",
  36858. extra: 2670/2501,
  36859. bottom: 250/2920
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(8 + 2/12, "feet"),
  36867. default: true
  36868. },
  36869. ]
  36870. ))
  36871. characterMakers.push(() => makeCharacter(
  36872. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36873. {
  36874. front: {
  36875. height: math.unit(7 + 2/12, "feet"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/xoltol/front.svg",
  36879. extra: 2212/2124,
  36880. bottom: 84/2296
  36881. }
  36882. },
  36883. side: {
  36884. height: math.unit(7 + 2/12, "feet"),
  36885. name: "Side",
  36886. image: {
  36887. source: "./media/characters/xoltol/side.svg",
  36888. extra: 2273/2197,
  36889. bottom: 26/2299
  36890. }
  36891. },
  36892. hand: {
  36893. height: math.unit(2.5, "feet"),
  36894. name: "Hand",
  36895. image: {
  36896. source: "./media/characters/xoltol/hand.svg"
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Small-ish",
  36903. height: math.unit(5 + 11/12, "feet")
  36904. },
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(7 + 2/12, "feet")
  36908. },
  36909. {
  36910. name: "\"Macro\"",
  36911. height: math.unit(14 + 9/12, "feet"),
  36912. default: true
  36913. },
  36914. {
  36915. name: "Alternate Height",
  36916. height: math.unit(20, "feet")
  36917. },
  36918. {
  36919. name: "Actually Macro",
  36920. height: math.unit(100, "feet")
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(5 + 2/12, "feet"),
  36929. weight: math.unit(75, "kg"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/kotetsu-redwood/front.svg",
  36933. extra: 1053/942,
  36934. bottom: 60/1113
  36935. }
  36936. },
  36937. },
  36938. [
  36939. {
  36940. name: "Normal",
  36941. height: math.unit(5 + 2/12, "feet"),
  36942. default: true
  36943. },
  36944. ]
  36945. ))
  36946. characterMakers.push(() => makeCharacter(
  36947. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36948. {
  36949. front: {
  36950. height: math.unit(2.4, "meters"),
  36951. weight: math.unit(125, "kg"),
  36952. name: "Front",
  36953. image: {
  36954. source: "./media/characters/lilith/front.svg",
  36955. extra: 1590/1513,
  36956. bottom: 203/1793
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Humanoid",
  36963. height: math.unit(2.4, "meters")
  36964. },
  36965. {
  36966. name: "Normal",
  36967. height: math.unit(6, "meters"),
  36968. default: true
  36969. },
  36970. {
  36971. name: "Largest",
  36972. height: math.unit(55, "meters")
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36978. {
  36979. front: {
  36980. height: math.unit(8 + 4/12, "feet"),
  36981. weight: math.unit(535, "lb"),
  36982. name: "Front",
  36983. image: {
  36984. source: "./media/characters/beh'kah-bolger/front.svg",
  36985. extra: 1660/1603,
  36986. bottom: 37/1697
  36987. }
  36988. },
  36989. },
  36990. [
  36991. {
  36992. name: "Normal",
  36993. height: math.unit(8 + 4/12, "feet"),
  36994. default: true
  36995. },
  36996. {
  36997. name: "Kaiju",
  36998. height: math.unit(250, "feet")
  36999. },
  37000. {
  37001. name: "Still Growing",
  37002. height: math.unit(10, "miles")
  37003. },
  37004. {
  37005. name: "Continental",
  37006. height: math.unit(5000, "miles")
  37007. },
  37008. {
  37009. name: "Final Form",
  37010. height: math.unit(2500000, "miles")
  37011. },
  37012. ]
  37013. ))
  37014. characterMakers.push(() => makeCharacter(
  37015. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37016. {
  37017. front: {
  37018. height: math.unit(7 + 2/12, "feet"),
  37019. weight: math.unit(230, "kg"),
  37020. name: "Front",
  37021. image: {
  37022. source: "./media/characters/tatyana-milewska/front.svg",
  37023. extra: 1199/1150,
  37024. bottom: 86/1285
  37025. }
  37026. },
  37027. },
  37028. [
  37029. {
  37030. name: "Normal",
  37031. height: math.unit(7 + 2/12, "feet"),
  37032. default: true
  37033. },
  37034. {
  37035. name: "Big",
  37036. height: math.unit(12, "feet")
  37037. },
  37038. {
  37039. name: "Minimacro",
  37040. height: math.unit(20, "feet")
  37041. },
  37042. {
  37043. name: "Macro",
  37044. height: math.unit(120, "feet")
  37045. },
  37046. ]
  37047. ))
  37048. characterMakers.push(() => makeCharacter(
  37049. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37050. {
  37051. front: {
  37052. height: math.unit(7 + 8/12, "feet"),
  37053. weight: math.unit(152, "kg"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/helen-arri/front.svg",
  37057. extra: 440/423,
  37058. bottom: 14/454
  37059. }
  37060. },
  37061. back: {
  37062. height: math.unit(7 + 8/12, "feet"),
  37063. weight: math.unit(152, "kg"),
  37064. name: "Back",
  37065. image: {
  37066. source: "./media/characters/helen-arri/back.svg",
  37067. extra: 443/426,
  37068. bottom: 8/451
  37069. }
  37070. },
  37071. },
  37072. [
  37073. {
  37074. name: "Normal",
  37075. height: math.unit(7 + 8/12, "feet"),
  37076. default: true
  37077. },
  37078. {
  37079. name: "Big",
  37080. height: math.unit(14, "feet")
  37081. },
  37082. {
  37083. name: "Minimacro",
  37084. height: math.unit(24, "feet")
  37085. },
  37086. {
  37087. name: "Macro",
  37088. height: math.unit(140, "feet")
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(6, "meters"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/ehanu-rehu/front.svg",
  37100. extra: 1800/1800,
  37101. bottom: 59/1859
  37102. }
  37103. },
  37104. },
  37105. [
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(6, "meters"),
  37109. default: true
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(7 + 3/12, "feet"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/renholder/front.svg",
  37121. extra: 3096/2960,
  37122. bottom: 250/3346
  37123. }
  37124. },
  37125. },
  37126. [
  37127. {
  37128. name: "Normal Bat",
  37129. height: math.unit(7 + 3/12, "feet"),
  37130. default: true
  37131. },
  37132. {
  37133. name: "Slightly Tall Bat",
  37134. height: math.unit(100, "feet")
  37135. },
  37136. {
  37137. name: "Big Bat",
  37138. height: math.unit(1000, "feet")
  37139. },
  37140. {
  37141. name: "City-Sized Bat",
  37142. height: math.unit(200000, "feet")
  37143. },
  37144. {
  37145. name: "Bigger Bat",
  37146. height: math.unit(10000, "miles")
  37147. },
  37148. {
  37149. name: "Solar Sized Bat",
  37150. height: math.unit(100, "AU")
  37151. },
  37152. {
  37153. name: "Galactic Bat",
  37154. height: math.unit(200000, "lightyears")
  37155. },
  37156. {
  37157. name: "Universally Known Bat",
  37158. height: math.unit(1, "universe")
  37159. },
  37160. ]
  37161. ))
  37162. characterMakers.push(() => makeCharacter(
  37163. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37164. {
  37165. front: {
  37166. height: math.unit(6 + 11/12, "feet"),
  37167. weight: math.unit(250, "lb"),
  37168. name: "Front",
  37169. image: {
  37170. source: "./media/characters/cookiecat/front.svg",
  37171. extra: 893/827,
  37172. bottom: 14/907
  37173. }
  37174. },
  37175. },
  37176. [
  37177. {
  37178. name: "Micro",
  37179. height: math.unit(3, "inches")
  37180. },
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(6 + 11/12, "feet"),
  37184. default: true
  37185. },
  37186. {
  37187. name: "Macro",
  37188. height: math.unit(100, "feet")
  37189. },
  37190. {
  37191. name: "Macro+",
  37192. height: math.unit(404, "feet")
  37193. },
  37194. {
  37195. name: "Megamacro",
  37196. height: math.unit(165, "miles")
  37197. },
  37198. {
  37199. name: "Planetary",
  37200. height: math.unit(4600, "miles")
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37206. {
  37207. front: {
  37208. height: math.unit(10 + 3/12, "feet"),
  37209. weight: math.unit(1500, "lb"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/tux-kusanagi/front.svg",
  37213. extra: 944/840,
  37214. bottom: 39/983
  37215. }
  37216. },
  37217. back: {
  37218. height: math.unit(10 + 3/12, "feet"),
  37219. weight: math.unit(1500, "lb"),
  37220. name: "Back",
  37221. image: {
  37222. source: "./media/characters/tux-kusanagi/back.svg",
  37223. extra: 941/842,
  37224. bottom: 28/969
  37225. }
  37226. },
  37227. rump: {
  37228. height: math.unit(5.25, "feet"),
  37229. name: "Rump",
  37230. image: {
  37231. source: "./media/characters/tux-kusanagi/rump.svg"
  37232. }
  37233. },
  37234. beak: {
  37235. height: math.unit(1.54, "feet"),
  37236. name: "Beak",
  37237. image: {
  37238. source: "./media/characters/tux-kusanagi/beak.svg"
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(10 + 3/12, "feet"),
  37246. default: true
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(58, "feet"),
  37255. weight: math.unit(200, "tons"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/uzarmazari/front.svg",
  37259. extra: 1575/1455,
  37260. bottom: 152/1727
  37261. }
  37262. },
  37263. back: {
  37264. height: math.unit(58, "feet"),
  37265. weight: math.unit(200, "tons"),
  37266. name: "Back",
  37267. image: {
  37268. source: "./media/characters/uzarmazari/back.svg",
  37269. extra: 1585/1510,
  37270. bottom: 157/1742
  37271. }
  37272. },
  37273. head: {
  37274. height: math.unit(26, "feet"),
  37275. name: "Head",
  37276. image: {
  37277. source: "./media/characters/uzarmazari/head.svg"
  37278. }
  37279. },
  37280. },
  37281. [
  37282. {
  37283. name: "Normal",
  37284. height: math.unit(58, "feet"),
  37285. default: true
  37286. },
  37287. ]
  37288. ))
  37289. characterMakers.push(() => makeCharacter(
  37290. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37291. {
  37292. side: {
  37293. height: math.unit(15, "feet"),
  37294. name: "Side",
  37295. image: {
  37296. source: "./media/characters/akitu/side.svg",
  37297. extra: 1421/1321,
  37298. bottom: 157/1578
  37299. }
  37300. },
  37301. front: {
  37302. height: math.unit(15, "feet"),
  37303. name: "Front",
  37304. image: {
  37305. source: "./media/characters/akitu/front.svg",
  37306. extra: 1435/1326,
  37307. bottom: 232/1667
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Normal",
  37314. height: math.unit(15, "feet"),
  37315. default: true
  37316. },
  37317. ]
  37318. ))
  37319. characterMakers.push(() => makeCharacter(
  37320. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37321. {
  37322. front: {
  37323. height: math.unit(10 + 8/12, "feet"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/azalie-croixland/front.svg",
  37327. extra: 1972/1856,
  37328. bottom: 31/2003
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Original Height",
  37335. height: math.unit(5 + 4/12, "feet")
  37336. },
  37337. {
  37338. name: "Normal Height",
  37339. height: math.unit(10 + 8/12, "feet"),
  37340. default: true
  37341. },
  37342. ]
  37343. ))
  37344. characterMakers.push(() => makeCharacter(
  37345. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37346. {
  37347. side: {
  37348. height: math.unit(7 + 1/12, "feet"),
  37349. weight: math.unit(245, "lb"),
  37350. name: "Side",
  37351. image: {
  37352. source: "./media/characters/kavus-kazian/side.svg",
  37353. extra: 349/342,
  37354. bottom: 15/364
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(7 + 1/12, "feet"),
  37362. default: true
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37368. {
  37369. normalFront: {
  37370. height: math.unit(5 + 11/12, "feet"),
  37371. name: "Front",
  37372. image: {
  37373. source: "./media/characters/moonlight-rose/normal-front.svg",
  37374. extra: 1980/1825,
  37375. bottom: 18/1998
  37376. },
  37377. form: "normal",
  37378. default: true
  37379. },
  37380. normalBack: {
  37381. height: math.unit(5 + 11/12, "feet"),
  37382. name: "Back",
  37383. image: {
  37384. source: "./media/characters/moonlight-rose/normal-back.svg",
  37385. extra: 2010/1839,
  37386. bottom: 10/2020
  37387. },
  37388. form: "normal"
  37389. },
  37390. demonFront: {
  37391. height: math.unit(1.5, "earths"),
  37392. name: "Front",
  37393. image: {
  37394. source: "./media/characters/moonlight-rose/demon.svg",
  37395. extra: 1400/1294,
  37396. bottom: 45/1445
  37397. },
  37398. form: "demon",
  37399. default: true
  37400. },
  37401. terraFront: {
  37402. height: math.unit(1.5, "earths"),
  37403. name: "Front",
  37404. image: {
  37405. source: "./media/characters/moonlight-rose/terra.svg"
  37406. },
  37407. form: "terra",
  37408. default: true
  37409. },
  37410. jupiterFront: {
  37411. height: math.unit(69911*2, "km"),
  37412. name: "Front",
  37413. image: {
  37414. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37415. extra: 1367/1286,
  37416. bottom: 55/1422
  37417. },
  37418. form: "jupiter",
  37419. default: true
  37420. },
  37421. neptuneFront: {
  37422. height: math.unit(24622*2, "feet"),
  37423. name: "Front",
  37424. image: {
  37425. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37426. extra: 1851/1712,
  37427. bottom: 0/1851
  37428. },
  37429. form: "neptune",
  37430. default: true
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "\"Natural\" Height",
  37436. height: math.unit(5 + 11/12, "feet"),
  37437. form: "normal"
  37438. },
  37439. {
  37440. name: "Smallest comfortable size",
  37441. height: math.unit(40, "meters"),
  37442. form: "normal"
  37443. },
  37444. {
  37445. name: "Common size",
  37446. height: math.unit(50, "km"),
  37447. form: "normal",
  37448. default: true
  37449. },
  37450. {
  37451. name: "Normal",
  37452. height: math.unit(1.5, "earths"),
  37453. form: "demon",
  37454. default: true
  37455. },
  37456. {
  37457. name: "Universal",
  37458. height: math.unit(15, "universes"),
  37459. form: "demon"
  37460. },
  37461. {
  37462. name: "Earth",
  37463. height: math.unit(1.5, "earths"),
  37464. form: "terra",
  37465. default: true
  37466. },
  37467. {
  37468. name: "Super Earth",
  37469. height: math.unit(67.5, "earths"),
  37470. form: "terra"
  37471. },
  37472. {
  37473. name: "Doesn't fit in a solar system...",
  37474. height: math.unit(1, "galaxy"),
  37475. form: "terra"
  37476. },
  37477. {
  37478. name: "Saturn",
  37479. height: math.unit(58232*2, "km"),
  37480. form: "jupiter"
  37481. },
  37482. {
  37483. name: "Jupiter",
  37484. height: math.unit(69911*2, "km"),
  37485. form: "jupiter",
  37486. default: true
  37487. },
  37488. {
  37489. name: "HD 100546 b",
  37490. height: math.unit(482938, "km"),
  37491. form: "jupiter"
  37492. },
  37493. {
  37494. name: "Enceladus",
  37495. height: math.unit(513*2, "km"),
  37496. form: "neptune"
  37497. },
  37498. {
  37499. name: "Europe",
  37500. height: math.unit(1560*2, "km"),
  37501. form: "neptune"
  37502. },
  37503. {
  37504. name: "Neptune",
  37505. height: math.unit(24622*2, "km"),
  37506. form: "neptune",
  37507. default: true
  37508. },
  37509. {
  37510. name: "CoRoT-9b",
  37511. height: math.unit(75067*2, "km"),
  37512. form: "neptune"
  37513. },
  37514. ],
  37515. {
  37516. "normal": {
  37517. name: "Normal",
  37518. default: true
  37519. },
  37520. "demon": {
  37521. name: "Demon"
  37522. },
  37523. "terra": {
  37524. name: "Terra"
  37525. },
  37526. "jupiter": {
  37527. name: "Jupiter"
  37528. },
  37529. "neptune": {
  37530. name: "Neptune"
  37531. }
  37532. }
  37533. ))
  37534. characterMakers.push(() => makeCharacter(
  37535. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37536. {
  37537. front: {
  37538. height: math.unit(16, "feet"),
  37539. weight: math.unit(610, "kg"),
  37540. name: "Front",
  37541. image: {
  37542. source: "./media/characters/huckle/front.svg",
  37543. extra: 1731/1625,
  37544. bottom: 33/1764
  37545. }
  37546. },
  37547. back: {
  37548. height: math.unit(16, "feet"),
  37549. weight: math.unit(610, "kg"),
  37550. name: "Back",
  37551. image: {
  37552. source: "./media/characters/huckle/back.svg",
  37553. extra: 1738/1651,
  37554. bottom: 37/1775
  37555. }
  37556. },
  37557. laughing: {
  37558. height: math.unit(3.75, "feet"),
  37559. name: "Laughing",
  37560. image: {
  37561. source: "./media/characters/huckle/laughing.svg"
  37562. }
  37563. },
  37564. angry: {
  37565. height: math.unit(4.15, "feet"),
  37566. name: "Angry",
  37567. image: {
  37568. source: "./media/characters/huckle/angry.svg"
  37569. }
  37570. },
  37571. },
  37572. [
  37573. {
  37574. name: "Normal",
  37575. height: math.unit(16, "feet"),
  37576. default: true
  37577. },
  37578. {
  37579. name: "Mini Macro",
  37580. height: math.unit(463, "feet")
  37581. },
  37582. {
  37583. name: "Macro",
  37584. height: math.unit(1680, "meters")
  37585. },
  37586. {
  37587. name: "Mega Macro",
  37588. height: math.unit(175, "km")
  37589. },
  37590. {
  37591. name: "Terra Macro",
  37592. height: math.unit(32, "gigameters")
  37593. },
  37594. {
  37595. name: "Multiverse+",
  37596. height: math.unit(2.56e23, "yottameters")
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37602. {
  37603. front: {
  37604. height: math.unit(6 + 9/12, "feet"),
  37605. weight: math.unit(280, "lb"),
  37606. name: "Front",
  37607. image: {
  37608. source: "./media/characters/candy/front.svg",
  37609. extra: 234/217,
  37610. bottom: 11/245
  37611. }
  37612. },
  37613. },
  37614. [
  37615. {
  37616. name: "Really Small",
  37617. height: math.unit(0.1, "nm")
  37618. },
  37619. {
  37620. name: "Micro",
  37621. height: math.unit(2, "inches")
  37622. },
  37623. {
  37624. name: "Normal",
  37625. height: math.unit(6 + 9/12, "feet"),
  37626. default: true
  37627. },
  37628. {
  37629. name: "Small Macro",
  37630. height: math.unit(69, "feet")
  37631. },
  37632. {
  37633. name: "Macro",
  37634. height: math.unit(160, "feet")
  37635. },
  37636. {
  37637. name: "Megamacro",
  37638. height: math.unit(22000, "miles")
  37639. },
  37640. {
  37641. name: "Gigamacro",
  37642. height: math.unit(50000, "miles")
  37643. },
  37644. ]
  37645. ))
  37646. characterMakers.push(() => makeCharacter(
  37647. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37648. {
  37649. front: {
  37650. height: math.unit(4, "feet"),
  37651. weight: math.unit(90, "lb"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/joey-mcdonald/front.svg",
  37655. extra: 1059/852,
  37656. bottom: 33/1092
  37657. }
  37658. },
  37659. back: {
  37660. height: math.unit(4, "feet"),
  37661. weight: math.unit(90, "lb"),
  37662. name: "Back",
  37663. image: {
  37664. source: "./media/characters/joey-mcdonald/back.svg",
  37665. extra: 1077/879,
  37666. bottom: 5/1082
  37667. }
  37668. },
  37669. frontKobold: {
  37670. height: math.unit(4, "feet"),
  37671. weight: math.unit(100, "lb"),
  37672. name: "Front-kobold",
  37673. image: {
  37674. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37675. extra: 1480/1367,
  37676. bottom: 0/1480
  37677. }
  37678. },
  37679. backKobold: {
  37680. height: math.unit(4, "feet"),
  37681. weight: math.unit(100, "lb"),
  37682. name: "Back-kobold",
  37683. image: {
  37684. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37685. extra: 1449/1361,
  37686. bottom: 0/1449
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Normal",
  37693. height: math.unit(4, "feet"),
  37694. default: true
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(12 + 6/12, "feet"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/kass-lockheed/front.svg",
  37706. extra: 354/343,
  37707. bottom: 9/363
  37708. }
  37709. },
  37710. back: {
  37711. height: math.unit(12 + 6/12, "feet"),
  37712. name: "Back",
  37713. image: {
  37714. source: "./media/characters/kass-lockheed/back.svg",
  37715. extra: 364/352,
  37716. bottom: 3/367
  37717. }
  37718. },
  37719. dick: {
  37720. height: math.unit(3.12, "feet"),
  37721. name: "Dick",
  37722. image: {
  37723. source: "./media/characters/kass-lockheed/dick.svg"
  37724. }
  37725. },
  37726. head: {
  37727. height: math.unit(2.6, "feet"),
  37728. name: "Head",
  37729. image: {
  37730. source: "./media/characters/kass-lockheed/head.svg"
  37731. }
  37732. },
  37733. bleh: {
  37734. height: math.unit(2.85, "feet"),
  37735. name: "Bleh",
  37736. image: {
  37737. source: "./media/characters/kass-lockheed/bleh.svg"
  37738. }
  37739. },
  37740. smug: {
  37741. height: math.unit(2.85, "feet"),
  37742. name: "Smug",
  37743. image: {
  37744. source: "./media/characters/kass-lockheed/smug.svg"
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(12 + 6/12, "feet"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(6 + 2/12, "feet"),
  37761. name: "Front",
  37762. image: {
  37763. source: "./media/characters/taylor/front.svg",
  37764. extra: 639/495,
  37765. bottom: 12/651
  37766. }
  37767. },
  37768. },
  37769. [
  37770. {
  37771. name: "Normal",
  37772. height: math.unit(6 + 2/12, "feet"),
  37773. default: true
  37774. },
  37775. {
  37776. name: "Big",
  37777. height: math.unit(15, "feet")
  37778. },
  37779. {
  37780. name: "Lorg",
  37781. height: math.unit(80, "feet")
  37782. },
  37783. {
  37784. name: "Too Lorg",
  37785. height: math.unit(120, "feet")
  37786. },
  37787. ]
  37788. ))
  37789. characterMakers.push(() => makeCharacter(
  37790. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37791. {
  37792. front: {
  37793. height: math.unit(15, "feet"),
  37794. name: "Front",
  37795. image: {
  37796. source: "./media/characters/kaizer/front.svg",
  37797. extra: 1612/1436,
  37798. bottom: 43/1655
  37799. }
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "Normal",
  37805. height: math.unit(15, "feet"),
  37806. default: true
  37807. },
  37808. ]
  37809. ))
  37810. characterMakers.push(() => makeCharacter(
  37811. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37812. {
  37813. front: {
  37814. height: math.unit(2, "feet"),
  37815. weight: math.unit(30, "lb"),
  37816. name: "Front",
  37817. image: {
  37818. source: "./media/characters/sandy/front.svg",
  37819. extra: 1439/1307,
  37820. bottom: 194/1633
  37821. }
  37822. },
  37823. },
  37824. [
  37825. {
  37826. name: "Normal",
  37827. height: math.unit(2, "feet"),
  37828. default: true
  37829. },
  37830. ]
  37831. ))
  37832. characterMakers.push(() => makeCharacter(
  37833. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37834. {
  37835. front: {
  37836. height: math.unit(3, "feet"),
  37837. name: "Front",
  37838. image: {
  37839. source: "./media/characters/mellvi/front.svg",
  37840. extra: 1831/1630,
  37841. bottom: 58/1889
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(3, "feet"),
  37849. default: true
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37855. {
  37856. front: {
  37857. height: math.unit(5 + 11/12, "feet"),
  37858. weight: math.unit(200, "lb"),
  37859. name: "Front",
  37860. image: {
  37861. source: "./media/characters/shirou/front.svg",
  37862. extra: 2491/2383,
  37863. bottom: 189/2680
  37864. }
  37865. },
  37866. back: {
  37867. height: math.unit(5 + 11/12, "feet"),
  37868. weight: math.unit(200, "lb"),
  37869. name: "Back",
  37870. image: {
  37871. source: "./media/characters/shirou/back.svg",
  37872. extra: 2554/2450,
  37873. bottom: 76/2630
  37874. }
  37875. },
  37876. },
  37877. [
  37878. {
  37879. name: "Normal",
  37880. height: math.unit(5 + 11/12, "feet"),
  37881. default: true
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(6 + 3/12, "feet"),
  37890. weight: math.unit(177, "lb"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/noryu/front.svg",
  37894. extra: 973/885,
  37895. bottom: 10/983
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(6 + 3/12, "feet"),
  37903. default: true
  37904. },
  37905. ]
  37906. ))
  37907. characterMakers.push(() => makeCharacter(
  37908. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37909. {
  37910. front: {
  37911. height: math.unit(5 + 6/12, "feet"),
  37912. weight: math.unit(170, "lb"),
  37913. name: "Front",
  37914. image: {
  37915. source: "./media/characters/mevolas-rubenido/front.svg",
  37916. extra: 2109/1901,
  37917. bottom: 96/2205
  37918. }
  37919. },
  37920. },
  37921. [
  37922. {
  37923. name: "Normal",
  37924. height: math.unit(5 + 6/12, "feet"),
  37925. default: true
  37926. },
  37927. ]
  37928. ))
  37929. characterMakers.push(() => makeCharacter(
  37930. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37931. {
  37932. front: {
  37933. height: math.unit(100, "feet"),
  37934. name: "Front",
  37935. image: {
  37936. source: "./media/characters/dee/front.svg",
  37937. extra: 2153/2036,
  37938. bottom: 59/2212
  37939. }
  37940. },
  37941. back: {
  37942. height: math.unit(100, "feet"),
  37943. name: "Back",
  37944. image: {
  37945. source: "./media/characters/dee/back.svg",
  37946. extra: 2183/2058,
  37947. bottom: 75/2258
  37948. }
  37949. },
  37950. foot: {
  37951. height: math.unit(19.43, "feet"),
  37952. name: "Foot",
  37953. image: {
  37954. source: "./media/characters/dee/foot.svg"
  37955. }
  37956. },
  37957. hoof: {
  37958. height: math.unit(20.6, "feet"),
  37959. name: "Hoof",
  37960. image: {
  37961. source: "./media/characters/dee/hoof.svg"
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Macro",
  37968. height: math.unit(100, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(5 + 6/12, "feet"),
  37978. name: "Front",
  37979. image: {
  37980. source: "./media/characters/teh/front.svg",
  37981. extra: 1002/847,
  37982. bottom: 62/1064
  37983. }
  37984. },
  37985. },
  37986. [
  37987. {
  37988. name: "Normal",
  37989. height: math.unit(5 + 6/12, "feet"),
  37990. default: true
  37991. },
  37992. ]
  37993. ))
  37994. characterMakers.push(() => makeCharacter(
  37995. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37996. {
  37997. side: {
  37998. height: math.unit(6 + 1/12, "feet"),
  37999. weight: math.unit(204, "lb"),
  38000. name: "Side",
  38001. image: {
  38002. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38003. extra: 974/775,
  38004. bottom: 169/1143
  38005. }
  38006. },
  38007. sitting: {
  38008. height: math.unit(6 + 2/12, "feet"),
  38009. weight: math.unit(204, "lb"),
  38010. name: "Sitting",
  38011. image: {
  38012. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38013. extra: 1175/964,
  38014. bottom: 378/1553
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(6 + 1/12, "feet"),
  38022. default: true
  38023. },
  38024. ]
  38025. ))
  38026. characterMakers.push(() => makeCharacter(
  38027. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38028. {
  38029. front: {
  38030. height: math.unit(6, "inches"),
  38031. name: "Front",
  38032. image: {
  38033. source: "./media/characters/tululi/front.svg",
  38034. extra: 1997/1876,
  38035. bottom: 20/2017
  38036. }
  38037. },
  38038. },
  38039. [
  38040. {
  38041. name: "Normal",
  38042. height: math.unit(6, "inches"),
  38043. default: true
  38044. },
  38045. ]
  38046. ))
  38047. characterMakers.push(() => makeCharacter(
  38048. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38049. {
  38050. front: {
  38051. height: math.unit(4 + 1/12, "feet"),
  38052. name: "Front",
  38053. image: {
  38054. source: "./media/characters/star/front.svg",
  38055. extra: 1493/1189,
  38056. bottom: 48/1541
  38057. }
  38058. },
  38059. },
  38060. [
  38061. {
  38062. name: "Normal",
  38063. height: math.unit(4 + 1/12, "feet"),
  38064. default: true
  38065. },
  38066. ]
  38067. ))
  38068. characterMakers.push(() => makeCharacter(
  38069. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38070. {
  38071. front: {
  38072. height: math.unit(6 + 3/12, "feet"),
  38073. name: "Front",
  38074. image: {
  38075. source: "./media/characters/comet/front.svg",
  38076. extra: 1681/1462,
  38077. bottom: 26/1707
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Normal",
  38084. height: math.unit(6 + 3/12, "feet"),
  38085. default: true
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(950, "feet"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/vortex/front.svg",
  38097. extra: 1497/1434,
  38098. bottom: 56/1553
  38099. }
  38100. },
  38101. maw: {
  38102. height: math.unit(285, "feet"),
  38103. name: "Maw",
  38104. image: {
  38105. source: "./media/characters/vortex/maw.svg"
  38106. }
  38107. },
  38108. },
  38109. [
  38110. {
  38111. name: "Macro",
  38112. height: math.unit(950, "feet"),
  38113. default: true
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(600, "feet"),
  38122. weight: math.unit(0.02, "grams"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/doodle/front.svg",
  38126. extra: 1578/1413,
  38127. bottom: 37/1615
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Macro",
  38134. height: math.unit(600, "feet"),
  38135. default: true
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38141. {
  38142. front: {
  38143. height: math.unit(6 + 6/12, "feet"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/jai/front.svg",
  38147. extra: 1645/1534,
  38148. bottom: 115/1760
  38149. }
  38150. },
  38151. },
  38152. [
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(6 + 6/12, "feet"),
  38156. default: true
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38162. {
  38163. front: {
  38164. height: math.unit(6 + 8/12, "feet"),
  38165. name: "Front",
  38166. image: {
  38167. source: "./media/characters/pixel/front.svg",
  38168. extra: 1900/1735,
  38169. bottom: 63/1963
  38170. }
  38171. },
  38172. },
  38173. [
  38174. {
  38175. name: "Normal",
  38176. height: math.unit(6 + 8/12, "feet"),
  38177. default: true
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38183. {
  38184. back: {
  38185. height: math.unit(4 + 1/12, "feet"),
  38186. weight: math.unit(75, "lb"),
  38187. name: "Back",
  38188. image: {
  38189. source: "./media/characters/rhett/back.svg",
  38190. extra: 930/878,
  38191. bottom: 25/955
  38192. }
  38193. },
  38194. front: {
  38195. height: math.unit(4 + 1/12, "feet"),
  38196. weight: math.unit(75, "lb"),
  38197. name: "Front",
  38198. image: {
  38199. source: "./media/characters/rhett/front.svg",
  38200. extra: 1682/1586,
  38201. bottom: 92/1774
  38202. }
  38203. },
  38204. },
  38205. [
  38206. {
  38207. name: "Micro",
  38208. height: math.unit(8, "inches")
  38209. },
  38210. {
  38211. name: "Tiny",
  38212. height: math.unit(2, "feet")
  38213. },
  38214. {
  38215. name: "Normal",
  38216. height: math.unit(4 + 1/12, "feet"),
  38217. default: true
  38218. },
  38219. ]
  38220. ))
  38221. characterMakers.push(() => makeCharacter(
  38222. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38223. {
  38224. front: {
  38225. height: math.unit(3 + 3/12, "feet"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/penny/front.svg",
  38229. extra: 1406/1311,
  38230. bottom: 26/1432
  38231. }
  38232. },
  38233. },
  38234. [
  38235. {
  38236. name: "Normal",
  38237. height: math.unit(3 + 3/12, "feet"),
  38238. default: true
  38239. },
  38240. ]
  38241. ))
  38242. characterMakers.push(() => makeCharacter(
  38243. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38244. {
  38245. front: {
  38246. height: math.unit(4 + 11/12, "feet"),
  38247. name: "Front",
  38248. image: {
  38249. source: "./media/characters/monty/front.svg",
  38250. extra: 1479/1209,
  38251. bottom: 0/1479
  38252. }
  38253. },
  38254. },
  38255. [
  38256. {
  38257. name: "Normal",
  38258. height: math.unit(4 + 11/12, "feet"),
  38259. default: true
  38260. },
  38261. ]
  38262. ))
  38263. characterMakers.push(() => makeCharacter(
  38264. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38265. {
  38266. front: {
  38267. height: math.unit(8 + 4/12, "feet"),
  38268. name: "Front",
  38269. image: {
  38270. source: "./media/characters/sterling/front.svg",
  38271. extra: 1420/1236,
  38272. bottom: 27/1447
  38273. }
  38274. },
  38275. },
  38276. [
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(8 + 4/12, "feet"),
  38280. default: true
  38281. },
  38282. ]
  38283. ))
  38284. characterMakers.push(() => makeCharacter(
  38285. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38286. {
  38287. front: {
  38288. height: math.unit(15, "feet"),
  38289. name: "Front",
  38290. image: {
  38291. source: "./media/characters/marble/front.svg",
  38292. extra: 973/937,
  38293. bottom: 32/1005
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Normal",
  38300. height: math.unit(15, "feet"),
  38301. default: true
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38307. {
  38308. front: {
  38309. height: math.unit(3, "inches"),
  38310. name: "Front",
  38311. image: {
  38312. source: "./media/characters/powder/front.svg",
  38313. extra: 1504/1334,
  38314. bottom: 518/2022
  38315. }
  38316. },
  38317. },
  38318. [
  38319. {
  38320. name: "Normal",
  38321. height: math.unit(3, "inches"),
  38322. default: true
  38323. },
  38324. ]
  38325. ))
  38326. characterMakers.push(() => makeCharacter(
  38327. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38328. {
  38329. front: {
  38330. height: math.unit(4 + 5/12, "feet"),
  38331. name: "Front",
  38332. image: {
  38333. source: "./media/characters/joey-raccoon/front.svg",
  38334. extra: 1273/1197,
  38335. bottom: 0/1273
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(4 + 5/12, "feet"),
  38343. default: true
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38349. {
  38350. front: {
  38351. height: math.unit(8 + 4/12, "feet"),
  38352. name: "Front",
  38353. image: {
  38354. source: "./media/characters/vick/front.svg",
  38355. extra: 2187/2118,
  38356. bottom: 47/2234
  38357. }
  38358. },
  38359. },
  38360. [
  38361. {
  38362. name: "Normal",
  38363. height: math.unit(8 + 4/12, "feet"),
  38364. default: true
  38365. },
  38366. ]
  38367. ))
  38368. characterMakers.push(() => makeCharacter(
  38369. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38370. {
  38371. front: {
  38372. height: math.unit(5 + 5/12, "feet"),
  38373. name: "Front",
  38374. image: {
  38375. source: "./media/characters/mitsy/front.svg",
  38376. extra: 1842/1695,
  38377. bottom: 0/1842
  38378. }
  38379. },
  38380. },
  38381. [
  38382. {
  38383. name: "Normal",
  38384. height: math.unit(5 + 5/12, "feet"),
  38385. default: true
  38386. },
  38387. ]
  38388. ))
  38389. characterMakers.push(() => makeCharacter(
  38390. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38391. {
  38392. front: {
  38393. height: math.unit(6 + 3/12, "feet"),
  38394. name: "Front",
  38395. image: {
  38396. source: "./media/characters/silvy/front.svg",
  38397. extra: 1995/1836,
  38398. bottom: 225/2220
  38399. }
  38400. },
  38401. },
  38402. [
  38403. {
  38404. name: "Normal",
  38405. height: math.unit(6 + 3/12, "feet"),
  38406. default: true
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38412. {
  38413. front: {
  38414. height: math.unit(3 + 8/12, "feet"),
  38415. name: "Front",
  38416. image: {
  38417. source: "./media/characters/rodney/front.svg",
  38418. extra: 1956/1747,
  38419. bottom: 31/1987
  38420. }
  38421. },
  38422. frontDressed: {
  38423. height: math.unit(2.9, "feet"),
  38424. name: "Front (Dressed)",
  38425. image: {
  38426. source: "./media/characters/rodney/front-dressed.svg",
  38427. extra: 1382/1241,
  38428. bottom: 385/1767
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(3 + 8/12, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(5 + 9/12, "feet"),
  38445. weight: math.unit(194, "lbs"),
  38446. name: "Front",
  38447. image: {
  38448. source: "./media/characters/zakail-sudekai/front.svg",
  38449. extra: 2696/2533,
  38450. bottom: 248/2944
  38451. }
  38452. },
  38453. maw: {
  38454. height: math.unit(1.35, "feet"),
  38455. name: "Maw",
  38456. image: {
  38457. source: "./media/characters/zakail-sudekai/maw.svg"
  38458. }
  38459. },
  38460. },
  38461. [
  38462. {
  38463. name: "Normal",
  38464. height: math.unit(5 + 9/12, "feet"),
  38465. default: true
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38471. {
  38472. front: {
  38473. height: math.unit(8 + 4/12, "feet"),
  38474. weight: math.unit(1200, "lb"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/eleanor/front.svg",
  38478. extra: 1226/1192,
  38479. bottom: 52/1278
  38480. }
  38481. },
  38482. back: {
  38483. height: math.unit(8 + 4/12, "feet"),
  38484. weight: math.unit(1200, "lb"),
  38485. name: "Back",
  38486. image: {
  38487. source: "./media/characters/eleanor/back.svg",
  38488. extra: 1242/1184,
  38489. bottom: 60/1302
  38490. }
  38491. },
  38492. head: {
  38493. height: math.unit(2.62, "feet"),
  38494. name: "Head",
  38495. image: {
  38496. source: "./media/characters/eleanor/head.svg"
  38497. }
  38498. },
  38499. },
  38500. [
  38501. {
  38502. name: "Normal",
  38503. height: math.unit(8 + 4/12, "feet"),
  38504. default: true
  38505. },
  38506. ]
  38507. ))
  38508. characterMakers.push(() => makeCharacter(
  38509. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38510. {
  38511. front: {
  38512. height: math.unit(8 + 4/12, "feet"),
  38513. weight: math.unit(750, "lb"),
  38514. name: "Front",
  38515. image: {
  38516. source: "./media/characters/tanya/front.svg",
  38517. extra: 1749/1615,
  38518. bottom: 33/1782
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(8 + 4/12, "feet"),
  38526. default: true
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38532. {
  38533. front: {
  38534. height: math.unit(5, "feet"),
  38535. weight: math.unit(225, "lb"),
  38536. name: "Front",
  38537. image: {
  38538. source: "./media/characters/cindy/front.svg",
  38539. extra: 1320/1250,
  38540. bottom: 42/1362
  38541. }
  38542. },
  38543. frontDressed: {
  38544. height: math.unit(5, "feet"),
  38545. weight: math.unit(225, "lb"),
  38546. name: "Front (Dressed)",
  38547. image: {
  38548. source: "./media/characters/cindy/front-dressed.svg",
  38549. extra: 1320/1250,
  38550. bottom: 42/1362
  38551. }
  38552. },
  38553. back: {
  38554. height: math.unit(5, "feet"),
  38555. weight: math.unit(225, "lb"),
  38556. name: "Back",
  38557. image: {
  38558. source: "./media/characters/cindy/back.svg",
  38559. extra: 1384/1346,
  38560. bottom: 14/1398
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(5, "feet"),
  38568. default: true
  38569. },
  38570. ]
  38571. ))
  38572. characterMakers.push(() => makeCharacter(
  38573. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38574. {
  38575. front: {
  38576. height: math.unit(6 + 9/12, "feet"),
  38577. weight: math.unit(440, "lb"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/wilbur-owen/front.svg",
  38581. extra: 1575/1448,
  38582. bottom: 72/1647
  38583. }
  38584. },
  38585. back: {
  38586. height: math.unit(6 + 9/12, "feet"),
  38587. weight: math.unit(440, "lb"),
  38588. name: "Back",
  38589. image: {
  38590. source: "./media/characters/wilbur-owen/back.svg",
  38591. extra: 1578/1445,
  38592. bottom: 36/1614
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(6 + 9/12, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(6 + 5/12, "feet"),
  38609. weight: math.unit(650, "lb"),
  38610. name: "Front",
  38611. image: {
  38612. source: "./media/characters/keegan/front.svg",
  38613. extra: 2387/2198,
  38614. bottom: 33/2420
  38615. }
  38616. },
  38617. side: {
  38618. height: math.unit(6 + 5/12, "feet"),
  38619. weight: math.unit(650, "lb"),
  38620. name: "Side",
  38621. image: {
  38622. source: "./media/characters/keegan/side.svg",
  38623. extra: 2390/2202,
  38624. bottom: 47/2437
  38625. }
  38626. },
  38627. back: {
  38628. height: math.unit(6 + 5/12, "feet"),
  38629. weight: math.unit(650, "lb"),
  38630. name: "Back",
  38631. image: {
  38632. source: "./media/characters/keegan/back.svg",
  38633. extra: 2418/2268,
  38634. bottom: 15/2433
  38635. }
  38636. },
  38637. frontSfw: {
  38638. height: math.unit(6 + 5/12, "feet"),
  38639. weight: math.unit(650, "lb"),
  38640. name: "Front (SFW)",
  38641. image: {
  38642. source: "./media/characters/keegan/front-sfw.svg",
  38643. extra: 2387/2198,
  38644. bottom: 33/2420
  38645. }
  38646. },
  38647. beans: {
  38648. height: math.unit(1.85, "feet"),
  38649. name: "Beans",
  38650. image: {
  38651. source: "./media/characters/keegan/beans.svg"
  38652. }
  38653. },
  38654. },
  38655. [
  38656. {
  38657. name: "Normal",
  38658. height: math.unit(6 + 5/12, "feet"),
  38659. default: true
  38660. },
  38661. ]
  38662. ))
  38663. characterMakers.push(() => makeCharacter(
  38664. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38665. {
  38666. front: {
  38667. height: math.unit(9, "feet"),
  38668. name: "Front",
  38669. image: {
  38670. source: "./media/characters/colton/front.svg",
  38671. extra: 1589/1326,
  38672. bottom: 139/1728
  38673. }
  38674. },
  38675. },
  38676. [
  38677. {
  38678. name: "Normal",
  38679. height: math.unit(9, "feet"),
  38680. default: true
  38681. },
  38682. ]
  38683. ))
  38684. characterMakers.push(() => makeCharacter(
  38685. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38686. {
  38687. front: {
  38688. height: math.unit(2 + 9/12, "feet"),
  38689. name: "Front",
  38690. image: {
  38691. source: "./media/characters/bora/front.svg",
  38692. extra: 1265/1250,
  38693. bottom: 24/1289
  38694. }
  38695. },
  38696. },
  38697. [
  38698. {
  38699. name: "Normal",
  38700. height: math.unit(2 + 9/12, "feet"),
  38701. default: true
  38702. },
  38703. ]
  38704. ))
  38705. characterMakers.push(() => makeCharacter(
  38706. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38707. {
  38708. front: {
  38709. height: math.unit(8, "feet"),
  38710. name: "Front",
  38711. image: {
  38712. source: "./media/characters/myu-myu/front.svg",
  38713. extra: 1949/1857,
  38714. bottom: 90/2039
  38715. }
  38716. },
  38717. },
  38718. [
  38719. {
  38720. name: "Normal",
  38721. height: math.unit(8, "feet"),
  38722. default: true
  38723. },
  38724. {
  38725. name: "Big",
  38726. height: math.unit(15, "feet")
  38727. },
  38728. {
  38729. name: "BIG",
  38730. height: math.unit(25, "feet")
  38731. },
  38732. ]
  38733. ))
  38734. characterMakers.push(() => makeCharacter(
  38735. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38736. {
  38737. side: {
  38738. height: math.unit(7 + 5/12, "feet"),
  38739. weight: math.unit(2800, "lb"),
  38740. name: "Side",
  38741. image: {
  38742. source: "./media/characters/haloren/side.svg",
  38743. extra: 1793/409,
  38744. bottom: 59/1852
  38745. }
  38746. },
  38747. frontPaw: {
  38748. height: math.unit(2.36, "feet"),
  38749. name: "Front paw",
  38750. image: {
  38751. source: "./media/characters/haloren/front-paw.svg"
  38752. }
  38753. },
  38754. hindPaw: {
  38755. height: math.unit(3.18, "feet"),
  38756. name: "Hind paw",
  38757. image: {
  38758. source: "./media/characters/haloren/hind-paw.svg"
  38759. }
  38760. },
  38761. maw: {
  38762. height: math.unit(5.05, "feet"),
  38763. name: "Maw",
  38764. image: {
  38765. source: "./media/characters/haloren/maw.svg"
  38766. }
  38767. },
  38768. dick: {
  38769. height: math.unit(2.90, "feet"),
  38770. name: "Dick",
  38771. image: {
  38772. source: "./media/characters/haloren/dick.svg"
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Normal",
  38779. height: math.unit(7 + 5/12, "feet"),
  38780. default: true
  38781. },
  38782. {
  38783. name: "Enhanced",
  38784. height: math.unit(14 + 3/12, "feet")
  38785. },
  38786. ]
  38787. ))
  38788. characterMakers.push(() => makeCharacter(
  38789. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38790. {
  38791. front: {
  38792. height: math.unit(171, "cm"),
  38793. name: "Front",
  38794. image: {
  38795. source: "./media/characters/kimmy/front.svg",
  38796. extra: 1491/1435,
  38797. bottom: 53/1544
  38798. }
  38799. },
  38800. },
  38801. [
  38802. {
  38803. name: "Small",
  38804. height: math.unit(9, "cm")
  38805. },
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(171, "cm"),
  38809. default: true
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(8, "feet"),
  38818. weight: math.unit(300, "lb"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/galeboomer/front.svg",
  38822. extra: 4651/4415,
  38823. bottom: 162/4813
  38824. }
  38825. },
  38826. back: {
  38827. height: math.unit(8, "feet"),
  38828. weight: math.unit(300, "lb"),
  38829. name: "Back",
  38830. image: {
  38831. source: "./media/characters/galeboomer/back.svg",
  38832. extra: 4544/4314,
  38833. bottom: 16/4560
  38834. }
  38835. },
  38836. frontAlt: {
  38837. height: math.unit(8, "feet"),
  38838. weight: math.unit(300, "lb"),
  38839. name: "Front (Alt)",
  38840. image: {
  38841. source: "./media/characters/galeboomer/front-alt.svg",
  38842. extra: 4458/4228,
  38843. bottom: 68/4526
  38844. }
  38845. },
  38846. maw: {
  38847. height: math.unit(1.2, "feet"),
  38848. name: "Maw",
  38849. image: {
  38850. source: "./media/characters/galeboomer/maw.svg"
  38851. }
  38852. },
  38853. },
  38854. [
  38855. {
  38856. name: "Normal",
  38857. height: math.unit(8, "feet"),
  38858. default: true
  38859. },
  38860. ]
  38861. ))
  38862. characterMakers.push(() => makeCharacter(
  38863. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38864. {
  38865. front: {
  38866. height: math.unit(5 + 9/12, "feet"),
  38867. weight: math.unit(120, "lb"),
  38868. name: "Front",
  38869. image: {
  38870. source: "./media/characters/chyr/front.svg",
  38871. extra: 1323/1254,
  38872. bottom: 63/1386
  38873. }
  38874. },
  38875. back: {
  38876. height: math.unit(5 + 9/12, "feet"),
  38877. weight: math.unit(120, "lb"),
  38878. name: "Back",
  38879. image: {
  38880. source: "./media/characters/chyr/back.svg",
  38881. extra: 1323/1252,
  38882. bottom: 48/1371
  38883. }
  38884. },
  38885. },
  38886. [
  38887. {
  38888. name: "Normal",
  38889. height: math.unit(5 + 9/12, "feet"),
  38890. default: true
  38891. },
  38892. ]
  38893. ))
  38894. characterMakers.push(() => makeCharacter(
  38895. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38896. {
  38897. front: {
  38898. height: math.unit(7, "feet"),
  38899. weight: math.unit(310, "lb"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/solarus/front.svg",
  38903. extra: 2415/2021,
  38904. bottom: 103/2518
  38905. }
  38906. },
  38907. back: {
  38908. height: math.unit(7, "feet"),
  38909. weight: math.unit(310, "lb"),
  38910. name: "Back",
  38911. image: {
  38912. source: "./media/characters/solarus/back.svg",
  38913. extra: 2463/2089,
  38914. bottom: 79/2542
  38915. }
  38916. },
  38917. },
  38918. [
  38919. {
  38920. name: "Normal",
  38921. height: math.unit(7, "feet"),
  38922. default: true
  38923. },
  38924. ]
  38925. ))
  38926. characterMakers.push(() => makeCharacter(
  38927. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38928. {
  38929. front: {
  38930. height: math.unit(16, "feet"),
  38931. name: "Front",
  38932. image: {
  38933. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38934. extra: 1844/1780,
  38935. bottom: 58/1902
  38936. }
  38937. },
  38938. winterCoat: {
  38939. height: math.unit(16, "feet"),
  38940. name: "Winter Coat",
  38941. image: {
  38942. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38943. extra: 1807/1775,
  38944. bottom: 69/1876
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(16, "feet"),
  38952. default: true
  38953. },
  38954. {
  38955. name: "Chicago Size",
  38956. height: math.unit(560, "feet")
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38962. {
  38963. front: {
  38964. height: math.unit(11 + 6/12, "feet"),
  38965. weight: math.unit(1366, "lb"),
  38966. name: "Front",
  38967. image: {
  38968. source: "./media/characters/lexor/front.svg",
  38969. extra: 1560/1481,
  38970. bottom: 211/1771
  38971. }
  38972. },
  38973. back: {
  38974. height: math.unit(11 + 6/12, "feet"),
  38975. weight: math.unit(1366, "lb"),
  38976. name: "Back",
  38977. image: {
  38978. source: "./media/characters/lexor/back.svg",
  38979. extra: 1614/1533,
  38980. bottom: 76/1690
  38981. }
  38982. },
  38983. maw: {
  38984. height: math.unit(3, "feet"),
  38985. name: "Maw",
  38986. image: {
  38987. source: "./media/characters/lexor/maw.svg"
  38988. }
  38989. },
  38990. dick: {
  38991. height: math.unit(2.59, "feet"),
  38992. name: "Dick",
  38993. image: {
  38994. source: "./media/characters/lexor/dick.svg"
  38995. }
  38996. },
  38997. },
  38998. [
  38999. {
  39000. name: "Normal",
  39001. height: math.unit(11 + 6/12, "feet"),
  39002. default: true
  39003. },
  39004. ]
  39005. ))
  39006. characterMakers.push(() => makeCharacter(
  39007. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39008. {
  39009. front: {
  39010. height: math.unit(5 + 8/12, "feet"),
  39011. name: "Front",
  39012. image: {
  39013. source: "./media/characters/magnum/front.svg",
  39014. extra: 942/855,
  39015. bottom: 26/968
  39016. }
  39017. },
  39018. },
  39019. [
  39020. {
  39021. name: "Normal",
  39022. height: math.unit(5 + 8/12, "feet"),
  39023. default: true
  39024. },
  39025. ]
  39026. ))
  39027. characterMakers.push(() => makeCharacter(
  39028. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39029. {
  39030. front: {
  39031. height: math.unit(18 + 4/12, "feet"),
  39032. weight: math.unit(1500, "kg"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/solas-sharpsman/front.svg",
  39036. extra: 1698/1589,
  39037. bottom: 0/1698
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(18 + 4/12, "feet"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39051. {
  39052. front: {
  39053. height: math.unit(5 + 5/12, "feet"),
  39054. weight: math.unit(180, "lb"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/october/front.svg",
  39058. extra: 1800/1650,
  39059. bottom: 0/1800
  39060. }
  39061. },
  39062. frontNsfw: {
  39063. height: math.unit(5 + 5/12, "feet"),
  39064. weight: math.unit(180, "lb"),
  39065. name: "Front (NSFW)",
  39066. image: {
  39067. source: "./media/characters/october/front-nsfw.svg",
  39068. extra: 1392/1307,
  39069. bottom: 42/1434
  39070. }
  39071. },
  39072. },
  39073. [
  39074. {
  39075. name: "Normal",
  39076. height: math.unit(5 + 5/12, "feet"),
  39077. default: true
  39078. },
  39079. ]
  39080. ))
  39081. characterMakers.push(() => makeCharacter(
  39082. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39083. {
  39084. front: {
  39085. height: math.unit(8 + 6/12, "feet"),
  39086. name: "Front",
  39087. image: {
  39088. source: "./media/characters/essynkardi/front.svg",
  39089. extra: 1541/1457,
  39090. bottom: 47/1588
  39091. }
  39092. },
  39093. },
  39094. [
  39095. {
  39096. name: "Normal",
  39097. height: math.unit(8 + 6/12, "feet"),
  39098. default: true
  39099. },
  39100. ]
  39101. ))
  39102. characterMakers.push(() => makeCharacter(
  39103. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39104. {
  39105. front: {
  39106. height: math.unit(6 + 6/12, "feet"),
  39107. weight: math.unit(7, "lb"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/icky/front.svg",
  39111. extra: 813/782,
  39112. bottom: 66/879
  39113. }
  39114. },
  39115. back: {
  39116. height: math.unit(6 + 6/12, "feet"),
  39117. weight: math.unit(7, "lb"),
  39118. name: "Back",
  39119. image: {
  39120. source: "./media/characters/icky/back.svg",
  39121. extra: 754/735,
  39122. bottom: 56/810
  39123. }
  39124. },
  39125. },
  39126. [
  39127. {
  39128. name: "Normal",
  39129. height: math.unit(6 + 6/12, "feet"),
  39130. default: true
  39131. },
  39132. ]
  39133. ))
  39134. characterMakers.push(() => makeCharacter(
  39135. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39136. {
  39137. front: {
  39138. height: math.unit(15, "feet"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/rojas/front.svg",
  39142. extra: 1462/1408,
  39143. bottom: 95/1557
  39144. }
  39145. },
  39146. back: {
  39147. height: math.unit(15, "feet"),
  39148. name: "Back",
  39149. image: {
  39150. source: "./media/characters/rojas/back.svg",
  39151. extra: 1023/954,
  39152. bottom: 28/1051
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Normal",
  39159. height: math.unit(15, "feet"),
  39160. default: true
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39166. {
  39167. frontHuman: {
  39168. height: math.unit(5 + 7/12, "feet"),
  39169. name: "Front (Human)",
  39170. image: {
  39171. source: "./media/characters/alek-dryagan/front-human.svg",
  39172. extra: 1687/1667,
  39173. bottom: 69/1756
  39174. }
  39175. },
  39176. backHuman: {
  39177. height: math.unit(5 + 7/12, "feet"),
  39178. name: "Back (Human)",
  39179. image: {
  39180. source: "./media/characters/alek-dryagan/back-human.svg",
  39181. extra: 1670/1649,
  39182. bottom: 65/1735
  39183. }
  39184. },
  39185. frontDemi: {
  39186. height: math.unit(65, "feet"),
  39187. name: "Front (Demi)",
  39188. image: {
  39189. source: "./media/characters/alek-dryagan/front-demi.svg",
  39190. extra: 1669/1642,
  39191. bottom: 49/1718
  39192. }
  39193. },
  39194. backDemi: {
  39195. height: math.unit(65, "feet"),
  39196. name: "Back (Demi)",
  39197. image: {
  39198. source: "./media/characters/alek-dryagan/back-demi.svg",
  39199. extra: 1658/1637,
  39200. bottom: 40/1698
  39201. }
  39202. },
  39203. mawHuman: {
  39204. height: math.unit(0.3, "feet"),
  39205. name: "Maw (Human)",
  39206. image: {
  39207. source: "./media/characters/alek-dryagan/maw-human.svg"
  39208. }
  39209. },
  39210. mawDemi: {
  39211. height: math.unit(3.8, "feet"),
  39212. name: "Maw (Demi)",
  39213. image: {
  39214. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39215. }
  39216. },
  39217. },
  39218. [
  39219. {
  39220. name: "Normal",
  39221. height: math.unit(5 + 7/12, "feet"),
  39222. default: true
  39223. },
  39224. ]
  39225. ))
  39226. characterMakers.push(() => makeCharacter(
  39227. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39228. {
  39229. frontHuman: {
  39230. height: math.unit(5 + 2/12, "feet"),
  39231. name: "Front (Human)",
  39232. image: {
  39233. source: "./media/characters/gen/front-human.svg",
  39234. extra: 1627/1538,
  39235. bottom: 71/1698
  39236. }
  39237. },
  39238. backHuman: {
  39239. height: math.unit(5 + 2/12, "feet"),
  39240. name: "Back (Human)",
  39241. image: {
  39242. source: "./media/characters/gen/back-human.svg",
  39243. extra: 1638/1548,
  39244. bottom: 69/1707
  39245. }
  39246. },
  39247. frontDemi: {
  39248. height: math.unit(5 + 2/12, "feet"),
  39249. name: "Front (Demi)",
  39250. image: {
  39251. source: "./media/characters/gen/front-demi.svg",
  39252. extra: 1627/1538,
  39253. bottom: 71/1698
  39254. }
  39255. },
  39256. backDemi: {
  39257. height: math.unit(5 + 2/12, "feet"),
  39258. name: "Back (Demi)",
  39259. image: {
  39260. source: "./media/characters/gen/back-demi.svg",
  39261. extra: 1638/1548,
  39262. bottom: 69/1707
  39263. }
  39264. },
  39265. },
  39266. [
  39267. {
  39268. name: "Normal",
  39269. height: math.unit(5 + 2/12, "feet"),
  39270. default: true
  39271. },
  39272. ]
  39273. ))
  39274. characterMakers.push(() => makeCharacter(
  39275. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39276. {
  39277. frontImp: {
  39278. height: math.unit(1 + 11/12, "feet"),
  39279. name: "Front (Imp)",
  39280. image: {
  39281. source: "./media/characters/max-kobold/front-imp.svg",
  39282. extra: 1238/1134,
  39283. bottom: 81/1319
  39284. }
  39285. },
  39286. backImp: {
  39287. height: math.unit(1 + 11/12, "feet"),
  39288. name: "Back (Imp)",
  39289. image: {
  39290. source: "./media/characters/max-kobold/back-imp.svg",
  39291. extra: 1334/1175,
  39292. bottom: 34/1368
  39293. }
  39294. },
  39295. frontDemi: {
  39296. height: math.unit(5 + 9/12, "feet"),
  39297. name: "Front (Demi)",
  39298. image: {
  39299. source: "./media/characters/max-kobold/front-demi.svg",
  39300. extra: 1715/1685,
  39301. bottom: 54/1769
  39302. }
  39303. },
  39304. backDemi: {
  39305. height: math.unit(5 + 9/12, "feet"),
  39306. name: "Back (Demi)",
  39307. image: {
  39308. source: "./media/characters/max-kobold/back-demi.svg",
  39309. extra: 1752/1729,
  39310. bottom: 41/1793
  39311. }
  39312. },
  39313. handImp: {
  39314. height: math.unit(0.45, "feet"),
  39315. name: "Hand (Imp)",
  39316. image: {
  39317. source: "./media/characters/max-kobold/hand.svg"
  39318. }
  39319. },
  39320. pawImp: {
  39321. height: math.unit(0.46, "feet"),
  39322. name: "Paw (Imp)",
  39323. image: {
  39324. source: "./media/characters/max-kobold/paw.svg"
  39325. }
  39326. },
  39327. handDemi: {
  39328. height: math.unit(0.80, "feet"),
  39329. name: "Hand (Demi)",
  39330. image: {
  39331. source: "./media/characters/max-kobold/hand.svg"
  39332. }
  39333. },
  39334. pawDemi: {
  39335. height: math.unit(1.1, "feet"),
  39336. name: "Paw (Demi)",
  39337. image: {
  39338. source: "./media/characters/max-kobold/paw.svg"
  39339. }
  39340. },
  39341. headImp: {
  39342. height: math.unit(1.33, "feet"),
  39343. name: "Head (Imp)",
  39344. image: {
  39345. source: "./media/characters/max-kobold/head-imp.svg"
  39346. }
  39347. },
  39348. mawImp: {
  39349. height: math.unit(0.75, "feet"),
  39350. name: "Maw (Imp)",
  39351. image: {
  39352. source: "./media/characters/max-kobold/maw-imp.svg"
  39353. }
  39354. },
  39355. mawDemi: {
  39356. height: math.unit(0.42, "feet"),
  39357. name: "Maw (Demi)",
  39358. image: {
  39359. source: "./media/characters/max-kobold/maw-demi.svg"
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "Normal",
  39366. height: math.unit(1 + 11/12, "feet"),
  39367. default: true
  39368. },
  39369. ]
  39370. ))
  39371. characterMakers.push(() => makeCharacter(
  39372. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39373. {
  39374. front: {
  39375. height: math.unit(7 + 5/12, "feet"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/carbon/front.svg",
  39379. extra: 1754/1689,
  39380. bottom: 65/1819
  39381. }
  39382. },
  39383. back: {
  39384. height: math.unit(7 + 5/12, "feet"),
  39385. name: "Back",
  39386. image: {
  39387. source: "./media/characters/carbon/back.svg",
  39388. extra: 1762/1695,
  39389. bottom: 24/1786
  39390. }
  39391. },
  39392. frontGigantamax: {
  39393. height: math.unit(150, "feet"),
  39394. name: "Front (Gigantamax)",
  39395. image: {
  39396. source: "./media/characters/carbon/front-gigantamax.svg",
  39397. extra: 1826/1669,
  39398. bottom: 59/1885
  39399. }
  39400. },
  39401. backGigantamax: {
  39402. height: math.unit(150, "feet"),
  39403. name: "Back (Gigantamax)",
  39404. image: {
  39405. source: "./media/characters/carbon/back-gigantamax.svg",
  39406. extra: 1796/1653,
  39407. bottom: 53/1849
  39408. }
  39409. },
  39410. maw: {
  39411. height: math.unit(0.48, "feet"),
  39412. name: "Maw",
  39413. image: {
  39414. source: "./media/characters/carbon/maw.svg"
  39415. }
  39416. },
  39417. mawGigantamax: {
  39418. height: math.unit(7.5, "feet"),
  39419. name: "Maw (Gigantamax)",
  39420. image: {
  39421. source: "./media/characters/carbon/maw-gigantamax.svg"
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Normal",
  39428. height: math.unit(7 + 5/12, "feet"),
  39429. default: true
  39430. },
  39431. ]
  39432. ))
  39433. characterMakers.push(() => makeCharacter(
  39434. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39435. {
  39436. front: {
  39437. height: math.unit(6, "feet"),
  39438. name: "Front",
  39439. image: {
  39440. source: "./media/characters/maverick/front.svg",
  39441. extra: 1672/1661,
  39442. bottom: 85/1757
  39443. }
  39444. },
  39445. back: {
  39446. height: math.unit(6, "feet"),
  39447. name: "Back",
  39448. image: {
  39449. source: "./media/characters/maverick/back.svg",
  39450. extra: 1642/1631,
  39451. bottom: 38/1680
  39452. }
  39453. },
  39454. },
  39455. [
  39456. {
  39457. name: "Normal",
  39458. height: math.unit(6, "feet"),
  39459. default: true
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39465. {
  39466. front: {
  39467. height: math.unit(15, "feet"),
  39468. weight: math.unit(615, "lb"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/grockle/front.svg",
  39472. extra: 1535/1427,
  39473. bottom: 56/1591
  39474. }
  39475. },
  39476. },
  39477. [
  39478. {
  39479. name: "Normal",
  39480. height: math.unit(15, "feet"),
  39481. default: true
  39482. },
  39483. {
  39484. name: "Large",
  39485. height: math.unit(150, "feet")
  39486. },
  39487. {
  39488. name: "Macro",
  39489. height: math.unit(1876, "feet")
  39490. },
  39491. {
  39492. name: "Mega Macro",
  39493. height: math.unit(121940, "feet")
  39494. },
  39495. {
  39496. name: "Giga Macro",
  39497. height: math.unit(750, "km")
  39498. },
  39499. {
  39500. name: "Tera Macro",
  39501. height: math.unit(750000, "km")
  39502. },
  39503. {
  39504. name: "Galactic",
  39505. height: math.unit(1.4e5, "km")
  39506. },
  39507. {
  39508. name: "Godlike",
  39509. height: math.unit(9.8e280, "galaxies")
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(11, "meters"),
  39518. weight: math.unit(20, "tonnes"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/alistair/front.svg",
  39522. extra: 1265/1009,
  39523. bottom: 93/1358
  39524. }
  39525. },
  39526. },
  39527. [
  39528. {
  39529. name: "Normal",
  39530. height: math.unit(11, "meters"),
  39531. default: true
  39532. },
  39533. ]
  39534. ))
  39535. characterMakers.push(() => makeCharacter(
  39536. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39537. {
  39538. front: {
  39539. height: math.unit(5 + 8/12, "feet"),
  39540. name: "Front",
  39541. image: {
  39542. source: "./media/characters/haruka/front.svg",
  39543. extra: 2012/1952,
  39544. bottom: 0/2012
  39545. }
  39546. },
  39547. },
  39548. [
  39549. {
  39550. name: "Normal",
  39551. height: math.unit(5 + 8/12, "feet"),
  39552. default: true
  39553. },
  39554. ]
  39555. ))
  39556. characterMakers.push(() => makeCharacter(
  39557. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39558. {
  39559. back: {
  39560. height: math.unit(9, "feet"),
  39561. name: "Back",
  39562. image: {
  39563. source: "./media/characters/vivian-sylveon/back.svg",
  39564. extra: 1853/1714,
  39565. bottom: 0/1853
  39566. }
  39567. },
  39568. },
  39569. [
  39570. {
  39571. name: "Normal",
  39572. height: math.unit(9, "feet"),
  39573. default: true
  39574. },
  39575. {
  39576. name: "Macro",
  39577. height: math.unit(500, "feet")
  39578. },
  39579. {
  39580. name: "Megamacro",
  39581. height: math.unit(600, "miles")
  39582. },
  39583. {
  39584. name: "Gigamacro",
  39585. height: math.unit(30000, "miles")
  39586. },
  39587. ]
  39588. ))
  39589. characterMakers.push(() => makeCharacter(
  39590. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39591. {
  39592. anthro: {
  39593. height: math.unit(5 + 10/12, "feet"),
  39594. weight: math.unit(100, "lb"),
  39595. name: "Anthro",
  39596. image: {
  39597. source: "./media/characters/daiki/anthro.svg",
  39598. extra: 1115/1027,
  39599. bottom: 69/1184
  39600. }
  39601. },
  39602. feral: {
  39603. height: math.unit(200, "feet"),
  39604. name: "Feral",
  39605. image: {
  39606. source: "./media/characters/daiki/feral.svg",
  39607. extra: 1256/313,
  39608. bottom: 39/1295
  39609. }
  39610. },
  39611. feralHead: {
  39612. height: math.unit(171, "feet"),
  39613. name: "Feral Head",
  39614. image: {
  39615. source: "./media/characters/daiki/feral-head.svg"
  39616. }
  39617. },
  39618. manaDragon: {
  39619. height: math.unit(170, "meters"),
  39620. name: "Mana-dragon",
  39621. image: {
  39622. source: "./media/characters/daiki/mana-dragon.svg",
  39623. extra: 763/420,
  39624. bottom: 97/860
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Normal",
  39631. height: math.unit(5 + 10/12, "feet"),
  39632. default: true
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39638. {
  39639. fullyEquippedFront: {
  39640. height: math.unit(3 + 1/12, "feet"),
  39641. weight: math.unit(24, "lb"),
  39642. name: "Fully Equipped (Front)",
  39643. image: {
  39644. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39645. extra: 687/605,
  39646. bottom: 18/705
  39647. }
  39648. },
  39649. fullyEquippedBack: {
  39650. height: math.unit(3 + 1/12, "feet"),
  39651. weight: math.unit(24, "lb"),
  39652. name: "Fully Equipped (Back)",
  39653. image: {
  39654. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39655. extra: 689/590,
  39656. bottom: 18/707
  39657. }
  39658. },
  39659. dailyWear: {
  39660. height: math.unit(3 + 1/12, "feet"),
  39661. weight: math.unit(24, "lb"),
  39662. name: "Daily Wear",
  39663. image: {
  39664. source: "./media/characters/tea-spot/daily-wear.svg",
  39665. extra: 701/620,
  39666. bottom: 21/722
  39667. }
  39668. },
  39669. maidWork: {
  39670. height: math.unit(3 + 1/12, "feet"),
  39671. weight: math.unit(24, "lb"),
  39672. name: "Maid Work",
  39673. image: {
  39674. source: "./media/characters/tea-spot/maid-work.svg",
  39675. extra: 693/609,
  39676. bottom: 15/708
  39677. }
  39678. },
  39679. },
  39680. [
  39681. {
  39682. name: "Normal",
  39683. height: math.unit(3 + 1/12, "feet"),
  39684. default: true
  39685. },
  39686. ]
  39687. ))
  39688. characterMakers.push(() => makeCharacter(
  39689. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39690. {
  39691. front: {
  39692. height: math.unit(175, "cm"),
  39693. weight: math.unit(75, "kg"),
  39694. name: "Front",
  39695. image: {
  39696. source: "./media/characters/chee/front.svg",
  39697. extra: 1796/1740,
  39698. bottom: 40/1836
  39699. }
  39700. },
  39701. },
  39702. [
  39703. {
  39704. name: "Micro-Micro",
  39705. height: math.unit(1, "nm")
  39706. },
  39707. {
  39708. name: "Micro-erst",
  39709. height: math.unit(1, "micrometer")
  39710. },
  39711. {
  39712. name: "Micro-er",
  39713. height: math.unit(1, "cm")
  39714. },
  39715. {
  39716. name: "Normal",
  39717. height: math.unit(175, "cm"),
  39718. default: true
  39719. },
  39720. {
  39721. name: "Macro",
  39722. height: math.unit(100, "m")
  39723. },
  39724. {
  39725. name: "Macro-er",
  39726. height: math.unit(1, "km")
  39727. },
  39728. {
  39729. name: "Macro-erst",
  39730. height: math.unit(10, "km")
  39731. },
  39732. {
  39733. name: "Macro-Macro",
  39734. height: math.unit(100, "km")
  39735. },
  39736. ]
  39737. ))
  39738. characterMakers.push(() => makeCharacter(
  39739. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39740. {
  39741. front: {
  39742. height: math.unit(11 + 9/12, "feet"),
  39743. weight: math.unit(935, "lb"),
  39744. name: "Front",
  39745. image: {
  39746. source: "./media/characters/kingsley/front.svg",
  39747. extra: 1803/1674,
  39748. bottom: 127/1930
  39749. }
  39750. },
  39751. frontNude: {
  39752. height: math.unit(11 + 9/12, "feet"),
  39753. weight: math.unit(935, "lb"),
  39754. name: "Front (Nude)",
  39755. image: {
  39756. source: "./media/characters/kingsley/front-nude.svg",
  39757. extra: 1803/1674,
  39758. bottom: 127/1930
  39759. }
  39760. },
  39761. },
  39762. [
  39763. {
  39764. name: "Normal",
  39765. height: math.unit(11 + 9/12, "feet"),
  39766. default: true
  39767. },
  39768. ]
  39769. ))
  39770. characterMakers.push(() => makeCharacter(
  39771. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39772. {
  39773. side: {
  39774. height: math.unit(9, "feet"),
  39775. name: "Side",
  39776. image: {
  39777. source: "./media/characters/rymel/side.svg",
  39778. extra: 792/469,
  39779. bottom: 121/913
  39780. }
  39781. },
  39782. maw: {
  39783. height: math.unit(2.4, "meters"),
  39784. name: "Maw",
  39785. image: {
  39786. source: "./media/characters/rymel/maw.svg"
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "House Drake",
  39793. height: math.unit(2, "feet")
  39794. },
  39795. {
  39796. name: "Reduced",
  39797. height: math.unit(4.5, "feet")
  39798. },
  39799. {
  39800. name: "Normal",
  39801. height: math.unit(9, "feet"),
  39802. default: true
  39803. },
  39804. ]
  39805. ))
  39806. characterMakers.push(() => makeCharacter(
  39807. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39808. {
  39809. front: {
  39810. height: math.unit(1.74, "meters"),
  39811. weight: math.unit(55, "kg"),
  39812. name: "Front",
  39813. image: {
  39814. source: "./media/characters/rubus/front.svg",
  39815. extra: 1894/1742,
  39816. bottom: 44/1938
  39817. }
  39818. },
  39819. },
  39820. [
  39821. {
  39822. name: "Normal",
  39823. height: math.unit(1.74, "meters"),
  39824. default: true
  39825. },
  39826. ]
  39827. ))
  39828. characterMakers.push(() => makeCharacter(
  39829. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39830. {
  39831. front: {
  39832. height: math.unit(5 + 2/12, "feet"),
  39833. weight: math.unit(112, "lb"),
  39834. name: "Front",
  39835. image: {
  39836. source: "./media/characters/cassie-kingston/front.svg",
  39837. extra: 1438/1390,
  39838. bottom: 47/1485
  39839. }
  39840. },
  39841. },
  39842. [
  39843. {
  39844. name: "Normal",
  39845. height: math.unit(5 + 2/12, "feet"),
  39846. default: true
  39847. },
  39848. {
  39849. name: "Macro",
  39850. height: math.unit(128, "feet")
  39851. },
  39852. {
  39853. name: "Megamacro",
  39854. height: math.unit(2.56, "miles")
  39855. },
  39856. ]
  39857. ))
  39858. characterMakers.push(() => makeCharacter(
  39859. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39860. {
  39861. front: {
  39862. height: math.unit(7, "feet"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/fox/front.svg",
  39866. extra: 1798/1703,
  39867. bottom: 55/1853
  39868. }
  39869. },
  39870. back: {
  39871. height: math.unit(7, "feet"),
  39872. name: "Back",
  39873. image: {
  39874. source: "./media/characters/fox/back.svg",
  39875. extra: 1748/1649,
  39876. bottom: 32/1780
  39877. }
  39878. },
  39879. head: {
  39880. height: math.unit(1.95, "feet"),
  39881. name: "Head",
  39882. image: {
  39883. source: "./media/characters/fox/head.svg"
  39884. }
  39885. },
  39886. dick: {
  39887. height: math.unit(1.33, "feet"),
  39888. name: "Dick",
  39889. image: {
  39890. source: "./media/characters/fox/dick.svg"
  39891. }
  39892. },
  39893. foot: {
  39894. height: math.unit(1, "feet"),
  39895. name: "Foot",
  39896. image: {
  39897. source: "./media/characters/fox/foot.svg"
  39898. }
  39899. },
  39900. paw: {
  39901. height: math.unit(0.92, "feet"),
  39902. name: "Paw",
  39903. image: {
  39904. source: "./media/characters/fox/paw.svg"
  39905. }
  39906. },
  39907. },
  39908. [
  39909. {
  39910. name: "Small",
  39911. height: math.unit(3, "inches")
  39912. },
  39913. {
  39914. name: "\"Realistic\"",
  39915. height: math.unit(7, "feet")
  39916. },
  39917. {
  39918. name: "Normal",
  39919. height: math.unit(150, "feet"),
  39920. default: true
  39921. },
  39922. {
  39923. name: "BIG",
  39924. height: math.unit(1200, "feet")
  39925. },
  39926. {
  39927. name: "👀",
  39928. height: math.unit(5, "miles")
  39929. },
  39930. {
  39931. name: "👀👀👀",
  39932. height: math.unit(64, "miles")
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(625, "feet"),
  39941. name: "Front",
  39942. image: {
  39943. source: "./media/characters/asonja-rossa/front.svg",
  39944. extra: 1833/1686,
  39945. bottom: 24/1857
  39946. }
  39947. },
  39948. back: {
  39949. height: math.unit(625, "feet"),
  39950. name: "Back",
  39951. image: {
  39952. source: "./media/characters/asonja-rossa/back.svg",
  39953. extra: 1852/1753,
  39954. bottom: 26/1878
  39955. }
  39956. },
  39957. },
  39958. [
  39959. {
  39960. name: "Macro",
  39961. height: math.unit(625, "feet"),
  39962. default: true
  39963. },
  39964. ]
  39965. ))
  39966. characterMakers.push(() => makeCharacter(
  39967. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39968. {
  39969. side: {
  39970. height: math.unit(8, "feet"),
  39971. name: "Side",
  39972. image: {
  39973. source: "./media/characters/rezukii/side.svg",
  39974. extra: 979/542,
  39975. bottom: 87/1066
  39976. }
  39977. },
  39978. sitting: {
  39979. height: math.unit(14.6, "feet"),
  39980. name: "Sitting",
  39981. image: {
  39982. source: "./media/characters/rezukii/sitting.svg",
  39983. extra: 1023/813,
  39984. bottom: 45/1068
  39985. }
  39986. },
  39987. },
  39988. [
  39989. {
  39990. name: "Tiny",
  39991. height: math.unit(2, "feet")
  39992. },
  39993. {
  39994. name: "Smol",
  39995. height: math.unit(4, "feet")
  39996. },
  39997. {
  39998. name: "Normal",
  39999. height: math.unit(8, "feet"),
  40000. default: true
  40001. },
  40002. {
  40003. name: "Big",
  40004. height: math.unit(12, "feet")
  40005. },
  40006. {
  40007. name: "Macro",
  40008. height: math.unit(30, "feet")
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40014. {
  40015. front: {
  40016. height: math.unit(14, "feet"),
  40017. weight: math.unit(9.5, "tonnes"),
  40018. name: "Front",
  40019. image: {
  40020. source: "./media/characters/dawnheart/front.svg",
  40021. extra: 2792/2675,
  40022. bottom: 64/2856
  40023. }
  40024. },
  40025. },
  40026. [
  40027. {
  40028. name: "Normal",
  40029. height: math.unit(14, "feet"),
  40030. default: true
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40036. {
  40037. front: {
  40038. height: math.unit(1.7, "m"),
  40039. name: "Front",
  40040. image: {
  40041. source: "./media/characters/gladi/front.svg",
  40042. extra: 1460/1362,
  40043. bottom: 19/1479
  40044. }
  40045. },
  40046. back: {
  40047. height: math.unit(1.7, "m"),
  40048. name: "Back",
  40049. image: {
  40050. source: "./media/characters/gladi/back.svg",
  40051. extra: 1459/1357,
  40052. bottom: 12/1471
  40053. }
  40054. },
  40055. feral: {
  40056. height: math.unit(2.05, "m"),
  40057. name: "Feral",
  40058. image: {
  40059. source: "./media/characters/gladi/feral.svg",
  40060. extra: 821/557,
  40061. bottom: 91/912
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Shortest",
  40068. height: math.unit(70, "cm")
  40069. },
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(1.7, "m")
  40073. },
  40074. {
  40075. name: "Macro",
  40076. height: math.unit(10, "m"),
  40077. default: true
  40078. },
  40079. {
  40080. name: "Tallest",
  40081. height: math.unit(200, "m")
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40087. {
  40088. front: {
  40089. height: math.unit(5 + 7/12, "feet"),
  40090. weight: math.unit(2, "tons"),
  40091. name: "Front",
  40092. image: {
  40093. source: "./media/characters/erdno/front.svg",
  40094. extra: 1234/1129,
  40095. bottom: 35/1269
  40096. }
  40097. },
  40098. angled: {
  40099. height: math.unit(5 + 7/12, "feet"),
  40100. weight: math.unit(2, "tons"),
  40101. name: "Angled",
  40102. image: {
  40103. source: "./media/characters/erdno/angled.svg",
  40104. extra: 1185/1139,
  40105. bottom: 36/1221
  40106. }
  40107. },
  40108. side: {
  40109. height: math.unit(5 + 7/12, "feet"),
  40110. weight: math.unit(2, "tons"),
  40111. name: "Side",
  40112. image: {
  40113. source: "./media/characters/erdno/side.svg",
  40114. extra: 1191/1144,
  40115. bottom: 40/1231
  40116. }
  40117. },
  40118. back: {
  40119. height: math.unit(5 + 7/12, "feet"),
  40120. weight: math.unit(2, "tons"),
  40121. name: "Back",
  40122. image: {
  40123. source: "./media/characters/erdno/back.svg",
  40124. extra: 1202/1146,
  40125. bottom: 17/1219
  40126. }
  40127. },
  40128. frontNsfw: {
  40129. height: math.unit(5 + 7/12, "feet"),
  40130. weight: math.unit(2, "tons"),
  40131. name: "Front (NSFW)",
  40132. image: {
  40133. source: "./media/characters/erdno/front-nsfw.svg",
  40134. extra: 1234/1129,
  40135. bottom: 35/1269
  40136. }
  40137. },
  40138. angledNsfw: {
  40139. height: math.unit(5 + 7/12, "feet"),
  40140. weight: math.unit(2, "tons"),
  40141. name: "Angled (NSFW)",
  40142. image: {
  40143. source: "./media/characters/erdno/angled-nsfw.svg",
  40144. extra: 1185/1139,
  40145. bottom: 36/1221
  40146. }
  40147. },
  40148. sideNsfw: {
  40149. height: math.unit(5 + 7/12, "feet"),
  40150. weight: math.unit(2, "tons"),
  40151. name: "Side (NSFW)",
  40152. image: {
  40153. source: "./media/characters/erdno/side-nsfw.svg",
  40154. extra: 1191/1144,
  40155. bottom: 40/1231
  40156. }
  40157. },
  40158. backNsfw: {
  40159. height: math.unit(5 + 7/12, "feet"),
  40160. weight: math.unit(2, "tons"),
  40161. name: "Back (NSFW)",
  40162. image: {
  40163. source: "./media/characters/erdno/back-nsfw.svg",
  40164. extra: 1202/1146,
  40165. bottom: 17/1219
  40166. }
  40167. },
  40168. frontHyper: {
  40169. height: math.unit(5 + 7/12, "feet"),
  40170. weight: math.unit(2, "tons"),
  40171. name: "Front (Hyper)",
  40172. image: {
  40173. source: "./media/characters/erdno/front-hyper.svg",
  40174. extra: 1298/1136,
  40175. bottom: 35/1333
  40176. }
  40177. },
  40178. },
  40179. [
  40180. {
  40181. name: "Normal",
  40182. height: math.unit(5 + 7/12, "feet"),
  40183. default: true
  40184. },
  40185. {
  40186. name: "Big",
  40187. height: math.unit(5.7, "meters")
  40188. },
  40189. {
  40190. name: "Macro",
  40191. height: math.unit(5.7, "kilometers")
  40192. },
  40193. {
  40194. name: "Megamacro",
  40195. height: math.unit(5.7, "earths")
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(5 + 10/12, "feet"),
  40204. weight: math.unit(150, "lb"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/jamie/front.svg",
  40208. extra: 1908/1768,
  40209. bottom: 19/1927
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Minimum",
  40216. height: math.unit(2, "cm")
  40217. },
  40218. {
  40219. name: "Micro",
  40220. height: math.unit(3, "inches")
  40221. },
  40222. {
  40223. name: "Normal",
  40224. height: math.unit(5 + 10/12, "feet"),
  40225. default: true
  40226. },
  40227. {
  40228. name: "Macro",
  40229. height: math.unit(150, "feet")
  40230. },
  40231. {
  40232. name: "Megamacro",
  40233. height: math.unit(10000, "m")
  40234. },
  40235. ]
  40236. ))
  40237. characterMakers.push(() => makeCharacter(
  40238. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40239. {
  40240. front: {
  40241. height: math.unit(2, "meters"),
  40242. weight: math.unit(100, "kg"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/shiron/front.svg",
  40246. extra: 2103/1985,
  40247. bottom: 98/2201
  40248. }
  40249. },
  40250. back: {
  40251. height: math.unit(2, "meters"),
  40252. weight: math.unit(100, "kg"),
  40253. name: "Back",
  40254. image: {
  40255. source: "./media/characters/shiron/back.svg",
  40256. extra: 2110/2015,
  40257. bottom: 89/2199
  40258. }
  40259. },
  40260. hand: {
  40261. height: math.unit(0.96, "feet"),
  40262. name: "Hand",
  40263. image: {
  40264. source: "./media/characters/shiron/hand.svg"
  40265. }
  40266. },
  40267. foot: {
  40268. height: math.unit(1.464, "feet"),
  40269. name: "Foot",
  40270. image: {
  40271. source: "./media/characters/shiron/foot.svg"
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Normal",
  40278. height: math.unit(2, "meters")
  40279. },
  40280. {
  40281. name: "Macro",
  40282. height: math.unit(500, "meters"),
  40283. default: true
  40284. },
  40285. {
  40286. name: "Megamacro",
  40287. height: math.unit(20, "km")
  40288. },
  40289. ]
  40290. ))
  40291. characterMakers.push(() => makeCharacter(
  40292. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40293. {
  40294. front: {
  40295. height: math.unit(6, "feet"),
  40296. name: "Front",
  40297. image: {
  40298. source: "./media/characters/sam/front.svg",
  40299. extra: 849/826,
  40300. bottom: 19/868
  40301. }
  40302. },
  40303. },
  40304. [
  40305. {
  40306. name: "Normal",
  40307. height: math.unit(6, "feet"),
  40308. default: true
  40309. },
  40310. ]
  40311. ))
  40312. characterMakers.push(() => makeCharacter(
  40313. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40314. {
  40315. front: {
  40316. height: math.unit(8 + 4/12, "feet"),
  40317. weight: math.unit(122, "kg"),
  40318. name: "Front",
  40319. image: {
  40320. source: "./media/characters/namori-kurogawa/front.svg",
  40321. extra: 1894/1576,
  40322. bottom: 34/1928
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Normal",
  40329. height: math.unit(8 + 4/12, "feet"),
  40330. default: true
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(9, "feet"),
  40339. weight: math.unit(621, "lb"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/unmru/front.svg",
  40343. extra: 1853/1747,
  40344. bottom: 73/1926
  40345. }
  40346. },
  40347. side: {
  40348. height: math.unit(9, "feet"),
  40349. weight: math.unit(621, "lb"),
  40350. name: "Side",
  40351. image: {
  40352. source: "./media/characters/unmru/side.svg",
  40353. extra: 1781/1671,
  40354. bottom: 127/1908
  40355. }
  40356. },
  40357. back: {
  40358. height: math.unit(9, "feet"),
  40359. weight: math.unit(621, "lb"),
  40360. name: "Back",
  40361. image: {
  40362. source: "./media/characters/unmru/back.svg",
  40363. extra: 1894/1765,
  40364. bottom: 75/1969
  40365. }
  40366. },
  40367. dick: {
  40368. height: math.unit(3, "feet"),
  40369. weight: math.unit(35, "lb"),
  40370. name: "Dick",
  40371. image: {
  40372. source: "./media/characters/unmru/dick.svg"
  40373. }
  40374. },
  40375. },
  40376. [
  40377. {
  40378. name: "Normal",
  40379. height: math.unit(9, "feet")
  40380. },
  40381. {
  40382. name: "Natural",
  40383. height: math.unit(27, "feet"),
  40384. default: true
  40385. },
  40386. {
  40387. name: "Giant",
  40388. height: math.unit(90, "feet")
  40389. },
  40390. {
  40391. name: "Kaiju",
  40392. height: math.unit(270, "feet")
  40393. },
  40394. {
  40395. name: "Macro",
  40396. height: math.unit(900, "feet")
  40397. },
  40398. {
  40399. name: "Macro+",
  40400. height: math.unit(2700, "feet")
  40401. },
  40402. {
  40403. name: "Megamacro",
  40404. height: math.unit(9000, "feet")
  40405. },
  40406. {
  40407. name: "City-Crushing",
  40408. height: math.unit(27000, "feet")
  40409. },
  40410. {
  40411. name: "Mountain-Mashing",
  40412. height: math.unit(90000, "feet")
  40413. },
  40414. {
  40415. name: "Earth-Eclipsing",
  40416. height: math.unit(2.7e8, "feet")
  40417. },
  40418. {
  40419. name: "Sol-Swallowing",
  40420. height: math.unit(9e10, "feet")
  40421. },
  40422. {
  40423. name: "Majoris-Munching",
  40424. height: math.unit(2.7e13, "feet")
  40425. },
  40426. ]
  40427. ))
  40428. characterMakers.push(() => makeCharacter(
  40429. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40430. {
  40431. front: {
  40432. height: math.unit(1, "inch"),
  40433. name: "Front",
  40434. image: {
  40435. source: "./media/characters/squeaks-mouse/front.svg",
  40436. extra: 352/308,
  40437. bottom: 25/377
  40438. }
  40439. },
  40440. },
  40441. [
  40442. {
  40443. name: "Micro",
  40444. height: math.unit(1, "inch"),
  40445. default: true
  40446. },
  40447. ]
  40448. ))
  40449. characterMakers.push(() => makeCharacter(
  40450. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40451. {
  40452. side: {
  40453. height: math.unit(35, "feet"),
  40454. name: "Side",
  40455. image: {
  40456. source: "./media/characters/sayko/side.svg",
  40457. extra: 1697/1021,
  40458. bottom: 82/1779
  40459. }
  40460. },
  40461. head: {
  40462. height: math.unit(16, "feet"),
  40463. name: "Head",
  40464. image: {
  40465. source: "./media/characters/sayko/head.svg"
  40466. }
  40467. },
  40468. forepaw: {
  40469. height: math.unit(7.85, "feet"),
  40470. name: "Forepaw",
  40471. image: {
  40472. source: "./media/characters/sayko/forepaw.svg"
  40473. }
  40474. },
  40475. hindpaw: {
  40476. height: math.unit(8.8, "feet"),
  40477. name: "Hindpaw",
  40478. image: {
  40479. source: "./media/characters/sayko/hindpaw.svg"
  40480. }
  40481. },
  40482. },
  40483. [
  40484. {
  40485. name: "Normal",
  40486. height: math.unit(35, "feet"),
  40487. default: true
  40488. },
  40489. {
  40490. name: "Colossus",
  40491. height: math.unit(100, "meters")
  40492. },
  40493. {
  40494. name: "\"Small\" Deity",
  40495. height: math.unit(1, "km")
  40496. },
  40497. {
  40498. name: "\"Large\" Deity",
  40499. height: math.unit(15, "km")
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(6, "feet"),
  40508. weight: math.unit(250, "lb"),
  40509. name: "Front",
  40510. image: {
  40511. source: "./media/characters/mukiro/front.svg",
  40512. extra: 1368/1310,
  40513. bottom: 34/1402
  40514. }
  40515. },
  40516. },
  40517. [
  40518. {
  40519. name: "Normal",
  40520. height: math.unit(6, "feet"),
  40521. default: true
  40522. },
  40523. ]
  40524. ))
  40525. characterMakers.push(() => makeCharacter(
  40526. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40527. {
  40528. front: {
  40529. height: math.unit(12 + 4/12, "feet"),
  40530. name: "Front",
  40531. image: {
  40532. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40533. extra: 1346/1311,
  40534. bottom: 65/1411
  40535. }
  40536. },
  40537. },
  40538. [
  40539. {
  40540. name: "Base",
  40541. height: math.unit(12 + 4/12, "feet"),
  40542. default: true
  40543. },
  40544. {
  40545. name: "Macro",
  40546. height: math.unit(150, "feet")
  40547. },
  40548. {
  40549. name: "Mega",
  40550. height: math.unit(2, "miles")
  40551. },
  40552. {
  40553. name: "Demi God",
  40554. height: math.unit(4, "AU")
  40555. },
  40556. {
  40557. name: "God Size",
  40558. height: math.unit(1, "universe")
  40559. },
  40560. ]
  40561. ))
  40562. characterMakers.push(() => makeCharacter(
  40563. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40564. {
  40565. front: {
  40566. height: math.unit(3 + 3/12, "feet"),
  40567. weight: math.unit(88, "lb"),
  40568. name: "Front",
  40569. image: {
  40570. source: "./media/characters/trey/front.svg",
  40571. extra: 1815/1509,
  40572. bottom: 60/1875
  40573. }
  40574. },
  40575. },
  40576. [
  40577. {
  40578. name: "Normal",
  40579. height: math.unit(3 + 3/12, "feet"),
  40580. default: true
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40586. {
  40587. front: {
  40588. height: math.unit(4, "meters"),
  40589. name: "Front",
  40590. image: {
  40591. source: "./media/characters/adelonda/front.svg",
  40592. extra: 1077/982,
  40593. bottom: 39/1116
  40594. }
  40595. },
  40596. back: {
  40597. height: math.unit(4, "meters"),
  40598. name: "Back",
  40599. image: {
  40600. source: "./media/characters/adelonda/back.svg",
  40601. extra: 1105/1003,
  40602. bottom: 25/1130
  40603. }
  40604. },
  40605. feral: {
  40606. height: math.unit(40/1.5, "meters"),
  40607. name: "Feral",
  40608. image: {
  40609. source: "./media/characters/adelonda/feral.svg",
  40610. extra: 597/271,
  40611. bottom: 387/984
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Normal",
  40618. height: math.unit(4, "meters"),
  40619. default: true
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40625. {
  40626. front: {
  40627. height: math.unit(8 + 4/12, "feet"),
  40628. weight: math.unit(670, "lb"),
  40629. name: "Front",
  40630. image: {
  40631. source: "./media/characters/acadiel/front.svg",
  40632. extra: 1901/1595,
  40633. bottom: 142/2043
  40634. }
  40635. },
  40636. },
  40637. [
  40638. {
  40639. name: "Normal",
  40640. height: math.unit(8 + 4/12, "feet"),
  40641. default: true
  40642. },
  40643. {
  40644. name: "Macro",
  40645. height: math.unit(200, "feet")
  40646. },
  40647. ]
  40648. ))
  40649. characterMakers.push(() => makeCharacter(
  40650. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40651. {
  40652. front: {
  40653. height: math.unit(6 + 2/12, "feet"),
  40654. weight: math.unit(185, "lb"),
  40655. name: "Front",
  40656. image: {
  40657. source: "./media/characters/kayne-ein/front.svg",
  40658. extra: 1780/1560,
  40659. bottom: 81/1861
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Normal",
  40666. height: math.unit(6 + 2/12, "feet"),
  40667. default: true
  40668. },
  40669. {
  40670. name: "Transformation Stage",
  40671. height: math.unit(15, "feet")
  40672. },
  40673. {
  40674. name: "Macro",
  40675. height: math.unit(150, "feet")
  40676. },
  40677. {
  40678. name: "Earth's Shadow",
  40679. height: math.unit(6200, "miles")
  40680. },
  40681. {
  40682. name: "Universal Demon",
  40683. height: math.unit(28e9, "parsecs")
  40684. },
  40685. {
  40686. name: "Multiverse God",
  40687. height: math.unit(3, "multiverses")
  40688. },
  40689. ]
  40690. ))
  40691. characterMakers.push(() => makeCharacter(
  40692. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40693. {
  40694. front: {
  40695. height: math.unit(5 + 5/12, "feet"),
  40696. name: "Front",
  40697. image: {
  40698. source: "./media/characters/fawn/front.svg",
  40699. extra: 1873/1731,
  40700. bottom: 95/1968
  40701. }
  40702. },
  40703. back: {
  40704. height: math.unit(5 + 5/12, "feet"),
  40705. name: "Back",
  40706. image: {
  40707. source: "./media/characters/fawn/back.svg",
  40708. extra: 1813/1700,
  40709. bottom: 14/1827
  40710. }
  40711. },
  40712. hoof: {
  40713. height: math.unit(1.45, "feet"),
  40714. name: "Hoof",
  40715. image: {
  40716. source: "./media/characters/fawn/hoof.svg"
  40717. }
  40718. },
  40719. },
  40720. [
  40721. {
  40722. name: "Normal",
  40723. height: math.unit(5 + 5/12, "feet"),
  40724. default: true
  40725. },
  40726. ]
  40727. ))
  40728. characterMakers.push(() => makeCharacter(
  40729. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40730. {
  40731. front: {
  40732. height: math.unit(2 + 5/12, "feet"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/orion/front.svg",
  40736. extra: 1366/1304,
  40737. bottom: 43/1409
  40738. }
  40739. },
  40740. paw: {
  40741. height: math.unit(0.52, "feet"),
  40742. name: "Paw",
  40743. image: {
  40744. source: "./media/characters/orion/paw.svg"
  40745. }
  40746. },
  40747. },
  40748. [
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(2 + 5/12, "feet"),
  40752. default: true
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40758. {
  40759. front: {
  40760. height: math.unit(5 + 10/12, "feet"),
  40761. name: "Front",
  40762. image: {
  40763. source: "./media/characters/vera/front.svg",
  40764. extra: 1680/1575,
  40765. bottom: 49/1729
  40766. }
  40767. },
  40768. back: {
  40769. height: math.unit(5 + 10/12, "feet"),
  40770. name: "Back",
  40771. image: {
  40772. source: "./media/characters/vera/back.svg",
  40773. extra: 1700/1588,
  40774. bottom: 18/1718
  40775. }
  40776. },
  40777. arcanine: {
  40778. height: math.unit(6 + 8/12, "feet"),
  40779. name: "Arcanine",
  40780. image: {
  40781. source: "./media/characters/vera/arcanine.svg",
  40782. extra: 1590/1511,
  40783. bottom: 71/1661
  40784. }
  40785. },
  40786. maw: {
  40787. height: math.unit(0.82, "feet"),
  40788. name: "Maw",
  40789. image: {
  40790. source: "./media/characters/vera/maw.svg"
  40791. }
  40792. },
  40793. mawArcanine: {
  40794. height: math.unit(0.97, "feet"),
  40795. name: "Maw (Arcanine)",
  40796. image: {
  40797. source: "./media/characters/vera/maw-arcanine.svg"
  40798. }
  40799. },
  40800. paw: {
  40801. height: math.unit(0.75, "feet"),
  40802. name: "Paw",
  40803. image: {
  40804. source: "./media/characters/vera/paw.svg"
  40805. }
  40806. },
  40807. pawprint: {
  40808. height: math.unit(0.52, "feet"),
  40809. name: "Pawprint",
  40810. image: {
  40811. source: "./media/characters/vera/pawprint.svg"
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(5 + 10/12, "feet"),
  40819. default: true
  40820. },
  40821. {
  40822. name: "Macro",
  40823. height: math.unit(75, "feet")
  40824. },
  40825. ]
  40826. ))
  40827. characterMakers.push(() => makeCharacter(
  40828. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40829. {
  40830. front: {
  40831. height: math.unit(4, "feet"),
  40832. weight: math.unit(40, "lb"),
  40833. name: "Front",
  40834. image: {
  40835. source: "./media/characters/orvan-rabbit/front.svg",
  40836. extra: 1896/1642,
  40837. bottom: 29/1925
  40838. }
  40839. },
  40840. },
  40841. [
  40842. {
  40843. name: "Normal",
  40844. height: math.unit(4, "feet"),
  40845. default: true
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(6, "feet"),
  40854. weight: math.unit(168, "lb"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/lisa/front.svg",
  40858. extra: 2065/1867,
  40859. bottom: 46/2111
  40860. }
  40861. },
  40862. back: {
  40863. height: math.unit(6, "feet"),
  40864. weight: math.unit(168, "lb"),
  40865. name: "Back",
  40866. image: {
  40867. source: "./media/characters/lisa/back.svg",
  40868. extra: 1982/1838,
  40869. bottom: 29/2011
  40870. }
  40871. },
  40872. maw: {
  40873. height: math.unit(0.81, "feet"),
  40874. name: "Maw",
  40875. image: {
  40876. source: "./media/characters/lisa/maw.svg"
  40877. }
  40878. },
  40879. paw: {
  40880. height: math.unit(0.9, "feet"),
  40881. name: "Paw",
  40882. image: {
  40883. source: "./media/characters/lisa/paw.svg"
  40884. }
  40885. },
  40886. caribousune: {
  40887. height: math.unit(7 + 2/12, "feet"),
  40888. weight: math.unit(268, "lb"),
  40889. name: "Caribousune",
  40890. image: {
  40891. source: "./media/characters/lisa/caribousune.svg",
  40892. extra: 1843/1633,
  40893. bottom: 29/1872
  40894. }
  40895. },
  40896. frontCaribousune: {
  40897. height: math.unit(7 + 2/12, "feet"),
  40898. weight: math.unit(268, "lb"),
  40899. name: "Front (Caribousune)",
  40900. image: {
  40901. source: "./media/characters/lisa/front-caribousune.svg",
  40902. extra: 1818/1638,
  40903. bottom: 52/1870
  40904. }
  40905. },
  40906. sideCaribousune: {
  40907. height: math.unit(7 + 2/12, "feet"),
  40908. weight: math.unit(268, "lb"),
  40909. name: "Side (Caribousune)",
  40910. image: {
  40911. source: "./media/characters/lisa/side-caribousune.svg",
  40912. extra: 1851/1635,
  40913. bottom: 16/1867
  40914. }
  40915. },
  40916. backCaribousune: {
  40917. height: math.unit(7 + 2/12, "feet"),
  40918. weight: math.unit(268, "lb"),
  40919. name: "Back (Caribousune)",
  40920. image: {
  40921. source: "./media/characters/lisa/back-caribousune.svg",
  40922. extra: 1801/1604,
  40923. bottom: 44/1845
  40924. }
  40925. },
  40926. caribou: {
  40927. height: math.unit(7 + 2/12, "feet"),
  40928. weight: math.unit(268, "lb"),
  40929. name: "Caribou",
  40930. image: {
  40931. source: "./media/characters/lisa/caribou.svg",
  40932. extra: 1843/1633,
  40933. bottom: 29/1872
  40934. }
  40935. },
  40936. frontCaribou: {
  40937. height: math.unit(7 + 2/12, "feet"),
  40938. weight: math.unit(268, "lb"),
  40939. name: "Front (Caribou)",
  40940. image: {
  40941. source: "./media/characters/lisa/front-caribou.svg",
  40942. extra: 1818/1638,
  40943. bottom: 52/1870
  40944. }
  40945. },
  40946. sideCaribou: {
  40947. height: math.unit(7 + 2/12, "feet"),
  40948. weight: math.unit(268, "lb"),
  40949. name: "Side (Caribou)",
  40950. image: {
  40951. source: "./media/characters/lisa/side-caribou.svg",
  40952. extra: 1851/1635,
  40953. bottom: 16/1867
  40954. }
  40955. },
  40956. backCaribou: {
  40957. height: math.unit(7 + 2/12, "feet"),
  40958. weight: math.unit(268, "lb"),
  40959. name: "Back (Caribou)",
  40960. image: {
  40961. source: "./media/characters/lisa/back-caribou.svg",
  40962. extra: 1801/1604,
  40963. bottom: 44/1845
  40964. }
  40965. },
  40966. mawCaribou: {
  40967. height: math.unit(1.45, "feet"),
  40968. name: "Maw (Caribou)",
  40969. image: {
  40970. source: "./media/characters/lisa/maw-caribou.svg"
  40971. }
  40972. },
  40973. mawCaribousune: {
  40974. height: math.unit(1.45, "feet"),
  40975. name: "Maw (Caribousune)",
  40976. image: {
  40977. source: "./media/characters/lisa/maw-caribousune.svg"
  40978. }
  40979. },
  40980. pawCaribousune: {
  40981. height: math.unit(1.61, "feet"),
  40982. name: "Paw (Caribou)",
  40983. image: {
  40984. source: "./media/characters/lisa/paw-caribousune.svg"
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "Normal",
  40991. height: math.unit(6, "feet")
  40992. },
  40993. {
  40994. name: "God Size",
  40995. height: math.unit(72, "feet"),
  40996. default: true
  40997. },
  40998. {
  40999. name: "Towering",
  41000. height: math.unit(288, "feet")
  41001. },
  41002. {
  41003. name: "City Size",
  41004. height: math.unit(48384, "feet")
  41005. },
  41006. {
  41007. name: "Continental",
  41008. height: math.unit(4200, "miles")
  41009. },
  41010. {
  41011. name: "Planet Eater",
  41012. height: math.unit(42, "earths")
  41013. },
  41014. {
  41015. name: "Star Swallower",
  41016. height: math.unit(42, "solarradii")
  41017. },
  41018. {
  41019. name: "System Swallower",
  41020. height: math.unit(84000, "AU")
  41021. },
  41022. {
  41023. name: "Galaxy Gobbler",
  41024. height: math.unit(42, "galaxies")
  41025. },
  41026. {
  41027. name: "Universe Devourer",
  41028. height: math.unit(42, "universes")
  41029. },
  41030. {
  41031. name: "Multiverse Muncher",
  41032. height: math.unit(42, "multiverses")
  41033. },
  41034. ]
  41035. ))
  41036. characterMakers.push(() => makeCharacter(
  41037. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41038. {
  41039. front: {
  41040. height: math.unit(36, "feet"),
  41041. name: "Front",
  41042. image: {
  41043. source: "./media/characters/shadow-rat/front.svg",
  41044. extra: 1845/1758,
  41045. bottom: 83/1928
  41046. }
  41047. },
  41048. },
  41049. [
  41050. {
  41051. name: "Macro",
  41052. height: math.unit(36, "feet"),
  41053. default: true
  41054. },
  41055. ]
  41056. ))
  41057. characterMakers.push(() => makeCharacter(
  41058. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41059. {
  41060. side: {
  41061. height: math.unit(8, "feet"),
  41062. weight: math.unit(2630, "lb"),
  41063. name: "Side",
  41064. image: {
  41065. source: "./media/characters/torallia/side.svg",
  41066. extra: 2164/2021,
  41067. bottom: 371/2535
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Mortal Interaction",
  41074. height: math.unit(8, "feet")
  41075. },
  41076. {
  41077. name: "Natural",
  41078. height: math.unit(24, "feet"),
  41079. default: true
  41080. },
  41081. {
  41082. name: "Giant",
  41083. height: math.unit(80, "feet")
  41084. },
  41085. {
  41086. name: "Kaiju",
  41087. height: math.unit(240, "feet")
  41088. },
  41089. {
  41090. name: "Macro",
  41091. height: math.unit(800, "feet")
  41092. },
  41093. {
  41094. name: "Macro+",
  41095. height: math.unit(2400, "feet")
  41096. },
  41097. {
  41098. name: "Macro++",
  41099. height: math.unit(8000, "feet")
  41100. },
  41101. {
  41102. name: "City-Crushing",
  41103. height: math.unit(24000, "feet")
  41104. },
  41105. {
  41106. name: "Mountain-Mashing",
  41107. height: math.unit(80000, "feet")
  41108. },
  41109. {
  41110. name: "District Demolisher",
  41111. height: math.unit(240000, "feet")
  41112. },
  41113. {
  41114. name: "Tri-County Terror",
  41115. height: math.unit(800000, "feet")
  41116. },
  41117. {
  41118. name: "State Smasher",
  41119. height: math.unit(2.4e6, "feet")
  41120. },
  41121. {
  41122. name: "Nation Nemesis",
  41123. height: math.unit(8e6, "feet")
  41124. },
  41125. {
  41126. name: "Continent Cracker",
  41127. height: math.unit(2.4e7, "feet")
  41128. },
  41129. {
  41130. name: "Planet-Pillaging",
  41131. height: math.unit(8e7, "feet")
  41132. },
  41133. {
  41134. name: "Earth-Eclipsing",
  41135. height: math.unit(2.4e8, "feet")
  41136. },
  41137. {
  41138. name: "Jovian-Jostling",
  41139. height: math.unit(8e8, "feet")
  41140. },
  41141. {
  41142. name: "Gas Giant Gulper",
  41143. height: math.unit(2.4e9, "feet")
  41144. },
  41145. {
  41146. name: "Astral Annihilator",
  41147. height: math.unit(8e9, "feet")
  41148. },
  41149. {
  41150. name: "Celestial Conqueror",
  41151. height: math.unit(2.4e10, "feet")
  41152. },
  41153. {
  41154. name: "Sol-Swallowing",
  41155. height: math.unit(8e10, "feet")
  41156. },
  41157. {
  41158. name: "Hunter of the Heavens",
  41159. height: math.unit(2.4e13, "feet")
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(6 + 8/12, "feet"),
  41168. weight: math.unit(250, "kilograms"),
  41169. volume: math.unit(28, "liters"),
  41170. name: "Front",
  41171. image: {
  41172. source: "./media/characters/rebecca-pawlson/front.svg",
  41173. extra: 1737/1596,
  41174. bottom: 107/1844
  41175. }
  41176. },
  41177. back: {
  41178. height: math.unit(6 + 8/12, "feet"),
  41179. weight: math.unit(250, "kilograms"),
  41180. volume: math.unit(28, "liters"),
  41181. name: "Back",
  41182. image: {
  41183. source: "./media/characters/rebecca-pawlson/back.svg",
  41184. extra: 1702/1523,
  41185. bottom: 86/1788
  41186. }
  41187. },
  41188. },
  41189. [
  41190. {
  41191. name: "Normal",
  41192. height: math.unit(6 + 8/12, "feet")
  41193. },
  41194. {
  41195. name: "Mini Macro",
  41196. height: math.unit(10, "feet"),
  41197. default: true
  41198. },
  41199. {
  41200. name: "Macro",
  41201. height: math.unit(100, "feet")
  41202. },
  41203. {
  41204. name: "Mega Macro",
  41205. height: math.unit(2500, "feet")
  41206. },
  41207. {
  41208. name: "Giga Macro",
  41209. height: math.unit(50, "miles")
  41210. },
  41211. ]
  41212. ))
  41213. characterMakers.push(() => makeCharacter(
  41214. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41215. {
  41216. front: {
  41217. height: math.unit(7 + 6/12, "feet"),
  41218. weight: math.unit(600, "lb"),
  41219. name: "Front",
  41220. image: {
  41221. source: "./media/characters/moxie-nova/front.svg",
  41222. extra: 1734/1652,
  41223. bottom: 41/1775
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(7 + 6/12, "feet"),
  41231. default: true
  41232. },
  41233. ]
  41234. ))
  41235. characterMakers.push(() => makeCharacter(
  41236. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41237. {
  41238. goat: {
  41239. height: math.unit(4, "feet"),
  41240. weight: math.unit(180, "lb"),
  41241. name: "Goat",
  41242. image: {
  41243. source: "./media/characters/tiffany/goat.svg",
  41244. extra: 1845/1595,
  41245. bottom: 106/1951
  41246. }
  41247. },
  41248. front: {
  41249. height: math.unit(5, "feet"),
  41250. weight: math.unit(150, "lb"),
  41251. name: "Foxcoon",
  41252. image: {
  41253. source: "./media/characters/tiffany/foxcoon.svg",
  41254. extra: 1941/1845,
  41255. bottom: 58/1999
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Normal",
  41262. height: math.unit(5, "feet"),
  41263. default: true
  41264. },
  41265. ]
  41266. ))
  41267. characterMakers.push(() => makeCharacter(
  41268. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41269. {
  41270. front: {
  41271. height: math.unit(8, "feet"),
  41272. weight: math.unit(300, "lb"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/raxinath/front.svg",
  41276. extra: 1407/1309,
  41277. bottom: 39/1446
  41278. }
  41279. },
  41280. back: {
  41281. height: math.unit(8, "feet"),
  41282. weight: math.unit(300, "lb"),
  41283. name: "Back",
  41284. image: {
  41285. source: "./media/characters/raxinath/back.svg",
  41286. extra: 1405/1315,
  41287. bottom: 9/1414
  41288. }
  41289. },
  41290. },
  41291. [
  41292. {
  41293. name: "Speck",
  41294. height: math.unit(0.5, "nm")
  41295. },
  41296. {
  41297. name: "Micro",
  41298. height: math.unit(3, "inches")
  41299. },
  41300. {
  41301. name: "Kobold",
  41302. height: math.unit(3, "feet")
  41303. },
  41304. {
  41305. name: "Normal",
  41306. height: math.unit(8, "feet"),
  41307. default: true
  41308. },
  41309. {
  41310. name: "Giant",
  41311. height: math.unit(50, "feet")
  41312. },
  41313. {
  41314. name: "Macro",
  41315. height: math.unit(1000, "feet")
  41316. },
  41317. {
  41318. name: "Megamacro",
  41319. height: math.unit(1, "mile")
  41320. },
  41321. ]
  41322. ))
  41323. characterMakers.push(() => makeCharacter(
  41324. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41325. {
  41326. front: {
  41327. height: math.unit(10, "feet"),
  41328. weight: math.unit(1442, "lb"),
  41329. name: "Front",
  41330. image: {
  41331. source: "./media/characters/mal-dragon/front.svg",
  41332. extra: 1515/1444,
  41333. bottom: 113/1628
  41334. }
  41335. },
  41336. back: {
  41337. height: math.unit(10, "feet"),
  41338. weight: math.unit(1442, "lb"),
  41339. name: "Back",
  41340. image: {
  41341. source: "./media/characters/mal-dragon/back.svg",
  41342. extra: 1527/1434,
  41343. bottom: 25/1552
  41344. }
  41345. },
  41346. },
  41347. [
  41348. {
  41349. name: "Mortal Interaction",
  41350. height: math.unit(10, "feet"),
  41351. default: true
  41352. },
  41353. {
  41354. name: "Large",
  41355. height: math.unit(30, "feet")
  41356. },
  41357. {
  41358. name: "Kaiju",
  41359. height: math.unit(300, "feet")
  41360. },
  41361. {
  41362. name: "Megamacro",
  41363. height: math.unit(10000, "feet")
  41364. },
  41365. {
  41366. name: "Continent Cracker",
  41367. height: math.unit(30000000, "feet")
  41368. },
  41369. {
  41370. name: "Sol-Swallowing",
  41371. height: math.unit(1e11, "feet")
  41372. },
  41373. {
  41374. name: "Light Universal",
  41375. height: math.unit(5, "universes")
  41376. },
  41377. {
  41378. name: "Universe Atoms",
  41379. height: math.unit(1.829e9, "universes")
  41380. },
  41381. {
  41382. name: "Light Multiversal",
  41383. height: math.unit(5, "multiverses")
  41384. },
  41385. {
  41386. name: "Multiverse Atoms",
  41387. height: math.unit(1.829e9, "multiverses")
  41388. },
  41389. {
  41390. name: "Fabric of Time",
  41391. height: math.unit(1e262, "multiverses")
  41392. },
  41393. ]
  41394. ))
  41395. characterMakers.push(() => makeCharacter(
  41396. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41397. {
  41398. front: {
  41399. height: math.unit(9, "feet"),
  41400. weight: math.unit(1050, "lb"),
  41401. name: "Front",
  41402. image: {
  41403. source: "./media/characters/tabitha/front.svg",
  41404. extra: 2083/1994,
  41405. bottom: 68/2151
  41406. }
  41407. },
  41408. },
  41409. [
  41410. {
  41411. name: "Baseline",
  41412. height: math.unit(9, "feet"),
  41413. default: true
  41414. },
  41415. {
  41416. name: "Giant",
  41417. height: math.unit(90, "feet")
  41418. },
  41419. {
  41420. name: "Macro",
  41421. height: math.unit(900, "feet")
  41422. },
  41423. {
  41424. name: "Megamacro",
  41425. height: math.unit(9000, "feet")
  41426. },
  41427. {
  41428. name: "City-Crushing",
  41429. height: math.unit(27000, "feet")
  41430. },
  41431. {
  41432. name: "Mountain-Mashing",
  41433. height: math.unit(90000, "feet")
  41434. },
  41435. {
  41436. name: "Nation Nemesis",
  41437. height: math.unit(9e6, "feet")
  41438. },
  41439. {
  41440. name: "Continent Cracker",
  41441. height: math.unit(27e6, "feet")
  41442. },
  41443. {
  41444. name: "Earth-Eclipsing",
  41445. height: math.unit(2.7e8, "feet")
  41446. },
  41447. {
  41448. name: "Gas Giant Gulper",
  41449. height: math.unit(2.7e9, "feet")
  41450. },
  41451. {
  41452. name: "Sol-Swallowing",
  41453. height: math.unit(9e10, "feet")
  41454. },
  41455. {
  41456. name: "Galaxy Gulper",
  41457. height: math.unit(9, "galaxies")
  41458. },
  41459. {
  41460. name: "Cosmos Churner",
  41461. height: math.unit(9, "universes")
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41467. {
  41468. front: {
  41469. height: math.unit(160, "cm"),
  41470. weight: math.unit(55, "kg"),
  41471. name: "Front",
  41472. image: {
  41473. source: "./media/characters/tow/front.svg",
  41474. extra: 1751/1722,
  41475. bottom: 74/1825
  41476. }
  41477. },
  41478. },
  41479. [
  41480. {
  41481. name: "Norm",
  41482. height: math.unit(160, "cm")
  41483. },
  41484. {
  41485. name: "Casual",
  41486. height: math.unit(3200, "m"),
  41487. default: true
  41488. },
  41489. {
  41490. name: "Show-Off",
  41491. height: math.unit(160, "km")
  41492. },
  41493. ]
  41494. ))
  41495. characterMakers.push(() => makeCharacter(
  41496. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41497. {
  41498. front: {
  41499. height: math.unit(7 + 11/12, "feet"),
  41500. weight: math.unit(342.8, "lb"),
  41501. name: "Front",
  41502. image: {
  41503. source: "./media/characters/vivian-orca-dragon/front.svg",
  41504. extra: 1890/1865,
  41505. bottom: 28/1918
  41506. }
  41507. },
  41508. },
  41509. [
  41510. {
  41511. name: "Micro",
  41512. height: math.unit(5, "inches")
  41513. },
  41514. {
  41515. name: "Normal",
  41516. height: math.unit(7 + 11/12, "feet"),
  41517. default: true
  41518. },
  41519. {
  41520. name: "Macro",
  41521. height: math.unit(395 + 7/12, "feet")
  41522. },
  41523. ]
  41524. ))
  41525. characterMakers.push(() => makeCharacter(
  41526. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41527. {
  41528. side: {
  41529. height: math.unit(10, "feet"),
  41530. weight: math.unit(1442, "lb"),
  41531. name: "Side",
  41532. image: {
  41533. source: "./media/characters/lotherakon/side.svg",
  41534. extra: 1604/1497,
  41535. bottom: 89/1693
  41536. }
  41537. },
  41538. },
  41539. [
  41540. {
  41541. name: "Mortal Interaction",
  41542. height: math.unit(10, "feet")
  41543. },
  41544. {
  41545. name: "Large",
  41546. height: math.unit(30, "feet"),
  41547. default: true
  41548. },
  41549. {
  41550. name: "Giant",
  41551. height: math.unit(100, "feet")
  41552. },
  41553. {
  41554. name: "Kaiju",
  41555. height: math.unit(300, "feet")
  41556. },
  41557. {
  41558. name: "Macro",
  41559. height: math.unit(1000, "feet")
  41560. },
  41561. {
  41562. name: "Macro+",
  41563. height: math.unit(3000, "feet")
  41564. },
  41565. {
  41566. name: "Megamacro",
  41567. height: math.unit(10000, "feet")
  41568. },
  41569. {
  41570. name: "City-Crushing",
  41571. height: math.unit(30000, "feet")
  41572. },
  41573. {
  41574. name: "Continent Cracker",
  41575. height: math.unit(30e6, "feet")
  41576. },
  41577. {
  41578. name: "Earth Eclipsing",
  41579. height: math.unit(3e8, "feet")
  41580. },
  41581. {
  41582. name: "Gas Giant Gulper",
  41583. height: math.unit(3e9, "feet")
  41584. },
  41585. {
  41586. name: "Sol-Swallowing",
  41587. height: math.unit(1e11, "feet")
  41588. },
  41589. {
  41590. name: "System Swallower",
  41591. height: math.unit(3e14, "feet")
  41592. },
  41593. {
  41594. name: "Galaxy Gulper",
  41595. height: math.unit(10, "galaxies")
  41596. },
  41597. {
  41598. name: "Light Universal",
  41599. height: math.unit(5, "universes")
  41600. },
  41601. {
  41602. name: "Universe Palm",
  41603. height: math.unit(20, "universes")
  41604. },
  41605. {
  41606. name: "Light Multiversal",
  41607. height: math.unit(5, "multiverses")
  41608. },
  41609. {
  41610. name: "Multiverse Palm",
  41611. height: math.unit(20, "multiverses")
  41612. },
  41613. {
  41614. name: "Inferno Incarnate",
  41615. height: math.unit(1e7, "multiverses")
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(8, "feet"),
  41624. weight: math.unit(1200, "lb"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/malithee/front.svg",
  41628. extra: 1675/1640,
  41629. bottom: 162/1837
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Mortal Interaction",
  41636. height: math.unit(8, "feet"),
  41637. default: true
  41638. },
  41639. {
  41640. name: "Large",
  41641. height: math.unit(24, "feet")
  41642. },
  41643. {
  41644. name: "Kaiju",
  41645. height: math.unit(240, "feet")
  41646. },
  41647. {
  41648. name: "Megamacro",
  41649. height: math.unit(8000, "feet")
  41650. },
  41651. {
  41652. name: "Continent Cracker",
  41653. height: math.unit(24e6, "feet")
  41654. },
  41655. {
  41656. name: "Earth-Eclipsing",
  41657. height: math.unit(2.4e8, "feet")
  41658. },
  41659. {
  41660. name: "Sol-Swallowing",
  41661. height: math.unit(8e10, "feet")
  41662. },
  41663. {
  41664. name: "Galaxy Gulper",
  41665. height: math.unit(8, "galaxies")
  41666. },
  41667. {
  41668. name: "Light Universal",
  41669. height: math.unit(4, "universes")
  41670. },
  41671. {
  41672. name: "Universe Atoms",
  41673. height: math.unit(1.829e9, "universes")
  41674. },
  41675. {
  41676. name: "Light Multiversal",
  41677. height: math.unit(4, "multiverses")
  41678. },
  41679. {
  41680. name: "Multiverse Atoms",
  41681. height: math.unit(1.829e9, "multiverses")
  41682. },
  41683. {
  41684. name: "Nigh-Omnipresence",
  41685. height: math.unit(8e261, "multiverses")
  41686. },
  41687. ]
  41688. ))
  41689. characterMakers.push(() => makeCharacter(
  41690. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41691. {
  41692. front: {
  41693. height: math.unit(10, "feet"),
  41694. weight: math.unit(1500, "lb"),
  41695. name: "Front",
  41696. image: {
  41697. source: "./media/characters/miles-thestia/front.svg",
  41698. extra: 1812/1727,
  41699. bottom: 86/1898
  41700. }
  41701. },
  41702. back: {
  41703. height: math.unit(10, "feet"),
  41704. weight: math.unit(1500, "lb"),
  41705. name: "Back",
  41706. image: {
  41707. source: "./media/characters/miles-thestia/back.svg",
  41708. extra: 1799/1690,
  41709. bottom: 47/1846
  41710. }
  41711. },
  41712. frontNsfw: {
  41713. height: math.unit(10, "feet"),
  41714. weight: math.unit(1500, "lb"),
  41715. name: "Front (NSFW)",
  41716. image: {
  41717. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41718. extra: 1812/1727,
  41719. bottom: 86/1898
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Mini-Macro",
  41726. height: math.unit(10, "feet"),
  41727. default: true
  41728. },
  41729. ]
  41730. ))
  41731. characterMakers.push(() => makeCharacter(
  41732. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41733. {
  41734. front: {
  41735. height: math.unit(25, "feet"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/titan-s-wulf/front.svg",
  41739. extra: 1560/1484,
  41740. bottom: 76/1636
  41741. }
  41742. },
  41743. },
  41744. [
  41745. {
  41746. name: "Smallest",
  41747. height: math.unit(25, "feet"),
  41748. default: true
  41749. },
  41750. {
  41751. name: "Normal",
  41752. height: math.unit(200, "feet")
  41753. },
  41754. {
  41755. name: "Macro",
  41756. height: math.unit(200000, "feet")
  41757. },
  41758. {
  41759. name: "Multiversal Original",
  41760. height: math.unit(10000, "multiverses")
  41761. },
  41762. ]
  41763. ))
  41764. characterMakers.push(() => makeCharacter(
  41765. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41766. {
  41767. front: {
  41768. height: math.unit(8, "feet"),
  41769. weight: math.unit(553, "lb"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/tawendeh/front.svg",
  41773. extra: 2365/2268,
  41774. bottom: 83/2448
  41775. }
  41776. },
  41777. frontClothed: {
  41778. height: math.unit(8, "feet"),
  41779. weight: math.unit(553, "lb"),
  41780. name: "Front (Clothed)",
  41781. image: {
  41782. source: "./media/characters/tawendeh/front-clothed.svg",
  41783. extra: 2365/2268,
  41784. bottom: 83/2448
  41785. }
  41786. },
  41787. back: {
  41788. height: math.unit(8, "feet"),
  41789. weight: math.unit(553, "lb"),
  41790. name: "Back",
  41791. image: {
  41792. source: "./media/characters/tawendeh/back.svg",
  41793. extra: 2397/2294,
  41794. bottom: 42/2439
  41795. }
  41796. },
  41797. },
  41798. [
  41799. {
  41800. name: "Mortal Interaction",
  41801. height: math.unit(8, "feet"),
  41802. default: true
  41803. },
  41804. {
  41805. name: "Giant",
  41806. height: math.unit(80, "feet")
  41807. },
  41808. {
  41809. name: "Macro",
  41810. height: math.unit(800, "feet")
  41811. },
  41812. {
  41813. name: "Megamacro",
  41814. height: math.unit(8000, "feet")
  41815. },
  41816. {
  41817. name: "City-Crushing",
  41818. height: math.unit(24000, "feet")
  41819. },
  41820. {
  41821. name: "Mountain-Mashing",
  41822. height: math.unit(80000, "feet")
  41823. },
  41824. {
  41825. name: "Nation Nemesis",
  41826. height: math.unit(8e6, "feet")
  41827. },
  41828. {
  41829. name: "Continent Cracker",
  41830. height: math.unit(24e6, "feet")
  41831. },
  41832. {
  41833. name: "Earth-Eclipsing",
  41834. height: math.unit(2.4e8, "feet")
  41835. },
  41836. {
  41837. name: "Gas Giant Gulper",
  41838. height: math.unit(2.4e9, "feet")
  41839. },
  41840. {
  41841. name: "Sol-Swallowing",
  41842. height: math.unit(8e10, "feet")
  41843. },
  41844. {
  41845. name: "Galaxy Gulper",
  41846. height: math.unit(8, "galaxies")
  41847. },
  41848. {
  41849. name: "Cosmos Churner",
  41850. height: math.unit(8, "universes")
  41851. },
  41852. {
  41853. name: "Omnipotent Otter",
  41854. height: math.unit(80, "universes")
  41855. },
  41856. ]
  41857. ))
  41858. characterMakers.push(() => makeCharacter(
  41859. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41860. {
  41861. front: {
  41862. height: math.unit(2.6, "meters"),
  41863. weight: math.unit(900, "kg"),
  41864. name: "Front",
  41865. image: {
  41866. source: "./media/characters/neesha/front.svg",
  41867. extra: 1803/1653,
  41868. bottom: 128/1931
  41869. }
  41870. },
  41871. },
  41872. [
  41873. {
  41874. name: "Normal",
  41875. height: math.unit(2.6, "meters"),
  41876. default: true
  41877. },
  41878. {
  41879. name: "Macro",
  41880. height: math.unit(50, "meters")
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(5, "feet"),
  41889. weight: math.unit(185, "lb"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/kyera/front.svg",
  41893. extra: 1875/1790,
  41894. bottom: 96/1971
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(5, "feet"),
  41902. default: true
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41908. {
  41909. front: {
  41910. height: math.unit(7 + 6/12, "feet"),
  41911. weight: math.unit(540, "lb"),
  41912. name: "Front",
  41913. image: {
  41914. source: "./media/characters/yuko/front.svg",
  41915. extra: 1282/1222,
  41916. bottom: 101/1383
  41917. }
  41918. },
  41919. frontClothed: {
  41920. height: math.unit(7 + 6/12, "feet"),
  41921. weight: math.unit(540, "lb"),
  41922. name: "Front (Clothed)",
  41923. image: {
  41924. source: "./media/characters/yuko/front-clothed.svg",
  41925. extra: 1282/1222,
  41926. bottom: 101/1383
  41927. }
  41928. },
  41929. },
  41930. [
  41931. {
  41932. name: "Normal",
  41933. height: math.unit(7 + 6/12, "feet"),
  41934. default: true
  41935. },
  41936. {
  41937. name: "Macro",
  41938. height: math.unit(26 + 9/12, "feet")
  41939. },
  41940. {
  41941. name: "Megamacro",
  41942. height: math.unit(300, "feet")
  41943. },
  41944. {
  41945. name: "Gigamacro",
  41946. height: math.unit(5000, "feet")
  41947. },
  41948. {
  41949. name: "Planetary",
  41950. height: math.unit(10000, "miles")
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41956. {
  41957. front: {
  41958. height: math.unit(8 + 2/12, "feet"),
  41959. weight: math.unit(600, "lb"),
  41960. name: "Front",
  41961. image: {
  41962. source: "./media/characters/deam-nitrel/front.svg",
  41963. extra: 1308/1234,
  41964. bottom: 125/1433
  41965. }
  41966. },
  41967. },
  41968. [
  41969. {
  41970. name: "Normal",
  41971. height: math.unit(8 + 2/12, "feet"),
  41972. default: true
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(6.1, "feet"),
  41981. weight: math.unit(180, "lb"),
  41982. name: "Front",
  41983. image: {
  41984. source: "./media/characters/skyress/front.svg",
  41985. extra: 1045/915,
  41986. bottom: 28/1073
  41987. }
  41988. },
  41989. maw: {
  41990. height: math.unit(1, "feet"),
  41991. name: "Maw",
  41992. image: {
  41993. source: "./media/characters/skyress/maw.svg"
  41994. }
  41995. },
  41996. },
  41997. [
  41998. {
  41999. name: "Normal",
  42000. height: math.unit(6.1, "feet"),
  42001. default: true
  42002. },
  42003. {
  42004. name: "Macro",
  42005. height: math.unit(200, "feet")
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(4 + 2/12, "feet"),
  42014. weight: math.unit(40, "kg"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/amethyst-jones/front.svg",
  42018. extra: 1220/1150,
  42019. bottom: 101/1321
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Normal",
  42026. height: math.unit(4 + 2/12, "feet"),
  42027. default: true
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(1.7, "m"),
  42036. weight: math.unit(135, "lb"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/jade/front.svg",
  42040. extra: 1818/1767,
  42041. bottom: 32/1850
  42042. }
  42043. },
  42044. back: {
  42045. height: math.unit(1.7, "m"),
  42046. weight: math.unit(135, "lb"),
  42047. name: "Back",
  42048. image: {
  42049. source: "./media/characters/jade/back.svg",
  42050. extra: 1869/1809,
  42051. bottom: 35/1904
  42052. }
  42053. },
  42054. hand: {
  42055. height: math.unit(0.24, "m"),
  42056. name: "Hand",
  42057. image: {
  42058. source: "./media/characters/jade/hand.svg"
  42059. }
  42060. },
  42061. foot: {
  42062. height: math.unit(0.263, "m"),
  42063. name: "Foot",
  42064. image: {
  42065. source: "./media/characters/jade/foot.svg"
  42066. }
  42067. },
  42068. dick: {
  42069. height: math.unit(0.47, "m"),
  42070. name: "Dick",
  42071. image: {
  42072. source: "./media/characters/jade/dick.svg"
  42073. }
  42074. },
  42075. },
  42076. [
  42077. {
  42078. name: "Micro",
  42079. height: math.unit(22, "cm")
  42080. },
  42081. {
  42082. name: "Normal",
  42083. height: math.unit(1.7, "m"),
  42084. default: true
  42085. },
  42086. {
  42087. name: "Macro",
  42088. height: math.unit(152, "m")
  42089. },
  42090. ]
  42091. ))
  42092. characterMakers.push(() => makeCharacter(
  42093. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42094. {
  42095. front: {
  42096. height: math.unit(100, "miles"),
  42097. weight: math.unit(20000, "tons"),
  42098. name: "Front",
  42099. image: {
  42100. source: "./media/characters/cookie/front.svg",
  42101. extra: 1125/1070,
  42102. bottom: 30/1155
  42103. }
  42104. },
  42105. },
  42106. [
  42107. {
  42108. name: "Big",
  42109. height: math.unit(50, "feet")
  42110. },
  42111. {
  42112. name: "Macro",
  42113. height: math.unit(100, "miles"),
  42114. default: true
  42115. },
  42116. {
  42117. name: "Megamacro",
  42118. height: math.unit(90000, "miles")
  42119. },
  42120. ]
  42121. ))
  42122. characterMakers.push(() => makeCharacter(
  42123. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42124. {
  42125. front: {
  42126. height: math.unit(6, "feet"),
  42127. weight: math.unit(145, "lb"),
  42128. name: "Front",
  42129. image: {
  42130. source: "./media/characters/farzian/front.svg",
  42131. extra: 1902/1693,
  42132. bottom: 108/2010
  42133. }
  42134. },
  42135. },
  42136. [
  42137. {
  42138. name: "Macro",
  42139. height: math.unit(500, "feet"),
  42140. default: true
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42146. {
  42147. front: {
  42148. height: math.unit(3 + 6/12, "feet"),
  42149. weight: math.unit(50, "lb"),
  42150. name: "Front",
  42151. image: {
  42152. source: "./media/characters/kimberly-tilson/front.svg",
  42153. extra: 1400/1322,
  42154. bottom: 36/1436
  42155. }
  42156. },
  42157. back: {
  42158. height: math.unit(3 + 6/12, "feet"),
  42159. weight: math.unit(50, "lb"),
  42160. name: "Back",
  42161. image: {
  42162. source: "./media/characters/kimberly-tilson/back.svg",
  42163. extra: 1370/1307,
  42164. bottom: 20/1390
  42165. }
  42166. },
  42167. },
  42168. [
  42169. {
  42170. name: "Normal",
  42171. height: math.unit(3 + 6/12, "feet"),
  42172. default: true
  42173. },
  42174. ]
  42175. ))
  42176. characterMakers.push(() => makeCharacter(
  42177. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42178. {
  42179. front: {
  42180. height: math.unit(1148, "feet"),
  42181. weight: math.unit(34057, "lb"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/harthos/front.svg",
  42185. extra: 1391/1339,
  42186. bottom: 13/1404
  42187. }
  42188. },
  42189. },
  42190. [
  42191. {
  42192. name: "Macro",
  42193. height: math.unit(1148, "feet"),
  42194. default: true
  42195. },
  42196. ]
  42197. ))
  42198. characterMakers.push(() => makeCharacter(
  42199. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42200. {
  42201. front: {
  42202. height: math.unit(15, "feet"),
  42203. name: "Front",
  42204. image: {
  42205. source: "./media/characters/hypatia/front.svg",
  42206. extra: 1653/1591,
  42207. bottom: 79/1732
  42208. }
  42209. },
  42210. },
  42211. [
  42212. {
  42213. name: "Normal",
  42214. height: math.unit(15, "feet")
  42215. },
  42216. {
  42217. name: "Small",
  42218. height: math.unit(300, "feet")
  42219. },
  42220. {
  42221. name: "Macro",
  42222. height: math.unit(2500, "feet"),
  42223. default: true
  42224. },
  42225. {
  42226. name: "Mega Macro",
  42227. height: math.unit(1500, "miles")
  42228. },
  42229. {
  42230. name: "Giga Macro",
  42231. height: math.unit(1.5e6, "miles")
  42232. },
  42233. ]
  42234. ))
  42235. characterMakers.push(() => makeCharacter(
  42236. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42237. {
  42238. front: {
  42239. height: math.unit(6, "feet"),
  42240. weight: math.unit(200, "lb"),
  42241. name: "Front",
  42242. image: {
  42243. source: "./media/characters/wulver/front.svg",
  42244. extra: 1724/1632,
  42245. bottom: 130/1854
  42246. }
  42247. },
  42248. frontNsfw: {
  42249. height: math.unit(6, "feet"),
  42250. weight: math.unit(200, "lb"),
  42251. name: "Front (NSFW)",
  42252. image: {
  42253. source: "./media/characters/wulver/front-nsfw.svg",
  42254. extra: 1724/1632,
  42255. bottom: 130/1854
  42256. }
  42257. },
  42258. },
  42259. [
  42260. {
  42261. name: "Human-Sized",
  42262. height: math.unit(6, "feet")
  42263. },
  42264. {
  42265. name: "Normal",
  42266. height: math.unit(4, "meters"),
  42267. default: true
  42268. },
  42269. {
  42270. name: "Large",
  42271. height: math.unit(6, "m")
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42277. {
  42278. front: {
  42279. height: math.unit(7, "feet"),
  42280. name: "Front",
  42281. image: {
  42282. source: "./media/characters/maru/front.svg",
  42283. extra: 1595/1570,
  42284. bottom: 0/1595
  42285. }
  42286. },
  42287. },
  42288. [
  42289. {
  42290. name: "Normal",
  42291. height: math.unit(7, "feet"),
  42292. default: true
  42293. },
  42294. {
  42295. name: "Macro",
  42296. height: math.unit(700, "feet")
  42297. },
  42298. {
  42299. name: "Mega Macro",
  42300. height: math.unit(25, "miles")
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42306. {
  42307. front: {
  42308. height: math.unit(6, "feet"),
  42309. weight: math.unit(170, "lb"),
  42310. name: "Front",
  42311. image: {
  42312. source: "./media/characters/xenon/front.svg",
  42313. extra: 1376/1305,
  42314. bottom: 56/1432
  42315. }
  42316. },
  42317. back: {
  42318. height: math.unit(6, "feet"),
  42319. weight: math.unit(170, "lb"),
  42320. name: "Back",
  42321. image: {
  42322. source: "./media/characters/xenon/back.svg",
  42323. extra: 1328/1259,
  42324. bottom: 95/1423
  42325. }
  42326. },
  42327. maw: {
  42328. height: math.unit(0.52, "feet"),
  42329. name: "Maw",
  42330. image: {
  42331. source: "./media/characters/xenon/maw.svg"
  42332. }
  42333. },
  42334. handLeft: {
  42335. height: math.unit(0.82 * 169 / 153, "feet"),
  42336. name: "Hand (Left)",
  42337. image: {
  42338. source: "./media/characters/xenon/hand-left.svg"
  42339. }
  42340. },
  42341. handRight: {
  42342. height: math.unit(0.82, "feet"),
  42343. name: "Hand (Right)",
  42344. image: {
  42345. source: "./media/characters/xenon/hand-right.svg"
  42346. }
  42347. },
  42348. footLeft: {
  42349. height: math.unit(1.13, "feet"),
  42350. name: "Foot (Left)",
  42351. image: {
  42352. source: "./media/characters/xenon/foot-left.svg"
  42353. }
  42354. },
  42355. footRight: {
  42356. height: math.unit(1.13 * 194 / 196, "feet"),
  42357. name: "Foot (Right)",
  42358. image: {
  42359. source: "./media/characters/xenon/foot-right.svg"
  42360. }
  42361. },
  42362. },
  42363. [
  42364. {
  42365. name: "Micro",
  42366. height: math.unit(0.8, "inches")
  42367. },
  42368. {
  42369. name: "Normal",
  42370. height: math.unit(6, "feet")
  42371. },
  42372. {
  42373. name: "Macro",
  42374. height: math.unit(50, "feet"),
  42375. default: true
  42376. },
  42377. {
  42378. name: "Macro+",
  42379. height: math.unit(250, "feet")
  42380. },
  42381. {
  42382. name: "Megamacro",
  42383. height: math.unit(1500, "feet")
  42384. },
  42385. ]
  42386. ))
  42387. characterMakers.push(() => makeCharacter(
  42388. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42389. {
  42390. front: {
  42391. height: math.unit(7 + 5/12, "feet"),
  42392. name: "Front",
  42393. image: {
  42394. source: "./media/characters/zane/front.svg",
  42395. extra: 1260/1203,
  42396. bottom: 94/1354
  42397. }
  42398. },
  42399. back: {
  42400. height: math.unit(5.05, "feet"),
  42401. name: "Back",
  42402. image: {
  42403. source: "./media/characters/zane/back.svg",
  42404. extra: 893/829,
  42405. bottom: 30/923
  42406. }
  42407. },
  42408. werewolf: {
  42409. height: math.unit(11, "feet"),
  42410. name: "Werewolf",
  42411. image: {
  42412. source: "./media/characters/zane/werewolf.svg",
  42413. extra: 1383/1323,
  42414. bottom: 89/1472
  42415. }
  42416. },
  42417. foot: {
  42418. height: math.unit(1.46, "feet"),
  42419. name: "Foot",
  42420. image: {
  42421. source: "./media/characters/zane/foot.svg"
  42422. }
  42423. },
  42424. footFront: {
  42425. height: math.unit(0.784, "feet"),
  42426. name: "Foot (Front)",
  42427. image: {
  42428. source: "./media/characters/zane/foot-front.svg"
  42429. }
  42430. },
  42431. dick: {
  42432. height: math.unit(1.95, "feet"),
  42433. name: "Dick",
  42434. image: {
  42435. source: "./media/characters/zane/dick.svg"
  42436. }
  42437. },
  42438. dickWerewolf: {
  42439. height: math.unit(3.77, "feet"),
  42440. name: "Dick (Werewolf)",
  42441. image: {
  42442. source: "./media/characters/zane/dick.svg"
  42443. }
  42444. },
  42445. },
  42446. [
  42447. {
  42448. name: "Normal",
  42449. height: math.unit(7 + 5/12, "feet"),
  42450. default: true
  42451. },
  42452. ]
  42453. ))
  42454. characterMakers.push(() => makeCharacter(
  42455. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42456. {
  42457. front: {
  42458. height: math.unit(6 + 2/12, "feet"),
  42459. weight: math.unit(284, "lb"),
  42460. name: "Front",
  42461. image: {
  42462. source: "./media/characters/benni-desparque/front.svg",
  42463. extra: 1353/1126,
  42464. bottom: 69/1422
  42465. }
  42466. },
  42467. },
  42468. [
  42469. {
  42470. name: "Civilian",
  42471. height: math.unit(6 + 2/12, "feet")
  42472. },
  42473. {
  42474. name: "Normal",
  42475. height: math.unit(98, "feet"),
  42476. default: true
  42477. },
  42478. {
  42479. name: "Kaiju Fighter",
  42480. height: math.unit(268, "feet")
  42481. },
  42482. ]
  42483. ))
  42484. characterMakers.push(() => makeCharacter(
  42485. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42486. {
  42487. front: {
  42488. height: math.unit(5, "feet"),
  42489. weight: math.unit(105, "lb"),
  42490. name: "Front",
  42491. image: {
  42492. source: "./media/characters/maxine/front.svg",
  42493. extra: 1386/1250,
  42494. bottom: 71/1457
  42495. }
  42496. },
  42497. },
  42498. [
  42499. {
  42500. name: "Normal",
  42501. height: math.unit(5, "feet"),
  42502. default: true
  42503. },
  42504. ]
  42505. ))
  42506. characterMakers.push(() => makeCharacter(
  42507. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42508. {
  42509. front: {
  42510. height: math.unit(11 + 7/12, "feet"),
  42511. weight: math.unit(9576, "lb"),
  42512. name: "Front",
  42513. image: {
  42514. source: "./media/characters/scaly/front.svg",
  42515. extra: 888/867,
  42516. bottom: 36/924
  42517. }
  42518. },
  42519. },
  42520. [
  42521. {
  42522. name: "Normal",
  42523. height: math.unit(11 + 7/12, "feet"),
  42524. default: true
  42525. },
  42526. ]
  42527. ))
  42528. characterMakers.push(() => makeCharacter(
  42529. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42530. {
  42531. front: {
  42532. height: math.unit(6 + 3/12, "feet"),
  42533. name: "Front",
  42534. image: {
  42535. source: "./media/characters/saelria/front.svg",
  42536. extra: 1243/1138,
  42537. bottom: 46/1289
  42538. }
  42539. },
  42540. },
  42541. [
  42542. {
  42543. name: "Micro",
  42544. height: math.unit(6, "inches"),
  42545. },
  42546. {
  42547. name: "Normal",
  42548. height: math.unit(6 + 3/12, "feet"),
  42549. default: true
  42550. },
  42551. {
  42552. name: "Macro",
  42553. height: math.unit(25, "feet")
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42559. {
  42560. front: {
  42561. height: math.unit(80, "meters"),
  42562. weight: math.unit(7000, "tonnes"),
  42563. name: "Front",
  42564. image: {
  42565. source: "./media/characters/tef/front.svg",
  42566. extra: 2036/1991,
  42567. bottom: 54/2090
  42568. }
  42569. },
  42570. back: {
  42571. height: math.unit(80, "meters"),
  42572. weight: math.unit(7000, "tonnes"),
  42573. name: "Back",
  42574. image: {
  42575. source: "./media/characters/tef/back.svg",
  42576. extra: 2036/1991,
  42577. bottom: 54/2090
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Macro",
  42584. height: math.unit(80, "meters"),
  42585. default: true
  42586. },
  42587. ]
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42591. {
  42592. front: {
  42593. height: math.unit(13, "feet"),
  42594. weight: math.unit(6, "tons"),
  42595. name: "Front",
  42596. image: {
  42597. source: "./media/characters/rover/front.svg",
  42598. extra: 1233/1156,
  42599. bottom: 50/1283
  42600. }
  42601. },
  42602. back: {
  42603. height: math.unit(13, "feet"),
  42604. weight: math.unit(6, "tons"),
  42605. name: "Back",
  42606. image: {
  42607. source: "./media/characters/rover/back.svg",
  42608. extra: 1327/1258,
  42609. bottom: 39/1366
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(13, "feet"),
  42617. default: true
  42618. },
  42619. {
  42620. name: "Macro",
  42621. height: math.unit(1300, "feet")
  42622. },
  42623. {
  42624. name: "Megamacro",
  42625. height: math.unit(1300, "miles")
  42626. },
  42627. {
  42628. name: "Gigamacro",
  42629. height: math.unit(1300000, "miles")
  42630. },
  42631. ]
  42632. ))
  42633. characterMakers.push(() => makeCharacter(
  42634. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42635. {
  42636. front: {
  42637. height: math.unit(6, "feet"),
  42638. weight: math.unit(150, "lb"),
  42639. name: "Front",
  42640. image: {
  42641. source: "./media/characters/ariz/front.svg",
  42642. extra: 1401/1346,
  42643. bottom: 5/1406
  42644. }
  42645. },
  42646. },
  42647. [
  42648. {
  42649. name: "Normal",
  42650. height: math.unit(10, "feet"),
  42651. default: true
  42652. },
  42653. ]
  42654. ))
  42655. characterMakers.push(() => makeCharacter(
  42656. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42657. {
  42658. front: {
  42659. height: math.unit(6, "feet"),
  42660. weight: math.unit(140, "lb"),
  42661. name: "Front",
  42662. image: {
  42663. source: "./media/characters/sigrun/front.svg",
  42664. extra: 1418/1359,
  42665. bottom: 27/1445
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Macro",
  42672. height: math.unit(35, "feet"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(6, "feet"),
  42682. weight: math.unit(150, "lb"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/numin/front.svg",
  42686. extra: 1433/1388,
  42687. bottom: 12/1445
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Macro",
  42694. height: math.unit(21.5, "km"),
  42695. default: true
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42701. {
  42702. front: {
  42703. height: math.unit(6, "feet"),
  42704. weight: math.unit(463, "lb"),
  42705. name: "Front",
  42706. image: {
  42707. source: "./media/characters/melwa/front.svg",
  42708. extra: 1307/1248,
  42709. bottom: 93/1400
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Macro",
  42716. height: math.unit(50, "meters"),
  42717. default: true
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42723. {
  42724. front: {
  42725. height: math.unit(325, "feet"),
  42726. name: "Front",
  42727. image: {
  42728. source: "./media/characters/zorkaiju/front.svg",
  42729. extra: 1955/1814,
  42730. bottom: 40/1995
  42731. }
  42732. },
  42733. frontExtended: {
  42734. height: math.unit(325, "feet"),
  42735. name: "Front (Extended)",
  42736. image: {
  42737. source: "./media/characters/zorkaiju/front-extended.svg",
  42738. extra: 1955/1814,
  42739. bottom: 40/1995
  42740. }
  42741. },
  42742. side: {
  42743. height: math.unit(325, "feet"),
  42744. name: "Side",
  42745. image: {
  42746. source: "./media/characters/zorkaiju/side.svg",
  42747. extra: 1495/1396,
  42748. bottom: 17/1512
  42749. }
  42750. },
  42751. sideExtended: {
  42752. height: math.unit(325, "feet"),
  42753. name: "Side (Extended)",
  42754. image: {
  42755. source: "./media/characters/zorkaiju/side-extended.svg",
  42756. extra: 1495/1396,
  42757. bottom: 17/1512
  42758. }
  42759. },
  42760. back: {
  42761. height: math.unit(325, "feet"),
  42762. name: "Back",
  42763. image: {
  42764. source: "./media/characters/zorkaiju/back.svg",
  42765. extra: 1959/1821,
  42766. bottom: 31/1990
  42767. }
  42768. },
  42769. backExtended: {
  42770. height: math.unit(325, "feet"),
  42771. name: "Back (Extended)",
  42772. image: {
  42773. source: "./media/characters/zorkaiju/back-extended.svg",
  42774. extra: 1959/1821,
  42775. bottom: 31/1990
  42776. }
  42777. },
  42778. hand: {
  42779. height: math.unit(58.4, "feet"),
  42780. name: "Hand",
  42781. image: {
  42782. source: "./media/characters/zorkaiju/hand.svg"
  42783. }
  42784. },
  42785. handExtended: {
  42786. height: math.unit(61.4, "feet"),
  42787. name: "Hand (Extended)",
  42788. image: {
  42789. source: "./media/characters/zorkaiju/hand-extended.svg"
  42790. }
  42791. },
  42792. foot: {
  42793. height: math.unit(95, "feet"),
  42794. name: "Foot",
  42795. image: {
  42796. source: "./media/characters/zorkaiju/foot.svg"
  42797. }
  42798. },
  42799. leftArm: {
  42800. height: math.unit(59, "feet"),
  42801. name: "Left Arm",
  42802. image: {
  42803. source: "./media/characters/zorkaiju/left-arm.svg"
  42804. }
  42805. },
  42806. rightArm: {
  42807. height: math.unit(59, "feet"),
  42808. name: "Right Arm",
  42809. image: {
  42810. source: "./media/characters/zorkaiju/right-arm.svg"
  42811. }
  42812. },
  42813. leftArmExtended: {
  42814. height: math.unit(59 * 1.033546, "feet"),
  42815. name: "Left Arm (Extended)",
  42816. image: {
  42817. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42818. }
  42819. },
  42820. rightArmExtended: {
  42821. height: math.unit(59 * 1.0496, "feet"),
  42822. name: "Right Arm (Extended)",
  42823. image: {
  42824. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42825. }
  42826. },
  42827. tail: {
  42828. height: math.unit(104, "feet"),
  42829. name: "Tail",
  42830. image: {
  42831. source: "./media/characters/zorkaiju/tail.svg"
  42832. }
  42833. },
  42834. tailExtended: {
  42835. height: math.unit(104, "feet"),
  42836. name: "Tail (Extended)",
  42837. image: {
  42838. source: "./media/characters/zorkaiju/tail-extended.svg"
  42839. }
  42840. },
  42841. tailBottom: {
  42842. height: math.unit(104, "feet"),
  42843. name: "Tail Bottom",
  42844. image: {
  42845. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42846. }
  42847. },
  42848. crystal: {
  42849. height: math.unit(27.54, "feet"),
  42850. name: "Crystal",
  42851. image: {
  42852. source: "./media/characters/zorkaiju/crystal.svg"
  42853. }
  42854. },
  42855. },
  42856. [
  42857. {
  42858. name: "Kaiju",
  42859. height: math.unit(325, "feet"),
  42860. default: true
  42861. },
  42862. ]
  42863. ))
  42864. characterMakers.push(() => makeCharacter(
  42865. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42866. {
  42867. front: {
  42868. height: math.unit(6 + 1/12, "feet"),
  42869. weight: math.unit(115, "lb"),
  42870. name: "Front",
  42871. image: {
  42872. source: "./media/characters/bailey-belfry/front.svg",
  42873. extra: 1240/1121,
  42874. bottom: 101/1341
  42875. }
  42876. },
  42877. },
  42878. [
  42879. {
  42880. name: "Normal",
  42881. height: math.unit(6 + 1/12, "feet"),
  42882. default: true
  42883. },
  42884. ]
  42885. ))
  42886. characterMakers.push(() => makeCharacter(
  42887. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42888. {
  42889. side: {
  42890. height: math.unit(4, "meters"),
  42891. weight: math.unit(250, "kg"),
  42892. name: "Side",
  42893. image: {
  42894. source: "./media/characters/blacky/side.svg",
  42895. extra: 1027/919,
  42896. bottom: 43/1070
  42897. }
  42898. },
  42899. maw: {
  42900. height: math.unit(1, "meters"),
  42901. name: "Maw",
  42902. image: {
  42903. source: "./media/characters/blacky/maw.svg"
  42904. }
  42905. },
  42906. paw: {
  42907. height: math.unit(1, "meters"),
  42908. name: "Paw",
  42909. image: {
  42910. source: "./media/characters/blacky/paw.svg"
  42911. }
  42912. },
  42913. },
  42914. [
  42915. {
  42916. name: "Normal",
  42917. height: math.unit(4, "meters"),
  42918. default: true
  42919. },
  42920. ]
  42921. ))
  42922. characterMakers.push(() => makeCharacter(
  42923. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42924. {
  42925. front: {
  42926. height: math.unit(170, "cm"),
  42927. weight: math.unit(66, "kg"),
  42928. name: "Front",
  42929. image: {
  42930. source: "./media/characters/thux-ei/front.svg",
  42931. extra: 1109/1011,
  42932. bottom: 8/1117
  42933. }
  42934. },
  42935. },
  42936. [
  42937. {
  42938. name: "Normal",
  42939. height: math.unit(170, "cm"),
  42940. default: true
  42941. },
  42942. ]
  42943. ))
  42944. characterMakers.push(() => makeCharacter(
  42945. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42946. {
  42947. front: {
  42948. height: math.unit(5, "feet"),
  42949. weight: math.unit(120, "lb"),
  42950. name: "Front",
  42951. image: {
  42952. source: "./media/characters/roxanne-voltaire/front.svg",
  42953. extra: 1901/1779,
  42954. bottom: 53/1954
  42955. }
  42956. },
  42957. },
  42958. [
  42959. {
  42960. name: "Normal",
  42961. height: math.unit(5, "feet"),
  42962. default: true
  42963. },
  42964. {
  42965. name: "Giant",
  42966. height: math.unit(50, "feet")
  42967. },
  42968. {
  42969. name: "Titan",
  42970. height: math.unit(500, "feet")
  42971. },
  42972. {
  42973. name: "Macro",
  42974. height: math.unit(5000, "feet")
  42975. },
  42976. {
  42977. name: "Megamacro",
  42978. height: math.unit(50000, "feet")
  42979. },
  42980. {
  42981. name: "Gigamacro",
  42982. height: math.unit(500000, "feet")
  42983. },
  42984. {
  42985. name: "Teramacro",
  42986. height: math.unit(5e6, "feet")
  42987. },
  42988. ]
  42989. ))
  42990. characterMakers.push(() => makeCharacter(
  42991. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42992. {
  42993. front: {
  42994. height: math.unit(6 + 2/12, "feet"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/squeaks/front.svg",
  42998. extra: 1823/1768,
  42999. bottom: 138/1961
  43000. }
  43001. },
  43002. },
  43003. [
  43004. {
  43005. name: "Micro",
  43006. height: math.unit(0.5, "inches")
  43007. },
  43008. {
  43009. name: "Normal",
  43010. height: math.unit(6 + 2/12, "feet"),
  43011. default: true
  43012. },
  43013. {
  43014. name: "Macro",
  43015. height: math.unit(600, "feet")
  43016. },
  43017. ]
  43018. ))
  43019. characterMakers.push(() => makeCharacter(
  43020. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43021. {
  43022. front: {
  43023. height: math.unit(1.72, "meters"),
  43024. name: "Front",
  43025. image: {
  43026. source: "./media/characters/archinger/front.svg",
  43027. extra: 1861/1675,
  43028. bottom: 125/1986
  43029. }
  43030. },
  43031. back: {
  43032. height: math.unit(1.72, "meters"),
  43033. name: "Back",
  43034. image: {
  43035. source: "./media/characters/archinger/back.svg",
  43036. extra: 1844/1701,
  43037. bottom: 104/1948
  43038. }
  43039. },
  43040. cock: {
  43041. height: math.unit(0.59, "feet"),
  43042. name: "Cock",
  43043. image: {
  43044. source: "./media/characters/archinger/cock.svg"
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Normal",
  43051. height: math.unit(1.72, "meters"),
  43052. default: true
  43053. },
  43054. {
  43055. name: "Macro",
  43056. height: math.unit(84, "meters")
  43057. },
  43058. {
  43059. name: "Macro+",
  43060. height: math.unit(112, "meters")
  43061. },
  43062. {
  43063. name: "Macro++",
  43064. height: math.unit(960, "meters")
  43065. },
  43066. {
  43067. name: "Macro+++",
  43068. height: math.unit(4, "km")
  43069. },
  43070. {
  43071. name: "Macro++++",
  43072. height: math.unit(48, "km")
  43073. },
  43074. {
  43075. name: "Macro+++++",
  43076. height: math.unit(4500, "km")
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43082. {
  43083. front: {
  43084. height: math.unit(5 + 5/12, "feet"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/alsnapz/front.svg",
  43088. extra: 1157/1065,
  43089. bottom: 42/1199
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(5 + 5/12, "feet"),
  43097. default: true
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43103. {
  43104. side: {
  43105. height: math.unit(3.2, "earths"),
  43106. name: "Side",
  43107. image: {
  43108. source: "./media/characters/mag/side.svg",
  43109. extra: 1331/1008,
  43110. bottom: 52/1383
  43111. }
  43112. },
  43113. wing: {
  43114. height: math.unit(1.94, "earths"),
  43115. name: "Wing",
  43116. image: {
  43117. source: "./media/characters/mag/wing.svg"
  43118. }
  43119. },
  43120. dick: {
  43121. height: math.unit(1.8, "earths"),
  43122. name: "Dick",
  43123. image: {
  43124. source: "./media/characters/mag/dick.svg"
  43125. }
  43126. },
  43127. ass: {
  43128. height: math.unit(1.33, "earths"),
  43129. name: "Ass",
  43130. image: {
  43131. source: "./media/characters/mag/ass.svg"
  43132. }
  43133. },
  43134. head: {
  43135. height: math.unit(1.1, "earths"),
  43136. name: "Head",
  43137. image: {
  43138. source: "./media/characters/mag/head.svg"
  43139. }
  43140. },
  43141. maw: {
  43142. height: math.unit(1.62, "earths"),
  43143. name: "Maw",
  43144. image: {
  43145. source: "./media/characters/mag/maw.svg"
  43146. }
  43147. },
  43148. },
  43149. [
  43150. {
  43151. name: "Small",
  43152. height: math.unit(162, "feet")
  43153. },
  43154. {
  43155. name: "Normal",
  43156. height: math.unit(3.2, "earths"),
  43157. default: true
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(512, "feet"),
  43166. weight: math.unit(63509, "tonnes"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/vorrel-harroc/front.svg",
  43170. extra: 1075/1063,
  43171. bottom: 62/1137
  43172. }
  43173. },
  43174. },
  43175. [
  43176. {
  43177. name: "Normal",
  43178. height: math.unit(10, "feet")
  43179. },
  43180. {
  43181. name: "Macro",
  43182. height: math.unit(512, "feet"),
  43183. default: true
  43184. },
  43185. {
  43186. name: "Megamacro",
  43187. height: math.unit(256, "miles")
  43188. },
  43189. {
  43190. name: "Gigamacro",
  43191. height: math.unit(4096, "miles")
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43197. {
  43198. side: {
  43199. height: math.unit(50, "feet"),
  43200. name: "Side",
  43201. image: {
  43202. source: "./media/characters/froimar/side.svg",
  43203. extra: 855/638,
  43204. bottom: 99/954
  43205. }
  43206. },
  43207. },
  43208. [
  43209. {
  43210. name: "Macro",
  43211. height: math.unit(50, "feet"),
  43212. default: true
  43213. },
  43214. ]
  43215. ))
  43216. characterMakers.push(() => makeCharacter(
  43217. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43218. {
  43219. front: {
  43220. height: math.unit(210, "miles"),
  43221. name: "Front",
  43222. image: {
  43223. source: "./media/characters/timothy/front.svg",
  43224. extra: 1007/943,
  43225. bottom: 62/1069
  43226. }
  43227. },
  43228. frontSkirt: {
  43229. height: math.unit(210, "miles"),
  43230. name: "Front (Skirt)",
  43231. image: {
  43232. source: "./media/characters/timothy/front-skirt.svg",
  43233. extra: 1007/943,
  43234. bottom: 62/1069
  43235. }
  43236. },
  43237. frontCoat: {
  43238. height: math.unit(210, "miles"),
  43239. name: "Front (Coat)",
  43240. image: {
  43241. source: "./media/characters/timothy/front-coat.svg",
  43242. extra: 1007/943,
  43243. bottom: 62/1069
  43244. }
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Macro",
  43250. height: math.unit(210, "miles"),
  43251. default: true
  43252. },
  43253. {
  43254. name: "Megamacro",
  43255. height: math.unit(210000, "miles")
  43256. },
  43257. ]
  43258. ))
  43259. characterMakers.push(() => makeCharacter(
  43260. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43261. {
  43262. front: {
  43263. height: math.unit(188, "feet"),
  43264. name: "Front",
  43265. image: {
  43266. source: "./media/characters/pyotr/front.svg",
  43267. extra: 1912/1826,
  43268. bottom: 18/1930
  43269. }
  43270. },
  43271. },
  43272. [
  43273. {
  43274. name: "Macro",
  43275. height: math.unit(188, "feet"),
  43276. default: true
  43277. },
  43278. {
  43279. name: "Megamacro",
  43280. height: math.unit(8, "miles")
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43286. {
  43287. side: {
  43288. height: math.unit(10, "feet"),
  43289. weight: math.unit(4500, "lb"),
  43290. name: "Side",
  43291. image: {
  43292. source: "./media/characters/ackart/side.svg",
  43293. extra: 1776/1668,
  43294. bottom: 116/1892
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Normal",
  43301. height: math.unit(10, "feet"),
  43302. default: true
  43303. },
  43304. ]
  43305. ))
  43306. characterMakers.push(() => makeCharacter(
  43307. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43308. {
  43309. side: {
  43310. height: math.unit(21, "feet"),
  43311. name: "Side",
  43312. image: {
  43313. source: "./media/characters/nolow/side.svg",
  43314. extra: 1484/1434,
  43315. bottom: 85/1569
  43316. }
  43317. },
  43318. sideErect: {
  43319. height: math.unit(21, "feet"),
  43320. name: "Side-erect",
  43321. image: {
  43322. source: "./media/characters/nolow/side-erect.svg",
  43323. extra: 1484/1434,
  43324. bottom: 85/1569
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Regular",
  43331. height: math.unit(12, "feet")
  43332. },
  43333. {
  43334. name: "Big Chee",
  43335. height: math.unit(21, "feet"),
  43336. default: true
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43342. {
  43343. front: {
  43344. height: math.unit(7, "feet"),
  43345. weight: math.unit(250, "lb"),
  43346. name: "Front",
  43347. image: {
  43348. source: "./media/characters/nines/front.svg",
  43349. extra: 1741/1607,
  43350. bottom: 41/1782
  43351. }
  43352. },
  43353. side: {
  43354. height: math.unit(7, "feet"),
  43355. weight: math.unit(250, "lb"),
  43356. name: "Side",
  43357. image: {
  43358. source: "./media/characters/nines/side.svg",
  43359. extra: 1854/1735,
  43360. bottom: 93/1947
  43361. }
  43362. },
  43363. back: {
  43364. height: math.unit(7, "feet"),
  43365. weight: math.unit(250, "lb"),
  43366. name: "Back",
  43367. image: {
  43368. source: "./media/characters/nines/back.svg",
  43369. extra: 1748/1615,
  43370. bottom: 20/1768
  43371. }
  43372. },
  43373. },
  43374. [
  43375. {
  43376. name: "Megamacro",
  43377. height: math.unit(99, "km"),
  43378. default: true
  43379. },
  43380. ]
  43381. ))
  43382. characterMakers.push(() => makeCharacter(
  43383. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43384. {
  43385. front: {
  43386. height: math.unit(5 + 10/12, "feet"),
  43387. weight: math.unit(210, "lb"),
  43388. name: "Front",
  43389. image: {
  43390. source: "./media/characters/zenith/front.svg",
  43391. extra: 1531/1452,
  43392. bottom: 198/1729
  43393. }
  43394. },
  43395. back: {
  43396. height: math.unit(5 + 10/12, "feet"),
  43397. weight: math.unit(210, "lb"),
  43398. name: "Back",
  43399. image: {
  43400. source: "./media/characters/zenith/back.svg",
  43401. extra: 1571/1487,
  43402. bottom: 75/1646
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "Normal",
  43409. height: math.unit(5 + 10/12, "feet"),
  43410. default: true
  43411. }
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43416. {
  43417. front: {
  43418. height: math.unit(4, "feet"),
  43419. weight: math.unit(60, "lb"),
  43420. name: "Front",
  43421. image: {
  43422. source: "./media/characters/jasper/front.svg",
  43423. extra: 1450/1379,
  43424. bottom: 19/1469
  43425. }
  43426. },
  43427. },
  43428. [
  43429. {
  43430. name: "Normal",
  43431. height: math.unit(4, "feet"),
  43432. default: true
  43433. },
  43434. ]
  43435. ))
  43436. characterMakers.push(() => makeCharacter(
  43437. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43438. {
  43439. front: {
  43440. height: math.unit(6 + 5/12, "feet"),
  43441. weight: math.unit(290, "lb"),
  43442. name: "Front",
  43443. image: {
  43444. source: "./media/characters/tiberius-thyben/front.svg",
  43445. extra: 757/739,
  43446. bottom: 39/796
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Micro",
  43453. height: math.unit(1.5, "inches")
  43454. },
  43455. {
  43456. name: "Normal",
  43457. height: math.unit(6 + 5/12, "feet"),
  43458. default: true
  43459. },
  43460. {
  43461. name: "Macro",
  43462. height: math.unit(300, "feet")
  43463. },
  43464. ]
  43465. ))
  43466. characterMakers.push(() => makeCharacter(
  43467. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43468. {
  43469. front: {
  43470. height: math.unit(5 + 6/12, "feet"),
  43471. weight: math.unit(60, "kg"),
  43472. name: "Front",
  43473. image: {
  43474. source: "./media/characters/sabre/front.svg",
  43475. extra: 738/671,
  43476. bottom: 27/765
  43477. }
  43478. },
  43479. },
  43480. [
  43481. {
  43482. name: "Teeny",
  43483. height: math.unit(2, "inches")
  43484. },
  43485. {
  43486. name: "Smol",
  43487. height: math.unit(8, "inches")
  43488. },
  43489. {
  43490. name: "Normal",
  43491. height: math.unit(5 + 6/12, "feet"),
  43492. default: true
  43493. },
  43494. {
  43495. name: "Mini-Macro",
  43496. height: math.unit(15, "feet")
  43497. },
  43498. {
  43499. name: "Macro",
  43500. height: math.unit(50, "feet")
  43501. },
  43502. ]
  43503. ))
  43504. characterMakers.push(() => makeCharacter(
  43505. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43506. {
  43507. front: {
  43508. height: math.unit(6 + 4/12, "feet"),
  43509. weight: math.unit(170, "lb"),
  43510. name: "Front",
  43511. image: {
  43512. source: "./media/characters/charlie/front.svg",
  43513. extra: 1348/1228,
  43514. bottom: 15/1363
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "Macro",
  43521. height: math.unit(1700, "meters"),
  43522. default: true
  43523. },
  43524. {
  43525. name: "MegaMacro",
  43526. height: math.unit(20400, "meters")
  43527. },
  43528. ]
  43529. ))
  43530. characterMakers.push(() => makeCharacter(
  43531. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43532. {
  43533. front: {
  43534. height: math.unit(6 + 3/12, "feet"),
  43535. weight: math.unit(185, "lb"),
  43536. name: "Front",
  43537. image: {
  43538. source: "./media/characters/susan-grant/front.svg",
  43539. extra: 1351/1327,
  43540. bottom: 26/1377
  43541. }
  43542. },
  43543. },
  43544. [
  43545. {
  43546. name: "Normal",
  43547. height: math.unit(6 + 3/12, "feet"),
  43548. default: true
  43549. },
  43550. {
  43551. name: "Macro",
  43552. height: math.unit(225, "feet")
  43553. },
  43554. {
  43555. name: "Macro+",
  43556. height: math.unit(900, "feet")
  43557. },
  43558. {
  43559. name: "MegaMacro",
  43560. height: math.unit(14400, "feet")
  43561. },
  43562. ]
  43563. ))
  43564. characterMakers.push(() => makeCharacter(
  43565. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43566. {
  43567. front: {
  43568. height: math.unit(5 + 4/12, "feet"),
  43569. weight: math.unit(110, "lb"),
  43570. name: "Front",
  43571. image: {
  43572. source: "./media/characters/axel-isanov/front.svg",
  43573. extra: 1096/1065,
  43574. bottom: 13/1109
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Normal",
  43581. height: math.unit(5 + 4/12, "feet"),
  43582. default: true
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(9, "feet"),
  43591. weight: math.unit(467, "lb"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/necahual/front.svg",
  43595. extra: 920/873,
  43596. bottom: 26/946
  43597. }
  43598. },
  43599. back: {
  43600. height: math.unit(9, "feet"),
  43601. weight: math.unit(467, "lb"),
  43602. name: "Back",
  43603. image: {
  43604. source: "./media/characters/necahual/back.svg",
  43605. extra: 930/884,
  43606. bottom: 16/946
  43607. }
  43608. },
  43609. frontUnderwear: {
  43610. height: math.unit(9, "feet"),
  43611. weight: math.unit(467, "lb"),
  43612. name: "Front (Underwear)",
  43613. image: {
  43614. source: "./media/characters/necahual/front-underwear.svg",
  43615. extra: 920/873,
  43616. bottom: 26/946
  43617. }
  43618. },
  43619. frontDressed: {
  43620. height: math.unit(9, "feet"),
  43621. weight: math.unit(467, "lb"),
  43622. name: "Front (Dressed)",
  43623. image: {
  43624. source: "./media/characters/necahual/front-dressed.svg",
  43625. extra: 920/873,
  43626. bottom: 26/946
  43627. }
  43628. },
  43629. },
  43630. [
  43631. {
  43632. name: "Comprsesed",
  43633. height: math.unit(9, "feet")
  43634. },
  43635. {
  43636. name: "Natural",
  43637. height: math.unit(15, "feet"),
  43638. default: true
  43639. },
  43640. {
  43641. name: "Boosted",
  43642. height: math.unit(50, "feet")
  43643. },
  43644. {
  43645. name: "Boosted+",
  43646. height: math.unit(150, "feet")
  43647. },
  43648. {
  43649. name: "Max",
  43650. height: math.unit(500, "feet")
  43651. },
  43652. ]
  43653. ))
  43654. characterMakers.push(() => makeCharacter(
  43655. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43656. {
  43657. front: {
  43658. height: math.unit(22 + 1/12, "feet"),
  43659. weight: math.unit(3200, "lb"),
  43660. name: "Front",
  43661. image: {
  43662. source: "./media/characters/theo-acacia/front.svg",
  43663. extra: 1796/1741,
  43664. bottom: 83/1879
  43665. }
  43666. },
  43667. frontUnderwear: {
  43668. height: math.unit(22 + 1/12, "feet"),
  43669. weight: math.unit(3200, "lb"),
  43670. name: "Front (Underwear)",
  43671. image: {
  43672. source: "./media/characters/theo-acacia/front-underwear.svg",
  43673. extra: 1796/1741,
  43674. bottom: 83/1879
  43675. }
  43676. },
  43677. frontNude: {
  43678. height: math.unit(22 + 1/12, "feet"),
  43679. weight: math.unit(3200, "lb"),
  43680. name: "Front (Nude)",
  43681. image: {
  43682. source: "./media/characters/theo-acacia/front-nude.svg",
  43683. extra: 1796/1741,
  43684. bottom: 83/1879
  43685. }
  43686. },
  43687. },
  43688. [
  43689. {
  43690. name: "Normal",
  43691. height: math.unit(22 + 1/12, "feet"),
  43692. default: true
  43693. },
  43694. ]
  43695. ))
  43696. characterMakers.push(() => makeCharacter(
  43697. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43698. {
  43699. front: {
  43700. height: math.unit(20, "feet"),
  43701. name: "Front",
  43702. image: {
  43703. source: "./media/characters/astra/front.svg",
  43704. extra: 1850/1714,
  43705. bottom: 106/1956
  43706. }
  43707. },
  43708. frontUndressed: {
  43709. height: math.unit(20, "feet"),
  43710. name: "Front (Undressed)",
  43711. image: {
  43712. source: "./media/characters/astra/front-undressed.svg",
  43713. extra: 1926/1749,
  43714. bottom: 0/1926
  43715. }
  43716. },
  43717. hand: {
  43718. height: math.unit(1.53, "feet"),
  43719. name: "Hand",
  43720. image: {
  43721. source: "./media/characters/astra/hand.svg"
  43722. }
  43723. },
  43724. paw: {
  43725. height: math.unit(1.53, "feet"),
  43726. name: "Paw",
  43727. image: {
  43728. source: "./media/characters/astra/paw.svg"
  43729. }
  43730. },
  43731. },
  43732. [
  43733. {
  43734. name: "Smallest",
  43735. height: math.unit(20, "feet")
  43736. },
  43737. {
  43738. name: "Normal",
  43739. height: math.unit(1e9, "miles"),
  43740. default: true
  43741. },
  43742. {
  43743. name: "Larger",
  43744. height: math.unit(5, "multiverses")
  43745. },
  43746. {
  43747. name: "Largest",
  43748. height: math.unit(1e9, "multiverses")
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43754. {
  43755. front: {
  43756. height: math.unit(8, "feet"),
  43757. name: "Front",
  43758. image: {
  43759. source: "./media/characters/breanna/front.svg",
  43760. extra: 1912/1632,
  43761. bottom: 33/1945
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "Smallest",
  43768. height: math.unit(8, "feet")
  43769. },
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(1, "mile"),
  43773. default: true
  43774. },
  43775. {
  43776. name: "Maximum",
  43777. height: math.unit(1500000000000, "lightyears")
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43783. {
  43784. front: {
  43785. height: math.unit(5 + 11/12, "feet"),
  43786. weight: math.unit(155, "lb"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/cai/front.svg",
  43790. extra: 1823/1702,
  43791. bottom: 32/1855
  43792. }
  43793. },
  43794. back: {
  43795. height: math.unit(5 + 11/12, "feet"),
  43796. weight: math.unit(155, "lb"),
  43797. name: "Back",
  43798. image: {
  43799. source: "./media/characters/cai/back.svg",
  43800. extra: 1809/1708,
  43801. bottom: 31/1840
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Normal",
  43808. height: math.unit(5 + 11/12, "feet"),
  43809. default: true
  43810. },
  43811. {
  43812. name: "Big",
  43813. height: math.unit(15, "feet")
  43814. },
  43815. {
  43816. name: "Macro",
  43817. height: math.unit(200, "feet")
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43823. {
  43824. front: {
  43825. height: math.unit(5 + 6/12, "feet"),
  43826. weight: math.unit(160, "lb"),
  43827. name: "Front",
  43828. image: {
  43829. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43830. extra: 1227/1174,
  43831. bottom: 37/1264
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Macro",
  43838. height: math.unit(444, "meters"),
  43839. default: true
  43840. },
  43841. ]
  43842. ))
  43843. characterMakers.push(() => makeCharacter(
  43844. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43845. {
  43846. front: {
  43847. height: math.unit(18 + 7/12, "feet"),
  43848. name: "Front",
  43849. image: {
  43850. source: "./media/characters/rex/front.svg",
  43851. extra: 1941/1807,
  43852. bottom: 66/2007
  43853. }
  43854. },
  43855. back: {
  43856. height: math.unit(18 + 7/12, "feet"),
  43857. name: "Back",
  43858. image: {
  43859. source: "./media/characters/rex/back.svg",
  43860. extra: 1937/1822,
  43861. bottom: 42/1979
  43862. }
  43863. },
  43864. boot: {
  43865. height: math.unit(3.45, "feet"),
  43866. name: "Boot",
  43867. image: {
  43868. source: "./media/characters/rex/boot.svg"
  43869. }
  43870. },
  43871. paw: {
  43872. height: math.unit(4.17, "feet"),
  43873. name: "Paw",
  43874. image: {
  43875. source: "./media/characters/rex/paw.svg"
  43876. }
  43877. },
  43878. head: {
  43879. height: math.unit(6.728, "feet"),
  43880. name: "Head",
  43881. image: {
  43882. source: "./media/characters/rex/head.svg"
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "Nano",
  43889. height: math.unit(18 + 7/12, "feet")
  43890. },
  43891. {
  43892. name: "Micro",
  43893. height: math.unit(1.5, "megameters")
  43894. },
  43895. {
  43896. name: "Normal",
  43897. height: math.unit(440, "megameters"),
  43898. default: true
  43899. },
  43900. {
  43901. name: "Macro",
  43902. height: math.unit(2.5, "gigameters")
  43903. },
  43904. {
  43905. name: "Gigamacro",
  43906. height: math.unit(2, "galaxies")
  43907. },
  43908. ]
  43909. ))
  43910. characterMakers.push(() => makeCharacter(
  43911. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43912. {
  43913. side: {
  43914. height: math.unit(32, "feet"),
  43915. weight: math.unit(250000, "lb"),
  43916. name: "Side",
  43917. image: {
  43918. source: "./media/characters/silverwing/side.svg",
  43919. extra: 1100/1019,
  43920. bottom: 204/1304
  43921. }
  43922. },
  43923. },
  43924. [
  43925. {
  43926. name: "Normal",
  43927. height: math.unit(32, "feet"),
  43928. default: true
  43929. },
  43930. ]
  43931. ))
  43932. characterMakers.push(() => makeCharacter(
  43933. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43934. {
  43935. front: {
  43936. height: math.unit(6 + 6/12, "feet"),
  43937. weight: math.unit(350, "lb"),
  43938. name: "Front",
  43939. image: {
  43940. source: "./media/characters/tristan-hawthorne/front.svg",
  43941. extra: 1159/1124,
  43942. bottom: 37/1196
  43943. },
  43944. form: "labrador",
  43945. default: true
  43946. },
  43947. skunkFront: {
  43948. height: math.unit(4 + 6/12, "feet"),
  43949. weight: math.unit(120, "lb"),
  43950. name: "Front",
  43951. image: {
  43952. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43953. extra: 1609/1551,
  43954. bottom: 169/1778
  43955. },
  43956. form: "skunk",
  43957. default: true
  43958. },
  43959. },
  43960. [
  43961. {
  43962. name: "Normal",
  43963. height: math.unit(6 + 6/12, "feet"),
  43964. form: "labrador",
  43965. default: true
  43966. },
  43967. {
  43968. name: "Normal",
  43969. height: math.unit(4 + 6/12, "feet"),
  43970. form: "skunk",
  43971. default: true
  43972. },
  43973. ],
  43974. {
  43975. "labrador": {
  43976. name: "Labrador",
  43977. default: true
  43978. },
  43979. "skunk": {
  43980. name: "Skunk"
  43981. }
  43982. }
  43983. ))
  43984. characterMakers.push(() => makeCharacter(
  43985. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43986. {
  43987. front: {
  43988. height: math.unit(5 + 11/12, "feet"),
  43989. weight: math.unit(190, "lb"),
  43990. name: "Front",
  43991. image: {
  43992. source: "./media/characters/mizu/front.svg",
  43993. extra: 1988/1788,
  43994. bottom: 14/2002
  43995. }
  43996. },
  43997. },
  43998. [
  43999. {
  44000. name: "Normal",
  44001. height: math.unit(5 + 11/12, "feet"),
  44002. default: true
  44003. },
  44004. ]
  44005. ))
  44006. characterMakers.push(() => makeCharacter(
  44007. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44008. {
  44009. front: {
  44010. height: math.unit(1.7, "feet"),
  44011. weight: math.unit(50, "lb"),
  44012. name: "Front",
  44013. image: {
  44014. source: "./media/characters/dechroma/front.svg",
  44015. extra: 1095/859,
  44016. bottom: 64/1159
  44017. }
  44018. },
  44019. },
  44020. [
  44021. {
  44022. name: "Normal",
  44023. height: math.unit(1.7, "feet"),
  44024. default: true
  44025. },
  44026. ]
  44027. ))
  44028. characterMakers.push(() => makeCharacter(
  44029. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44030. {
  44031. side: {
  44032. height: math.unit(30, "feet"),
  44033. name: "Side",
  44034. image: {
  44035. source: "./media/characters/veluren-thanazel/side.svg",
  44036. extra: 1611/633,
  44037. bottom: 118/1729
  44038. }
  44039. },
  44040. front: {
  44041. height: math.unit(30, "feet"),
  44042. name: "Front",
  44043. image: {
  44044. source: "./media/characters/veluren-thanazel/front.svg",
  44045. extra: 1486/636,
  44046. bottom: 238/1724
  44047. }
  44048. },
  44049. head: {
  44050. height: math.unit(21.4, "feet"),
  44051. name: "Head",
  44052. image: {
  44053. source: "./media/characters/veluren-thanazel/head.svg"
  44054. }
  44055. },
  44056. genitals: {
  44057. height: math.unit(19.4, "feet"),
  44058. name: "Genitals",
  44059. image: {
  44060. source: "./media/characters/veluren-thanazel/genitals.svg"
  44061. }
  44062. },
  44063. },
  44064. [
  44065. {
  44066. name: "Social",
  44067. height: math.unit(6, "feet")
  44068. },
  44069. {
  44070. name: "Play",
  44071. height: math.unit(12, "feet")
  44072. },
  44073. {
  44074. name: "True",
  44075. height: math.unit(30, "feet"),
  44076. default: true
  44077. },
  44078. ]
  44079. ))
  44080. characterMakers.push(() => makeCharacter(
  44081. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44082. {
  44083. front: {
  44084. height: math.unit(7 + 6/12, "feet"),
  44085. weight: math.unit(500, "kg"),
  44086. name: "Front",
  44087. image: {
  44088. source: "./media/characters/arcturas/front.svg",
  44089. extra: 1700/1500,
  44090. bottom: 145/1845
  44091. }
  44092. },
  44093. },
  44094. [
  44095. {
  44096. name: "Normal",
  44097. height: math.unit(7 + 6/12, "feet"),
  44098. default: true
  44099. },
  44100. ]
  44101. ))
  44102. characterMakers.push(() => makeCharacter(
  44103. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44104. {
  44105. side: {
  44106. height: math.unit(6, "feet"),
  44107. weight: math.unit(2, "tons"),
  44108. name: "Side",
  44109. image: {
  44110. source: "./media/characters/vitaen/side.svg",
  44111. extra: 1157/617,
  44112. bottom: 122/1279
  44113. }
  44114. },
  44115. },
  44116. [
  44117. {
  44118. name: "Normal",
  44119. height: math.unit(6, "feet"),
  44120. default: true
  44121. },
  44122. ]
  44123. ))
  44124. characterMakers.push(() => makeCharacter(
  44125. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44126. {
  44127. front: {
  44128. height: math.unit(19, "feet"),
  44129. name: "Front",
  44130. image: {
  44131. source: "./media/characters/fia-dreamweaver/front.svg",
  44132. extra: 1630/1504,
  44133. bottom: 25/1655
  44134. }
  44135. },
  44136. },
  44137. [
  44138. {
  44139. name: "Normal",
  44140. height: math.unit(19, "feet"),
  44141. default: true
  44142. },
  44143. ]
  44144. ))
  44145. characterMakers.push(() => makeCharacter(
  44146. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44147. {
  44148. front: {
  44149. height: math.unit(5 + 4/12, "feet"),
  44150. name: "Front",
  44151. image: {
  44152. source: "./media/characters/artan/front.svg",
  44153. extra: 1618/1535,
  44154. bottom: 46/1664
  44155. }
  44156. },
  44157. back: {
  44158. height: math.unit(5 + 4/12, "feet"),
  44159. name: "Back",
  44160. image: {
  44161. source: "./media/characters/artan/back.svg",
  44162. extra: 1618/1543,
  44163. bottom: 31/1649
  44164. }
  44165. },
  44166. },
  44167. [
  44168. {
  44169. name: "Normal",
  44170. height: math.unit(5 + 4/12, "feet"),
  44171. default: true
  44172. },
  44173. ]
  44174. ))
  44175. characterMakers.push(() => makeCharacter(
  44176. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44177. {
  44178. side: {
  44179. height: math.unit(182, "cm"),
  44180. weight: math.unit(1000, "lb"),
  44181. name: "Side",
  44182. image: {
  44183. source: "./media/characters/silver-dragon/side.svg",
  44184. extra: 710/287,
  44185. bottom: 88/798
  44186. }
  44187. },
  44188. },
  44189. [
  44190. {
  44191. name: "Normal",
  44192. height: math.unit(182, "cm"),
  44193. default: true
  44194. },
  44195. ]
  44196. ))
  44197. characterMakers.push(() => makeCharacter(
  44198. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44199. {
  44200. side: {
  44201. height: math.unit(6 + 6/12, "feet"),
  44202. weight: math.unit(1.5, "tons"),
  44203. name: "Side",
  44204. image: {
  44205. source: "./media/characters/zephyr/side.svg",
  44206. extra: 1433/586,
  44207. bottom: 109/1542
  44208. }
  44209. },
  44210. },
  44211. [
  44212. {
  44213. name: "Normal",
  44214. height: math.unit(6 + 6/12, "feet"),
  44215. default: true
  44216. },
  44217. ]
  44218. ))
  44219. characterMakers.push(() => makeCharacter(
  44220. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44221. {
  44222. side: {
  44223. height: math.unit(1, "feet"),
  44224. name: "Side",
  44225. image: {
  44226. source: "./media/characters/vixye/side.svg",
  44227. extra: 632/541,
  44228. bottom: 0/632
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(1, "feet"),
  44236. default: true
  44237. },
  44238. {
  44239. name: "True",
  44240. height: math.unit(1e15, "multiverses")
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(8 + 2/12, "feet"),
  44249. weight: math.unit(650, "lb"),
  44250. name: "Front",
  44251. image: {
  44252. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44253. extra: 1174/1137,
  44254. bottom: 82/1256
  44255. }
  44256. },
  44257. back: {
  44258. height: math.unit(8 + 2/12, "feet"),
  44259. weight: math.unit(650, "lb"),
  44260. name: "Back",
  44261. image: {
  44262. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44263. extra: 1204/1157,
  44264. bottom: 46/1250
  44265. }
  44266. },
  44267. },
  44268. [
  44269. {
  44270. name: "Wildform",
  44271. height: math.unit(8 + 2/12, "feet"),
  44272. default: true
  44273. },
  44274. ]
  44275. ))
  44276. characterMakers.push(() => makeCharacter(
  44277. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44278. {
  44279. front: {
  44280. height: math.unit(18, "feet"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/cyphin/front.svg",
  44284. extra: 970/886,
  44285. bottom: 42/1012
  44286. }
  44287. },
  44288. back: {
  44289. height: math.unit(18, "feet"),
  44290. name: "Back",
  44291. image: {
  44292. source: "./media/characters/cyphin/back.svg",
  44293. extra: 1009/894,
  44294. bottom: 24/1033
  44295. }
  44296. },
  44297. head: {
  44298. height: math.unit(5.05, "feet"),
  44299. name: "Head",
  44300. image: {
  44301. source: "./media/characters/cyphin/head.svg"
  44302. }
  44303. },
  44304. tailbud: {
  44305. height: math.unit(5, "feet"),
  44306. name: "Tailbud",
  44307. image: {
  44308. source: "./media/characters/cyphin/tailbud.svg"
  44309. }
  44310. },
  44311. },
  44312. [
  44313. ]
  44314. ))
  44315. characterMakers.push(() => makeCharacter(
  44316. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44317. {
  44318. side: {
  44319. height: math.unit(10, "feet"),
  44320. weight: math.unit(6, "tons"),
  44321. name: "Side",
  44322. image: {
  44323. source: "./media/characters/raijin/side.svg",
  44324. extra: 1529/613,
  44325. bottom: 337/1866
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(10, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44339. {
  44340. side: {
  44341. height: math.unit(9, "feet"),
  44342. name: "Side",
  44343. image: {
  44344. source: "./media/characters/nilghais/side.svg",
  44345. extra: 1047/744,
  44346. bottom: 91/1138
  44347. }
  44348. },
  44349. head: {
  44350. height: math.unit(3.14, "feet"),
  44351. name: "Head",
  44352. image: {
  44353. source: "./media/characters/nilghais/head.svg"
  44354. }
  44355. },
  44356. mouth: {
  44357. height: math.unit(4.6, "feet"),
  44358. name: "Mouth",
  44359. image: {
  44360. source: "./media/characters/nilghais/mouth.svg"
  44361. }
  44362. },
  44363. wings: {
  44364. height: math.unit(24, "feet"),
  44365. name: "Wings",
  44366. image: {
  44367. source: "./media/characters/nilghais/wings.svg"
  44368. }
  44369. },
  44370. ass: {
  44371. height: math.unit(6.12, "feet"),
  44372. name: "Ass",
  44373. image: {
  44374. source: "./media/characters/nilghais/ass.svg"
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "Normal",
  44381. height: math.unit(9, "feet"),
  44382. default: true
  44383. },
  44384. ]
  44385. ))
  44386. characterMakers.push(() => makeCharacter(
  44387. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44388. {
  44389. regular: {
  44390. height: math.unit(16 + 2/12, "feet"),
  44391. weight: math.unit(2300, "lb"),
  44392. name: "Regular",
  44393. image: {
  44394. source: "./media/characters/zolgar/regular.svg",
  44395. extra: 1246/1004,
  44396. bottom: 124/1370
  44397. }
  44398. },
  44399. boxers: {
  44400. height: math.unit(16 + 2/12, "feet"),
  44401. weight: math.unit(2300, "lb"),
  44402. name: "Boxers",
  44403. image: {
  44404. source: "./media/characters/zolgar/boxers.svg",
  44405. extra: 1246/1004,
  44406. bottom: 124/1370
  44407. }
  44408. },
  44409. armored: {
  44410. height: math.unit(16 + 2/12, "feet"),
  44411. weight: math.unit(2300, "lb"),
  44412. name: "Armored",
  44413. image: {
  44414. source: "./media/characters/zolgar/armored.svg",
  44415. extra: 1246/1004,
  44416. bottom: 124/1370
  44417. }
  44418. },
  44419. goth: {
  44420. height: math.unit(16 + 2/12, "feet"),
  44421. weight: math.unit(2300, "lb"),
  44422. name: "Goth",
  44423. image: {
  44424. source: "./media/characters/zolgar/goth.svg",
  44425. extra: 1246/1004,
  44426. bottom: 124/1370
  44427. }
  44428. },
  44429. },
  44430. [
  44431. {
  44432. name: "Shrunken Down",
  44433. height: math.unit(9 + 2/12, "feet")
  44434. },
  44435. {
  44436. name: "Normal",
  44437. height: math.unit(16 + 2/12, "feet"),
  44438. default: true
  44439. },
  44440. ]
  44441. ))
  44442. characterMakers.push(() => makeCharacter(
  44443. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44444. {
  44445. front: {
  44446. height: math.unit(6, "feet"),
  44447. weight: math.unit(168, "lb"),
  44448. name: "Front",
  44449. image: {
  44450. source: "./media/characters/luca/front.svg",
  44451. extra: 841/667,
  44452. bottom: 102/943
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(6, "feet"),
  44460. default: true
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44466. {
  44467. side: {
  44468. height: math.unit(7 + 3/12, "feet"),
  44469. weight: math.unit(312, "lb"),
  44470. name: "Side",
  44471. image: {
  44472. source: "./media/characters/zezo/side.svg",
  44473. extra: 1192/1067,
  44474. bottom: 63/1255
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(7 + 3/12, "feet"),
  44482. default: true
  44483. },
  44484. ]
  44485. ))
  44486. characterMakers.push(() => makeCharacter(
  44487. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44488. {
  44489. front: {
  44490. height: math.unit(5 + 5/12, "feet"),
  44491. weight: math.unit(170, "lb"),
  44492. name: "Front",
  44493. image: {
  44494. source: "./media/characters/mayso/front.svg",
  44495. extra: 1215/1108,
  44496. bottom: 16/1231
  44497. }
  44498. },
  44499. },
  44500. [
  44501. {
  44502. name: "Normal",
  44503. height: math.unit(5 + 5/12, "feet"),
  44504. default: true
  44505. },
  44506. ]
  44507. ))
  44508. characterMakers.push(() => makeCharacter(
  44509. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44510. {
  44511. front: {
  44512. height: math.unit(4 + 3/12, "feet"),
  44513. weight: math.unit(80, "lb"),
  44514. name: "Front",
  44515. image: {
  44516. source: "./media/characters/hess/front.svg",
  44517. extra: 1200/1123,
  44518. bottom: 16/1216
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(4 + 3/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44532. {
  44533. front: {
  44534. height: math.unit(1.9, "meters"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/ashgar/front.svg",
  44538. extra: 1177/1146,
  44539. bottom: 99/1276
  44540. }
  44541. },
  44542. back: {
  44543. height: math.unit(1.9, "meters"),
  44544. name: "Back",
  44545. image: {
  44546. source: "./media/characters/ashgar/back.svg",
  44547. extra: 1201/1183,
  44548. bottom: 53/1254
  44549. }
  44550. },
  44551. feral: {
  44552. height: math.unit(1.4, "meters"),
  44553. name: "Feral",
  44554. image: {
  44555. source: "./media/characters/ashgar/feral.svg",
  44556. extra: 370/345,
  44557. bottom: 45/415
  44558. }
  44559. },
  44560. },
  44561. [
  44562. {
  44563. name: "Normal",
  44564. height: math.unit(1.9, "meters"),
  44565. default: true
  44566. },
  44567. ]
  44568. ))
  44569. characterMakers.push(() => makeCharacter(
  44570. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44571. {
  44572. regular: {
  44573. height: math.unit(6, "feet"),
  44574. weight: math.unit(220, "lb"),
  44575. name: "Regular",
  44576. image: {
  44577. source: "./media/characters/phillip/regular.svg",
  44578. extra: 1373/1277,
  44579. bottom: 75/1448
  44580. }
  44581. },
  44582. dressed: {
  44583. height: math.unit(6, "feet"),
  44584. weight: math.unit(220, "lb"),
  44585. name: "Dressed",
  44586. image: {
  44587. source: "./media/characters/phillip/dressed.svg",
  44588. extra: 1373/1277,
  44589. bottom: 75/1448
  44590. }
  44591. },
  44592. paw: {
  44593. height: math.unit(1.44, "feet"),
  44594. name: "Paw",
  44595. image: {
  44596. source: "./media/characters/phillip/paw.svg"
  44597. }
  44598. },
  44599. },
  44600. [
  44601. {
  44602. name: "Normal",
  44603. height: math.unit(6, "feet"),
  44604. default: true
  44605. },
  44606. ]
  44607. ))
  44608. characterMakers.push(() => makeCharacter(
  44609. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44610. {
  44611. side: {
  44612. height: math.unit(42, "feet"),
  44613. name: "Side",
  44614. image: {
  44615. source: "./media/characters/uvula/side.svg",
  44616. extra: 683/586,
  44617. bottom: 60/743
  44618. }
  44619. },
  44620. front: {
  44621. height: math.unit(42, "feet"),
  44622. name: "Front",
  44623. image: {
  44624. source: "./media/characters/uvula/front.svg",
  44625. extra: 705/613,
  44626. bottom: 54/759
  44627. }
  44628. },
  44629. maw: {
  44630. height: math.unit(23.5, "feet"),
  44631. name: "Maw",
  44632. image: {
  44633. source: "./media/characters/uvula/maw.svg"
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Original Size",
  44640. height: math.unit(14, "inches")
  44641. },
  44642. {
  44643. name: "Human Size",
  44644. height: math.unit(6, "feet")
  44645. },
  44646. {
  44647. name: "Big",
  44648. height: math.unit(42, "feet"),
  44649. default: true
  44650. },
  44651. {
  44652. name: "Bigger",
  44653. height: math.unit(100, "feet")
  44654. },
  44655. ]
  44656. ))
  44657. characterMakers.push(() => makeCharacter(
  44658. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44659. {
  44660. front: {
  44661. height: math.unit(5 + 11/12, "feet"),
  44662. name: "Front",
  44663. image: {
  44664. source: "./media/characters/lannah/front.svg",
  44665. extra: 1208/1113,
  44666. bottom: 97/1305
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(5 + 11/12, "feet"),
  44674. default: true
  44675. },
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44680. {
  44681. front: {
  44682. height: math.unit(6 + 3/12, "feet"),
  44683. weight: math.unit(3.5, "tons"),
  44684. name: "Front",
  44685. image: {
  44686. source: "./media/characters/emberflame/front.svg",
  44687. extra: 1198/672,
  44688. bottom: 82/1280
  44689. }
  44690. },
  44691. side: {
  44692. height: math.unit(6 + 3/12, "feet"),
  44693. weight: math.unit(3.5, "tons"),
  44694. name: "Side",
  44695. image: {
  44696. source: "./media/characters/emberflame/side.svg",
  44697. extra: 938/527,
  44698. bottom: 56/994
  44699. }
  44700. },
  44701. },
  44702. [
  44703. {
  44704. name: "Normal",
  44705. height: math.unit(6 + 3/12, "feet"),
  44706. default: true
  44707. },
  44708. ]
  44709. ))
  44710. characterMakers.push(() => makeCharacter(
  44711. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44712. {
  44713. side: {
  44714. height: math.unit(17.5, "feet"),
  44715. weight: math.unit(35, "tons"),
  44716. name: "Side",
  44717. image: {
  44718. source: "./media/characters/sophie-ambrose/side.svg",
  44719. extra: 1573/1242,
  44720. bottom: 71/1644
  44721. }
  44722. },
  44723. maw: {
  44724. height: math.unit(7.4, "feet"),
  44725. name: "Maw",
  44726. image: {
  44727. source: "./media/characters/sophie-ambrose/maw.svg"
  44728. }
  44729. },
  44730. },
  44731. [
  44732. {
  44733. name: "Normal",
  44734. height: math.unit(17.5, "feet"),
  44735. default: true
  44736. },
  44737. ]
  44738. ))
  44739. characterMakers.push(() => makeCharacter(
  44740. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44741. {
  44742. front: {
  44743. height: math.unit(280, "feet"),
  44744. weight: math.unit(550, "tons"),
  44745. name: "Front",
  44746. image: {
  44747. source: "./media/characters/king-mugi/front.svg",
  44748. extra: 1102/947,
  44749. bottom: 104/1206
  44750. }
  44751. },
  44752. },
  44753. [
  44754. {
  44755. name: "King Mugi",
  44756. height: math.unit(280, "feet"),
  44757. default: true
  44758. },
  44759. ]
  44760. ))
  44761. characterMakers.push(() => makeCharacter(
  44762. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44763. {
  44764. front: {
  44765. height: math.unit(64, "meters"),
  44766. name: "Front",
  44767. image: {
  44768. source: "./media/characters/nova-fox/front.svg",
  44769. extra: 1310/1246,
  44770. bottom: 65/1375
  44771. }
  44772. },
  44773. },
  44774. [
  44775. {
  44776. name: "Macro",
  44777. height: math.unit(64, "meters"),
  44778. default: true
  44779. },
  44780. ]
  44781. ))
  44782. characterMakers.push(() => makeCharacter(
  44783. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44784. {
  44785. front: {
  44786. height: math.unit(6 + 3/12, "feet"),
  44787. weight: math.unit(170, "lb"),
  44788. name: "Front",
  44789. image: {
  44790. source: "./media/characters/sam-bat/front.svg",
  44791. extra: 1601/1411,
  44792. bottom: 125/1726
  44793. }
  44794. },
  44795. back: {
  44796. height: math.unit(6 + 3/12, "feet"),
  44797. weight: math.unit(170, "lb"),
  44798. name: "Back",
  44799. image: {
  44800. source: "./media/characters/sam-bat/back.svg",
  44801. extra: 1577/1405,
  44802. bottom: 58/1635
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Normal",
  44809. height: math.unit(6 + 3/12, "feet"),
  44810. default: true
  44811. },
  44812. ]
  44813. ))
  44814. characterMakers.push(() => makeCharacter(
  44815. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44816. {
  44817. front: {
  44818. height: math.unit(59, "feet"),
  44819. weight: math.unit(40000, "lb"),
  44820. name: "Front",
  44821. image: {
  44822. source: "./media/characters/inari/front.svg",
  44823. extra: 1884/1350,
  44824. bottom: 95/1979
  44825. }
  44826. },
  44827. },
  44828. [
  44829. {
  44830. name: "Gigantamax",
  44831. height: math.unit(59, "feet"),
  44832. default: true
  44833. },
  44834. ]
  44835. ))
  44836. characterMakers.push(() => makeCharacter(
  44837. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44838. {
  44839. front: {
  44840. height: math.unit(5 + 8/12, "feet"),
  44841. name: "Front",
  44842. image: {
  44843. source: "./media/characters/elizabeth/front.svg",
  44844. extra: 1395/1298,
  44845. bottom: 54/1449
  44846. }
  44847. },
  44848. mouth: {
  44849. height: math.unit(1.97, "feet"),
  44850. name: "Mouth",
  44851. image: {
  44852. source: "./media/characters/elizabeth/mouth.svg"
  44853. }
  44854. },
  44855. foot: {
  44856. height: math.unit(1.17, "feet"),
  44857. name: "Foot",
  44858. image: {
  44859. source: "./media/characters/elizabeth/foot.svg"
  44860. }
  44861. },
  44862. },
  44863. [
  44864. {
  44865. name: "Normal",
  44866. height: math.unit(5 + 8/12, "feet"),
  44867. default: true
  44868. },
  44869. {
  44870. name: "Minimacro",
  44871. height: math.unit(18, "feet")
  44872. },
  44873. {
  44874. name: "Macro",
  44875. height: math.unit(180, "feet")
  44876. },
  44877. ]
  44878. ))
  44879. characterMakers.push(() => makeCharacter(
  44880. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44881. {
  44882. front: {
  44883. height: math.unit(5 + 2/12, "feet"),
  44884. name: "Front",
  44885. image: {
  44886. source: "./media/characters/october-gossamer/front.svg",
  44887. extra: 505/454,
  44888. bottom: 7/512
  44889. }
  44890. },
  44891. back: {
  44892. height: math.unit(5 + 2/12, "feet"),
  44893. name: "Back",
  44894. image: {
  44895. source: "./media/characters/october-gossamer/back.svg",
  44896. extra: 501/454,
  44897. bottom: 11/512
  44898. }
  44899. },
  44900. },
  44901. [
  44902. {
  44903. name: "Normal",
  44904. height: math.unit(5 + 2/12, "feet"),
  44905. default: true
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44911. {
  44912. front: {
  44913. height: math.unit(5, "feet"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/epiglottis/front.svg",
  44917. extra: 923/849,
  44918. bottom: 17/940
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Original Size",
  44925. height: math.unit(10, "inches")
  44926. },
  44927. {
  44928. name: "Human Size",
  44929. height: math.unit(5, "feet"),
  44930. default: true
  44931. },
  44932. {
  44933. name: "Big",
  44934. height: math.unit(25, "feet")
  44935. },
  44936. {
  44937. name: "Bigger",
  44938. height: math.unit(50, "feet")
  44939. },
  44940. {
  44941. name: "oh lawd",
  44942. height: math.unit(75, "feet")
  44943. },
  44944. ]
  44945. ))
  44946. characterMakers.push(() => makeCharacter(
  44947. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44948. {
  44949. front: {
  44950. height: math.unit(2 + 4/12, "feet"),
  44951. weight: math.unit(60, "lb"),
  44952. name: "Front",
  44953. image: {
  44954. source: "./media/characters/lerm/front.svg",
  44955. extra: 796/790,
  44956. bottom: 79/875
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(2 + 4/12, "feet"),
  44964. default: true
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44970. {
  44971. front: {
  44972. height: math.unit(5.5, "feet"),
  44973. weight: math.unit(130, "lb"),
  44974. name: "Front",
  44975. image: {
  44976. source: "./media/characters/xena-nebadon/front.svg",
  44977. extra: 1828/1730,
  44978. bottom: 79/1907
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Tiny Puppy",
  44985. height: math.unit(3, "inches")
  44986. },
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(5.5, "feet"),
  44990. default: true
  44991. },
  44992. {
  44993. name: "Lotta Lady",
  44994. height: math.unit(12, "feet")
  44995. },
  44996. {
  44997. name: "Pretty Big",
  44998. height: math.unit(100, "feet")
  44999. },
  45000. {
  45001. name: "Big",
  45002. height: math.unit(500, "feet")
  45003. },
  45004. {
  45005. name: "Skyscraper Toys",
  45006. height: math.unit(2500, "feet")
  45007. },
  45008. {
  45009. name: "Plane Catcher",
  45010. height: math.unit(8, "miles")
  45011. },
  45012. {
  45013. name: "Planet Toys",
  45014. height: math.unit(15, "earths")
  45015. },
  45016. {
  45017. name: "Stardust",
  45018. height: math.unit(0.25, "galaxies")
  45019. },
  45020. {
  45021. name: "Snacks",
  45022. height: math.unit(70, "universes")
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45028. {
  45029. front: {
  45030. height: math.unit(1.6, "meters"),
  45031. weight: math.unit(60, "kg"),
  45032. name: "Front",
  45033. image: {
  45034. source: "./media/characters/bounty/front.svg",
  45035. extra: 1426/1308,
  45036. bottom: 15/1441
  45037. }
  45038. },
  45039. back: {
  45040. height: math.unit(1.6, "meters"),
  45041. weight: math.unit(60, "kg"),
  45042. name: "Back",
  45043. image: {
  45044. source: "./media/characters/bounty/back.svg",
  45045. extra: 1417/1307,
  45046. bottom: 8/1425
  45047. }
  45048. },
  45049. },
  45050. [
  45051. {
  45052. name: "Normal",
  45053. height: math.unit(1.6, "meters"),
  45054. default: true
  45055. },
  45056. {
  45057. name: "Macro",
  45058. height: math.unit(300, "meters")
  45059. },
  45060. ]
  45061. ))
  45062. characterMakers.push(() => makeCharacter(
  45063. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45064. {
  45065. front: {
  45066. height: math.unit(2 + 8/12, "feet"),
  45067. weight: math.unit(15, "lb"),
  45068. name: "Front",
  45069. image: {
  45070. source: "./media/characters/mochi/front.svg",
  45071. extra: 1022/852,
  45072. bottom: 435/1457
  45073. }
  45074. },
  45075. back: {
  45076. height: math.unit(2 + 8/12, "feet"),
  45077. weight: math.unit(15, "lb"),
  45078. name: "Back",
  45079. image: {
  45080. source: "./media/characters/mochi/back.svg",
  45081. extra: 1335/1119,
  45082. bottom: 39/1374
  45083. }
  45084. },
  45085. bird: {
  45086. height: math.unit(2 + 8/12, "feet"),
  45087. weight: math.unit(15, "lb"),
  45088. name: "Bird",
  45089. image: {
  45090. source: "./media/characters/mochi/bird.svg",
  45091. extra: 1251/1113,
  45092. bottom: 178/1429
  45093. }
  45094. },
  45095. kaiju: {
  45096. height: math.unit(154, "feet"),
  45097. weight: math.unit(1e7, "lb"),
  45098. name: "Kaiju",
  45099. image: {
  45100. source: "./media/characters/mochi/kaiju.svg",
  45101. extra: 460/324,
  45102. bottom: 40/500
  45103. }
  45104. },
  45105. head: {
  45106. height: math.unit(1.21, "feet"),
  45107. name: "Head",
  45108. image: {
  45109. source: "./media/characters/mochi/head.svg"
  45110. }
  45111. },
  45112. alternateTail: {
  45113. height: math.unit(2 + 8/12, "feet"),
  45114. weight: math.unit(45, "lb"),
  45115. name: "Alternate Tail",
  45116. image: {
  45117. source: "./media/characters/mochi/alternate-tail.svg",
  45118. extra: 139/76,
  45119. bottom: 45/184
  45120. }
  45121. },
  45122. },
  45123. [
  45124. {
  45125. name: "Micro",
  45126. height: math.unit(2, "inches")
  45127. },
  45128. {
  45129. name: "Normal",
  45130. height: math.unit(2 + 8/12, "feet"),
  45131. default: true
  45132. },
  45133. {
  45134. name: "Macro",
  45135. height: math.unit(106, "feet")
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45141. {
  45142. front: {
  45143. height: math.unit(5.67, "feet"),
  45144. weight: math.unit(135, "lb"),
  45145. name: "Front",
  45146. image: {
  45147. source: "./media/characters/sarel/front.svg",
  45148. extra: 865/788,
  45149. bottom: 97/962
  45150. }
  45151. },
  45152. back: {
  45153. height: math.unit(5.67, "feet"),
  45154. weight: math.unit(135, "lb"),
  45155. name: "Back",
  45156. image: {
  45157. source: "./media/characters/sarel/back.svg",
  45158. extra: 857/777,
  45159. bottom: 32/889
  45160. }
  45161. },
  45162. chozoan: {
  45163. height: math.unit(5.67, "feet"),
  45164. weight: math.unit(135, "lb"),
  45165. name: "Chozoan",
  45166. image: {
  45167. source: "./media/characters/sarel/chozoan.svg",
  45168. extra: 865/788,
  45169. bottom: 97/962
  45170. }
  45171. },
  45172. current: {
  45173. height: math.unit(5.67, "feet"),
  45174. weight: math.unit(135, "lb"),
  45175. name: "Current",
  45176. image: {
  45177. source: "./media/characters/sarel/current.svg",
  45178. extra: 865/788,
  45179. bottom: 97/962
  45180. }
  45181. },
  45182. head: {
  45183. height: math.unit(1.77, "feet"),
  45184. name: "Head",
  45185. image: {
  45186. source: "./media/characters/sarel/head.svg"
  45187. }
  45188. },
  45189. claws: {
  45190. height: math.unit(1.8, "feet"),
  45191. name: "Claws",
  45192. image: {
  45193. source: "./media/characters/sarel/claws.svg"
  45194. }
  45195. },
  45196. clawsAlt: {
  45197. height: math.unit(1.8, "feet"),
  45198. name: "Claws-alt",
  45199. image: {
  45200. source: "./media/characters/sarel/claws-alt.svg"
  45201. }
  45202. },
  45203. },
  45204. [
  45205. {
  45206. name: "Normal",
  45207. height: math.unit(5.67, "feet"),
  45208. default: true
  45209. },
  45210. ]
  45211. ))
  45212. characterMakers.push(() => makeCharacter(
  45213. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45214. {
  45215. front: {
  45216. height: math.unit(5500, "feet"),
  45217. name: "Front",
  45218. image: {
  45219. source: "./media/characters/alyonia/front.svg",
  45220. extra: 1200/1135,
  45221. bottom: 29/1229
  45222. }
  45223. },
  45224. back: {
  45225. height: math.unit(5500, "feet"),
  45226. name: "Back",
  45227. image: {
  45228. source: "./media/characters/alyonia/back.svg",
  45229. extra: 1205/1138,
  45230. bottom: 10/1215
  45231. }
  45232. },
  45233. },
  45234. [
  45235. {
  45236. name: "Small",
  45237. height: math.unit(10, "feet")
  45238. },
  45239. {
  45240. name: "Macro",
  45241. height: math.unit(500, "feet")
  45242. },
  45243. {
  45244. name: "Mega Macro",
  45245. height: math.unit(5500, "feet"),
  45246. default: true
  45247. },
  45248. {
  45249. name: "Mega Macro+",
  45250. height: math.unit(500000, "feet")
  45251. },
  45252. {
  45253. name: "Giga Macro",
  45254. height: math.unit(3000, "miles")
  45255. },
  45256. {
  45257. name: "Tera Macro",
  45258. height: math.unit(2.8e6, "miles")
  45259. },
  45260. {
  45261. name: "Galactic",
  45262. height: math.unit(120000, "lightyears")
  45263. },
  45264. ]
  45265. ))
  45266. characterMakers.push(() => makeCharacter(
  45267. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45268. {
  45269. werewolf: {
  45270. height: math.unit(8, "feet"),
  45271. weight: math.unit(425, "lb"),
  45272. name: "Werewolf",
  45273. image: {
  45274. source: "./media/characters/autumn/werewolf.svg",
  45275. extra: 2154/2031,
  45276. bottom: 160/2314
  45277. }
  45278. },
  45279. human: {
  45280. height: math.unit(5 + 8/12, "feet"),
  45281. weight: math.unit(150, "lb"),
  45282. name: "Human",
  45283. image: {
  45284. source: "./media/characters/autumn/human.svg",
  45285. extra: 1200/1149,
  45286. bottom: 30/1230
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Normal",
  45293. height: math.unit(8, "feet"),
  45294. default: true
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45300. {
  45301. front: {
  45302. height: math.unit(8 + 5/12, "feet"),
  45303. weight: math.unit(825, "lb"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/cobalt-charizard/front.svg",
  45307. extra: 1268/1155,
  45308. bottom: 122/1390
  45309. }
  45310. },
  45311. side: {
  45312. height: math.unit(8 + 5/12, "feet"),
  45313. weight: math.unit(825, "lb"),
  45314. name: "Side",
  45315. image: {
  45316. source: "./media/characters/cobalt-charizard/side.svg",
  45317. extra: 1348/1257,
  45318. bottom: 58/1406
  45319. }
  45320. },
  45321. gMax: {
  45322. height: math.unit(134 + 11/12, "feet"),
  45323. name: "G-Max",
  45324. image: {
  45325. source: "./media/characters/cobalt-charizard/g-max.svg",
  45326. extra: 1835/1541,
  45327. bottom: 151/1986
  45328. }
  45329. },
  45330. },
  45331. [
  45332. {
  45333. name: "Normal",
  45334. height: math.unit(8 + 5/12, "feet"),
  45335. default: true
  45336. },
  45337. ]
  45338. ))
  45339. characterMakers.push(() => makeCharacter(
  45340. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45341. {
  45342. front: {
  45343. height: math.unit(6 + 3/12, "feet"),
  45344. weight: math.unit(210, "lb"),
  45345. name: "Front",
  45346. image: {
  45347. source: "./media/characters/stella/front.svg",
  45348. extra: 3549/3335,
  45349. bottom: 51/3600
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "Normal",
  45356. height: math.unit(6 + 3/12, "feet"),
  45357. default: true
  45358. },
  45359. ]
  45360. ))
  45361. characterMakers.push(() => makeCharacter(
  45362. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45363. {
  45364. front: {
  45365. height: math.unit(5, "feet"),
  45366. weight: math.unit(90, "lb"),
  45367. name: "Front",
  45368. image: {
  45369. source: "./media/characters/riley-bishop/front.svg",
  45370. extra: 1450/1428,
  45371. bottom: 152/1602
  45372. }
  45373. },
  45374. },
  45375. [
  45376. {
  45377. name: "Normal",
  45378. height: math.unit(5, "feet"),
  45379. default: true
  45380. },
  45381. ]
  45382. ))
  45383. characterMakers.push(() => makeCharacter(
  45384. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45385. {
  45386. side: {
  45387. height: math.unit(8 + 2/12, "feet"),
  45388. weight: math.unit(500, "kg"),
  45389. name: "Side",
  45390. image: {
  45391. source: "./media/characters/theo-arcanine/side.svg",
  45392. extra: 1342/1074,
  45393. bottom: 111/1453
  45394. }
  45395. },
  45396. },
  45397. [
  45398. {
  45399. name: "Normal",
  45400. height: math.unit(8 + 2/12, "feet"),
  45401. default: true
  45402. },
  45403. ]
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45407. {
  45408. front: {
  45409. height: math.unit(4, "feet"),
  45410. name: "Front",
  45411. image: {
  45412. source: "./media/characters/kali/front.svg",
  45413. extra: 1921/1357,
  45414. bottom: 70/1991
  45415. }
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Normal",
  45421. height: math.unit(4, "feet"),
  45422. default: true
  45423. },
  45424. {
  45425. name: "Macro",
  45426. height: math.unit(32, "meters")
  45427. },
  45428. {
  45429. name: "Macro+",
  45430. height: math.unit(150, "meters")
  45431. },
  45432. {
  45433. name: "Megamacro",
  45434. height: math.unit(7500, "meters")
  45435. },
  45436. {
  45437. name: "Megamacro+",
  45438. height: math.unit(80, "kilometers")
  45439. },
  45440. ]
  45441. ))
  45442. characterMakers.push(() => makeCharacter(
  45443. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45444. {
  45445. side: {
  45446. height: math.unit(5 + 11/12, "feet"),
  45447. weight: math.unit(236, "lb"),
  45448. name: "Side",
  45449. image: {
  45450. source: "./media/characters/gapp/side.svg",
  45451. extra: 775/340,
  45452. bottom: 58/833
  45453. }
  45454. },
  45455. mouth: {
  45456. height: math.unit(2.98, "feet"),
  45457. name: "Mouth",
  45458. image: {
  45459. source: "./media/characters/gapp/mouth.svg"
  45460. }
  45461. },
  45462. },
  45463. [
  45464. {
  45465. name: "Normal",
  45466. height: math.unit(5 + 1/12, "feet"),
  45467. default: true
  45468. },
  45469. ]
  45470. ))
  45471. characterMakers.push(() => makeCharacter(
  45472. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45473. {
  45474. front: {
  45475. height: math.unit(6, "feet"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/persephone/front.svg",
  45479. extra: 1895/1717,
  45480. bottom: 96/1991
  45481. }
  45482. },
  45483. back: {
  45484. height: math.unit(6, "feet"),
  45485. name: "Back",
  45486. image: {
  45487. source: "./media/characters/persephone/back.svg",
  45488. extra: 1868/1679,
  45489. bottom: 26/1894
  45490. }
  45491. },
  45492. casual: {
  45493. height: math.unit(6, "feet"),
  45494. name: "Casual",
  45495. image: {
  45496. source: "./media/characters/persephone/casual.svg",
  45497. extra: 1713/1541,
  45498. bottom: 76/1789
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Human Size",
  45505. height: math.unit(6, "feet")
  45506. },
  45507. {
  45508. name: "Big Steppy",
  45509. height: math.unit(600, "meters"),
  45510. default: true
  45511. },
  45512. {
  45513. name: "Galaxy Brain",
  45514. height: math.unit(1, "zettameter")
  45515. },
  45516. ]
  45517. ))
  45518. characterMakers.push(() => makeCharacter(
  45519. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45520. {
  45521. front: {
  45522. height: math.unit(1.85, "meters"),
  45523. name: "Front",
  45524. image: {
  45525. source: "./media/characters/riley-foxthing/front.svg",
  45526. extra: 1495/1354,
  45527. bottom: 122/1617
  45528. }
  45529. },
  45530. frontAlt: {
  45531. height: math.unit(1.85, "meters"),
  45532. name: "Front (Alt)",
  45533. image: {
  45534. source: "./media/characters/riley-foxthing/front-alt.svg",
  45535. extra: 1572/1389,
  45536. bottom: 116/1688
  45537. }
  45538. },
  45539. },
  45540. [
  45541. {
  45542. name: "Normal Sized",
  45543. height: math.unit(1.85, "meters"),
  45544. default: true
  45545. },
  45546. {
  45547. name: "Quite Sizable",
  45548. height: math.unit(5, "meters")
  45549. },
  45550. {
  45551. name: "Rather Large",
  45552. height: math.unit(20, "meters")
  45553. },
  45554. {
  45555. name: "Macro",
  45556. height: math.unit(450, "meters")
  45557. },
  45558. {
  45559. name: "Giga",
  45560. height: math.unit(5, "km")
  45561. },
  45562. ]
  45563. ))
  45564. characterMakers.push(() => makeCharacter(
  45565. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45566. {
  45567. front: {
  45568. height: math.unit(6, "feet"),
  45569. weight: math.unit(200, "lb"),
  45570. name: "Front",
  45571. image: {
  45572. source: "./media/characters/blizzard/front.svg",
  45573. extra: 1136/990,
  45574. bottom: 136/1272
  45575. }
  45576. },
  45577. back: {
  45578. height: math.unit(6, "feet"),
  45579. weight: math.unit(200, "lb"),
  45580. name: "Back",
  45581. image: {
  45582. source: "./media/characters/blizzard/back.svg",
  45583. extra: 1175/1034,
  45584. bottom: 97/1272
  45585. }
  45586. },
  45587. sitting: {
  45588. height: math.unit(3.725, "feet"),
  45589. weight: math.unit(200, "lb"),
  45590. name: "Sitting",
  45591. image: {
  45592. source: "./media/characters/blizzard/sitting.svg",
  45593. extra: 581/485,
  45594. bottom: 90/671
  45595. }
  45596. },
  45597. frontWizard: {
  45598. height: math.unit(7.9, "feet"),
  45599. weight: math.unit(200, "lb"),
  45600. name: "Front (Wizard)",
  45601. image: {
  45602. source: "./media/characters/blizzard/front-wizard.svg"
  45603. }
  45604. },
  45605. backWizard: {
  45606. height: math.unit(7.9, "feet"),
  45607. weight: math.unit(200, "lb"),
  45608. name: "Back (Wizard)",
  45609. image: {
  45610. source: "./media/characters/blizzard/back-wizard.svg"
  45611. }
  45612. },
  45613. frontNsfw: {
  45614. height: math.unit(6, "feet"),
  45615. weight: math.unit(200, "lb"),
  45616. name: "Front (NSFW)",
  45617. image: {
  45618. source: "./media/characters/blizzard/front-nsfw.svg",
  45619. extra: 1136/990,
  45620. bottom: 136/1272
  45621. }
  45622. },
  45623. backNsfw: {
  45624. height: math.unit(6, "feet"),
  45625. weight: math.unit(200, "lb"),
  45626. name: "Back (NSFW)",
  45627. image: {
  45628. source: "./media/characters/blizzard/back-nsfw.svg",
  45629. extra: 1175/1034,
  45630. bottom: 97/1272
  45631. }
  45632. },
  45633. sittingNsfw: {
  45634. height: math.unit(3.725, "feet"),
  45635. weight: math.unit(200, "lb"),
  45636. name: "Sitting (NSFW)",
  45637. image: {
  45638. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45639. extra: 581/485,
  45640. bottom: 90/671
  45641. }
  45642. },
  45643. wizardFrontNsfw: {
  45644. height: math.unit(7.9, "feet"),
  45645. weight: math.unit(200, "lb"),
  45646. name: "Wizard (Front, NSFW)",
  45647. image: {
  45648. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Normal",
  45655. height: math.unit(6, "feet"),
  45656. default: true
  45657. },
  45658. ]
  45659. ))
  45660. characterMakers.push(() => makeCharacter(
  45661. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45662. {
  45663. front: {
  45664. height: math.unit(5 + 2/12, "feet"),
  45665. name: "Front",
  45666. image: {
  45667. source: "./media/characters/lumi/front.svg",
  45668. extra: 1328/1268,
  45669. bottom: 103/1431
  45670. }
  45671. },
  45672. back: {
  45673. height: math.unit(5 + 2/12, "feet"),
  45674. name: "Back",
  45675. image: {
  45676. source: "./media/characters/lumi/back.svg",
  45677. extra: 1381/1327,
  45678. bottom: 43/1424
  45679. }
  45680. },
  45681. },
  45682. [
  45683. {
  45684. name: "Normal",
  45685. height: math.unit(5 + 2/12, "feet"),
  45686. default: true
  45687. },
  45688. ]
  45689. ))
  45690. characterMakers.push(() => makeCharacter(
  45691. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45692. {
  45693. front: {
  45694. height: math.unit(5 + 9/12, "feet"),
  45695. name: "Front",
  45696. image: {
  45697. source: "./media/characters/aliya-cotton/front.svg",
  45698. extra: 577/564,
  45699. bottom: 29/606
  45700. }
  45701. },
  45702. },
  45703. [
  45704. {
  45705. name: "Normal",
  45706. height: math.unit(5 + 9/12, "feet"),
  45707. default: true
  45708. },
  45709. ]
  45710. ))
  45711. characterMakers.push(() => makeCharacter(
  45712. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45713. {
  45714. front: {
  45715. height: math.unit(2.7, "meters"),
  45716. weight: math.unit(25000, "lb"),
  45717. name: "Front",
  45718. image: {
  45719. source: "./media/characters/noah-luxray/front.svg",
  45720. extra: 1644/825,
  45721. bottom: 339/1983
  45722. }
  45723. },
  45724. side: {
  45725. height: math.unit(2.97, "meters"),
  45726. weight: math.unit(25000, "lb"),
  45727. name: "Side",
  45728. image: {
  45729. source: "./media/characters/noah-luxray/side.svg",
  45730. extra: 1319/650,
  45731. bottom: 163/1482
  45732. }
  45733. },
  45734. dick: {
  45735. height: math.unit(7.4, "feet"),
  45736. weight: math.unit(2500, "lb"),
  45737. name: "Dick",
  45738. image: {
  45739. source: "./media/characters/noah-luxray/dick.svg"
  45740. }
  45741. },
  45742. dickAlt: {
  45743. height: math.unit(10.83, "feet"),
  45744. weight: math.unit(2500, "lb"),
  45745. name: "Dick-alt",
  45746. image: {
  45747. source: "./media/characters/noah-luxray/dick-alt.svg"
  45748. }
  45749. },
  45750. },
  45751. [
  45752. {
  45753. name: "BIG",
  45754. height: math.unit(2.7, "meters"),
  45755. default: true
  45756. },
  45757. ]
  45758. ))
  45759. characterMakers.push(() => makeCharacter(
  45760. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45761. {
  45762. standing: {
  45763. height: math.unit(183, "cm"),
  45764. weight: math.unit(68, "kg"),
  45765. name: "Standing",
  45766. image: {
  45767. source: "./media/characters/arion/standing.svg",
  45768. extra: 1869/1807,
  45769. bottom: 93/1962
  45770. }
  45771. },
  45772. reclining: {
  45773. height: math.unit(70.5, "cm"),
  45774. weight: math.unit(68, "lb"),
  45775. name: "Reclining",
  45776. image: {
  45777. source: "./media/characters/arion/reclining.svg",
  45778. extra: 937/870,
  45779. bottom: 63/1000
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Colossus Size, Low",
  45786. height: math.unit(33, "meters"),
  45787. default: true
  45788. },
  45789. {
  45790. name: "Colossus Size, Mid",
  45791. height: math.unit(52, "meters")
  45792. },
  45793. {
  45794. name: "Colossus Size, High",
  45795. height: math.unit(60, "meters")
  45796. },
  45797. {
  45798. name: "Titan Size, Low",
  45799. height: math.unit(91, "meters"),
  45800. },
  45801. {
  45802. name: "Titan Size, Mid",
  45803. height: math.unit(122, "meters")
  45804. },
  45805. {
  45806. name: "Titan Size, High",
  45807. height: math.unit(162, "meters")
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45813. {
  45814. front: {
  45815. height: math.unit(53, "meters"),
  45816. name: "Front",
  45817. image: {
  45818. source: "./media/characters/stellar-marbey/front.svg",
  45819. extra: 1913/1805,
  45820. bottom: 92/2005
  45821. }
  45822. },
  45823. back: {
  45824. height: math.unit(53, "meters"),
  45825. name: "Back",
  45826. image: {
  45827. source: "./media/characters/stellar-marbey/back.svg",
  45828. extra: 1960/1851,
  45829. bottom: 28/1988
  45830. }
  45831. },
  45832. mouth: {
  45833. height: math.unit(3.5, "meters"),
  45834. name: "Mouth",
  45835. image: {
  45836. source: "./media/characters/stellar-marbey/mouth.svg"
  45837. }
  45838. },
  45839. },
  45840. [
  45841. {
  45842. name: "Macro",
  45843. height: math.unit(53, "meters"),
  45844. default: true
  45845. },
  45846. ]
  45847. ))
  45848. characterMakers.push(() => makeCharacter(
  45849. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45850. {
  45851. front: {
  45852. height: math.unit(8 + 1/12, "feet"),
  45853. weight: math.unit(233, "lb"),
  45854. name: "Front",
  45855. image: {
  45856. source: "./media/characters/matsu/front.svg",
  45857. extra: 832/772,
  45858. bottom: 40/872
  45859. }
  45860. },
  45861. back: {
  45862. height: math.unit(8 + 1/12, "feet"),
  45863. weight: math.unit(233, "lb"),
  45864. name: "Back",
  45865. image: {
  45866. source: "./media/characters/matsu/back.svg",
  45867. extra: 839/780,
  45868. bottom: 47/886
  45869. }
  45870. },
  45871. },
  45872. [
  45873. {
  45874. name: "Normal",
  45875. height: math.unit(8 + 1/12, "feet"),
  45876. default: true
  45877. },
  45878. ]
  45879. ))
  45880. characterMakers.push(() => makeCharacter(
  45881. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45882. {
  45883. front: {
  45884. height: math.unit(4, "feet"),
  45885. weight: math.unit(148, "lb"),
  45886. name: "Front",
  45887. image: {
  45888. source: "./media/characters/thiz/front.svg",
  45889. extra: 1913/1748,
  45890. bottom: 62/1975
  45891. }
  45892. },
  45893. },
  45894. [
  45895. {
  45896. name: "Normal",
  45897. height: math.unit(4, "feet"),
  45898. default: true
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45904. {
  45905. front: {
  45906. height: math.unit(7 + 6/12, "feet"),
  45907. weight: math.unit(267, "lb"),
  45908. name: "Front",
  45909. image: {
  45910. source: "./media/characters/marcel/front.svg",
  45911. extra: 1221/1096,
  45912. bottom: 76/1297
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Normal",
  45919. height: math.unit(7 + 6/12, "feet"),
  45920. default: true
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45926. {
  45927. side: {
  45928. height: math.unit(42, "meters"),
  45929. name: "Side",
  45930. image: {
  45931. source: "./media/characters/flake/side.svg",
  45932. extra: 1525/1306,
  45933. bottom: 209/1734
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Normal",
  45940. height: math.unit(42, "meters"),
  45941. default: true
  45942. },
  45943. ]
  45944. ))
  45945. characterMakers.push(() => makeCharacter(
  45946. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45947. {
  45948. dressed: {
  45949. height: math.unit(6 + 4/12, "feet"),
  45950. weight: math.unit(520, "lb"),
  45951. name: "Dressed",
  45952. image: {
  45953. source: "./media/characters/someonne/dressed.svg",
  45954. extra: 1020/1010,
  45955. bottom: 178/1198
  45956. }
  45957. },
  45958. undressed: {
  45959. height: math.unit(6 + 4/12, "feet"),
  45960. weight: math.unit(520, "lb"),
  45961. name: "Undressed",
  45962. image: {
  45963. source: "./media/characters/someonne/undressed.svg",
  45964. extra: 1019/1014,
  45965. bottom: 169/1188
  45966. }
  45967. },
  45968. },
  45969. [
  45970. {
  45971. name: "Normal",
  45972. height: math.unit(6 + 4/12, "feet"),
  45973. default: true
  45974. },
  45975. ]
  45976. ))
  45977. characterMakers.push(() => makeCharacter(
  45978. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45979. {
  45980. front: {
  45981. height: math.unit(3, "feet"),
  45982. weight: math.unit(30, "lb"),
  45983. name: "Front",
  45984. image: {
  45985. source: "./media/characters/till/front.svg",
  45986. extra: 892/823,
  45987. bottom: 55/947
  45988. }
  45989. },
  45990. },
  45991. [
  45992. {
  45993. name: "Normal",
  45994. height: math.unit(3, "feet"),
  45995. default: true
  45996. },
  45997. ]
  45998. ))
  45999. characterMakers.push(() => makeCharacter(
  46000. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46001. {
  46002. front: {
  46003. height: math.unit(9 + 8/12, "feet"),
  46004. weight: math.unit(800, "lb"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/sydney-heki/front.svg",
  46008. extra: 1360/1300,
  46009. bottom: 22/1382
  46010. }
  46011. },
  46012. back: {
  46013. height: math.unit(9 + 8/12, "feet"),
  46014. weight: math.unit(800, "lb"),
  46015. name: "Back",
  46016. image: {
  46017. source: "./media/characters/sydney-heki/back.svg",
  46018. extra: 1356/1293,
  46019. bottom: 12/1368
  46020. }
  46021. },
  46022. frontDressed: {
  46023. height: math.unit(9 + 8/12, "feet"),
  46024. weight: math.unit(800, "lb"),
  46025. name: "Front-dressed",
  46026. image: {
  46027. source: "./media/characters/sydney-heki/front-dressed.svg",
  46028. extra: 1360/1300,
  46029. bottom: 22/1382
  46030. }
  46031. },
  46032. },
  46033. [
  46034. {
  46035. name: "Normal",
  46036. height: math.unit(9 + 8/12, "feet"),
  46037. default: true
  46038. },
  46039. {
  46040. name: "Macro",
  46041. height: math.unit(500, "feet")
  46042. },
  46043. {
  46044. name: "Megamacro",
  46045. height: math.unit(3.6, "miles")
  46046. },
  46047. ]
  46048. ))
  46049. characterMakers.push(() => makeCharacter(
  46050. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46051. {
  46052. front: {
  46053. height: math.unit(200, "cm"),
  46054. weight: math.unit(250, "lb"),
  46055. name: "Front",
  46056. image: {
  46057. source: "./media/characters/fowler-karlsson/front.svg",
  46058. extra: 897/845,
  46059. bottom: 123/1020
  46060. }
  46061. },
  46062. back: {
  46063. height: math.unit(200, "cm"),
  46064. weight: math.unit(250, "lb"),
  46065. name: "Back",
  46066. image: {
  46067. source: "./media/characters/fowler-karlsson/back.svg",
  46068. extra: 999/944,
  46069. bottom: 26/1025
  46070. }
  46071. },
  46072. dick: {
  46073. height: math.unit(1.92, "feet"),
  46074. weight: math.unit(150, "lb"),
  46075. name: "Dick",
  46076. image: {
  46077. source: "./media/characters/fowler-karlsson/dick.svg"
  46078. }
  46079. },
  46080. },
  46081. [
  46082. {
  46083. name: "Normal",
  46084. height: math.unit(200, "cm"),
  46085. default: true
  46086. },
  46087. {
  46088. name: "Smaller Macro",
  46089. height: math.unit(90, "m")
  46090. },
  46091. {
  46092. name: "Macro",
  46093. height: math.unit(150, "m")
  46094. },
  46095. {
  46096. name: "Bigger Macro",
  46097. height: math.unit(300, "m")
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46103. {
  46104. side: {
  46105. height: math.unit(8 + 2/12, "feet"),
  46106. weight: math.unit(1, "tonne"),
  46107. name: "Side",
  46108. image: {
  46109. source: "./media/characters/rylide/side.svg",
  46110. extra: 1318/1034,
  46111. bottom: 106/1424
  46112. }
  46113. },
  46114. sitting: {
  46115. height: math.unit(303, "cm"),
  46116. weight: math.unit(1, "tonne"),
  46117. name: "Sitting",
  46118. image: {
  46119. source: "./media/characters/rylide/sitting.svg",
  46120. extra: 1303/1103,
  46121. bottom: 36/1339
  46122. }
  46123. },
  46124. },
  46125. [
  46126. {
  46127. name: "Normal",
  46128. height: math.unit(8 + 2/12, "feet"),
  46129. default: true
  46130. },
  46131. ]
  46132. ))
  46133. characterMakers.push(() => makeCharacter(
  46134. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46135. {
  46136. front: {
  46137. height: math.unit(5 + 10/12, "feet"),
  46138. weight: math.unit(160, "lb"),
  46139. name: "Front",
  46140. image: {
  46141. source: "./media/characters/pudask/front.svg",
  46142. extra: 1616/1590,
  46143. bottom: 161/1777
  46144. }
  46145. },
  46146. },
  46147. [
  46148. {
  46149. name: "Ferret Height",
  46150. height: math.unit(2 + 5/12, "feet")
  46151. },
  46152. {
  46153. name: "Canon Height",
  46154. height: math.unit(5 + 10/12, "feet"),
  46155. default: true
  46156. },
  46157. ]
  46158. ))
  46159. characterMakers.push(() => makeCharacter(
  46160. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46161. {
  46162. front: {
  46163. height: math.unit(3 + 6/12, "feet"),
  46164. weight: math.unit(60, "lb"),
  46165. name: "Front",
  46166. image: {
  46167. source: "./media/characters/ramita/front.svg",
  46168. extra: 1402/1232,
  46169. bottom: 62/1464
  46170. }
  46171. },
  46172. dressed: {
  46173. height: math.unit(3 + 6/12, "feet"),
  46174. weight: math.unit(60, "lb"),
  46175. name: "Dressed",
  46176. image: {
  46177. source: "./media/characters/ramita/dressed.svg",
  46178. extra: 1534/1249,
  46179. bottom: 50/1584
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Normal",
  46186. height: math.unit(3 + 6/12, "feet"),
  46187. default: true
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46193. {
  46194. front: {
  46195. height: math.unit(8, "feet"),
  46196. name: "Front",
  46197. image: {
  46198. source: "./media/characters/ark/front.svg",
  46199. extra: 772/693,
  46200. bottom: 45/817
  46201. }
  46202. },
  46203. },
  46204. [
  46205. {
  46206. name: "Normal",
  46207. height: math.unit(8, "feet"),
  46208. default: true
  46209. },
  46210. ]
  46211. ))
  46212. characterMakers.push(() => makeCharacter(
  46213. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46214. {
  46215. front: {
  46216. height: math.unit(6, "feet"),
  46217. weight: math.unit(250, "lb"),
  46218. volume: math.unit(5/8, "gallons"),
  46219. name: "Front",
  46220. image: {
  46221. source: "./media/characters/ludwig-horn/front.svg",
  46222. extra: 1782/1635,
  46223. bottom: 96/1878
  46224. }
  46225. },
  46226. back: {
  46227. height: math.unit(6, "feet"),
  46228. weight: math.unit(250, "lb"),
  46229. volume: math.unit(5/8, "gallons"),
  46230. name: "Back",
  46231. image: {
  46232. source: "./media/characters/ludwig-horn/back.svg",
  46233. extra: 1874/1729,
  46234. bottom: 27/1901
  46235. }
  46236. },
  46237. dick: {
  46238. height: math.unit(1.05, "feet"),
  46239. weight: math.unit(15, "lb"),
  46240. volume: math.unit(5/8, "gallons"),
  46241. name: "Dick",
  46242. image: {
  46243. source: "./media/characters/ludwig-horn/dick.svg"
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Small",
  46250. height: math.unit(6, "feet")
  46251. },
  46252. {
  46253. name: "Typical",
  46254. height: math.unit(12, "feet"),
  46255. default: true
  46256. },
  46257. {
  46258. name: "Building",
  46259. height: math.unit(80, "feet")
  46260. },
  46261. {
  46262. name: "Town",
  46263. height: math.unit(800, "feet")
  46264. },
  46265. {
  46266. name: "Kingdom",
  46267. height: math.unit(80000, "feet")
  46268. },
  46269. {
  46270. name: "Planet",
  46271. height: math.unit(8000000, "feet")
  46272. },
  46273. {
  46274. name: "Universe",
  46275. height: math.unit(8000000000, "feet")
  46276. },
  46277. {
  46278. name: "Transcended",
  46279. height: math.unit(8e27, "feet")
  46280. },
  46281. ]
  46282. ))
  46283. characterMakers.push(() => makeCharacter(
  46284. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46285. {
  46286. front: {
  46287. height: math.unit(5, "feet"),
  46288. weight: math.unit(50, "kg"),
  46289. name: "Front",
  46290. image: {
  46291. source: "./media/characters/biot-avery/front.svg",
  46292. extra: 1295/1232,
  46293. bottom: 86/1381
  46294. }
  46295. },
  46296. },
  46297. [
  46298. {
  46299. name: "Normal",
  46300. height: math.unit(5, "feet"),
  46301. default: true
  46302. },
  46303. ]
  46304. ))
  46305. characterMakers.push(() => makeCharacter(
  46306. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46307. {
  46308. front: {
  46309. height: math.unit(6, "feet"),
  46310. name: "Front",
  46311. image: {
  46312. source: "./media/characters/kitsune-kiro/front.svg",
  46313. extra: 1270/1158,
  46314. bottom: 42/1312
  46315. }
  46316. },
  46317. frontAlt: {
  46318. height: math.unit(6, "feet"),
  46319. name: "Front-alt",
  46320. image: {
  46321. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46322. extra: 1130/1081,
  46323. bottom: 36/1166
  46324. }
  46325. },
  46326. },
  46327. [
  46328. {
  46329. name: "Smol",
  46330. height: math.unit(3, "feet")
  46331. },
  46332. {
  46333. name: "Normal",
  46334. height: math.unit(6, "feet"),
  46335. default: true
  46336. },
  46337. ]
  46338. ))
  46339. characterMakers.push(() => makeCharacter(
  46340. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46341. {
  46342. front: {
  46343. height: math.unit(6, "feet"),
  46344. weight: math.unit(125, "lb"),
  46345. name: "Front",
  46346. image: {
  46347. source: "./media/characters/jack-thatcher/front.svg",
  46348. extra: 1474/1370,
  46349. bottom: 26/1500
  46350. }
  46351. },
  46352. back: {
  46353. height: math.unit(6, "feet"),
  46354. weight: math.unit(125, "lb"),
  46355. name: "Back",
  46356. image: {
  46357. source: "./media/characters/jack-thatcher/back.svg",
  46358. extra: 1489/1384,
  46359. bottom: 18/1507
  46360. }
  46361. },
  46362. },
  46363. [
  46364. {
  46365. name: "Normal",
  46366. height: math.unit(6, "feet"),
  46367. default: true
  46368. },
  46369. {
  46370. name: "Macro",
  46371. height: math.unit(75, "feet")
  46372. },
  46373. {
  46374. name: "Macro-er",
  46375. height: math.unit(250, "feet")
  46376. },
  46377. ]
  46378. ))
  46379. characterMakers.push(() => makeCharacter(
  46380. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46381. {
  46382. front: {
  46383. height: math.unit(7, "feet"),
  46384. weight: math.unit(110, "kg"),
  46385. name: "Front",
  46386. image: {
  46387. source: "./media/characters/max-hyper/front.svg",
  46388. extra: 1969/1881,
  46389. bottom: 49/2018
  46390. }
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(7, "feet"),
  46397. default: true
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46403. {
  46404. front: {
  46405. height: math.unit(5 + 5/12, "feet"),
  46406. weight: math.unit(160, "lb"),
  46407. name: "Front",
  46408. image: {
  46409. source: "./media/characters/spook/front.svg",
  46410. extra: 794/791,
  46411. bottom: 54/848
  46412. }
  46413. },
  46414. back: {
  46415. height: math.unit(5 + 5/12, "feet"),
  46416. weight: math.unit(160, "lb"),
  46417. name: "Back",
  46418. image: {
  46419. source: "./media/characters/spook/back.svg",
  46420. extra: 812/798,
  46421. bottom: 32/844
  46422. }
  46423. },
  46424. },
  46425. [
  46426. {
  46427. name: "Normal",
  46428. height: math.unit(5 + 5/12, "feet"),
  46429. default: true
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46435. {
  46436. front: {
  46437. height: math.unit(18, "feet"),
  46438. name: "Front",
  46439. image: {
  46440. source: "./media/characters/xeaduulix/front.svg",
  46441. extra: 1380/1166,
  46442. bottom: 110/1490
  46443. }
  46444. },
  46445. back: {
  46446. height: math.unit(18, "feet"),
  46447. name: "Back",
  46448. image: {
  46449. source: "./media/characters/xeaduulix/back.svg",
  46450. extra: 1592/1170,
  46451. bottom: 128/1720
  46452. }
  46453. },
  46454. frontNsfw: {
  46455. height: math.unit(18, "feet"),
  46456. name: "Front (NSFW)",
  46457. image: {
  46458. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46459. extra: 1380/1166,
  46460. bottom: 110/1490
  46461. }
  46462. },
  46463. backNsfw: {
  46464. height: math.unit(18, "feet"),
  46465. name: "Back (NSFW)",
  46466. image: {
  46467. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46468. extra: 1592/1170,
  46469. bottom: 128/1720
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(18, "feet"),
  46477. default: true
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46483. {
  46484. spreadWings: {
  46485. height: math.unit(20, "feet"),
  46486. name: "Spread Wings",
  46487. image: {
  46488. source: "./media/characters/fledge/spread-wings.svg",
  46489. extra: 693/635,
  46490. bottom: 26/719
  46491. }
  46492. },
  46493. front: {
  46494. height: math.unit(20, "feet"),
  46495. name: "Front",
  46496. image: {
  46497. source: "./media/characters/fledge/front.svg",
  46498. extra: 684/637,
  46499. bottom: 18/702
  46500. }
  46501. },
  46502. frontAlt: {
  46503. height: math.unit(20, "feet"),
  46504. name: "Front (Alt)",
  46505. image: {
  46506. source: "./media/characters/fledge/front-alt.svg",
  46507. extra: 708/664,
  46508. bottom: 13/721
  46509. }
  46510. },
  46511. back: {
  46512. height: math.unit(20, "feet"),
  46513. name: "Back",
  46514. image: {
  46515. source: "./media/characters/fledge/back.svg",
  46516. extra: 718/634,
  46517. bottom: 22/740
  46518. }
  46519. },
  46520. head: {
  46521. height: math.unit(5.55, "feet"),
  46522. name: "Head",
  46523. image: {
  46524. source: "./media/characters/fledge/head.svg"
  46525. }
  46526. },
  46527. headAlt: {
  46528. height: math.unit(5.1, "feet"),
  46529. name: "Head (Alt)",
  46530. image: {
  46531. source: "./media/characters/fledge/head-alt.svg"
  46532. }
  46533. },
  46534. },
  46535. [
  46536. {
  46537. name: "Small",
  46538. height: math.unit(6 + 2/12, "feet")
  46539. },
  46540. {
  46541. name: "Big",
  46542. height: math.unit(20, "feet"),
  46543. default: true
  46544. },
  46545. {
  46546. name: "Giant",
  46547. height: math.unit(100, "feet")
  46548. },
  46549. {
  46550. name: "Macro",
  46551. height: math.unit(200, "feet")
  46552. },
  46553. ]
  46554. ))
  46555. characterMakers.push(() => makeCharacter(
  46556. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46557. {
  46558. front: {
  46559. height: math.unit(1, "meter"),
  46560. name: "Front",
  46561. image: {
  46562. source: "./media/characters/atlas-morenai/front.svg",
  46563. extra: 1275/1043,
  46564. bottom: 19/1294
  46565. }
  46566. },
  46567. back: {
  46568. height: math.unit(1, "meter"),
  46569. name: "Back",
  46570. image: {
  46571. source: "./media/characters/atlas-morenai/back.svg",
  46572. extra: 1141/1001,
  46573. bottom: 25/1166
  46574. }
  46575. },
  46576. },
  46577. [
  46578. {
  46579. name: "Normal",
  46580. height: math.unit(1, "meter"),
  46581. default: true
  46582. },
  46583. {
  46584. name: "Magic-Infused",
  46585. height: math.unit(5, "meters")
  46586. },
  46587. ]
  46588. ))
  46589. characterMakers.push(() => makeCharacter(
  46590. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46591. {
  46592. front: {
  46593. height: math.unit(5, "meters"),
  46594. name: "Front",
  46595. image: {
  46596. source: "./media/characters/cintia/front.svg",
  46597. extra: 1312/1228,
  46598. bottom: 38/1350
  46599. }
  46600. },
  46601. back: {
  46602. height: math.unit(5, "meters"),
  46603. name: "Back",
  46604. image: {
  46605. source: "./media/characters/cintia/back.svg",
  46606. extra: 1260/1166,
  46607. bottom: 98/1358
  46608. }
  46609. },
  46610. frontDick: {
  46611. height: math.unit(5, "meters"),
  46612. name: "Front (Dick)",
  46613. image: {
  46614. source: "./media/characters/cintia/front-dick.svg",
  46615. extra: 1312/1228,
  46616. bottom: 38/1350
  46617. }
  46618. },
  46619. backDick: {
  46620. height: math.unit(5, "meters"),
  46621. name: "Back (Dick)",
  46622. image: {
  46623. source: "./media/characters/cintia/back-dick.svg",
  46624. extra: 1260/1166,
  46625. bottom: 98/1358
  46626. }
  46627. },
  46628. bust: {
  46629. height: math.unit(1.97, "meters"),
  46630. name: "Bust",
  46631. image: {
  46632. source: "./media/characters/cintia/bust.svg",
  46633. extra: 617/565,
  46634. bottom: 0/617
  46635. }
  46636. },
  46637. },
  46638. [
  46639. {
  46640. name: "Normal",
  46641. height: math.unit(5, "meters"),
  46642. default: true
  46643. },
  46644. ]
  46645. ))
  46646. characterMakers.push(() => makeCharacter(
  46647. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46648. {
  46649. side: {
  46650. height: math.unit(100, "feet"),
  46651. name: "Side",
  46652. image: {
  46653. source: "./media/characters/denora/side.svg",
  46654. extra: 875/803,
  46655. bottom: 9/884
  46656. }
  46657. },
  46658. },
  46659. [
  46660. {
  46661. name: "Standard",
  46662. height: math.unit(100, "feet"),
  46663. default: true
  46664. },
  46665. {
  46666. name: "Grand",
  46667. height: math.unit(1000, "feet")
  46668. },
  46669. {
  46670. name: "Conquering",
  46671. height: math.unit(10000, "feet")
  46672. },
  46673. ]
  46674. ))
  46675. characterMakers.push(() => makeCharacter(
  46676. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46677. {
  46678. dressed: {
  46679. height: math.unit(8 + 5/12, "feet"),
  46680. weight: math.unit(700, "lb"),
  46681. name: "Dressed",
  46682. image: {
  46683. source: "./media/characters/kiva/dressed.svg",
  46684. extra: 1102/1055,
  46685. bottom: 60/1162
  46686. }
  46687. },
  46688. nude: {
  46689. height: math.unit(8 + 5/12, "feet"),
  46690. weight: math.unit(700, "lb"),
  46691. name: "Nude",
  46692. image: {
  46693. source: "./media/characters/kiva/nude.svg",
  46694. extra: 1102/1055,
  46695. bottom: 60/1162
  46696. }
  46697. },
  46698. },
  46699. [
  46700. {
  46701. name: "Base Height",
  46702. height: math.unit(8 + 5/12, "feet"),
  46703. default: true
  46704. },
  46705. {
  46706. name: "Macro",
  46707. height: math.unit(100, "feet")
  46708. },
  46709. {
  46710. name: "Max",
  46711. height: math.unit(3280, "feet")
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46717. {
  46718. front: {
  46719. height: math.unit(6 + 8/12, "feet"),
  46720. weight: math.unit(250, "lb"),
  46721. name: "Front",
  46722. image: {
  46723. source: "./media/characters/ztragon/front.svg",
  46724. extra: 1825/1684,
  46725. bottom: 98/1923
  46726. }
  46727. },
  46728. },
  46729. [
  46730. {
  46731. name: "Normal",
  46732. height: math.unit(6 + 8/12, "feet"),
  46733. default: true
  46734. },
  46735. {
  46736. name: "Macro",
  46737. height: math.unit(80, "feet")
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46743. {
  46744. front: {
  46745. height: math.unit(10.4, "feet"),
  46746. weight: math.unit(2, "tons"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/yesenia/front.svg",
  46750. extra: 1479/1474,
  46751. bottom: 233/1712
  46752. }
  46753. },
  46754. },
  46755. [
  46756. {
  46757. name: "Normal",
  46758. height: math.unit(10.4, "feet"),
  46759. default: true
  46760. },
  46761. ]
  46762. ))
  46763. characterMakers.push(() => makeCharacter(
  46764. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46765. {
  46766. normal: {
  46767. height: math.unit(6 + 1/12, "feet"),
  46768. weight: math.unit(180, "lb"),
  46769. name: "Normal",
  46770. image: {
  46771. source: "./media/characters/leanne-lycheborne/normal.svg",
  46772. extra: 1748/1660,
  46773. bottom: 98/1846
  46774. }
  46775. },
  46776. were: {
  46777. height: math.unit(12, "feet"),
  46778. weight: math.unit(1600, "lb"),
  46779. name: "Were",
  46780. image: {
  46781. source: "./media/characters/leanne-lycheborne/were.svg",
  46782. extra: 1485/1432,
  46783. bottom: 66/1551
  46784. }
  46785. },
  46786. },
  46787. [
  46788. {
  46789. name: "Normal",
  46790. height: math.unit(6 + 1/12, "feet"),
  46791. default: true
  46792. },
  46793. ]
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46797. {
  46798. side: {
  46799. height: math.unit(13, "feet"),
  46800. name: "Side",
  46801. image: {
  46802. source: "./media/characters/kira-tyler/side.svg",
  46803. extra: 693/393,
  46804. bottom: 58/751
  46805. }
  46806. },
  46807. },
  46808. [
  46809. {
  46810. name: "Normal",
  46811. height: math.unit(13, "feet"),
  46812. default: true
  46813. },
  46814. ]
  46815. ))
  46816. characterMakers.push(() => makeCharacter(
  46817. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46818. {
  46819. front: {
  46820. height: math.unit(10.3, "feet"),
  46821. weight: math.unit(150, "lb"),
  46822. name: "Front",
  46823. image: {
  46824. source: "./media/characters/blaze/front.svg",
  46825. extra: 1378/1286,
  46826. bottom: 172/1550
  46827. }
  46828. },
  46829. },
  46830. [
  46831. {
  46832. name: "Normal",
  46833. height: math.unit(10.3, "feet"),
  46834. default: true
  46835. },
  46836. ]
  46837. ))
  46838. characterMakers.push(() => makeCharacter(
  46839. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46840. {
  46841. side: {
  46842. height: math.unit(2, "meters"),
  46843. weight: math.unit(400, "kg"),
  46844. name: "Side",
  46845. image: {
  46846. source: "./media/characters/anu/side.svg",
  46847. extra: 506/394,
  46848. bottom: 18/524
  46849. }
  46850. },
  46851. },
  46852. [
  46853. {
  46854. name: "Humanoid",
  46855. height: math.unit(2, "meters")
  46856. },
  46857. {
  46858. name: "Normal",
  46859. height: math.unit(5, "meters"),
  46860. default: true
  46861. },
  46862. ]
  46863. ))
  46864. characterMakers.push(() => makeCharacter(
  46865. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46866. {
  46867. front: {
  46868. height: math.unit(5 + 5/12, "feet"),
  46869. weight: math.unit(170, "lb"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/synx-the-lynx/front.svg",
  46873. extra: 1893/1745,
  46874. bottom: 17/1910
  46875. }
  46876. },
  46877. side: {
  46878. height: math.unit(5 + 5/12, "feet"),
  46879. weight: math.unit(170, "lb"),
  46880. name: "Side",
  46881. image: {
  46882. source: "./media/characters/synx-the-lynx/side.svg",
  46883. extra: 1884/1740,
  46884. bottom: 39/1923
  46885. }
  46886. },
  46887. back: {
  46888. height: math.unit(5 + 5/12, "feet"),
  46889. weight: math.unit(170, "lb"),
  46890. name: "Back",
  46891. image: {
  46892. source: "./media/characters/synx-the-lynx/back.svg",
  46893. extra: 1903/1755,
  46894. bottom: 14/1917
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Normal",
  46901. height: math.unit(5 + 5/12, "feet"),
  46902. default: true
  46903. },
  46904. ]
  46905. ))
  46906. characterMakers.push(() => makeCharacter(
  46907. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46908. {
  46909. back: {
  46910. height: math.unit(15, "feet"),
  46911. name: "Back",
  46912. image: {
  46913. source: "./media/characters/nadezda-fex/back.svg",
  46914. extra: 1695/1481,
  46915. bottom: 25/1720
  46916. }
  46917. },
  46918. },
  46919. [
  46920. {
  46921. name: "Normal",
  46922. height: math.unit(15, "feet"),
  46923. default: true
  46924. },
  46925. {
  46926. name: "Macro",
  46927. height: math.unit(2.5, "miles")
  46928. },
  46929. {
  46930. name: "Goddess",
  46931. height: math.unit(2, "multiverses")
  46932. },
  46933. ]
  46934. ))
  46935. characterMakers.push(() => makeCharacter(
  46936. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46937. {
  46938. front: {
  46939. height: math.unit(216, "cm"),
  46940. name: "Front",
  46941. image: {
  46942. source: "./media/characters/lev/front.svg",
  46943. extra: 1728/1670,
  46944. bottom: 82/1810
  46945. }
  46946. },
  46947. back: {
  46948. height: math.unit(216, "cm"),
  46949. name: "Back",
  46950. image: {
  46951. source: "./media/characters/lev/back.svg",
  46952. extra: 1738/1675,
  46953. bottom: 24/1762
  46954. }
  46955. },
  46956. dressed: {
  46957. height: math.unit(216, "cm"),
  46958. name: "Dressed",
  46959. image: {
  46960. source: "./media/characters/lev/dressed.svg",
  46961. extra: 1397/1351,
  46962. bottom: 73/1470
  46963. }
  46964. },
  46965. head: {
  46966. height: math.unit(0.51, "meter"),
  46967. name: "Head",
  46968. image: {
  46969. source: "./media/characters/lev/head.svg"
  46970. }
  46971. },
  46972. },
  46973. [
  46974. {
  46975. name: "Normal",
  46976. height: math.unit(216, "cm"),
  46977. default: true
  46978. },
  46979. {
  46980. name: "Relatively Macro",
  46981. height: math.unit(80, "meters")
  46982. },
  46983. {
  46984. name: "Megamacro",
  46985. height: math.unit(21600, "meters")
  46986. },
  46987. {
  46988. name: "Megamacro+",
  46989. height: math.unit(64800, "meters")
  46990. },
  46991. ]
  46992. ))
  46993. characterMakers.push(() => makeCharacter(
  46994. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46995. {
  46996. front: {
  46997. height: math.unit(2, "meters"),
  46998. weight: math.unit(80, "kg"),
  46999. name: "Front",
  47000. image: {
  47001. source: "./media/characters/moka/front.svg",
  47002. extra: 1337/1255,
  47003. bottom: 58/1395
  47004. }
  47005. },
  47006. },
  47007. [
  47008. {
  47009. name: "Micro",
  47010. height: math.unit(15, "cm")
  47011. },
  47012. {
  47013. name: "Normal",
  47014. height: math.unit(2, "meters"),
  47015. default: true
  47016. },
  47017. {
  47018. name: "Macro",
  47019. height: math.unit(20, "meters"),
  47020. },
  47021. ]
  47022. ))
  47023. characterMakers.push(() => makeCharacter(
  47024. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47025. {
  47026. front: {
  47027. height: math.unit(9, "feet"),
  47028. weight: math.unit(240, "lb"),
  47029. name: "Front",
  47030. image: {
  47031. source: "./media/characters/kuzco/front.svg",
  47032. extra: 1593/1487,
  47033. bottom: 32/1625
  47034. }
  47035. },
  47036. side: {
  47037. height: math.unit(9, "feet"),
  47038. weight: math.unit(240, "lb"),
  47039. name: "Side",
  47040. image: {
  47041. source: "./media/characters/kuzco/side.svg",
  47042. extra: 1575/1485,
  47043. bottom: 30/1605
  47044. }
  47045. },
  47046. back: {
  47047. height: math.unit(9, "feet"),
  47048. weight: math.unit(240, "lb"),
  47049. name: "Back",
  47050. image: {
  47051. source: "./media/characters/kuzco/back.svg",
  47052. extra: 1603/1514,
  47053. bottom: 14/1617
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Normal",
  47060. height: math.unit(9, "feet"),
  47061. default: true
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47067. {
  47068. side: {
  47069. height: math.unit(2, "meters"),
  47070. weight: math.unit(300, "kg"),
  47071. name: "Side",
  47072. image: {
  47073. source: "./media/characters/ceruleus/side.svg",
  47074. extra: 1068/974,
  47075. bottom: 126/1194
  47076. }
  47077. },
  47078. maw: {
  47079. height: math.unit(0.8125, "meter"),
  47080. name: "Maw",
  47081. image: {
  47082. source: "./media/characters/ceruleus/maw.svg"
  47083. }
  47084. },
  47085. },
  47086. [
  47087. {
  47088. name: "Normal",
  47089. height: math.unit(16, "meters"),
  47090. default: true
  47091. },
  47092. ]
  47093. ))
  47094. characterMakers.push(() => makeCharacter(
  47095. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47096. {
  47097. front: {
  47098. height: math.unit(9, "feet"),
  47099. weight: math.unit(500, "kg"),
  47100. name: "Front",
  47101. image: {
  47102. source: "./media/characters/acouya/front.svg",
  47103. extra: 1660/1473,
  47104. bottom: 28/1688
  47105. }
  47106. },
  47107. },
  47108. [
  47109. {
  47110. name: "Normal",
  47111. height: math.unit(9, "feet"),
  47112. default: true
  47113. },
  47114. ]
  47115. ))
  47116. characterMakers.push(() => makeCharacter(
  47117. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47118. {
  47119. front: {
  47120. height: math.unit(5 + 6/12, "feet"),
  47121. weight: math.unit(195, "lb"),
  47122. name: "Front",
  47123. image: {
  47124. source: "./media/characters/vant/front.svg",
  47125. extra: 1396/1320,
  47126. bottom: 20/1416
  47127. }
  47128. },
  47129. back: {
  47130. height: math.unit(5 + 6/12, "feet"),
  47131. weight: math.unit(195, "lb"),
  47132. name: "Back",
  47133. image: {
  47134. source: "./media/characters/vant/back.svg",
  47135. extra: 1396/1320,
  47136. bottom: 20/1416
  47137. }
  47138. },
  47139. maw: {
  47140. height: math.unit(0.75, "feet"),
  47141. name: "Maw",
  47142. image: {
  47143. source: "./media/characters/vant/maw.svg"
  47144. }
  47145. },
  47146. paw: {
  47147. height: math.unit(1.07, "feet"),
  47148. name: "Paw",
  47149. image: {
  47150. source: "./media/characters/vant/paw.svg"
  47151. }
  47152. },
  47153. },
  47154. [
  47155. {
  47156. name: "Micro",
  47157. height: math.unit(0.25, "inches")
  47158. },
  47159. {
  47160. name: "Normal",
  47161. height: math.unit(5 + 6/12, "feet"),
  47162. default: true
  47163. },
  47164. {
  47165. name: "Macro",
  47166. height: math.unit(75, "feet")
  47167. },
  47168. ]
  47169. ))
  47170. characterMakers.push(() => makeCharacter(
  47171. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47172. {
  47173. front: {
  47174. height: math.unit(30, "meters"),
  47175. weight: math.unit(363, "tons"),
  47176. name: "Front",
  47177. image: {
  47178. source: "./media/characters/ahra/front.svg",
  47179. extra: 1914/1814,
  47180. bottom: 46/1960
  47181. }
  47182. },
  47183. },
  47184. [
  47185. {
  47186. name: "Macro",
  47187. height: math.unit(30, "meters"),
  47188. default: true
  47189. },
  47190. ]
  47191. ))
  47192. characterMakers.push(() => makeCharacter(
  47193. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47194. {
  47195. undressed: {
  47196. height: math.unit(2, "m"),
  47197. weight: math.unit(250, "kg"),
  47198. name: "Undressed",
  47199. image: {
  47200. source: "./media/characters/coriander/undressed.svg",
  47201. extra: 1757/1606,
  47202. bottom: 107/1864
  47203. }
  47204. },
  47205. dressed: {
  47206. height: math.unit(2, "m"),
  47207. weight: math.unit(250, "kg"),
  47208. name: "Dressed",
  47209. image: {
  47210. source: "./media/characters/coriander/dressed.svg",
  47211. extra: 1757/1606,
  47212. bottom: 107/1864
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(4, "meters"),
  47220. default: true
  47221. },
  47222. {
  47223. name: "XL",
  47224. height: math.unit(6, "meters")
  47225. },
  47226. {
  47227. name: "XXL",
  47228. height: math.unit(8, "meters")
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47234. {
  47235. front: {
  47236. height: math.unit(6, "feet"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/syrinx/front.svg",
  47240. extra: 1557/1259,
  47241. bottom: 171/1728
  47242. }
  47243. },
  47244. },
  47245. [
  47246. {
  47247. name: "Normal",
  47248. height: math.unit(6 + 3/12, "feet"),
  47249. default: true
  47250. },
  47251. ]
  47252. ))
  47253. characterMakers.push(() => makeCharacter(
  47254. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47255. {
  47256. front: {
  47257. height: math.unit(11 + 6/12, "feet"),
  47258. weight: math.unit(1.5, "tons"),
  47259. name: "Front",
  47260. image: {
  47261. source: "./media/characters/bor/front.svg",
  47262. extra: 1189/1109,
  47263. bottom: 170/1359
  47264. }
  47265. },
  47266. },
  47267. [
  47268. {
  47269. name: "Normal",
  47270. height: math.unit(11 + 6/12, "feet"),
  47271. default: true
  47272. },
  47273. {
  47274. name: "Macro",
  47275. height: math.unit(32 + 9/12, "feet")
  47276. },
  47277. ]
  47278. ))
  47279. characterMakers.push(() => makeCharacter(
  47280. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47281. {
  47282. anthro: {
  47283. height: math.unit(9, "feet"),
  47284. weight: math.unit(2076, "lb"),
  47285. name: "Anthro",
  47286. image: {
  47287. source: "./media/characters/abacus/anthro.svg",
  47288. extra: 1540/1494,
  47289. bottom: 233/1773
  47290. }
  47291. },
  47292. pigeon: {
  47293. height: math.unit(1, "feet"),
  47294. name: "Pigeon",
  47295. image: {
  47296. source: "./media/characters/abacus/pigeon.svg",
  47297. extra: 528/525,
  47298. bottom: 46/574
  47299. }
  47300. },
  47301. },
  47302. [
  47303. {
  47304. name: "Normal",
  47305. height: math.unit(9, "feet"),
  47306. default: true
  47307. },
  47308. ]
  47309. ))
  47310. characterMakers.push(() => makeCharacter(
  47311. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47312. {
  47313. side: {
  47314. height: math.unit(6, "feet"),
  47315. name: "Side",
  47316. image: {
  47317. source: "./media/characters/delkhan/side.svg",
  47318. extra: 1884/1786,
  47319. bottom: 308/2192
  47320. }
  47321. },
  47322. head: {
  47323. height: math.unit(3.38, "feet"),
  47324. name: "Head",
  47325. image: {
  47326. source: "./media/characters/delkhan/head.svg"
  47327. }
  47328. },
  47329. },
  47330. [
  47331. {
  47332. name: "Normal",
  47333. height: math.unit(72, "feet"),
  47334. default: true
  47335. },
  47336. {
  47337. name: "Giant",
  47338. height: math.unit(172, "feet")
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47344. {
  47345. standing: {
  47346. height: math.unit(6, "feet"),
  47347. name: "Standing",
  47348. image: {
  47349. source: "./media/characters/euchidat/standing.svg",
  47350. extra: 1612/1553,
  47351. bottom: 116/1728
  47352. }
  47353. },
  47354. leaning: {
  47355. height: math.unit(6, "feet"),
  47356. name: "Leaning",
  47357. image: {
  47358. source: "./media/characters/euchidat/leaning.svg",
  47359. extra: 1719/1674,
  47360. bottom: 27/1746
  47361. }
  47362. },
  47363. },
  47364. [
  47365. {
  47366. name: "Normal",
  47367. height: math.unit(175, "feet"),
  47368. default: true
  47369. },
  47370. {
  47371. name: "Megamacro",
  47372. height: math.unit(190, "miles")
  47373. },
  47374. {
  47375. name: "Gigamacro",
  47376. height: math.unit(190000, "miles")
  47377. },
  47378. ]
  47379. ))
  47380. characterMakers.push(() => makeCharacter(
  47381. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47382. {
  47383. front: {
  47384. height: math.unit(6, "feet"),
  47385. weight: math.unit(150, "lb"),
  47386. name: "Front",
  47387. image: {
  47388. source: "./media/characters/rebecca-stack/front.svg",
  47389. extra: 1256/1201,
  47390. bottom: 18/1274
  47391. }
  47392. },
  47393. },
  47394. [
  47395. {
  47396. name: "Normal",
  47397. height: math.unit(5 + 8/12, "feet"),
  47398. default: true
  47399. },
  47400. {
  47401. name: "Demolitionist",
  47402. height: math.unit(200, "feet")
  47403. },
  47404. {
  47405. name: "Out of Control",
  47406. height: math.unit(2, "miles")
  47407. },
  47408. {
  47409. name: "Giga",
  47410. height: math.unit(7200, "miles")
  47411. },
  47412. ]
  47413. ))
  47414. characterMakers.push(() => makeCharacter(
  47415. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47416. {
  47417. front: {
  47418. height: math.unit(6, "feet"),
  47419. weight: math.unit(150, "lb"),
  47420. name: "Front",
  47421. image: {
  47422. source: "./media/characters/jenny-cartwright/front.svg",
  47423. extra: 1384/1376,
  47424. bottom: 58/1442
  47425. }
  47426. },
  47427. },
  47428. [
  47429. {
  47430. name: "Normal",
  47431. height: math.unit(6 + 7/12, "feet"),
  47432. default: true
  47433. },
  47434. {
  47435. name: "Librarian",
  47436. height: math.unit(55, "feet")
  47437. },
  47438. {
  47439. name: "Sightseer",
  47440. height: math.unit(50, "miles")
  47441. },
  47442. {
  47443. name: "Giga",
  47444. height: math.unit(30000, "miles")
  47445. },
  47446. ]
  47447. ))
  47448. characterMakers.push(() => makeCharacter(
  47449. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47450. {
  47451. nude: {
  47452. height: math.unit(8, "feet"),
  47453. weight: math.unit(225, "lb"),
  47454. name: "Nude",
  47455. image: {
  47456. source: "./media/characters/marvy/nude.svg",
  47457. extra: 1900/1683,
  47458. bottom: 89/1989
  47459. }
  47460. },
  47461. dressed: {
  47462. height: math.unit(8, "feet"),
  47463. weight: math.unit(225, "lb"),
  47464. name: "Dressed",
  47465. image: {
  47466. source: "./media/characters/marvy/dressed.svg",
  47467. extra: 1900/1683,
  47468. bottom: 89/1989
  47469. }
  47470. },
  47471. head: {
  47472. height: math.unit(2.85, "feet"),
  47473. name: "Head",
  47474. image: {
  47475. source: "./media/characters/marvy/head.svg"
  47476. }
  47477. },
  47478. },
  47479. [
  47480. {
  47481. name: "Normal",
  47482. height: math.unit(8, "feet"),
  47483. default: true
  47484. },
  47485. ]
  47486. ))
  47487. characterMakers.push(() => makeCharacter(
  47488. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47489. {
  47490. front: {
  47491. height: math.unit(8, "feet"),
  47492. weight: math.unit(250, "lb"),
  47493. name: "Front",
  47494. image: {
  47495. source: "./media/characters/leah/front.svg",
  47496. extra: 1257/1149,
  47497. bottom: 109/1366
  47498. }
  47499. },
  47500. },
  47501. [
  47502. {
  47503. name: "Normal",
  47504. height: math.unit(8, "feet"),
  47505. default: true
  47506. },
  47507. {
  47508. name: "Minimacro",
  47509. height: math.unit(40, "feet")
  47510. },
  47511. {
  47512. name: "Macro",
  47513. height: math.unit(124, "feet")
  47514. },
  47515. {
  47516. name: "Megamacro",
  47517. height: math.unit(850, "feet")
  47518. },
  47519. ]
  47520. ))
  47521. characterMakers.push(() => makeCharacter(
  47522. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47523. {
  47524. side: {
  47525. height: math.unit(13 + 6/12, "feet"),
  47526. weight: math.unit(3200, "lb"),
  47527. name: "Side",
  47528. image: {
  47529. source: "./media/characters/alvir/side.svg",
  47530. extra: 896/589,
  47531. bottom: 26/922
  47532. }
  47533. },
  47534. },
  47535. [
  47536. {
  47537. name: "Normal",
  47538. height: math.unit(13 + 6/12, "feet"),
  47539. default: true
  47540. },
  47541. ]
  47542. ))
  47543. characterMakers.push(() => makeCharacter(
  47544. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47545. {
  47546. front: {
  47547. height: math.unit(5 + 4/12, "feet"),
  47548. weight: math.unit(236, "lb"),
  47549. name: "Front",
  47550. image: {
  47551. source: "./media/characters/zaina-khalil/front.svg",
  47552. extra: 1533/1485,
  47553. bottom: 94/1627
  47554. }
  47555. },
  47556. side: {
  47557. height: math.unit(5 + 4/12, "feet"),
  47558. weight: math.unit(236, "lb"),
  47559. name: "Side",
  47560. image: {
  47561. source: "./media/characters/zaina-khalil/side.svg",
  47562. extra: 1537/1498,
  47563. bottom: 66/1603
  47564. }
  47565. },
  47566. back: {
  47567. height: math.unit(5 + 4/12, "feet"),
  47568. weight: math.unit(236, "lb"),
  47569. name: "Back",
  47570. image: {
  47571. source: "./media/characters/zaina-khalil/back.svg",
  47572. extra: 1546/1494,
  47573. bottom: 89/1635
  47574. }
  47575. },
  47576. },
  47577. [
  47578. {
  47579. name: "Normal",
  47580. height: math.unit(5 + 4/12, "feet"),
  47581. default: true
  47582. },
  47583. ]
  47584. ))
  47585. characterMakers.push(() => makeCharacter(
  47586. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47587. {
  47588. side: {
  47589. height: math.unit(12, "feet"),
  47590. weight: math.unit(4000, "lb"),
  47591. name: "Side",
  47592. image: {
  47593. source: "./media/characters/terry/side.svg",
  47594. extra: 1518/1439,
  47595. bottom: 149/1667
  47596. }
  47597. },
  47598. },
  47599. [
  47600. {
  47601. name: "Normal",
  47602. height: math.unit(12, "feet"),
  47603. default: true
  47604. },
  47605. ]
  47606. ))
  47607. characterMakers.push(() => makeCharacter(
  47608. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47609. {
  47610. front: {
  47611. height: math.unit(12, "feet"),
  47612. weight: math.unit(1500, "lb"),
  47613. name: "Front",
  47614. image: {
  47615. source: "./media/characters/kahea/front.svg",
  47616. extra: 1722/1617,
  47617. bottom: 179/1901
  47618. }
  47619. },
  47620. },
  47621. [
  47622. {
  47623. name: "Normal",
  47624. height: math.unit(12, "feet"),
  47625. default: true
  47626. },
  47627. ]
  47628. ))
  47629. characterMakers.push(() => makeCharacter(
  47630. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47631. {
  47632. demonFront: {
  47633. height: math.unit(36, "feet"),
  47634. name: "Front",
  47635. image: {
  47636. source: "./media/characters/alex-xuria/demon-front.svg",
  47637. extra: 1705/1673,
  47638. bottom: 198/1903
  47639. },
  47640. form: "demon",
  47641. default: true
  47642. },
  47643. demonBack: {
  47644. height: math.unit(36, "feet"),
  47645. name: "Back",
  47646. image: {
  47647. source: "./media/characters/alex-xuria/demon-back.svg",
  47648. extra: 1725/1693,
  47649. bottom: 70/1795
  47650. },
  47651. form: "demon"
  47652. },
  47653. demonHead: {
  47654. height: math.unit(2.14, "meters"),
  47655. name: "Head",
  47656. image: {
  47657. source: "./media/characters/alex-xuria/demon-head.svg"
  47658. },
  47659. form: "demon"
  47660. },
  47661. demonHand: {
  47662. height: math.unit(1.61, "meters"),
  47663. name: "Hand",
  47664. image: {
  47665. source: "./media/characters/alex-xuria/demon-hand.svg"
  47666. },
  47667. form: "demon"
  47668. },
  47669. demonPaw: {
  47670. height: math.unit(1.35, "meters"),
  47671. name: "Paw",
  47672. image: {
  47673. source: "./media/characters/alex-xuria/demon-paw.svg"
  47674. },
  47675. form: "demon"
  47676. },
  47677. demonFoot: {
  47678. height: math.unit(2.2, "meters"),
  47679. name: "Foot",
  47680. image: {
  47681. source: "./media/characters/alex-xuria/demon-foot.svg"
  47682. },
  47683. form: "demon"
  47684. },
  47685. demonCock: {
  47686. height: math.unit(1.74, "meters"),
  47687. name: "Cock",
  47688. image: {
  47689. source: "./media/characters/alex-xuria/demon-cock.svg"
  47690. },
  47691. form: "demon"
  47692. },
  47693. demonTailClosed: {
  47694. height: math.unit(1.47, "meters"),
  47695. name: "Tail (Closed)",
  47696. image: {
  47697. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47698. },
  47699. form: "demon"
  47700. },
  47701. demonTailOpen: {
  47702. height: math.unit(2.85, "meters"),
  47703. name: "Tail (Open)",
  47704. image: {
  47705. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47706. },
  47707. form: "demon"
  47708. },
  47709. incubusFront: {
  47710. height: math.unit(12, "feet"),
  47711. name: "Front",
  47712. image: {
  47713. source: "./media/characters/alex-xuria/incubus-front.svg",
  47714. extra: 1754/1677,
  47715. bottom: 125/1879
  47716. },
  47717. form: "incubus",
  47718. default: true
  47719. },
  47720. incubusBack: {
  47721. height: math.unit(12, "feet"),
  47722. name: "Back",
  47723. image: {
  47724. source: "./media/characters/alex-xuria/incubus-back.svg",
  47725. extra: 1702/1647,
  47726. bottom: 30/1732
  47727. },
  47728. form: "incubus"
  47729. },
  47730. incubusHead: {
  47731. height: math.unit(3.45, "feet"),
  47732. name: "Head",
  47733. image: {
  47734. source: "./media/characters/alex-xuria/incubus-head.svg"
  47735. },
  47736. form: "incubus"
  47737. },
  47738. rabbitFront: {
  47739. height: math.unit(6, "feet"),
  47740. name: "Front",
  47741. image: {
  47742. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47743. extra: 1369/1349,
  47744. bottom: 45/1414
  47745. },
  47746. form: "rabbit",
  47747. default: true
  47748. },
  47749. rabbitSide: {
  47750. height: math.unit(6, "feet"),
  47751. name: "Side",
  47752. image: {
  47753. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47754. extra: 1370/1356,
  47755. bottom: 37/1407
  47756. },
  47757. form: "rabbit"
  47758. },
  47759. rabbitBack: {
  47760. height: math.unit(6, "feet"),
  47761. name: "Back",
  47762. image: {
  47763. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47764. extra: 1375/1358,
  47765. bottom: 43/1418
  47766. },
  47767. form: "rabbit"
  47768. },
  47769. },
  47770. [
  47771. {
  47772. name: "Normal",
  47773. height: math.unit(6, "feet"),
  47774. default: true,
  47775. form: "rabbit"
  47776. },
  47777. {
  47778. name: "Incubus",
  47779. height: math.unit(12, "feet"),
  47780. default: true,
  47781. form: "incubus"
  47782. },
  47783. {
  47784. name: "Demon",
  47785. height: math.unit(36, "feet"),
  47786. default: true,
  47787. form: "demon"
  47788. }
  47789. ],
  47790. {
  47791. "demon": {
  47792. name: "Demon",
  47793. default: true
  47794. },
  47795. "incubus": {
  47796. name: "Incubus",
  47797. },
  47798. "rabbit": {
  47799. name: "Rabbit"
  47800. }
  47801. }
  47802. ))
  47803. characterMakers.push(() => makeCharacter(
  47804. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47805. {
  47806. front: {
  47807. height: math.unit(7 + 5/12, "feet"),
  47808. weight: math.unit(510, "lb"),
  47809. name: "Front",
  47810. image: {
  47811. source: "./media/characters/syrup/front.svg",
  47812. extra: 932/916,
  47813. bottom: 26/958
  47814. }
  47815. },
  47816. },
  47817. [
  47818. {
  47819. name: "Normal",
  47820. height: math.unit(7 + 5/12, "feet"),
  47821. default: true
  47822. },
  47823. {
  47824. name: "Big",
  47825. height: math.unit(50, "feet")
  47826. },
  47827. {
  47828. name: "Macro",
  47829. height: math.unit(300, "feet")
  47830. },
  47831. {
  47832. name: "Megamacro",
  47833. height: math.unit(1, "mile")
  47834. },
  47835. ]
  47836. ))
  47837. characterMakers.push(() => makeCharacter(
  47838. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47839. {
  47840. front: {
  47841. height: math.unit(6 + 9/12, "feet"),
  47842. name: "Front",
  47843. image: {
  47844. source: "./media/characters/zeimne/front.svg",
  47845. extra: 1969/1806,
  47846. bottom: 53/2022
  47847. }
  47848. },
  47849. },
  47850. [
  47851. {
  47852. name: "Normal",
  47853. height: math.unit(6 + 9/12, "feet"),
  47854. default: true
  47855. },
  47856. {
  47857. name: "Giant",
  47858. height: math.unit(550, "feet")
  47859. },
  47860. {
  47861. name: "Mega",
  47862. height: math.unit(3, "miles")
  47863. },
  47864. {
  47865. name: "Giga",
  47866. height: math.unit(250, "miles")
  47867. },
  47868. {
  47869. name: "Tera",
  47870. height: math.unit(1, "AU")
  47871. },
  47872. ]
  47873. ))
  47874. characterMakers.push(() => makeCharacter(
  47875. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47876. {
  47877. front: {
  47878. height: math.unit(5 + 2/12, "feet"),
  47879. name: "Front",
  47880. image: {
  47881. source: "./media/characters/grar/front.svg",
  47882. extra: 1331/1119,
  47883. bottom: 60/1391
  47884. }
  47885. },
  47886. back: {
  47887. height: math.unit(5 + 2/12, "feet"),
  47888. name: "Back",
  47889. image: {
  47890. source: "./media/characters/grar/back.svg",
  47891. extra: 1385/1169,
  47892. bottom: 23/1408
  47893. }
  47894. },
  47895. },
  47896. [
  47897. {
  47898. name: "Normal",
  47899. height: math.unit(5 + 2/12, "feet"),
  47900. default: true
  47901. },
  47902. ]
  47903. ))
  47904. characterMakers.push(() => makeCharacter(
  47905. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47906. {
  47907. front: {
  47908. height: math.unit(13 + 7/12, "feet"),
  47909. weight: math.unit(2200, "lb"),
  47910. name: "Front",
  47911. image: {
  47912. source: "./media/characters/endraya/front.svg",
  47913. extra: 1289/1215,
  47914. bottom: 50/1339
  47915. }
  47916. },
  47917. nude: {
  47918. height: math.unit(13 + 7/12, "feet"),
  47919. weight: math.unit(2200, "lb"),
  47920. name: "Nude",
  47921. image: {
  47922. source: "./media/characters/endraya/nude.svg",
  47923. extra: 1247/1171,
  47924. bottom: 40/1287
  47925. }
  47926. },
  47927. head: {
  47928. height: math.unit(2.6, "feet"),
  47929. name: "Head",
  47930. image: {
  47931. source: "./media/characters/endraya/head.svg"
  47932. }
  47933. },
  47934. slit: {
  47935. height: math.unit(3.4, "feet"),
  47936. name: "Slit",
  47937. image: {
  47938. source: "./media/characters/endraya/slit.svg"
  47939. }
  47940. },
  47941. },
  47942. [
  47943. {
  47944. name: "Normal",
  47945. height: math.unit(13 + 7/12, "feet"),
  47946. default: true
  47947. },
  47948. {
  47949. name: "Macro",
  47950. height: math.unit(200, "feet")
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(1.81, "meters"),
  47959. weight: math.unit(69, "kg"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/rodryana/front.svg",
  47963. extra: 2002/1921,
  47964. bottom: 53/2055
  47965. }
  47966. },
  47967. back: {
  47968. height: math.unit(1.81, "meters"),
  47969. weight: math.unit(69, "kg"),
  47970. name: "Back",
  47971. image: {
  47972. source: "./media/characters/rodryana/back.svg",
  47973. extra: 1993/1926,
  47974. bottom: 48/2041
  47975. }
  47976. },
  47977. maw: {
  47978. height: math.unit(0.19769417475, "meters"),
  47979. name: "Maw",
  47980. image: {
  47981. source: "./media/characters/rodryana/maw.svg"
  47982. }
  47983. },
  47984. slit: {
  47985. height: math.unit(0.31631067961, "meters"),
  47986. name: "Slit",
  47987. image: {
  47988. source: "./media/characters/rodryana/slit.svg"
  47989. }
  47990. },
  47991. },
  47992. [
  47993. {
  47994. name: "Normal",
  47995. height: math.unit(1.81, "meters")
  47996. },
  47997. {
  47998. name: "Mini Macro",
  47999. height: math.unit(181, "meters")
  48000. },
  48001. {
  48002. name: "Macro",
  48003. height: math.unit(452, "meters"),
  48004. default: true
  48005. },
  48006. {
  48007. name: "Mega Macro",
  48008. height: math.unit(1.375, "km")
  48009. },
  48010. {
  48011. name: "Giga Macro",
  48012. height: math.unit(13.575, "km")
  48013. },
  48014. ]
  48015. ))
  48016. characterMakers.push(() => makeCharacter(
  48017. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48018. {
  48019. front: {
  48020. height: math.unit(6, "feet"),
  48021. weight: math.unit(1000, "lb"),
  48022. name: "Front",
  48023. image: {
  48024. source: "./media/characters/asaya/front.svg",
  48025. extra: 1460/1200,
  48026. bottom: 71/1531
  48027. }
  48028. },
  48029. },
  48030. [
  48031. {
  48032. name: "Normal",
  48033. height: math.unit(8, "km"),
  48034. default: true
  48035. },
  48036. ]
  48037. ))
  48038. characterMakers.push(() => makeCharacter(
  48039. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48040. {
  48041. front: {
  48042. height: math.unit(3.5, "meters"),
  48043. name: "Front",
  48044. image: {
  48045. source: "./media/characters/sarzu-and-israz/front.svg",
  48046. extra: 1570/1558,
  48047. bottom: 150/1720
  48048. },
  48049. },
  48050. back: {
  48051. height: math.unit(3.5, "meters"),
  48052. name: "Back",
  48053. image: {
  48054. source: "./media/characters/sarzu-and-israz/back.svg",
  48055. extra: 1523/1509,
  48056. bottom: 132/1655
  48057. },
  48058. },
  48059. frontFemale: {
  48060. height: math.unit(3.5, "meters"),
  48061. name: "Front (Female)",
  48062. image: {
  48063. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48064. extra: 1570/1558,
  48065. bottom: 150/1720
  48066. },
  48067. },
  48068. frontHerm: {
  48069. height: math.unit(3.5, "meters"),
  48070. name: "Front (Herm)",
  48071. image: {
  48072. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48073. extra: 1570/1558,
  48074. bottom: 150/1720
  48075. },
  48076. },
  48077. },
  48078. [
  48079. {
  48080. name: "Normal",
  48081. height: math.unit(3.5, "meters"),
  48082. default: true,
  48083. },
  48084. {
  48085. name: "Macro",
  48086. height: math.unit(65.5, "meters"),
  48087. },
  48088. ],
  48089. ))
  48090. characterMakers.push(() => makeCharacter(
  48091. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48092. {
  48093. front: {
  48094. height: math.unit(6, "feet"),
  48095. weight: math.unit(250, "lb"),
  48096. name: "Front",
  48097. image: {
  48098. source: "./media/characters/zenimma/front.svg",
  48099. extra: 1346/1320,
  48100. bottom: 58/1404
  48101. }
  48102. },
  48103. back: {
  48104. height: math.unit(6, "feet"),
  48105. weight: math.unit(250, "lb"),
  48106. name: "Back",
  48107. image: {
  48108. source: "./media/characters/zenimma/back.svg",
  48109. extra: 1324/1308,
  48110. bottom: 44/1368
  48111. }
  48112. },
  48113. dick: {
  48114. height: math.unit(1.44, "feet"),
  48115. name: "Dick",
  48116. image: {
  48117. source: "./media/characters/zenimma/dick.svg"
  48118. }
  48119. },
  48120. },
  48121. [
  48122. {
  48123. name: "Canon Height",
  48124. height: math.unit(66, "miles"),
  48125. default: true
  48126. },
  48127. ]
  48128. ))
  48129. characterMakers.push(() => makeCharacter(
  48130. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48131. {
  48132. nude: {
  48133. height: math.unit(6, "feet"),
  48134. weight: math.unit(150, "lb"),
  48135. name: "Nude",
  48136. image: {
  48137. source: "./media/characters/shavon/nude.svg",
  48138. extra: 1242/1096,
  48139. bottom: 98/1340
  48140. }
  48141. },
  48142. dressed: {
  48143. height: math.unit(6, "feet"),
  48144. weight: math.unit(150, "lb"),
  48145. name: "Dressed",
  48146. image: {
  48147. source: "./media/characters/shavon/dressed.svg",
  48148. extra: 1242/1096,
  48149. bottom: 98/1340
  48150. }
  48151. },
  48152. },
  48153. [
  48154. {
  48155. name: "Macro",
  48156. height: math.unit(255, "feet"),
  48157. default: true
  48158. },
  48159. ]
  48160. ))
  48161. characterMakers.push(() => makeCharacter(
  48162. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48163. {
  48164. front: {
  48165. height: math.unit(6, "feet"),
  48166. name: "Front",
  48167. image: {
  48168. source: "./media/characters/steph/front.svg",
  48169. extra: 1430/1330,
  48170. bottom: 54/1484
  48171. }
  48172. },
  48173. },
  48174. [
  48175. {
  48176. name: "Normal",
  48177. height: math.unit(6, "feet"),
  48178. default: true
  48179. },
  48180. ]
  48181. ))
  48182. characterMakers.push(() => makeCharacter(
  48183. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48184. {
  48185. front: {
  48186. height: math.unit(9, "feet"),
  48187. weight: math.unit(400, "lb"),
  48188. name: "Front",
  48189. image: {
  48190. source: "./media/characters/kil'aman/front.svg",
  48191. extra: 1210/1159,
  48192. bottom: 109/1319
  48193. }
  48194. },
  48195. head: {
  48196. height: math.unit(2.14, "feet"),
  48197. name: "Head",
  48198. image: {
  48199. source: "./media/characters/kil'aman/head.svg"
  48200. }
  48201. },
  48202. maw: {
  48203. height: math.unit(1.21, "feet"),
  48204. name: "Maw",
  48205. image: {
  48206. source: "./media/characters/kil'aman/maw.svg"
  48207. }
  48208. },
  48209. foot: {
  48210. height: math.unit(1.7, "feet"),
  48211. name: "Foot",
  48212. image: {
  48213. source: "./media/characters/kil'aman/foot.svg"
  48214. }
  48215. },
  48216. dick: {
  48217. height: math.unit(2.1, "feet"),
  48218. name: "Dick",
  48219. image: {
  48220. source: "./media/characters/kil'aman/dick.svg"
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Normal",
  48227. height: math.unit(9, "feet")
  48228. },
  48229. {
  48230. name: "Canon Height",
  48231. height: math.unit(10, "miles"),
  48232. default: true
  48233. },
  48234. {
  48235. name: "Maximum",
  48236. height: math.unit(6e9, "miles")
  48237. },
  48238. ]
  48239. ))
  48240. characterMakers.push(() => makeCharacter(
  48241. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48242. {
  48243. front: {
  48244. height: math.unit(90, "feet"),
  48245. weight: math.unit(675000, "lb"),
  48246. name: "Front",
  48247. image: {
  48248. source: "./media/characters/qadan/front.svg",
  48249. extra: 1012/1004,
  48250. bottom: 78/1090
  48251. }
  48252. },
  48253. back: {
  48254. height: math.unit(90, "feet"),
  48255. weight: math.unit(675000, "lb"),
  48256. name: "Back",
  48257. image: {
  48258. source: "./media/characters/qadan/back.svg",
  48259. extra: 1042/1031,
  48260. bottom: 55/1097
  48261. }
  48262. },
  48263. armored: {
  48264. height: math.unit(90, "feet"),
  48265. weight: math.unit(675000, "lb"),
  48266. name: "Armored",
  48267. image: {
  48268. source: "./media/characters/qadan/armored.svg",
  48269. extra: 1047/1037,
  48270. bottom: 48/1095
  48271. }
  48272. },
  48273. },
  48274. [
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(90, "feet"),
  48278. default: true
  48279. },
  48280. ]
  48281. ))
  48282. characterMakers.push(() => makeCharacter(
  48283. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48284. {
  48285. front: {
  48286. height: math.unit(6, "feet"),
  48287. weight: math.unit(225, "lb"),
  48288. name: "Front",
  48289. image: {
  48290. source: "./media/characters/brooke/front.svg",
  48291. extra: 1050/1010,
  48292. bottom: 66/1116
  48293. }
  48294. },
  48295. back: {
  48296. height: math.unit(6, "feet"),
  48297. weight: math.unit(225, "lb"),
  48298. name: "Back",
  48299. image: {
  48300. source: "./media/characters/brooke/back.svg",
  48301. extra: 1053/1013,
  48302. bottom: 41/1094
  48303. }
  48304. },
  48305. dressed: {
  48306. height: math.unit(6, "feet"),
  48307. weight: math.unit(225, "lb"),
  48308. name: "Dressed",
  48309. image: {
  48310. source: "./media/characters/brooke/dressed.svg",
  48311. extra: 1050/1010,
  48312. bottom: 66/1116
  48313. }
  48314. },
  48315. },
  48316. [
  48317. {
  48318. name: "Canon Height",
  48319. height: math.unit(500, "miles"),
  48320. default: true
  48321. },
  48322. ]
  48323. ))
  48324. characterMakers.push(() => makeCharacter(
  48325. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48326. {
  48327. front: {
  48328. height: math.unit(6 + 2/12, "feet"),
  48329. weight: math.unit(210, "lb"),
  48330. name: "Front",
  48331. image: {
  48332. source: "./media/characters/wubs/front.svg",
  48333. extra: 1345/1325,
  48334. bottom: 70/1415
  48335. }
  48336. },
  48337. back: {
  48338. height: math.unit(6 + 2/12, "feet"),
  48339. weight: math.unit(210, "lb"),
  48340. name: "Back",
  48341. image: {
  48342. source: "./media/characters/wubs/back.svg",
  48343. extra: 1296/1275,
  48344. bottom: 58/1354
  48345. }
  48346. },
  48347. },
  48348. [
  48349. {
  48350. name: "Normal",
  48351. height: math.unit(6 + 2/12, "feet"),
  48352. default: true
  48353. },
  48354. {
  48355. name: "Macro",
  48356. height: math.unit(1000, "feet")
  48357. },
  48358. {
  48359. name: "Megamacro",
  48360. height: math.unit(1, "mile")
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48366. {
  48367. front: {
  48368. height: math.unit(4, "feet"),
  48369. weight: math.unit(120, "lb"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/blue/front.svg",
  48373. extra: 1636/1525,
  48374. bottom: 43/1679
  48375. }
  48376. },
  48377. back: {
  48378. height: math.unit(4, "feet"),
  48379. weight: math.unit(120, "lb"),
  48380. name: "Back",
  48381. image: {
  48382. source: "./media/characters/blue/back.svg",
  48383. extra: 1660/1560,
  48384. bottom: 57/1717
  48385. }
  48386. },
  48387. paws: {
  48388. height: math.unit(0.826, "feet"),
  48389. name: "Paws",
  48390. image: {
  48391. source: "./media/characters/blue/paws.svg"
  48392. }
  48393. },
  48394. },
  48395. [
  48396. {
  48397. name: "Micro",
  48398. height: math.unit(3, "inches")
  48399. },
  48400. {
  48401. name: "Normal",
  48402. height: math.unit(4, "feet"),
  48403. default: true
  48404. },
  48405. {
  48406. name: "Femenine Form",
  48407. height: math.unit(14, "feet")
  48408. },
  48409. {
  48410. name: "Werebat Form",
  48411. height: math.unit(18, "feet")
  48412. },
  48413. ]
  48414. ))
  48415. characterMakers.push(() => makeCharacter(
  48416. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48417. {
  48418. female: {
  48419. height: math.unit(7 + 4/12, "feet"),
  48420. weight: math.unit(243, "lb"),
  48421. name: "Female",
  48422. image: {
  48423. source: "./media/characters/kaya/female.svg",
  48424. extra: 975/898,
  48425. bottom: 34/1009
  48426. }
  48427. },
  48428. herm: {
  48429. height: math.unit(7 + 4/12, "feet"),
  48430. weight: math.unit(243, "lb"),
  48431. name: "Herm",
  48432. image: {
  48433. source: "./media/characters/kaya/herm.svg",
  48434. extra: 975/898,
  48435. bottom: 34/1009
  48436. }
  48437. },
  48438. },
  48439. [
  48440. {
  48441. name: "Normal",
  48442. height: math.unit(7 + 4/12, "feet"),
  48443. default: true
  48444. },
  48445. ]
  48446. ))
  48447. characterMakers.push(() => makeCharacter(
  48448. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48449. {
  48450. female: {
  48451. height: math.unit(9 + 4/12, "feet"),
  48452. weight: math.unit(398, "lb"),
  48453. name: "Female",
  48454. image: {
  48455. source: "./media/characters/kassandra/female.svg",
  48456. extra: 908/839,
  48457. bottom: 61/969
  48458. }
  48459. },
  48460. intersex: {
  48461. height: math.unit(9 + 4/12, "feet"),
  48462. weight: math.unit(398, "lb"),
  48463. name: "Intersex",
  48464. image: {
  48465. source: "./media/characters/kassandra/intersex.svg",
  48466. extra: 908/839,
  48467. bottom: 61/969
  48468. }
  48469. },
  48470. },
  48471. [
  48472. {
  48473. name: "Normal",
  48474. height: math.unit(9 + 4/12, "feet"),
  48475. default: true
  48476. },
  48477. ]
  48478. ))
  48479. characterMakers.push(() => makeCharacter(
  48480. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48481. {
  48482. front: {
  48483. height: math.unit(3, "meters"),
  48484. name: "Front",
  48485. image: {
  48486. source: "./media/characters/amy/front.svg",
  48487. extra: 1380/1343,
  48488. bottom: 70/1450
  48489. }
  48490. },
  48491. back: {
  48492. height: math.unit(3, "meters"),
  48493. name: "Back",
  48494. image: {
  48495. source: "./media/characters/amy/back.svg",
  48496. extra: 1380/1347,
  48497. bottom: 66/1446
  48498. }
  48499. },
  48500. },
  48501. [
  48502. {
  48503. name: "Normal",
  48504. height: math.unit(3, "meters"),
  48505. default: true
  48506. },
  48507. ]
  48508. ))
  48509. characterMakers.push(() => makeCharacter(
  48510. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48511. {
  48512. side: {
  48513. height: math.unit(47, "cm"),
  48514. weight: math.unit(10.8, "kg"),
  48515. name: "Side",
  48516. image: {
  48517. source: "./media/characters/alphaschakal/side.svg",
  48518. extra: 1058/568,
  48519. bottom: 62/1120
  48520. }
  48521. },
  48522. back: {
  48523. height: math.unit(78, "cm"),
  48524. weight: math.unit(10.8, "kg"),
  48525. name: "Back",
  48526. image: {
  48527. source: "./media/characters/alphaschakal/back.svg",
  48528. extra: 1102/942,
  48529. bottom: 185/1287
  48530. }
  48531. },
  48532. head: {
  48533. height: math.unit(28, "cm"),
  48534. name: "Head",
  48535. image: {
  48536. source: "./media/characters/alphaschakal/head.svg",
  48537. extra: 696/508,
  48538. bottom: 0/696
  48539. }
  48540. },
  48541. paw: {
  48542. height: math.unit(16, "cm"),
  48543. name: "Paw",
  48544. image: {
  48545. source: "./media/characters/alphaschakal/paw.svg"
  48546. }
  48547. },
  48548. },
  48549. [
  48550. {
  48551. name: "Normal",
  48552. height: math.unit(47, "cm"),
  48553. default: true
  48554. },
  48555. {
  48556. name: "Macro",
  48557. height: math.unit(340, "cm")
  48558. },
  48559. ]
  48560. ))
  48561. characterMakers.push(() => makeCharacter(
  48562. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48563. {
  48564. front: {
  48565. height: math.unit(36, "earths"),
  48566. name: "Front",
  48567. image: {
  48568. source: "./media/characters/ecobyss/front.svg",
  48569. extra: 1282/1215,
  48570. bottom: 11/1293
  48571. }
  48572. },
  48573. back: {
  48574. height: math.unit(36, "earths"),
  48575. name: "Back",
  48576. image: {
  48577. source: "./media/characters/ecobyss/back.svg",
  48578. extra: 1291/1222,
  48579. bottom: 8/1299
  48580. }
  48581. },
  48582. },
  48583. [
  48584. {
  48585. name: "Normal",
  48586. height: math.unit(36, "earths"),
  48587. default: true
  48588. },
  48589. ]
  48590. ))
  48591. characterMakers.push(() => makeCharacter(
  48592. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48593. {
  48594. front: {
  48595. height: math.unit(12, "feet"),
  48596. name: "Front",
  48597. image: {
  48598. source: "./media/characters/vasuk/front.svg",
  48599. extra: 1326/1207,
  48600. bottom: 64/1390
  48601. }
  48602. },
  48603. },
  48604. [
  48605. {
  48606. name: "Normal",
  48607. height: math.unit(12, "feet"),
  48608. default: true
  48609. },
  48610. ]
  48611. ))
  48612. characterMakers.push(() => makeCharacter(
  48613. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48614. {
  48615. side: {
  48616. height: math.unit(100, "feet"),
  48617. name: "Side",
  48618. image: {
  48619. source: "./media/characters/linneaus/side.svg",
  48620. extra: 987/807,
  48621. bottom: 47/1034
  48622. }
  48623. },
  48624. },
  48625. [
  48626. {
  48627. name: "Macro",
  48628. height: math.unit(100, "feet"),
  48629. default: true
  48630. },
  48631. ]
  48632. ))
  48633. characterMakers.push(() => makeCharacter(
  48634. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48635. {
  48636. front: {
  48637. height: math.unit(8, "feet"),
  48638. weight: math.unit(1200, "lb"),
  48639. name: "Front",
  48640. image: {
  48641. source: "./media/characters/nyterious-daligdig/front.svg",
  48642. extra: 1284/1094,
  48643. bottom: 84/1368
  48644. }
  48645. },
  48646. back: {
  48647. height: math.unit(8, "feet"),
  48648. weight: math.unit(1200, "lb"),
  48649. name: "Back",
  48650. image: {
  48651. source: "./media/characters/nyterious-daligdig/back.svg",
  48652. extra: 1301/1121,
  48653. bottom: 129/1430
  48654. }
  48655. },
  48656. mouth: {
  48657. height: math.unit(1.464, "feet"),
  48658. name: "Mouth",
  48659. image: {
  48660. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48661. }
  48662. },
  48663. },
  48664. [
  48665. {
  48666. name: "Small",
  48667. height: math.unit(8, "feet"),
  48668. default: true
  48669. },
  48670. {
  48671. name: "Normal",
  48672. height: math.unit(15, "feet")
  48673. },
  48674. {
  48675. name: "Macro",
  48676. height: math.unit(90, "feet")
  48677. },
  48678. ]
  48679. ))
  48680. characterMakers.push(() => makeCharacter(
  48681. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48682. {
  48683. front: {
  48684. height: math.unit(7 + 4/12, "feet"),
  48685. weight: math.unit(252, "lb"),
  48686. name: "Front",
  48687. image: {
  48688. source: "./media/characters/bandel/front.svg",
  48689. extra: 1946/1775,
  48690. bottom: 26/1972
  48691. }
  48692. },
  48693. back: {
  48694. height: math.unit(7 + 4/12, "feet"),
  48695. weight: math.unit(252, "lb"),
  48696. name: "Back",
  48697. image: {
  48698. source: "./media/characters/bandel/back.svg",
  48699. extra: 1940/1770,
  48700. bottom: 25/1965
  48701. }
  48702. },
  48703. maw: {
  48704. height: math.unit(2.15, "feet"),
  48705. name: "Maw",
  48706. image: {
  48707. source: "./media/characters/bandel/maw.svg"
  48708. }
  48709. },
  48710. stomach: {
  48711. height: math.unit(1.95, "feet"),
  48712. name: "Stomach",
  48713. image: {
  48714. source: "./media/characters/bandel/stomach.svg"
  48715. }
  48716. },
  48717. },
  48718. [
  48719. {
  48720. name: "Normal",
  48721. height: math.unit(7 + 4/12, "feet"),
  48722. default: true
  48723. },
  48724. ]
  48725. ))
  48726. characterMakers.push(() => makeCharacter(
  48727. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48728. {
  48729. front: {
  48730. height: math.unit(10 + 5/12, "feet"),
  48731. weight: math.unit(773.5, "kg"),
  48732. name: "Front",
  48733. image: {
  48734. source: "./media/characters/zed/front.svg",
  48735. extra: 987/941,
  48736. bottom: 52/1039
  48737. }
  48738. },
  48739. },
  48740. [
  48741. {
  48742. name: "Short",
  48743. height: math.unit(5 + 4/12, "feet")
  48744. },
  48745. {
  48746. name: "Average",
  48747. height: math.unit(10 + 5/12, "feet"),
  48748. default: true
  48749. },
  48750. {
  48751. name: "Mini-Macro",
  48752. height: math.unit(24 + 9/12, "feet")
  48753. },
  48754. {
  48755. name: "Macro",
  48756. height: math.unit(249, "feet")
  48757. },
  48758. {
  48759. name: "Mega-Macro",
  48760. height: math.unit(12490, "feet")
  48761. },
  48762. {
  48763. name: "Giga-Macro",
  48764. height: math.unit(24.9, "miles")
  48765. },
  48766. {
  48767. name: "Tera-Macro",
  48768. height: math.unit(24900, "miles")
  48769. },
  48770. {
  48771. name: "Cosmic Scale",
  48772. height: math.unit(38.9, "lightyears")
  48773. },
  48774. {
  48775. name: "Universal Scale",
  48776. height: math.unit(138e12, "lightyears")
  48777. },
  48778. ]
  48779. ))
  48780. characterMakers.push(() => makeCharacter(
  48781. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48782. {
  48783. front: {
  48784. height: math.unit(1561, "inches"),
  48785. name: "Front",
  48786. image: {
  48787. source: "./media/characters/ivan/front.svg",
  48788. extra: 1126/1071,
  48789. bottom: 26/1152
  48790. }
  48791. },
  48792. back: {
  48793. height: math.unit(1561, "inches"),
  48794. name: "Back",
  48795. image: {
  48796. source: "./media/characters/ivan/back.svg",
  48797. extra: 1134/1079,
  48798. bottom: 30/1164
  48799. }
  48800. },
  48801. },
  48802. [
  48803. {
  48804. name: "Normal",
  48805. height: math.unit(1561, "inches"),
  48806. default: true
  48807. },
  48808. ]
  48809. ))
  48810. characterMakers.push(() => makeCharacter(
  48811. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48812. {
  48813. front: {
  48814. height: math.unit(5 + 7/12, "feet"),
  48815. weight: math.unit(150, "lb"),
  48816. name: "Front",
  48817. image: {
  48818. source: "./media/characters/robin-arctic-hare/front.svg",
  48819. extra: 1148/974,
  48820. bottom: 20/1168
  48821. }
  48822. },
  48823. },
  48824. [
  48825. {
  48826. name: "Normal",
  48827. height: math.unit(5 + 7/12, "feet"),
  48828. default: true
  48829. },
  48830. ]
  48831. ))
  48832. characterMakers.push(() => makeCharacter(
  48833. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48834. {
  48835. side: {
  48836. height: math.unit(5, "feet"),
  48837. name: "Side",
  48838. image: {
  48839. source: "./media/characters/birch/side.svg",
  48840. extra: 985/796,
  48841. bottom: 111/1096
  48842. }
  48843. },
  48844. },
  48845. [
  48846. {
  48847. name: "Normal",
  48848. height: math.unit(5, "feet"),
  48849. default: true
  48850. },
  48851. ]
  48852. ))
  48853. characterMakers.push(() => makeCharacter(
  48854. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48855. {
  48856. front: {
  48857. height: math.unit(4, "feet"),
  48858. name: "Front",
  48859. image: {
  48860. source: "./media/characters/rasp/front.svg",
  48861. extra: 561/478,
  48862. bottom: 74/635
  48863. }
  48864. },
  48865. },
  48866. [
  48867. {
  48868. name: "Normal",
  48869. height: math.unit(4, "feet"),
  48870. default: true
  48871. },
  48872. ]
  48873. ))
  48874. characterMakers.push(() => makeCharacter(
  48875. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48876. {
  48877. front: {
  48878. height: math.unit(4 + 6/12, "feet"),
  48879. name: "Front",
  48880. image: {
  48881. source: "./media/characters/agatha/front.svg",
  48882. extra: 947/933,
  48883. bottom: 42/989
  48884. }
  48885. },
  48886. back: {
  48887. height: math.unit(4 + 6/12, "feet"),
  48888. name: "Back",
  48889. image: {
  48890. source: "./media/characters/agatha/back.svg",
  48891. extra: 935/922,
  48892. bottom: 48/983
  48893. }
  48894. },
  48895. },
  48896. [
  48897. {
  48898. name: "Normal",
  48899. height: math.unit(4 + 6 /12, "feet"),
  48900. default: true
  48901. },
  48902. {
  48903. name: "Max Size",
  48904. height: math.unit(500, "feet")
  48905. },
  48906. ]
  48907. ))
  48908. characterMakers.push(() => makeCharacter(
  48909. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48910. {
  48911. side: {
  48912. height: math.unit(30, "feet"),
  48913. name: "Side",
  48914. image: {
  48915. source: "./media/characters/roggy/side.svg",
  48916. extra: 909/643,
  48917. bottom: 63/972
  48918. }
  48919. },
  48920. lounging: {
  48921. height: math.unit(20, "feet"),
  48922. name: "Lounging",
  48923. image: {
  48924. source: "./media/characters/roggy/lounging.svg",
  48925. extra: 643/479,
  48926. bottom: 145/788
  48927. }
  48928. },
  48929. handpaw: {
  48930. height: math.unit(13.1, "feet"),
  48931. name: "Handpaw",
  48932. image: {
  48933. source: "./media/characters/roggy/handpaw.svg"
  48934. }
  48935. },
  48936. footpaw: {
  48937. height: math.unit(15.8, "feet"),
  48938. name: "Footpaw",
  48939. image: {
  48940. source: "./media/characters/roggy/footpaw.svg"
  48941. }
  48942. },
  48943. },
  48944. [
  48945. {
  48946. name: "Menacing",
  48947. height: math.unit(30, "feet"),
  48948. default: true
  48949. },
  48950. ]
  48951. ))
  48952. characterMakers.push(() => makeCharacter(
  48953. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48954. {
  48955. front: {
  48956. height: math.unit(5 + 7/12, "feet"),
  48957. weight: math.unit(135, "lb"),
  48958. name: "Front",
  48959. image: {
  48960. source: "./media/characters/naomi/front.svg",
  48961. extra: 1209/1154,
  48962. bottom: 129/1338
  48963. }
  48964. },
  48965. back: {
  48966. height: math.unit(5 + 7/12, "feet"),
  48967. weight: math.unit(135, "lb"),
  48968. name: "Back",
  48969. image: {
  48970. source: "./media/characters/naomi/back.svg",
  48971. extra: 1252/1190,
  48972. bottom: 23/1275
  48973. }
  48974. },
  48975. },
  48976. [
  48977. {
  48978. name: "Normal",
  48979. height: math.unit(5 + 7 /12, "feet"),
  48980. default: true
  48981. },
  48982. ]
  48983. ))
  48984. characterMakers.push(() => makeCharacter(
  48985. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48986. {
  48987. side: {
  48988. height: math.unit(35, "meters"),
  48989. name: "Side",
  48990. image: {
  48991. source: "./media/characters/kimpi/side.svg",
  48992. extra: 419/382,
  48993. bottom: 63/482
  48994. }
  48995. },
  48996. hand: {
  48997. height: math.unit(8.96, "meters"),
  48998. name: "Hand",
  48999. image: {
  49000. source: "./media/characters/kimpi/hand.svg"
  49001. }
  49002. },
  49003. },
  49004. [
  49005. {
  49006. name: "Normal",
  49007. height: math.unit(35, "meters"),
  49008. default: true
  49009. },
  49010. ]
  49011. ))
  49012. characterMakers.push(() => makeCharacter(
  49013. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49014. {
  49015. front: {
  49016. height: math.unit(4 + 4/12, "feet"),
  49017. name: "Front",
  49018. image: {
  49019. source: "./media/characters/pepper-purrloin/front.svg",
  49020. extra: 1141/1024,
  49021. bottom: 21/1162
  49022. }
  49023. },
  49024. },
  49025. [
  49026. {
  49027. name: "Normal",
  49028. height: math.unit(4 + 4/12, "feet"),
  49029. default: true
  49030. },
  49031. ]
  49032. ))
  49033. characterMakers.push(() => makeCharacter(
  49034. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49035. {
  49036. front: {
  49037. height: math.unit(6 + 2/12, "feet"),
  49038. name: "Front",
  49039. image: {
  49040. source: "./media/characters/raphael/front.svg",
  49041. extra: 1101/962,
  49042. bottom: 59/1160
  49043. }
  49044. },
  49045. },
  49046. [
  49047. {
  49048. name: "Normal",
  49049. height: math.unit(6 + 2/12, "feet"),
  49050. default: true
  49051. },
  49052. ]
  49053. ))
  49054. characterMakers.push(() => makeCharacter(
  49055. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49056. {
  49057. front: {
  49058. height: math.unit(6, "feet"),
  49059. weight: math.unit(150, "lb"),
  49060. name: "Front",
  49061. image: {
  49062. source: "./media/characters/victor-williams/front.svg",
  49063. extra: 1894/1825,
  49064. bottom: 67/1961
  49065. }
  49066. },
  49067. },
  49068. [
  49069. {
  49070. name: "Normal",
  49071. height: math.unit(6, "feet"),
  49072. default: true
  49073. },
  49074. ]
  49075. ))
  49076. characterMakers.push(() => makeCharacter(
  49077. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49078. {
  49079. front: {
  49080. height: math.unit(5 + 8/12, "feet"),
  49081. weight: math.unit(150, "lb"),
  49082. name: "Front",
  49083. image: {
  49084. source: "./media/characters/rachel/front.svg",
  49085. extra: 1902/1787,
  49086. bottom: 46/1948
  49087. }
  49088. },
  49089. },
  49090. [
  49091. {
  49092. name: "Base Height",
  49093. height: math.unit(5 + 8/12, "feet"),
  49094. default: true
  49095. },
  49096. {
  49097. name: "Macro",
  49098. height: math.unit(200, "feet")
  49099. },
  49100. {
  49101. name: "Mega Macro",
  49102. height: math.unit(1, "mile")
  49103. },
  49104. {
  49105. name: "Giga Macro",
  49106. height: math.unit(1500, "miles")
  49107. },
  49108. {
  49109. name: "Tera Macro",
  49110. height: math.unit(8000, "miles")
  49111. },
  49112. {
  49113. name: "Tera Macro+",
  49114. height: math.unit(2e5, "miles")
  49115. },
  49116. ]
  49117. ))
  49118. characterMakers.push(() => makeCharacter(
  49119. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49120. {
  49121. front: {
  49122. height: math.unit(6.5, "feet"),
  49123. name: "Front",
  49124. image: {
  49125. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49126. extra: 860/819,
  49127. bottom: 307/1167
  49128. }
  49129. },
  49130. back: {
  49131. height: math.unit(6.5, "feet"),
  49132. name: "Back",
  49133. image: {
  49134. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49135. extra: 880/837,
  49136. bottom: 395/1275
  49137. }
  49138. },
  49139. sleeping: {
  49140. height: math.unit(2.79, "feet"),
  49141. name: "Sleeping",
  49142. image: {
  49143. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49144. extra: 465/383,
  49145. bottom: 263/728
  49146. }
  49147. },
  49148. maw: {
  49149. height: math.unit(2.52, "feet"),
  49150. name: "Maw",
  49151. image: {
  49152. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49153. }
  49154. },
  49155. },
  49156. [
  49157. {
  49158. name: "Normal",
  49159. height: math.unit(6.5, "feet"),
  49160. default: true
  49161. },
  49162. ]
  49163. ))
  49164. characterMakers.push(() => makeCharacter(
  49165. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49166. {
  49167. front: {
  49168. height: math.unit(5, "feet"),
  49169. name: "Front",
  49170. image: {
  49171. source: "./media/characters/nova-nerium/front.svg",
  49172. extra: 1548/1392,
  49173. bottom: 374/1922
  49174. }
  49175. },
  49176. back: {
  49177. height: math.unit(5, "feet"),
  49178. name: "Back",
  49179. image: {
  49180. source: "./media/characters/nova-nerium/back.svg",
  49181. extra: 1658/1468,
  49182. bottom: 257/1915
  49183. }
  49184. },
  49185. },
  49186. [
  49187. {
  49188. name: "Normal",
  49189. height: math.unit(5, "feet"),
  49190. default: true
  49191. },
  49192. ]
  49193. ))
  49194. characterMakers.push(() => makeCharacter(
  49195. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49196. {
  49197. front: {
  49198. height: math.unit(5 + 4/12, "feet"),
  49199. name: "Front",
  49200. image: {
  49201. source: "./media/characters/ashe-pyriph/front.svg",
  49202. extra: 1935/1747,
  49203. bottom: 60/1995
  49204. }
  49205. },
  49206. },
  49207. [
  49208. {
  49209. name: "Normal",
  49210. height: math.unit(5 + 4/12, "feet"),
  49211. default: true
  49212. },
  49213. ]
  49214. ))
  49215. characterMakers.push(() => makeCharacter(
  49216. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49217. {
  49218. front: {
  49219. height: math.unit(8.7, "feet"),
  49220. name: "Front",
  49221. image: {
  49222. source: "./media/characters/flicker-wisp/front.svg",
  49223. extra: 1835/1613,
  49224. bottom: 449/2284
  49225. }
  49226. },
  49227. side: {
  49228. height: math.unit(8.7, "feet"),
  49229. name: "Side",
  49230. image: {
  49231. source: "./media/characters/flicker-wisp/side.svg",
  49232. extra: 1841/1642,
  49233. bottom: 336/2177
  49234. },
  49235. default: true
  49236. },
  49237. maw: {
  49238. height: math.unit(3.35, "feet"),
  49239. name: "Maw",
  49240. image: {
  49241. source: "./media/characters/flicker-wisp/maw.svg",
  49242. extra: 2338/1506,
  49243. bottom: 0/2338
  49244. }
  49245. },
  49246. ovipositor: {
  49247. height: math.unit(4.95, "feet"),
  49248. name: "Ovipositor",
  49249. image: {
  49250. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49251. }
  49252. },
  49253. egg: {
  49254. height: math.unit(0.385, "feet"),
  49255. weight: math.unit(2, "lb"),
  49256. name: "Egg",
  49257. image: {
  49258. source: "./media/characters/flicker-wisp/egg.svg"
  49259. }
  49260. },
  49261. },
  49262. [
  49263. {
  49264. name: "Normal",
  49265. height: math.unit(8.7, "feet"),
  49266. default: true
  49267. },
  49268. ]
  49269. ))
  49270. characterMakers.push(() => makeCharacter(
  49271. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49272. {
  49273. side: {
  49274. height: math.unit(11, "feet"),
  49275. name: "Side",
  49276. image: {
  49277. source: "./media/characters/faefnul/side.svg",
  49278. extra: 1100/1007,
  49279. bottom: 0/1100
  49280. }
  49281. },
  49282. },
  49283. [
  49284. {
  49285. name: "Normal",
  49286. height: math.unit(11, "feet"),
  49287. default: true
  49288. },
  49289. ]
  49290. ))
  49291. characterMakers.push(() => makeCharacter(
  49292. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49293. {
  49294. front: {
  49295. height: math.unit(6 + 2/12, "feet"),
  49296. name: "Front",
  49297. image: {
  49298. source: "./media/characters/shady/front.svg",
  49299. extra: 502/461,
  49300. bottom: 9/511
  49301. }
  49302. },
  49303. kneeling: {
  49304. height: math.unit(4.6, "feet"),
  49305. name: "Kneeling",
  49306. image: {
  49307. source: "./media/characters/shady/kneeling.svg",
  49308. extra: 1328/1219,
  49309. bottom: 117/1445
  49310. }
  49311. },
  49312. maw: {
  49313. height: math.unit(2, "feet"),
  49314. name: "Maw",
  49315. image: {
  49316. source: "./media/characters/shady/maw.svg"
  49317. }
  49318. },
  49319. },
  49320. [
  49321. {
  49322. name: "Nano",
  49323. height: math.unit(1, "mm")
  49324. },
  49325. {
  49326. name: "Micro",
  49327. height: math.unit(12, "mm")
  49328. },
  49329. {
  49330. name: "Tiny",
  49331. height: math.unit(3, "inches")
  49332. },
  49333. {
  49334. name: "Normal",
  49335. height: math.unit(6 + 2/12, "feet"),
  49336. default: true
  49337. },
  49338. {
  49339. name: "Big",
  49340. height: math.unit(15, "feet")
  49341. },
  49342. {
  49343. name: "Macro",
  49344. height: math.unit(150, "feet")
  49345. },
  49346. {
  49347. name: "Titanic",
  49348. height: math.unit(500, "feet")
  49349. },
  49350. ]
  49351. ))
  49352. characterMakers.push(() => makeCharacter(
  49353. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49354. {
  49355. front: {
  49356. height: math.unit(12, "feet"),
  49357. name: "Front",
  49358. image: {
  49359. source: "./media/characters/fenrir/front.svg",
  49360. extra: 968/875,
  49361. bottom: 22/990
  49362. }
  49363. },
  49364. },
  49365. [
  49366. {
  49367. name: "Big",
  49368. height: math.unit(12, "feet"),
  49369. default: true
  49370. },
  49371. ]
  49372. ))
  49373. characterMakers.push(() => makeCharacter(
  49374. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49375. {
  49376. front: {
  49377. height: math.unit(5 + 4/12, "feet"),
  49378. name: "Front",
  49379. image: {
  49380. source: "./media/characters/makar/front.svg",
  49381. extra: 1181/1112,
  49382. bottom: 78/1259
  49383. }
  49384. },
  49385. },
  49386. [
  49387. {
  49388. name: "Normal",
  49389. height: math.unit(5 + 4/12, "feet"),
  49390. default: true
  49391. },
  49392. ]
  49393. ))
  49394. characterMakers.push(() => makeCharacter(
  49395. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49396. {
  49397. front: {
  49398. height: math.unit(5 + 7/12, "feet"),
  49399. name: "Front",
  49400. image: {
  49401. source: "./media/characters/callow/front.svg",
  49402. extra: 1482/1304,
  49403. bottom: 23/1505
  49404. }
  49405. },
  49406. back: {
  49407. height: math.unit(5 + 7/12, "feet"),
  49408. name: "Back",
  49409. image: {
  49410. source: "./media/characters/callow/back.svg",
  49411. extra: 1484/1296,
  49412. bottom: 25/1509
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Micro",
  49419. height: math.unit(3, "inches"),
  49420. default: true
  49421. },
  49422. {
  49423. name: "Normal",
  49424. height: math.unit(5 + 7/12, "feet")
  49425. },
  49426. ]
  49427. ))
  49428. characterMakers.push(() => makeCharacter(
  49429. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49430. {
  49431. front: {
  49432. height: math.unit(6 + 2/12, "feet"),
  49433. name: "Front",
  49434. image: {
  49435. source: "./media/characters/natel/front.svg",
  49436. extra: 1833/1692,
  49437. bottom: 166/1999
  49438. }
  49439. },
  49440. },
  49441. [
  49442. {
  49443. name: "Normal",
  49444. height: math.unit(6 + 2/12, "feet"),
  49445. default: true
  49446. },
  49447. ]
  49448. ))
  49449. characterMakers.push(() => makeCharacter(
  49450. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49451. {
  49452. front: {
  49453. height: math.unit(1.75, "meters"),
  49454. name: "Front",
  49455. image: {
  49456. source: "./media/characters/misu/front.svg",
  49457. extra: 1690/1558,
  49458. bottom: 234/1924
  49459. }
  49460. },
  49461. back: {
  49462. height: math.unit(1.75, "meters"),
  49463. name: "Back",
  49464. image: {
  49465. source: "./media/characters/misu/back.svg",
  49466. extra: 1762/1618,
  49467. bottom: 146/1908
  49468. }
  49469. },
  49470. frontNude: {
  49471. height: math.unit(1.75, "meters"),
  49472. name: "Front (Nude)",
  49473. image: {
  49474. source: "./media/characters/misu/front-nude.svg",
  49475. extra: 1690/1558,
  49476. bottom: 234/1924
  49477. }
  49478. },
  49479. backNude: {
  49480. height: math.unit(1.75, "meters"),
  49481. name: "Back (Nude)",
  49482. image: {
  49483. source: "./media/characters/misu/back-nude.svg",
  49484. extra: 1762/1618,
  49485. bottom: 146/1908
  49486. }
  49487. },
  49488. frontErect: {
  49489. height: math.unit(1.75, "meters"),
  49490. name: "Front (Erect)",
  49491. image: {
  49492. source: "./media/characters/misu/front-erect.svg",
  49493. extra: 1690/1558,
  49494. bottom: 234/1924
  49495. }
  49496. },
  49497. maw: {
  49498. height: math.unit(0.47, "meters"),
  49499. name: "Maw",
  49500. image: {
  49501. source: "./media/characters/misu/maw.svg"
  49502. }
  49503. },
  49504. head: {
  49505. height: math.unit(0.35, "meters"),
  49506. name: "Head",
  49507. image: {
  49508. source: "./media/characters/misu/head.svg"
  49509. }
  49510. },
  49511. rear: {
  49512. height: math.unit(0.47, "meters"),
  49513. name: "Rear",
  49514. image: {
  49515. source: "./media/characters/misu/rear.svg"
  49516. }
  49517. },
  49518. },
  49519. [
  49520. {
  49521. name: "Normal",
  49522. height: math.unit(1.75, "meters")
  49523. },
  49524. {
  49525. name: "Not good for the people",
  49526. height: math.unit(42, "meters")
  49527. },
  49528. {
  49529. name: "Not good for the neighborhood",
  49530. height: math.unit(135, "meters")
  49531. },
  49532. {
  49533. name: "Bit bigger problem",
  49534. height: math.unit(380, "meters"),
  49535. default: true
  49536. },
  49537. {
  49538. name: "Not good for the city",
  49539. height: math.unit(1.5, "km")
  49540. },
  49541. {
  49542. name: "Not good for the county",
  49543. height: math.unit(5.5, "km")
  49544. },
  49545. {
  49546. name: "Not good for the state",
  49547. height: math.unit(25, "km")
  49548. },
  49549. {
  49550. name: "Not good for the country",
  49551. height: math.unit(125, "km")
  49552. },
  49553. {
  49554. name: "Not good for the continent",
  49555. height: math.unit(2100, "km")
  49556. },
  49557. {
  49558. name: "Not good for the planet",
  49559. height: math.unit(35000, "km")
  49560. },
  49561. {
  49562. name: "Just no",
  49563. height: math.unit(8.5e18, "km")
  49564. },
  49565. ]
  49566. ))
  49567. characterMakers.push(() => makeCharacter(
  49568. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49569. {
  49570. front: {
  49571. height: math.unit(6.5, "feet"),
  49572. name: "Front",
  49573. image: {
  49574. source: "./media/characters/poppy/front.svg",
  49575. extra: 1878/1812,
  49576. bottom: 43/1921
  49577. }
  49578. },
  49579. feet: {
  49580. height: math.unit(1.06, "feet"),
  49581. name: "Feet",
  49582. image: {
  49583. source: "./media/characters/poppy/feet.svg",
  49584. extra: 1083/1083,
  49585. bottom: 87/1170
  49586. }
  49587. },
  49588. },
  49589. [
  49590. {
  49591. name: "Human",
  49592. height: math.unit(6.5, "feet")
  49593. },
  49594. {
  49595. name: "Default",
  49596. height: math.unit(300, "feet"),
  49597. default: true
  49598. },
  49599. {
  49600. name: "Huge",
  49601. height: math.unit(850, "feet")
  49602. },
  49603. {
  49604. name: "Mega",
  49605. height: math.unit(8000, "feet")
  49606. },
  49607. {
  49608. name: "Giga",
  49609. height: math.unit(300, "miles")
  49610. },
  49611. ]
  49612. ))
  49613. characterMakers.push(() => makeCharacter(
  49614. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49615. {
  49616. bipedal: {
  49617. height: math.unit(7, "feet"),
  49618. name: "Bipedal",
  49619. image: {
  49620. source: "./media/characters/zener/bipedal.svg",
  49621. extra: 874/805,
  49622. bottom: 109/983
  49623. }
  49624. },
  49625. quadrupedal: {
  49626. height: math.unit(4.64, "feet"),
  49627. name: "Quadrupedal",
  49628. image: {
  49629. source: "./media/characters/zener/quadrupedal.svg",
  49630. extra: 638/507,
  49631. bottom: 190/828
  49632. }
  49633. },
  49634. cock: {
  49635. height: math.unit(18, "inches"),
  49636. name: "Cock",
  49637. image: {
  49638. source: "./media/characters/zener/cock.svg"
  49639. }
  49640. },
  49641. },
  49642. [
  49643. {
  49644. name: "Normal",
  49645. height: math.unit(7, "feet"),
  49646. default: true
  49647. },
  49648. ]
  49649. ))
  49650. characterMakers.push(() => makeCharacter(
  49651. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49652. {
  49653. nude: {
  49654. height: math.unit(5 + 6/12, "feet"),
  49655. name: "Nude",
  49656. image: {
  49657. source: "./media/characters/charlie-dog/nude.svg",
  49658. extra: 768/734,
  49659. bottom: 26/794
  49660. }
  49661. },
  49662. dressed: {
  49663. height: math.unit(5 + 6/12, "feet"),
  49664. name: "Dressed",
  49665. image: {
  49666. source: "./media/characters/charlie-dog/dressed.svg",
  49667. extra: 768/734,
  49668. bottom: 26/794
  49669. }
  49670. },
  49671. },
  49672. [
  49673. {
  49674. name: "Normal",
  49675. height: math.unit(5 + 6/12, "feet"),
  49676. default: true
  49677. },
  49678. ]
  49679. ))
  49680. characterMakers.push(() => makeCharacter(
  49681. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49682. {
  49683. front: {
  49684. height: math.unit(6 + 4/12, "feet"),
  49685. name: "Front",
  49686. image: {
  49687. source: "./media/characters/ir'istrasz/front.svg",
  49688. extra: 1014/977,
  49689. bottom: 65/1079
  49690. }
  49691. },
  49692. back: {
  49693. height: math.unit(6 + 4/12, "feet"),
  49694. name: "Back",
  49695. image: {
  49696. source: "./media/characters/ir'istrasz/back.svg",
  49697. extra: 1024/992,
  49698. bottom: 34/1058
  49699. }
  49700. },
  49701. },
  49702. [
  49703. {
  49704. name: "Normal",
  49705. height: math.unit(6 + 4/12, "feet"),
  49706. default: true
  49707. },
  49708. ]
  49709. ))
  49710. characterMakers.push(() => makeCharacter(
  49711. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49712. {
  49713. front: {
  49714. height: math.unit(5 + 8/12, "feet"),
  49715. name: "Front",
  49716. image: {
  49717. source: "./media/characters/dee-ditto/front.svg",
  49718. extra: 1874/1785,
  49719. bottom: 68/1942
  49720. }
  49721. },
  49722. back: {
  49723. height: math.unit(5 + 8/12, "feet"),
  49724. name: "Back",
  49725. image: {
  49726. source: "./media/characters/dee-ditto/back.svg",
  49727. extra: 1870/1783,
  49728. bottom: 77/1947
  49729. }
  49730. },
  49731. },
  49732. [
  49733. {
  49734. name: "Normal",
  49735. height: math.unit(5 + 8/12, "feet"),
  49736. default: true
  49737. },
  49738. ]
  49739. ))
  49740. characterMakers.push(() => makeCharacter(
  49741. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49742. {
  49743. front: {
  49744. height: math.unit(7 + 6/12, "feet"),
  49745. name: "Front",
  49746. image: {
  49747. source: "./media/characters/fey/front.svg",
  49748. extra: 995/979,
  49749. bottom: 30/1025
  49750. }
  49751. },
  49752. back: {
  49753. height: math.unit(7 + 6/12, "feet"),
  49754. name: "Back",
  49755. image: {
  49756. source: "./media/characters/fey/back.svg",
  49757. extra: 1079/1008,
  49758. bottom: 5/1084
  49759. }
  49760. },
  49761. dressed: {
  49762. height: math.unit(7 + 6/12, "feet"),
  49763. name: "Dressed",
  49764. image: {
  49765. source: "./media/characters/fey/dressed.svg",
  49766. extra: 995/979,
  49767. bottom: 30/1025
  49768. }
  49769. },
  49770. },
  49771. [
  49772. {
  49773. name: "Normal",
  49774. height: math.unit(7 + 6/12, "feet"),
  49775. default: true
  49776. },
  49777. ]
  49778. ))
  49779. characterMakers.push(() => makeCharacter(
  49780. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49781. {
  49782. standing: {
  49783. height: math.unit(17, "feet"),
  49784. name: "Standing",
  49785. image: {
  49786. source: "./media/characters/aster/standing.svg",
  49787. extra: 1798/1598,
  49788. bottom: 117/1915
  49789. }
  49790. },
  49791. },
  49792. [
  49793. {
  49794. name: "Normal",
  49795. height: math.unit(17, "feet"),
  49796. default: true
  49797. },
  49798. {
  49799. name: "Homewrecker",
  49800. height: math.unit(95, "feet")
  49801. },
  49802. {
  49803. name: "Planet Devourer",
  49804. height: math.unit(1008000, "miles")
  49805. },
  49806. ]
  49807. ))
  49808. characterMakers.push(() => makeCharacter(
  49809. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49810. {
  49811. front: {
  49812. height: math.unit(6 + 5/12, "feet"),
  49813. weight: math.unit(265, "lb"),
  49814. name: "Front",
  49815. image: {
  49816. source: "./media/characters/devon-childs/front.svg",
  49817. extra: 1795/1721,
  49818. bottom: 41/1836
  49819. }
  49820. },
  49821. side: {
  49822. height: math.unit(6 + 5/12, "feet"),
  49823. weight: math.unit(265, "lb"),
  49824. name: "Side",
  49825. image: {
  49826. source: "./media/characters/devon-childs/side.svg",
  49827. extra: 1812/1738,
  49828. bottom: 30/1842
  49829. }
  49830. },
  49831. back: {
  49832. height: math.unit(6 + 5/12, "feet"),
  49833. weight: math.unit(265, "lb"),
  49834. name: "Back",
  49835. image: {
  49836. source: "./media/characters/devon-childs/back.svg",
  49837. extra: 1808/1735,
  49838. bottom: 23/1831
  49839. }
  49840. },
  49841. hand: {
  49842. height: math.unit(1.464, "feet"),
  49843. name: "Hand",
  49844. image: {
  49845. source: "./media/characters/devon-childs/hand.svg"
  49846. }
  49847. },
  49848. foot: {
  49849. height: math.unit(1.6, "feet"),
  49850. name: "Foot",
  49851. image: {
  49852. source: "./media/characters/devon-childs/foot.svg"
  49853. }
  49854. },
  49855. },
  49856. [
  49857. {
  49858. name: "Micro",
  49859. height: math.unit(7, "cm")
  49860. },
  49861. {
  49862. name: "Normal",
  49863. height: math.unit(6 + 5/12, "feet"),
  49864. default: true
  49865. },
  49866. {
  49867. name: "Macro",
  49868. height: math.unit(154, "feet")
  49869. },
  49870. ]
  49871. ))
  49872. characterMakers.push(() => makeCharacter(
  49873. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49874. {
  49875. front: {
  49876. height: math.unit(6, "feet"),
  49877. weight: math.unit(180, "lb"),
  49878. name: "Front",
  49879. image: {
  49880. source: "./media/characters/lydemox-vir/front.svg",
  49881. extra: 1632/1435,
  49882. bottom: 58/1690
  49883. }
  49884. },
  49885. frontSFW: {
  49886. height: math.unit(6, "feet"),
  49887. weight: math.unit(180, "lb"),
  49888. name: "Front (SFW)",
  49889. image: {
  49890. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49891. extra: 1632/1435,
  49892. bottom: 58/1690
  49893. }
  49894. },
  49895. back: {
  49896. height: math.unit(6, "feet"),
  49897. weight: math.unit(180, "lb"),
  49898. name: "Back",
  49899. image: {
  49900. source: "./media/characters/lydemox-vir/back.svg",
  49901. extra: 1593/1408,
  49902. bottom: 31/1624
  49903. }
  49904. },
  49905. paw: {
  49906. height: math.unit(1.85, "feet"),
  49907. name: "Paw",
  49908. image: {
  49909. source: "./media/characters/lydemox-vir/paw.svg"
  49910. }
  49911. },
  49912. dick: {
  49913. height: math.unit(1.8, "feet"),
  49914. name: "Dick",
  49915. image: {
  49916. source: "./media/characters/lydemox-vir/dick.svg"
  49917. }
  49918. },
  49919. },
  49920. [
  49921. {
  49922. name: "Macro",
  49923. height: math.unit(100, "feet"),
  49924. default: true
  49925. },
  49926. {
  49927. name: "Teramacro",
  49928. height: math.unit(1, "earth")
  49929. },
  49930. {
  49931. name: "Planetary",
  49932. height: math.unit(20, "earths")
  49933. },
  49934. ]
  49935. ))
  49936. characterMakers.push(() => makeCharacter(
  49937. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49938. {
  49939. front: {
  49940. height: math.unit(15 + 8/12, "feet"),
  49941. weight: math.unit(1237, "kg"),
  49942. name: "Front",
  49943. image: {
  49944. source: "./media/characters/mia/front.svg",
  49945. extra: 1573/1446,
  49946. bottom: 58/1631
  49947. }
  49948. },
  49949. },
  49950. [
  49951. {
  49952. name: "Small",
  49953. height: math.unit(9 + 5/12, "feet")
  49954. },
  49955. {
  49956. name: "Normal",
  49957. height: math.unit(15 + 8/12, "feet"),
  49958. default: true
  49959. },
  49960. ]
  49961. ))
  49962. characterMakers.push(() => makeCharacter(
  49963. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49964. {
  49965. front: {
  49966. height: math.unit(10 + 6/12, "feet"),
  49967. weight: math.unit(1.3, "tons"),
  49968. name: "Front",
  49969. image: {
  49970. source: "./media/characters/mr-graves/front.svg",
  49971. extra: 1779/1695,
  49972. bottom: 198/1977
  49973. }
  49974. },
  49975. },
  49976. [
  49977. {
  49978. name: "Normal",
  49979. height: math.unit(10 + 6 /12, "feet"),
  49980. default: true
  49981. },
  49982. ]
  49983. ))
  49984. characterMakers.push(() => makeCharacter(
  49985. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49986. {
  49987. dressedFront: {
  49988. height: math.unit(5 + 8/12, "feet"),
  49989. weight: math.unit(125, "lb"),
  49990. name: "Dressed (Front)",
  49991. image: {
  49992. source: "./media/characters/jess/dressed-front.svg",
  49993. extra: 1176/1152,
  49994. bottom: 42/1218
  49995. }
  49996. },
  49997. dressedSide: {
  49998. height: math.unit(5 + 8/12, "feet"),
  49999. weight: math.unit(125, "lb"),
  50000. name: "Dressed (Side)",
  50001. image: {
  50002. source: "./media/characters/jess/dressed-side.svg",
  50003. extra: 1204/1190,
  50004. bottom: 6/1210
  50005. }
  50006. },
  50007. nudeFront: {
  50008. height: math.unit(5 + 8/12, "feet"),
  50009. weight: math.unit(125, "lb"),
  50010. name: "Nude (Front)",
  50011. image: {
  50012. source: "./media/characters/jess/nude-front.svg",
  50013. extra: 1176/1152,
  50014. bottom: 42/1218
  50015. }
  50016. },
  50017. nudeSide: {
  50018. height: math.unit(5 + 8/12, "feet"),
  50019. weight: math.unit(125, "lb"),
  50020. name: "Nude (Side)",
  50021. image: {
  50022. source: "./media/characters/jess/nude-side.svg",
  50023. extra: 1204/1190,
  50024. bottom: 6/1210
  50025. }
  50026. },
  50027. organsFront: {
  50028. height: math.unit(2.83799342105, "feet"),
  50029. name: "Organs (Front)",
  50030. image: {
  50031. source: "./media/characters/jess/organs-front.svg"
  50032. }
  50033. },
  50034. organsSide: {
  50035. height: math.unit(2.64225290474, "feet"),
  50036. name: "Organs (Side)",
  50037. image: {
  50038. source: "./media/characters/jess/organs-side.svg"
  50039. }
  50040. },
  50041. digestiveTractFront: {
  50042. height: math.unit(2.8106580871, "feet"),
  50043. name: "Digestive Tract (Front)",
  50044. image: {
  50045. source: "./media/characters/jess/digestive-tract-front.svg"
  50046. }
  50047. },
  50048. digestiveTractSide: {
  50049. height: math.unit(2.54365045014, "feet"),
  50050. name: "Digestive Tract (Side)",
  50051. image: {
  50052. source: "./media/characters/jess/digestive-tract-side.svg"
  50053. }
  50054. },
  50055. respiratorySystemFront: {
  50056. height: math.unit(1.11196233456, "feet"),
  50057. name: "Respiratory System (Front)",
  50058. image: {
  50059. source: "./media/characters/jess/respiratory-system-front.svg"
  50060. }
  50061. },
  50062. respiratorySystemSide: {
  50063. height: math.unit(0.89327966297, "feet"),
  50064. name: "Respiratory System (Side)",
  50065. image: {
  50066. source: "./media/characters/jess/respiratory-system-side.svg"
  50067. }
  50068. },
  50069. urinaryTractFront: {
  50070. height: math.unit(1.16126356186, "feet"),
  50071. name: "Urinary Tract (Front)",
  50072. image: {
  50073. source: "./media/characters/jess/urinary-tract-front.svg"
  50074. }
  50075. },
  50076. urinaryTractSide: {
  50077. height: math.unit(1.20910039627, "feet"),
  50078. name: "Urinary Tract (Side)",
  50079. image: {
  50080. source: "./media/characters/jess/urinary-tract-side.svg"
  50081. }
  50082. },
  50083. reproductiveOrgansFront: {
  50084. height: math.unit(0.48422591566, "feet"),
  50085. name: "Reproductive Organs (Front)",
  50086. image: {
  50087. source: "./media/characters/jess/reproductive-organs-front.svg"
  50088. }
  50089. },
  50090. reproductiveOrgansSide: {
  50091. height: math.unit(0.61553314481, "feet"),
  50092. name: "Reproductive Organs (Side)",
  50093. image: {
  50094. source: "./media/characters/jess/reproductive-organs-side.svg"
  50095. }
  50096. },
  50097. breastsFront: {
  50098. height: math.unit(0.47690395121, "feet"),
  50099. name: "Breasts (Front)",
  50100. image: {
  50101. source: "./media/characters/jess/breasts-front.svg"
  50102. }
  50103. },
  50104. breastsSide: {
  50105. height: math.unit(0.30556998307, "feet"),
  50106. name: "Breasts (Side)",
  50107. image: {
  50108. source: "./media/characters/jess/breasts-side.svg"
  50109. }
  50110. },
  50111. heartFront: {
  50112. height: math.unit(0.53011022622, "feet"),
  50113. name: "Heart (Front)",
  50114. image: {
  50115. source: "./media/characters/jess/heart-front.svg"
  50116. }
  50117. },
  50118. heartSide: {
  50119. height: math.unit(0.51790695213, "feet"),
  50120. name: "Heart (Side)",
  50121. image: {
  50122. source: "./media/characters/jess/heart-side.svg"
  50123. }
  50124. },
  50125. earsAndNoseFront: {
  50126. height: math.unit(0.29385483995, "feet"),
  50127. name: "Ears and Nose (Front)",
  50128. image: {
  50129. source: "./media/characters/jess/ears-and-nose-front.svg"
  50130. }
  50131. },
  50132. earsAndNoseSide: {
  50133. height: math.unit(0.18109658741, "feet"),
  50134. name: "Ears and Nose (Side)",
  50135. image: {
  50136. source: "./media/characters/jess/ears-and-nose-side.svg"
  50137. }
  50138. },
  50139. },
  50140. [
  50141. {
  50142. name: "Normal",
  50143. height: math.unit(5 + 8/12, "feet"),
  50144. default: true
  50145. },
  50146. ]
  50147. ))
  50148. characterMakers.push(() => makeCharacter(
  50149. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50150. {
  50151. front: {
  50152. height: math.unit(6, "feet"),
  50153. weight: math.unit(6.64467e-7, "grams"),
  50154. name: "Front",
  50155. image: {
  50156. source: "./media/characters/wimpering/front.svg",
  50157. extra: 597/587,
  50158. bottom: 34/631
  50159. }
  50160. },
  50161. },
  50162. [
  50163. {
  50164. name: "Micro",
  50165. height: math.unit(0.4, "mm"),
  50166. default: true
  50167. },
  50168. ]
  50169. ))
  50170. characterMakers.push(() => makeCharacter(
  50171. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50172. {
  50173. front: {
  50174. height: math.unit(5 + 2/12, "feet"),
  50175. weight: math.unit(110, "lb"),
  50176. name: "Front",
  50177. image: {
  50178. source: "./media/characters/keltre/front.svg",
  50179. extra: 1099/1057,
  50180. bottom: 22/1121
  50181. }
  50182. },
  50183. back: {
  50184. height: math.unit(5 + 2/12, "feet"),
  50185. weight: math.unit(110, "lb"),
  50186. name: "Back",
  50187. image: {
  50188. source: "./media/characters/keltre/back.svg",
  50189. extra: 1095/1053,
  50190. bottom: 17/1112
  50191. }
  50192. },
  50193. dressed: {
  50194. height: math.unit(5 + 2/12, "feet"),
  50195. weight: math.unit(110, "lb"),
  50196. name: "Dressed",
  50197. image: {
  50198. source: "./media/characters/keltre/dressed.svg",
  50199. extra: 1099/1057,
  50200. bottom: 22/1121
  50201. }
  50202. },
  50203. winter: {
  50204. height: math.unit(5 + 2/12, "feet"),
  50205. weight: math.unit(110, "lb"),
  50206. name: "Winter",
  50207. image: {
  50208. source: "./media/characters/keltre/winter.svg",
  50209. extra: 1099/1057,
  50210. bottom: 22/1121
  50211. }
  50212. },
  50213. head: {
  50214. height: math.unit(1.61 * 0.86, "feet"),
  50215. name: "Head",
  50216. image: {
  50217. source: "./media/characters/keltre/head.svg",
  50218. extra: 534/421,
  50219. bottom: 0/534
  50220. }
  50221. },
  50222. hand: {
  50223. height: math.unit(1.3 * 0.86, "feet"),
  50224. name: "Hand",
  50225. image: {
  50226. source: "./media/characters/keltre/hand.svg"
  50227. }
  50228. },
  50229. foot: {
  50230. height: math.unit(1.8 * 0.86, "feet"),
  50231. name: "Foot",
  50232. image: {
  50233. source: "./media/characters/keltre/foot.svg"
  50234. }
  50235. },
  50236. },
  50237. [
  50238. {
  50239. name: "Fine",
  50240. height: math.unit(1, "inch")
  50241. },
  50242. {
  50243. name: "Dimnutive",
  50244. height: math.unit(4, "inches")
  50245. },
  50246. {
  50247. name: "Tiny",
  50248. height: math.unit(1, "foot")
  50249. },
  50250. {
  50251. name: "Small",
  50252. height: math.unit(3, "feet")
  50253. },
  50254. {
  50255. name: "Normal",
  50256. height: math.unit(5 + 2/12, "feet"),
  50257. default: true
  50258. },
  50259. ]
  50260. ))
  50261. characterMakers.push(() => makeCharacter(
  50262. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50263. {
  50264. front: {
  50265. height: math.unit(6 + 2/12, "feet"),
  50266. name: "Front",
  50267. image: {
  50268. source: "./media/characters/nox/front.svg",
  50269. extra: 1917/1830,
  50270. bottom: 74/1991
  50271. }
  50272. },
  50273. back: {
  50274. height: math.unit(6 + 2/12, "feet"),
  50275. name: "Back",
  50276. image: {
  50277. source: "./media/characters/nox/back.svg",
  50278. extra: 1896/1815,
  50279. bottom: 21/1917
  50280. }
  50281. },
  50282. head: {
  50283. height: math.unit(1.1, "feet"),
  50284. name: "Head",
  50285. image: {
  50286. source: "./media/characters/nox/head.svg",
  50287. extra: 874/704,
  50288. bottom: 0/874
  50289. }
  50290. },
  50291. tattoo: {
  50292. height: math.unit(0.729, "feet"),
  50293. name: "Tattoo",
  50294. image: {
  50295. source: "./media/characters/nox/tattoo.svg"
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Normal",
  50302. height: math.unit(6 + 2/12, "feet")
  50303. },
  50304. {
  50305. name: "Gigamacro",
  50306. height: math.unit(2, "earths"),
  50307. default: true
  50308. },
  50309. {
  50310. name: "Cosmic",
  50311. height: math.unit(867, "yottameters")
  50312. },
  50313. ]
  50314. ))
  50315. characterMakers.push(() => makeCharacter(
  50316. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50317. {
  50318. front: {
  50319. height: math.unit(6, "feet"),
  50320. weight: math.unit(150, "lb"),
  50321. name: "Front",
  50322. image: {
  50323. source: "./media/characters/caspian/front.svg",
  50324. extra: 1443/1359,
  50325. bottom: 0/1443
  50326. }
  50327. },
  50328. back: {
  50329. height: math.unit(6, "feet"),
  50330. weight: math.unit(150, "lb"),
  50331. name: "Back",
  50332. image: {
  50333. source: "./media/characters/caspian/back.svg",
  50334. extra: 1379/1309,
  50335. bottom: 0/1379
  50336. }
  50337. },
  50338. head: {
  50339. height: math.unit(0.9, "feet"),
  50340. name: "Head",
  50341. image: {
  50342. source: "./media/characters/caspian/head.svg",
  50343. extra: 692/492,
  50344. bottom: 0/692
  50345. }
  50346. },
  50347. headAlt: {
  50348. height: math.unit(0.95, "feet"),
  50349. name: "Head (Alt)",
  50350. image: {
  50351. source: "./media/characters/caspian/head-alt.svg",
  50352. extra: 668/508,
  50353. bottom: 0/668
  50354. }
  50355. },
  50356. hand: {
  50357. height: math.unit(0.8, "feet"),
  50358. name: "Hand",
  50359. image: {
  50360. source: "./media/characters/caspian/hand.svg"
  50361. }
  50362. },
  50363. paw: {
  50364. height: math.unit(0.95, "feet"),
  50365. name: "Paw",
  50366. image: {
  50367. source: "./media/characters/caspian/paw.svg"
  50368. }
  50369. },
  50370. },
  50371. [
  50372. {
  50373. name: "Normal",
  50374. height: math.unit(162, "feet"),
  50375. default: true
  50376. },
  50377. ]
  50378. ))
  50379. characterMakers.push(() => makeCharacter(
  50380. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50381. {
  50382. front: {
  50383. height: math.unit(6, "feet"),
  50384. name: "Front",
  50385. image: {
  50386. source: "./media/characters/myra-aisling/front.svg",
  50387. extra: 1268/1166,
  50388. bottom: 73/1341
  50389. }
  50390. },
  50391. back: {
  50392. height: math.unit(6, "feet"),
  50393. name: "Back",
  50394. image: {
  50395. source: "./media/characters/myra-aisling/back.svg",
  50396. extra: 1249/1149,
  50397. bottom: 79/1328
  50398. }
  50399. },
  50400. dressed: {
  50401. height: math.unit(6, "feet"),
  50402. name: "Dressed",
  50403. image: {
  50404. source: "./media/characters/myra-aisling/dressed.svg",
  50405. extra: 1290/1189,
  50406. bottom: 47/1337
  50407. }
  50408. },
  50409. hand: {
  50410. height: math.unit(1.1, "feet"),
  50411. name: "Hand",
  50412. image: {
  50413. source: "./media/characters/myra-aisling/hand.svg"
  50414. }
  50415. },
  50416. paw: {
  50417. height: math.unit(1.23, "feet"),
  50418. name: "Paw",
  50419. image: {
  50420. source: "./media/characters/myra-aisling/paw.svg"
  50421. }
  50422. },
  50423. },
  50424. [
  50425. {
  50426. name: "Normal",
  50427. height: math.unit(160, "feet"),
  50428. default: true
  50429. },
  50430. ]
  50431. ))
  50432. characterMakers.push(() => makeCharacter(
  50433. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50434. {
  50435. front: {
  50436. height: math.unit(6, "feet"),
  50437. name: "Front",
  50438. image: {
  50439. source: "./media/characters/tenley-sidero/front.svg",
  50440. extra: 1365/1276,
  50441. bottom: 47/1412
  50442. }
  50443. },
  50444. back: {
  50445. height: math.unit(6, "feet"),
  50446. name: "Back",
  50447. image: {
  50448. source: "./media/characters/tenley-sidero/back.svg",
  50449. extra: 1383/1283,
  50450. bottom: 35/1418
  50451. }
  50452. },
  50453. dressed: {
  50454. height: math.unit(6, "feet"),
  50455. name: "Dressed",
  50456. image: {
  50457. source: "./media/characters/tenley-sidero/dressed.svg",
  50458. extra: 1364/1275,
  50459. bottom: 42/1406
  50460. }
  50461. },
  50462. head: {
  50463. height: math.unit(1.47, "feet"),
  50464. name: "Head",
  50465. image: {
  50466. source: "./media/characters/tenley-sidero/head.svg",
  50467. extra: 610/490,
  50468. bottom: 0/610
  50469. }
  50470. },
  50471. },
  50472. [
  50473. {
  50474. name: "Normal",
  50475. height: math.unit(154, "feet"),
  50476. default: true
  50477. },
  50478. ]
  50479. ))
  50480. characterMakers.push(() => makeCharacter(
  50481. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50482. {
  50483. front: {
  50484. height: math.unit(5, "inches"),
  50485. name: "Front",
  50486. image: {
  50487. source: "./media/characters/mallory/front.svg",
  50488. extra: 1919/1678,
  50489. bottom: 29/1948
  50490. }
  50491. },
  50492. hand: {
  50493. height: math.unit(0.73, "inches"),
  50494. name: "Hand",
  50495. image: {
  50496. source: "./media/characters/mallory/hand.svg"
  50497. }
  50498. },
  50499. paw: {
  50500. height: math.unit(0.68, "inches"),
  50501. name: "Paw",
  50502. image: {
  50503. source: "./media/characters/mallory/paw.svg"
  50504. }
  50505. },
  50506. },
  50507. [
  50508. {
  50509. name: "Small",
  50510. height: math.unit(5, "inches"),
  50511. default: true
  50512. },
  50513. ]
  50514. ))
  50515. characterMakers.push(() => makeCharacter(
  50516. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50517. {
  50518. naked: {
  50519. height: math.unit(6, "feet"),
  50520. name: "Naked",
  50521. image: {
  50522. source: "./media/characters/mab/naked.svg",
  50523. extra: 1855/1757,
  50524. bottom: 208/2063
  50525. }
  50526. },
  50527. outside: {
  50528. height: math.unit(6, "feet"),
  50529. name: "Outside",
  50530. image: {
  50531. source: "./media/characters/mab/outside.svg",
  50532. extra: 1855/1757,
  50533. bottom: 208/2063
  50534. }
  50535. },
  50536. party: {
  50537. height: math.unit(6, "feet"),
  50538. name: "Party",
  50539. image: {
  50540. source: "./media/characters/mab/party.svg",
  50541. extra: 1855/1757,
  50542. bottom: 208/2063
  50543. }
  50544. },
  50545. },
  50546. [
  50547. {
  50548. name: "Normal",
  50549. height: math.unit(165, "feet"),
  50550. default: true
  50551. },
  50552. ]
  50553. ))
  50554. characterMakers.push(() => makeCharacter(
  50555. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50556. {
  50557. feral: {
  50558. height: math.unit(12, "feet"),
  50559. weight: math.unit(20000, "lb"),
  50560. name: "Side",
  50561. image: {
  50562. source: "./media/characters/winter/feral.svg",
  50563. extra: 1286/943,
  50564. bottom: 112/1398
  50565. },
  50566. form: "feral",
  50567. default: true
  50568. },
  50569. feralNsfw: {
  50570. height: math.unit(12, "feet"),
  50571. weight: math.unit(20000, "lb"),
  50572. name: "Side (NSFW)",
  50573. image: {
  50574. source: "./media/characters/winter/feral-nsfw.svg",
  50575. extra: 1286/943,
  50576. bottom: 112/1398
  50577. },
  50578. form: "feral"
  50579. },
  50580. dick: {
  50581. height: math.unit(3.79, "feet"),
  50582. name: "Dick",
  50583. image: {
  50584. source: "./media/characters/winter/dick.svg"
  50585. },
  50586. form: "feral"
  50587. },
  50588. anthro: {
  50589. height: math.unit(12, "feet"),
  50590. weight: math.unit(10, "tons"),
  50591. name: "Anthro",
  50592. image: {
  50593. source: "./media/characters/winter/anthro.svg",
  50594. extra: 1701/1553,
  50595. bottom: 64/1765
  50596. },
  50597. form: "anthro",
  50598. default: true
  50599. },
  50600. },
  50601. [
  50602. {
  50603. name: "Big",
  50604. height: math.unit(12, "feet"),
  50605. default: true,
  50606. form: "feral"
  50607. },
  50608. {
  50609. name: "Big",
  50610. height: math.unit(12, "feet"),
  50611. default: true,
  50612. form: "anthro"
  50613. },
  50614. ],
  50615. {
  50616. "feral": {
  50617. name: "Feral",
  50618. default: true
  50619. },
  50620. "anthro": {
  50621. name: "Anthro"
  50622. }
  50623. }
  50624. ))
  50625. characterMakers.push(() => makeCharacter(
  50626. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50627. {
  50628. front: {
  50629. height: math.unit(4.1, "inches"),
  50630. name: "Front",
  50631. image: {
  50632. source: "./media/characters/alto/front.svg",
  50633. extra: 736/627,
  50634. bottom: 90/826
  50635. }
  50636. },
  50637. },
  50638. [
  50639. {
  50640. name: "Normal",
  50641. height: math.unit(4.1, "inches"),
  50642. default: true
  50643. },
  50644. ]
  50645. ))
  50646. characterMakers.push(() => makeCharacter(
  50647. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50648. {
  50649. sitting: {
  50650. height: math.unit(3, "feet"),
  50651. name: "Sitting",
  50652. image: {
  50653. source: "./media/characters/ratstrid-v/sitting.svg",
  50654. extra: 355/310,
  50655. bottom: 136/491
  50656. }
  50657. },
  50658. },
  50659. [
  50660. {
  50661. name: "Normal",
  50662. height: math.unit(3, "feet"),
  50663. default: true
  50664. },
  50665. ]
  50666. ))
  50667. characterMakers.push(() => makeCharacter(
  50668. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50669. {
  50670. back: {
  50671. height: math.unit(6, "feet"),
  50672. weight: math.unit(450, "lb"),
  50673. name: "Back",
  50674. image: {
  50675. source: "./media/characters/siz/back.svg",
  50676. extra: 1449/1274,
  50677. bottom: 13/1462
  50678. }
  50679. },
  50680. },
  50681. [
  50682. {
  50683. name: "Smallest",
  50684. height: math.unit(18 + 3/12, "feet")
  50685. },
  50686. {
  50687. name: "Modest",
  50688. height: math.unit(56 + 8/12, "feet"),
  50689. default: true
  50690. },
  50691. {
  50692. name: "Largest",
  50693. height: math.unit(3590, "feet")
  50694. },
  50695. ]
  50696. ))
  50697. characterMakers.push(() => makeCharacter(
  50698. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50699. {
  50700. front: {
  50701. height: math.unit(5 + 9/12, "feet"),
  50702. weight: math.unit(150, "lb"),
  50703. name: "Front",
  50704. image: {
  50705. source: "./media/characters/ven/front.svg",
  50706. extra: 1372/1320,
  50707. bottom: 73/1445
  50708. }
  50709. },
  50710. side: {
  50711. height: math.unit(5 + 9/12, "feet"),
  50712. weight: math.unit(1150, "lb"),
  50713. name: "Side",
  50714. image: {
  50715. source: "./media/characters/ven/side.svg",
  50716. extra: 1119/1070,
  50717. bottom: 42/1161
  50718. },
  50719. default: true
  50720. },
  50721. },
  50722. [
  50723. {
  50724. name: "Normal",
  50725. height: math.unit(5 + 9/12, "feet"),
  50726. default: true
  50727. },
  50728. ]
  50729. ))
  50730. characterMakers.push(() => makeCharacter(
  50731. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50732. {
  50733. front: {
  50734. height: math.unit(12, "feet"),
  50735. weight: math.unit(1000, "kg"),
  50736. name: "Front",
  50737. image: {
  50738. source: "./media/characters/maple/front.svg",
  50739. extra: 1193/1081,
  50740. bottom: 22/1215
  50741. }
  50742. },
  50743. },
  50744. [
  50745. {
  50746. name: "Compressed",
  50747. height: math.unit(7, "feet")
  50748. },
  50749. {
  50750. name: "Normal",
  50751. height: math.unit(12, "feet"),
  50752. default: true
  50753. },
  50754. ]
  50755. ))
  50756. characterMakers.push(() => makeCharacter(
  50757. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50758. {
  50759. front: {
  50760. height: math.unit(9, "feet"),
  50761. weight: math.unit(1500, "lb"),
  50762. name: "Front",
  50763. image: {
  50764. source: "./media/characters/nora/front.svg",
  50765. extra: 1348/1286,
  50766. bottom: 218/1566
  50767. }
  50768. },
  50769. erect: {
  50770. height: math.unit(9, "feet"),
  50771. weight: math.unit(11500, "lb"),
  50772. name: "Erect",
  50773. image: {
  50774. source: "./media/characters/nora/erect.svg",
  50775. extra: 1488/1433,
  50776. bottom: 133/1621
  50777. }
  50778. },
  50779. },
  50780. [
  50781. {
  50782. name: "Normal",
  50783. height: math.unit(9, "feet"),
  50784. default: true
  50785. },
  50786. ]
  50787. ))
  50788. characterMakers.push(() => makeCharacter(
  50789. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50790. {
  50791. front: {
  50792. height: math.unit(25, "feet"),
  50793. weight: math.unit(27500, "lb"),
  50794. name: "Front",
  50795. image: {
  50796. source: "./media/characters/north-caudin/front.svg",
  50797. extra: 1184/1082,
  50798. bottom: 23/1207
  50799. }
  50800. },
  50801. },
  50802. [
  50803. {
  50804. name: "Compressed",
  50805. height: math.unit(10, "feet")
  50806. },
  50807. {
  50808. name: "Normal",
  50809. height: math.unit(25, "feet"),
  50810. default: true
  50811. },
  50812. ]
  50813. ))
  50814. characterMakers.push(() => makeCharacter(
  50815. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50816. {
  50817. front: {
  50818. height: math.unit(9, "feet"),
  50819. weight: math.unit(1250, "lb"),
  50820. name: "Front",
  50821. image: {
  50822. source: "./media/characters/merrian/front.svg",
  50823. extra: 2393/2304,
  50824. bottom: 40/2433
  50825. }
  50826. },
  50827. },
  50828. [
  50829. {
  50830. name: "Normal",
  50831. height: math.unit(9, "feet"),
  50832. default: true
  50833. },
  50834. ]
  50835. ))
  50836. characterMakers.push(() => makeCharacter(
  50837. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50838. {
  50839. front: {
  50840. height: math.unit(9, "feet"),
  50841. weight: math.unit(1000, "lb"),
  50842. name: "Front",
  50843. image: {
  50844. source: "./media/characters/hazel/front.svg",
  50845. extra: 2351/2298,
  50846. bottom: 38/2389
  50847. }
  50848. },
  50849. },
  50850. [
  50851. {
  50852. name: "Normal",
  50853. height: math.unit(9, "feet"),
  50854. default: true
  50855. },
  50856. ]
  50857. ))
  50858. characterMakers.push(() => makeCharacter(
  50859. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50860. {
  50861. front: {
  50862. height: math.unit(13, "feet"),
  50863. weight: math.unit(3200, "lb"),
  50864. name: "Front",
  50865. image: {
  50866. source: "./media/characters/emma/front.svg",
  50867. extra: 2263/2029,
  50868. bottom: 68/2331
  50869. }
  50870. },
  50871. },
  50872. [
  50873. {
  50874. name: "Normal",
  50875. height: math.unit(13, "feet"),
  50876. default: true
  50877. },
  50878. ]
  50879. ))
  50880. characterMakers.push(() => makeCharacter(
  50881. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50882. {
  50883. front: {
  50884. height: math.unit(11 + 9/12, "feet"),
  50885. weight: math.unit(2500, "lb"),
  50886. name: "Front",
  50887. image: {
  50888. source: "./media/characters/ilumina/front.svg",
  50889. extra: 2248/2209,
  50890. bottom: 164/2412
  50891. }
  50892. },
  50893. },
  50894. [
  50895. {
  50896. name: "Normal",
  50897. height: math.unit(11 + 9/12, "feet"),
  50898. default: true
  50899. },
  50900. ]
  50901. ))
  50902. characterMakers.push(() => makeCharacter(
  50903. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50904. {
  50905. front: {
  50906. height: math.unit(8 + 10/12, "feet"),
  50907. weight: math.unit(1350, "lb"),
  50908. name: "Front",
  50909. image: {
  50910. source: "./media/characters/moonshine/front.svg",
  50911. extra: 2395/2288,
  50912. bottom: 40/2435
  50913. }
  50914. },
  50915. },
  50916. [
  50917. {
  50918. name: "Normal",
  50919. height: math.unit(8 + 10/12, "feet"),
  50920. default: true
  50921. },
  50922. ]
  50923. ))
  50924. characterMakers.push(() => makeCharacter(
  50925. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50926. {
  50927. front: {
  50928. height: math.unit(14, "feet"),
  50929. weight: math.unit(3400, "lb"),
  50930. name: "Front",
  50931. image: {
  50932. source: "./media/characters/aletia/front.svg",
  50933. extra: 1185/1052,
  50934. bottom: 21/1206
  50935. }
  50936. },
  50937. },
  50938. [
  50939. {
  50940. name: "Compressed",
  50941. height: math.unit(8, "feet")
  50942. },
  50943. {
  50944. name: "Normal",
  50945. height: math.unit(14, "feet"),
  50946. default: true
  50947. },
  50948. ]
  50949. ))
  50950. characterMakers.push(() => makeCharacter(
  50951. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50952. {
  50953. front: {
  50954. height: math.unit(17, "feet"),
  50955. weight: math.unit(6500, "lb"),
  50956. name: "Front",
  50957. image: {
  50958. source: "./media/characters/deidra/front.svg",
  50959. extra: 1201/1081,
  50960. bottom: 16/1217
  50961. }
  50962. },
  50963. },
  50964. [
  50965. {
  50966. name: "Compressed",
  50967. height: math.unit(9 + 6/12, "feet")
  50968. },
  50969. {
  50970. name: "Normal",
  50971. height: math.unit(17, "feet"),
  50972. default: true
  50973. },
  50974. ]
  50975. ))
  50976. characterMakers.push(() => makeCharacter(
  50977. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50978. {
  50979. front: {
  50980. height: math.unit(7 + 4/12, "feet"),
  50981. weight: math.unit(280, "lb"),
  50982. name: "Front",
  50983. image: {
  50984. source: "./media/characters/freki-yrmori/front.svg",
  50985. extra: 1286/1182,
  50986. bottom: 29/1315
  50987. }
  50988. },
  50989. maw: {
  50990. height: math.unit(0.9, "feet"),
  50991. name: "Maw",
  50992. image: {
  50993. source: "./media/characters/freki-yrmori/maw.svg"
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(7 + 4/12, "feet"),
  51001. default: true
  51002. },
  51003. {
  51004. name: "Macro",
  51005. height: math.unit(38.5, "meters")
  51006. },
  51007. ]
  51008. ))
  51009. characterMakers.push(() => makeCharacter(
  51010. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51011. {
  51012. side: {
  51013. height: math.unit(47.2, "meters"),
  51014. weight: math.unit(10000, "tons"),
  51015. name: "Side",
  51016. image: {
  51017. source: "./media/characters/aetherios/side.svg",
  51018. extra: 2363/642,
  51019. bottom: 221/2584
  51020. }
  51021. },
  51022. top: {
  51023. height: math.unit(240, "meters"),
  51024. weight: math.unit(10000, "tons"),
  51025. name: "Top",
  51026. image: {
  51027. source: "./media/characters/aetherios/top.svg"
  51028. }
  51029. },
  51030. bottom: {
  51031. height: math.unit(240, "meters"),
  51032. weight: math.unit(10000, "tons"),
  51033. name: "Bottom",
  51034. image: {
  51035. source: "./media/characters/aetherios/bottom.svg"
  51036. }
  51037. },
  51038. head: {
  51039. height: math.unit(38.6, "meters"),
  51040. name: "Head",
  51041. image: {
  51042. source: "./media/characters/aetherios/head.svg",
  51043. extra: 1335/1112,
  51044. bottom: 0/1335
  51045. }
  51046. },
  51047. front: {
  51048. height: math.unit(29, "meters"),
  51049. name: "Front",
  51050. image: {
  51051. source: "./media/characters/aetherios/front.svg",
  51052. extra: 1266/953,
  51053. bottom: 158/1424
  51054. }
  51055. },
  51056. maw: {
  51057. height: math.unit(16.37, "meters"),
  51058. name: "Maw",
  51059. image: {
  51060. source: "./media/characters/aetherios/maw.svg",
  51061. extra: 748/637,
  51062. bottom: 0/748
  51063. },
  51064. extraAttributes: {
  51065. preyCapacity: {
  51066. name: "Capacity",
  51067. power: 3,
  51068. type: "volume",
  51069. base: math.unit(1000, "people")
  51070. },
  51071. tongueSize: {
  51072. name: "Tongue Size",
  51073. power: 2,
  51074. type: "area",
  51075. base: math.unit(21, "m^2")
  51076. }
  51077. }
  51078. },
  51079. forepaw: {
  51080. height: math.unit(18, "meters"),
  51081. name: "Forepaw",
  51082. image: {
  51083. source: "./media/characters/aetherios/forepaw.svg"
  51084. }
  51085. },
  51086. hindpaw: {
  51087. height: math.unit(23, "meters"),
  51088. name: "Hindpaw",
  51089. image: {
  51090. source: "./media/characters/aetherios/hindpaw.svg"
  51091. }
  51092. },
  51093. genitals: {
  51094. height: math.unit(42, "meters"),
  51095. name: "Genitals",
  51096. image: {
  51097. source: "./media/characters/aetherios/genitals.svg"
  51098. }
  51099. },
  51100. },
  51101. [
  51102. {
  51103. name: "Normal",
  51104. height: math.unit(47.2, "meters"),
  51105. default: true
  51106. },
  51107. {
  51108. name: "Macro",
  51109. height: math.unit(160, "meters")
  51110. },
  51111. {
  51112. name: "Mega",
  51113. height: math.unit(1.87, "km")
  51114. },
  51115. {
  51116. name: "Giga",
  51117. height: math.unit(40000, "km")
  51118. },
  51119. {
  51120. name: "Stellar",
  51121. height: math.unit(158000000, "km")
  51122. },
  51123. {
  51124. name: "Cosmic",
  51125. height: math.unit(9.46e12, "km")
  51126. },
  51127. ]
  51128. ))
  51129. characterMakers.push(() => makeCharacter(
  51130. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51131. {
  51132. front: {
  51133. height: math.unit(5 + 4/12, "feet"),
  51134. weight: math.unit(80, "lb"),
  51135. name: "Front",
  51136. image: {
  51137. source: "./media/characters/mizu-gieeg/front.svg",
  51138. extra: 850/709,
  51139. bottom: 52/902
  51140. }
  51141. },
  51142. back: {
  51143. height: math.unit(5 + 4/12, "feet"),
  51144. weight: math.unit(80, "lb"),
  51145. name: "Back",
  51146. image: {
  51147. source: "./media/characters/mizu-gieeg/back.svg",
  51148. extra: 882/745,
  51149. bottom: 25/907
  51150. }
  51151. },
  51152. },
  51153. [
  51154. {
  51155. name: "Normal",
  51156. height: math.unit(5 + 4/12, "feet"),
  51157. default: true
  51158. },
  51159. ]
  51160. ))
  51161. characterMakers.push(() => makeCharacter(
  51162. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51163. {
  51164. front: {
  51165. height: math.unit(6, "feet"),
  51166. name: "Front",
  51167. image: {
  51168. source: "./media/characters/roselle-st-papier/front.svg",
  51169. extra: 1430/1280,
  51170. bottom: 37/1467
  51171. }
  51172. },
  51173. back: {
  51174. height: math.unit(6, "feet"),
  51175. name: "Back",
  51176. image: {
  51177. source: "./media/characters/roselle-st-papier/back.svg",
  51178. extra: 1491/1296,
  51179. bottom: 23/1514
  51180. }
  51181. },
  51182. ear: {
  51183. height: math.unit(1.26, "feet"),
  51184. name: "Ear",
  51185. image: {
  51186. source: "./media/characters/roselle-st-papier/ear.svg"
  51187. }
  51188. },
  51189. },
  51190. [
  51191. {
  51192. name: "Normal",
  51193. height: math.unit(150, "feet"),
  51194. default: true
  51195. },
  51196. ]
  51197. ))
  51198. characterMakers.push(() => makeCharacter(
  51199. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51200. {
  51201. front: {
  51202. height: math.unit(1, "inches"),
  51203. name: "Front",
  51204. image: {
  51205. source: "./media/characters/valargent/front.svg",
  51206. extra: 1825/1694,
  51207. bottom: 62/1887
  51208. }
  51209. },
  51210. back: {
  51211. height: math.unit(1, "inches"),
  51212. name: "Back",
  51213. image: {
  51214. source: "./media/characters/valargent/back.svg",
  51215. extra: 1775/1682,
  51216. bottom: 88/1863
  51217. }
  51218. },
  51219. },
  51220. [
  51221. {
  51222. name: "Micro",
  51223. height: math.unit(1, "inch"),
  51224. default: true
  51225. },
  51226. ]
  51227. ))
  51228. characterMakers.push(() => makeCharacter(
  51229. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51230. {
  51231. front: {
  51232. height: math.unit(3.4, "meters"),
  51233. name: "Front",
  51234. image: {
  51235. source: "./media/characters/zarina/front.svg",
  51236. extra: 1733/1425,
  51237. bottom: 93/1826
  51238. }
  51239. },
  51240. squatting: {
  51241. height: math.unit(2.14, "meters"),
  51242. name: "Squatting",
  51243. image: {
  51244. source: "./media/characters/zarina/squatting.svg",
  51245. extra: 1073/788,
  51246. bottom: 63/1136
  51247. }
  51248. },
  51249. back: {
  51250. height: math.unit(2.14, "meters"),
  51251. name: "Back",
  51252. image: {
  51253. source: "./media/characters/zarina/back.svg",
  51254. extra: 1128/885,
  51255. bottom: 0/1128
  51256. }
  51257. },
  51258. },
  51259. [
  51260. {
  51261. name: "Normal",
  51262. height: math.unit(3.4, "meters"),
  51263. default: true
  51264. },
  51265. {
  51266. name: "Big",
  51267. height: math.unit(5, "meters")
  51268. },
  51269. {
  51270. name: "Macro",
  51271. height: math.unit(110, "meters")
  51272. },
  51273. ]
  51274. ))
  51275. characterMakers.push(() => makeCharacter(
  51276. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51277. {
  51278. front: {
  51279. height: math.unit(7, "feet"),
  51280. name: "Front",
  51281. image: {
  51282. source: "./media/characters/ventus-astro-fox/front.svg",
  51283. extra: 1792/1623,
  51284. bottom: 28/1820
  51285. }
  51286. },
  51287. back: {
  51288. height: math.unit(7, "feet"),
  51289. name: "Back",
  51290. image: {
  51291. source: "./media/characters/ventus-astro-fox/back.svg",
  51292. extra: 1789/1620,
  51293. bottom: 31/1820
  51294. }
  51295. },
  51296. outfit: {
  51297. height: math.unit(7, "feet"),
  51298. name: "Outfit",
  51299. image: {
  51300. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51301. extra: 1054/925,
  51302. bottom: 15/1069
  51303. }
  51304. },
  51305. head: {
  51306. height: math.unit(1.12, "feet"),
  51307. name: "Head",
  51308. image: {
  51309. source: "./media/characters/ventus-astro-fox/head.svg",
  51310. extra: 866/504,
  51311. bottom: 0/866
  51312. }
  51313. },
  51314. hand: {
  51315. height: math.unit(1, "feet"),
  51316. name: "Hand",
  51317. image: {
  51318. source: "./media/characters/ventus-astro-fox/hand.svg"
  51319. }
  51320. },
  51321. paw: {
  51322. height: math.unit(1.5, "feet"),
  51323. name: "Paw",
  51324. image: {
  51325. source: "./media/characters/ventus-astro-fox/paw.svg"
  51326. }
  51327. },
  51328. },
  51329. [
  51330. {
  51331. name: "Normal",
  51332. height: math.unit(7, "feet"),
  51333. default: true
  51334. },
  51335. {
  51336. name: "Macro",
  51337. height: math.unit(200, "feet")
  51338. },
  51339. {
  51340. name: "Cosmic",
  51341. height: math.unit(3, "universes")
  51342. },
  51343. ]
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(3, "meters"),
  51350. weight: math.unit(7000, "lb"),
  51351. name: "Front",
  51352. image: {
  51353. source: "./media/characters/core-t/front.svg",
  51354. extra: 5729/4941,
  51355. bottom: 1129/6858
  51356. }
  51357. },
  51358. },
  51359. [
  51360. {
  51361. name: "Big",
  51362. height: math.unit(3, "meters"),
  51363. default: true
  51364. },
  51365. ]
  51366. ))
  51367. characterMakers.push(() => makeCharacter(
  51368. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51369. {
  51370. normal: {
  51371. height: math.unit(6 + 6/12, "feet"),
  51372. weight: math.unit(275, "lb"),
  51373. name: "Front",
  51374. image: {
  51375. source: "./media/characters/cadbunny/normal.svg",
  51376. extra: 1129/947,
  51377. bottom: 93/1222
  51378. },
  51379. default: true,
  51380. form: "normal"
  51381. },
  51382. gigantamax: {
  51383. height: math.unit(26, "feet"),
  51384. weight: math.unit(16000, "lb"),
  51385. name: "Front",
  51386. image: {
  51387. source: "./media/characters/cadbunny/gigantamax.svg",
  51388. extra: 1133/944,
  51389. bottom: 90/1223
  51390. },
  51391. default: true,
  51392. form: "gigantamax"
  51393. },
  51394. },
  51395. [
  51396. {
  51397. name: "Normal",
  51398. height: math.unit(6 + 6/12, "feet"),
  51399. default: true,
  51400. form: "normal"
  51401. },
  51402. {
  51403. name: "Small",
  51404. height: math.unit(26, "feet"),
  51405. default: true,
  51406. form: "gigantamax"
  51407. },
  51408. {
  51409. name: "Large",
  51410. height: math.unit(78, "feet"),
  51411. form: "gigantamax"
  51412. },
  51413. ],
  51414. {
  51415. "normal": {
  51416. name: "Normal",
  51417. default: true
  51418. },
  51419. "gigantamax": {
  51420. name: "Gigantamax"
  51421. }
  51422. }
  51423. ))
  51424. characterMakers.push(() => makeCharacter(
  51425. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51426. {
  51427. anthroFront: {
  51428. height: math.unit(8, "feet"),
  51429. weight: math.unit(300, "lb"),
  51430. name: "Front",
  51431. image: {
  51432. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51433. extra: 1272/1176,
  51434. bottom: 53/1325
  51435. },
  51436. form: "anthro",
  51437. default: true
  51438. },
  51439. feralSide: {
  51440. height: math.unit(4, "feet"),
  51441. weight: math.unit(250, "lb"),
  51442. name: "Side",
  51443. image: {
  51444. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51445. extra: 731/621,
  51446. bottom: 0/731
  51447. },
  51448. form: "feral",
  51449. default: true
  51450. },
  51451. },
  51452. [
  51453. {
  51454. name: "Regular",
  51455. height: math.unit(8, "feet"),
  51456. form: "anthro"
  51457. },
  51458. {
  51459. name: "Macro",
  51460. height: math.unit(250, "feet"),
  51461. form: "anthro",
  51462. default: true
  51463. },
  51464. {
  51465. name: "Regular",
  51466. height: math.unit(4, "feet"),
  51467. form: "feral"
  51468. },
  51469. {
  51470. name: "Macro",
  51471. height: math.unit(125, "feet"),
  51472. form: "feral",
  51473. default: true
  51474. },
  51475. ],
  51476. {
  51477. "anthro": {
  51478. name: "Anthro",
  51479. default: true
  51480. },
  51481. "feral": {
  51482. name: "Feral",
  51483. },
  51484. }
  51485. ))
  51486. characterMakers.push(() => makeCharacter(
  51487. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51488. {
  51489. front: {
  51490. height: math.unit(11 + 10/12, "feet"),
  51491. weight: math.unit(1587, "kg"),
  51492. name: "Front",
  51493. image: {
  51494. source: "./media/characters/maple-javira-dragon/front.svg",
  51495. extra: 1136/744,
  51496. bottom: 73/1209
  51497. }
  51498. },
  51499. side: {
  51500. height: math.unit(11 + 10/12, "feet"),
  51501. weight: math.unit(1587, "kg"),
  51502. name: "Side",
  51503. image: {
  51504. source: "./media/characters/maple-javira-dragon/side.svg",
  51505. extra: 712/505,
  51506. bottom: 17/729
  51507. }
  51508. },
  51509. head: {
  51510. height: math.unit(8.05, "feet"),
  51511. name: "Head",
  51512. image: {
  51513. source: "./media/characters/maple-javira-dragon/head.svg",
  51514. extra: 1420/1344,
  51515. bottom: 0/1420
  51516. }
  51517. },
  51518. },
  51519. [
  51520. {
  51521. name: "Normal",
  51522. height: math.unit(11 + 10/12, "feet"),
  51523. default: true
  51524. },
  51525. ]
  51526. ))
  51527. characterMakers.push(() => makeCharacter(
  51528. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51529. {
  51530. front: {
  51531. height: math.unit(117, "cm"),
  51532. weight: math.unit(50, "kg"),
  51533. name: "Front",
  51534. image: {
  51535. source: "./media/characters/sonia-wyverntail/front.svg",
  51536. extra: 708/592,
  51537. bottom: 25/733
  51538. }
  51539. },
  51540. },
  51541. [
  51542. {
  51543. name: "Normal",
  51544. height: math.unit(117, "cm"),
  51545. default: true
  51546. },
  51547. ]
  51548. ))
  51549. characterMakers.push(() => makeCharacter(
  51550. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51551. {
  51552. front: {
  51553. height: math.unit(6 + 5/12, "feet"),
  51554. name: "Front",
  51555. image: {
  51556. source: "./media/characters/micah/front.svg",
  51557. extra: 1758/1546,
  51558. bottom: 214/1972
  51559. }
  51560. },
  51561. },
  51562. [
  51563. {
  51564. name: "Normal",
  51565. height: math.unit(6 + 5/12, "feet"),
  51566. default: true
  51567. },
  51568. ]
  51569. ))
  51570. characterMakers.push(() => makeCharacter(
  51571. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51572. {
  51573. front: {
  51574. height: math.unit(1.75, "meters"),
  51575. weight: math.unit(100, "kg"),
  51576. name: "Front",
  51577. image: {
  51578. source: "./media/characters/zarya/front.svg",
  51579. extra: 741/735,
  51580. bottom: 44/785
  51581. },
  51582. extraAttributes: {
  51583. "tailLength": {
  51584. name: "Tail Length",
  51585. power: 1,
  51586. type: "length",
  51587. base: math.unit(180, "cm")
  51588. },
  51589. "pawLength": {
  51590. name: "Paw Length",
  51591. power: 1,
  51592. type: "length",
  51593. base: math.unit(31, "cm")
  51594. },
  51595. }
  51596. },
  51597. side: {
  51598. height: math.unit(1.75, "meters"),
  51599. weight: math.unit(100, "kg"),
  51600. name: "Side",
  51601. image: {
  51602. source: "./media/characters/zarya/side.svg",
  51603. extra: 776/770,
  51604. bottom: 17/793
  51605. },
  51606. extraAttributes: {
  51607. "tailLength": {
  51608. name: "Tail Length",
  51609. power: 1,
  51610. type: "length",
  51611. base: math.unit(180, "cm")
  51612. },
  51613. "pawLength": {
  51614. name: "Paw Length",
  51615. power: 1,
  51616. type: "length",
  51617. base: math.unit(31, "cm")
  51618. },
  51619. }
  51620. },
  51621. back: {
  51622. height: math.unit(1.75, "meters"),
  51623. weight: math.unit(100, "kg"),
  51624. name: "Back",
  51625. image: {
  51626. source: "./media/characters/zarya/back.svg",
  51627. extra: 741/735,
  51628. bottom: 44/785
  51629. },
  51630. extraAttributes: {
  51631. "tailLength": {
  51632. name: "Tail Length",
  51633. power: 1,
  51634. type: "length",
  51635. base: math.unit(180, "cm")
  51636. },
  51637. "pawLength": {
  51638. name: "Paw Length",
  51639. power: 1,
  51640. type: "length",
  51641. base: math.unit(31, "cm")
  51642. },
  51643. }
  51644. },
  51645. frontNoTail: {
  51646. height: math.unit(1.75, "meters"),
  51647. weight: math.unit(100, "kg"),
  51648. name: "Front (No Tail)",
  51649. image: {
  51650. source: "./media/characters/zarya/front-no-tail.svg",
  51651. extra: 741/735,
  51652. bottom: 44/785
  51653. },
  51654. extraAttributes: {
  51655. "tailLength": {
  51656. name: "Tail Length",
  51657. power: 1,
  51658. type: "length",
  51659. base: math.unit(180, "cm")
  51660. },
  51661. "pawLength": {
  51662. name: "Paw Length",
  51663. power: 1,
  51664. type: "length",
  51665. base: math.unit(31, "cm")
  51666. },
  51667. }
  51668. },
  51669. dressed: {
  51670. height: math.unit(1.75, "meters"),
  51671. weight: math.unit(100, "kg"),
  51672. name: "Dressed",
  51673. image: {
  51674. source: "./media/characters/zarya/dressed.svg",
  51675. extra: 683/672,
  51676. bottom: 79/762
  51677. },
  51678. extraAttributes: {
  51679. "tailLength": {
  51680. name: "Tail Length",
  51681. power: 1,
  51682. type: "length",
  51683. base: math.unit(180, "cm")
  51684. },
  51685. "pawLength": {
  51686. name: "Paw Length",
  51687. power: 1,
  51688. type: "length",
  51689. base: math.unit(31, "cm")
  51690. },
  51691. }
  51692. },
  51693. },
  51694. [
  51695. {
  51696. name: "Micro",
  51697. height: math.unit(5, "cm")
  51698. },
  51699. {
  51700. name: "Normal",
  51701. height: math.unit(1.75, "meters"),
  51702. default: true
  51703. },
  51704. {
  51705. name: "Macro",
  51706. height: math.unit(122, "meters")
  51707. },
  51708. ]
  51709. ))
  51710. characterMakers.push(() => makeCharacter(
  51711. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51712. {
  51713. front: {
  51714. height: math.unit(7.5, "feet"),
  51715. name: "Front",
  51716. image: {
  51717. source: "./media/characters/sven-hatisson/front.svg",
  51718. extra: 917/857,
  51719. bottom: 42/959
  51720. }
  51721. },
  51722. back: {
  51723. height: math.unit(7.5, "feet"),
  51724. name: "Back",
  51725. image: {
  51726. source: "./media/characters/sven-hatisson/back.svg",
  51727. extra: 903/856,
  51728. bottom: 15/918
  51729. }
  51730. },
  51731. },
  51732. [
  51733. {
  51734. name: "Base Height",
  51735. height: math.unit(7.5, "feet")
  51736. },
  51737. {
  51738. name: "Usual Height",
  51739. height: math.unit(13.5, "feet"),
  51740. default: true
  51741. },
  51742. {
  51743. name: "Smaller Macro",
  51744. height: math.unit(85, "feet")
  51745. },
  51746. {
  51747. name: "Moderate Macro",
  51748. height: math.unit(320, "feet")
  51749. },
  51750. {
  51751. name: "Large Macro",
  51752. height: math.unit(1000, "feet")
  51753. },
  51754. {
  51755. name: "Largest Size",
  51756. height: math.unit(2, "miles")
  51757. },
  51758. ]
  51759. ))
  51760. characterMakers.push(() => makeCharacter(
  51761. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51762. {
  51763. side: {
  51764. height: math.unit(1.8, "meters"),
  51765. weight: math.unit(275, "kg"),
  51766. name: "Side",
  51767. image: {
  51768. source: "./media/characters/terra/side.svg",
  51769. extra: 1273/1147,
  51770. bottom: 0/1273
  51771. }
  51772. },
  51773. },
  51774. [
  51775. {
  51776. name: "Normal",
  51777. height: math.unit(16.2, "meters"),
  51778. default: true
  51779. },
  51780. ]
  51781. ))
  51782. characterMakers.push(() => makeCharacter(
  51783. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51784. {
  51785. borzoiFront: {
  51786. height: math.unit(6 + 9/12, "feet"),
  51787. name: "Front",
  51788. image: {
  51789. source: "./media/characters/rae/borzoi-front.svg",
  51790. extra: 1161/1098,
  51791. bottom: 31/1192
  51792. },
  51793. form: "borzoi",
  51794. default: true
  51795. },
  51796. werewolfFront: {
  51797. height: math.unit(8 + 7/12, "feet"),
  51798. name: "Front",
  51799. image: {
  51800. source: "./media/characters/rae/werewolf-front.svg",
  51801. extra: 1411/1334,
  51802. bottom: 127/1538
  51803. },
  51804. form: "werewolf",
  51805. default: true
  51806. },
  51807. },
  51808. [
  51809. {
  51810. name: "Normal",
  51811. height: math.unit(6 + 9/12, "feet"),
  51812. default: true,
  51813. form: "borzoi"
  51814. },
  51815. {
  51816. name: "Normal",
  51817. height: math.unit(8 + 7/12, "feet"),
  51818. default: true,
  51819. form: "werewolf"
  51820. },
  51821. ],
  51822. {
  51823. "borzoi": {
  51824. name: "Borzoi",
  51825. default: true
  51826. },
  51827. "werewolf": {
  51828. name: "Werewolf",
  51829. },
  51830. }
  51831. ))
  51832. characterMakers.push(() => makeCharacter(
  51833. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51834. {
  51835. front: {
  51836. height: math.unit(8 + 7/12, "feet"),
  51837. weight: math.unit(482, "lb"),
  51838. name: "Front",
  51839. image: {
  51840. source: "./media/characters/kit/front.svg",
  51841. extra: 1247/1103,
  51842. bottom: 41/1288
  51843. }
  51844. },
  51845. back: {
  51846. height: math.unit(8 + 7/12, "feet"),
  51847. weight: math.unit(482, "lb"),
  51848. name: "Back",
  51849. image: {
  51850. source: "./media/characters/kit/back.svg",
  51851. extra: 1252/1123,
  51852. bottom: 21/1273
  51853. }
  51854. },
  51855. paw: {
  51856. height: math.unit(1.46, "feet"),
  51857. name: "Paw",
  51858. image: {
  51859. source: "./media/characters/kit/paw.svg"
  51860. }
  51861. },
  51862. },
  51863. [
  51864. {
  51865. name: "Normal",
  51866. height: math.unit(2.61, "meters"),
  51867. default: true
  51868. },
  51869. {
  51870. name: "\"Tall\"",
  51871. height: math.unit(8.21, "meters")
  51872. },
  51873. {
  51874. name: "Tall",
  51875. height: math.unit(19.6, "meters")
  51876. },
  51877. {
  51878. name: "Very Tall",
  51879. height: math.unit(57.91, "meters")
  51880. },
  51881. {
  51882. name: "Semi-Macro",
  51883. height: math.unit(138.64, "meters")
  51884. },
  51885. {
  51886. name: "Macro",
  51887. height: math.unit(831.99, "meters")
  51888. },
  51889. {
  51890. name: "EX-Macro",
  51891. height: math.unit(96451121, "meters")
  51892. },
  51893. {
  51894. name: "S1-Omnipotent",
  51895. height: math.unit(4.42074e+9, "meters")
  51896. },
  51897. {
  51898. name: "S2-Omnipotent",
  51899. height: math.unit(9.42074e+17, "meters")
  51900. },
  51901. {
  51902. name: "Omnipotent",
  51903. height: math.unit(4.23112e+24, "meters")
  51904. },
  51905. {
  51906. name: "Hypergod",
  51907. height: math.unit(5.05176e+27, "meters")
  51908. },
  51909. {
  51910. name: "Hypergod-EX",
  51911. height: math.unit(9.45532e+49, "meters")
  51912. },
  51913. {
  51914. name: "Hypergod-SP",
  51915. height: math.unit(9.45532e+195, "meters")
  51916. },
  51917. ]
  51918. ))
  51919. characterMakers.push(() => makeCharacter(
  51920. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51921. {
  51922. side: {
  51923. height: math.unit(0.6, "meters"),
  51924. weight: math.unit(24, "kg"),
  51925. name: "Side",
  51926. image: {
  51927. source: "./media/characters/celeste/side.svg",
  51928. extra: 810/517,
  51929. bottom: 53/863
  51930. }
  51931. },
  51932. },
  51933. [
  51934. {
  51935. name: "Velociraptor",
  51936. height: math.unit(0.6, "meters"),
  51937. default: true
  51938. },
  51939. {
  51940. name: "Utahraptor",
  51941. height: math.unit(1.8, "meters")
  51942. },
  51943. {
  51944. name: "Gallimimus",
  51945. height: math.unit(4.0, "meters")
  51946. },
  51947. {
  51948. name: "Large",
  51949. height: math.unit(20, "meters")
  51950. },
  51951. {
  51952. name: "Planetary",
  51953. height: math.unit(50, "megameters")
  51954. },
  51955. {
  51956. name: "Stellar",
  51957. height: math.unit(1.5, "gigameters")
  51958. },
  51959. {
  51960. name: "Galactic",
  51961. height: math.unit(100, "exameters")
  51962. },
  51963. ]
  51964. ))
  51965. characterMakers.push(() => makeCharacter(
  51966. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51967. {
  51968. front: {
  51969. height: math.unit(6, "feet"),
  51970. weight: math.unit(210, "lb"),
  51971. name: "Front",
  51972. image: {
  51973. source: "./media/characters/glacia/front.svg",
  51974. extra: 958/901,
  51975. bottom: 45/1003
  51976. }
  51977. },
  51978. },
  51979. [
  51980. {
  51981. name: "Macro",
  51982. height: math.unit(1000, "meters"),
  51983. default: true
  51984. },
  51985. ]
  51986. ))
  51987. characterMakers.push(() => makeCharacter(
  51988. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51989. {
  51990. front: {
  51991. height: math.unit(4, "meters"),
  51992. name: "Front",
  51993. image: {
  51994. source: "./media/characters/giri/front.svg",
  51995. extra: 966/894,
  51996. bottom: 21/987
  51997. }
  51998. },
  51999. },
  52000. [
  52001. {
  52002. name: "Normal",
  52003. height: math.unit(4, "meters"),
  52004. default: true
  52005. },
  52006. ]
  52007. ))
  52008. characterMakers.push(() => makeCharacter(
  52009. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52010. {
  52011. back: {
  52012. height: math.unit(4, "feet"),
  52013. weight: math.unit(37, "lb"),
  52014. name: "Back",
  52015. image: {
  52016. source: "./media/characters/tin/back.svg",
  52017. extra: 845/780,
  52018. bottom: 28/873
  52019. }
  52020. },
  52021. },
  52022. [
  52023. {
  52024. name: "Normal",
  52025. height: math.unit(4, "feet"),
  52026. default: true
  52027. },
  52028. ]
  52029. ))
  52030. characterMakers.push(() => makeCharacter(
  52031. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52032. {
  52033. front: {
  52034. height: math.unit(25, "feet"),
  52035. name: "Front",
  52036. image: {
  52037. source: "./media/characters/cadenza-vivace/front.svg",
  52038. extra: 1842/1578,
  52039. bottom: 30/1872
  52040. }
  52041. },
  52042. },
  52043. [
  52044. {
  52045. name: "Macro",
  52046. height: math.unit(25, "feet"),
  52047. default: true
  52048. },
  52049. ]
  52050. ))
  52051. characterMakers.push(() => makeCharacter(
  52052. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52053. {
  52054. front: {
  52055. height: math.unit(10, "feet"),
  52056. weight: math.unit(625, "kg"),
  52057. name: "Front",
  52058. image: {
  52059. source: "./media/characters/zain/front.svg",
  52060. extra: 1682/1498,
  52061. bottom: 223/1905
  52062. }
  52063. },
  52064. back: {
  52065. height: math.unit(10, "feet"),
  52066. weight: math.unit(625, "kg"),
  52067. name: "Back",
  52068. image: {
  52069. source: "./media/characters/zain/back.svg",
  52070. extra: 1814/1657,
  52071. bottom: 152/1966
  52072. }
  52073. },
  52074. head: {
  52075. height: math.unit(10, "feet"),
  52076. weight: math.unit(625, "kg"),
  52077. name: "Head",
  52078. image: {
  52079. source: "./media/characters/zain/head.svg",
  52080. extra: 1059/762,
  52081. bottom: 0/1059
  52082. }
  52083. },
  52084. },
  52085. [
  52086. {
  52087. name: "Normal",
  52088. height: math.unit(10, "feet"),
  52089. default: true
  52090. },
  52091. ]
  52092. ))
  52093. characterMakers.push(() => makeCharacter(
  52094. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52095. {
  52096. front: {
  52097. height: math.unit(6 + 5/12, "feet"),
  52098. weight: math.unit(750, "lb"),
  52099. name: "Front",
  52100. image: {
  52101. source: "./media/characters/ruchex/front.svg",
  52102. extra: 877/820,
  52103. bottom: 17/894
  52104. },
  52105. extraAttributes: {
  52106. "width": {
  52107. name: "Width",
  52108. power: 1,
  52109. type: "length",
  52110. base: math.unit(4.757, "feet")
  52111. },
  52112. }
  52113. },
  52114. },
  52115. [
  52116. {
  52117. name: "Normal",
  52118. height: math.unit(6 + 5/12, "feet"),
  52119. default: true
  52120. },
  52121. ]
  52122. ))
  52123. characterMakers.push(() => makeCharacter(
  52124. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52125. {
  52126. dressedFront: {
  52127. height: math.unit(191, "cm"),
  52128. weight: math.unit(80, "kg"),
  52129. name: "Front",
  52130. image: {
  52131. source: "./media/characters/buster/dressed-front.svg",
  52132. extra: 1022/973,
  52133. bottom: 69/1091
  52134. }
  52135. },
  52136. dressedBack: {
  52137. height: math.unit(191, "cm"),
  52138. weight: math.unit(80, "kg"),
  52139. name: "Back",
  52140. image: {
  52141. source: "./media/characters/buster/dressed-back.svg",
  52142. extra: 1018/970,
  52143. bottom: 55/1073
  52144. }
  52145. },
  52146. nudeFront: {
  52147. height: math.unit(191, "cm"),
  52148. weight: math.unit(80, "kg"),
  52149. name: "Front (Nude)",
  52150. image: {
  52151. source: "./media/characters/buster/nude-front.svg",
  52152. extra: 1022/973,
  52153. bottom: 69/1091
  52154. }
  52155. },
  52156. nudeBack: {
  52157. height: math.unit(191, "cm"),
  52158. weight: math.unit(80, "kg"),
  52159. name: "Back (Nude)",
  52160. image: {
  52161. source: "./media/characters/buster/nude-back.svg",
  52162. extra: 1018/970,
  52163. bottom: 55/1073
  52164. }
  52165. },
  52166. dick: {
  52167. height: math.unit(2.59, "feet"),
  52168. name: "Dick",
  52169. image: {
  52170. source: "./media/characters/buster/dick.svg"
  52171. }
  52172. },
  52173. ass: {
  52174. height: math.unit(1.2, "feet"),
  52175. name: "Ass",
  52176. image: {
  52177. source: "./media/characters/buster/ass.svg"
  52178. }
  52179. },
  52180. },
  52181. [
  52182. {
  52183. name: "Normal",
  52184. height: math.unit(191, "cm"),
  52185. default: true
  52186. },
  52187. ]
  52188. ))
  52189. characterMakers.push(() => makeCharacter(
  52190. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52191. {
  52192. side: {
  52193. height: math.unit(8.1, "feet"),
  52194. weight: math.unit(3500, "lb"),
  52195. name: "Side",
  52196. image: {
  52197. source: "./media/characters/sonya/side.svg",
  52198. extra: 1730/1317,
  52199. bottom: 86/1816
  52200. }
  52201. },
  52202. },
  52203. [
  52204. {
  52205. name: "Normal",
  52206. height: math.unit(8.1, "feet"),
  52207. default: true
  52208. },
  52209. ]
  52210. ))
  52211. characterMakers.push(() => makeCharacter(
  52212. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52213. {
  52214. front: {
  52215. height: math.unit(6, "feet"),
  52216. weight: math.unit(150, "lb"),
  52217. name: "Front",
  52218. image: {
  52219. source: "./media/characters/cadence-andrysiak/front.svg",
  52220. extra: 1164/1121,
  52221. bottom: 60/1224
  52222. }
  52223. },
  52224. back: {
  52225. height: math.unit(6, "feet"),
  52226. weight: math.unit(150, "lb"),
  52227. name: "Back",
  52228. image: {
  52229. source: "./media/characters/cadence-andrysiak/back.svg",
  52230. extra: 1200/1165,
  52231. bottom: 9/1209
  52232. }
  52233. },
  52234. dressed: {
  52235. height: math.unit(6, "feet"),
  52236. weight: math.unit(150, "lb"),
  52237. name: "Dressed",
  52238. image: {
  52239. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52240. extra: 1164/1121,
  52241. bottom: 60/1224
  52242. }
  52243. },
  52244. },
  52245. [
  52246. {
  52247. name: "Micro",
  52248. height: math.unit(1, "mm")
  52249. },
  52250. {
  52251. name: "Normal",
  52252. height: math.unit(6, "feet"),
  52253. default: true
  52254. },
  52255. ]
  52256. ))
  52257. characterMakers.push(() => makeCharacter(
  52258. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52259. {
  52260. front: {
  52261. height: math.unit(60, "inches"),
  52262. weight: math.unit(16, "lb"),
  52263. preyCapacity: math.unit(80, "liters"),
  52264. name: "Front",
  52265. image: {
  52266. source: "./media/characters/penny-lynx/front.svg",
  52267. extra: 1959/1769,
  52268. bottom: 49/2008
  52269. }
  52270. },
  52271. },
  52272. [
  52273. {
  52274. name: "Nokia",
  52275. height: math.unit(2, "inches")
  52276. },
  52277. {
  52278. name: "Desktop",
  52279. height: math.unit(24, "inches")
  52280. },
  52281. {
  52282. name: "TV",
  52283. height: math.unit(60, "inches")
  52284. },
  52285. {
  52286. name: "Jumbotron",
  52287. height: math.unit(12, "feet")
  52288. },
  52289. {
  52290. name: "Billboard",
  52291. height: math.unit(48, "feet"),
  52292. default: true
  52293. },
  52294. {
  52295. name: "IMAX",
  52296. height: math.unit(96, "feet")
  52297. },
  52298. {
  52299. name: "SINGULARITY",
  52300. height: math.unit(864938, "miles")
  52301. },
  52302. ]
  52303. ))
  52304. characterMakers.push(() => makeCharacter(
  52305. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52306. {
  52307. front: {
  52308. height: math.unit(5 + 4/12, "feet"),
  52309. weight: math.unit(230, "lb"),
  52310. name: "Front",
  52311. image: {
  52312. source: "./media/characters/sukebe/front.svg",
  52313. extra: 2130/2038,
  52314. bottom: 90/2220
  52315. }
  52316. },
  52317. back: {
  52318. height: math.unit(3.48, "feet"),
  52319. weight: math.unit(230, "lb"),
  52320. name: "Back",
  52321. image: {
  52322. source: "./media/characters/sukebe/back.svg",
  52323. extra: 1670/1604,
  52324. bottom: 0/1670
  52325. }
  52326. },
  52327. },
  52328. [
  52329. {
  52330. name: "Normal",
  52331. height: math.unit(5 + 4/12, "feet"),
  52332. default: true
  52333. },
  52334. ]
  52335. ))
  52336. characterMakers.push(() => makeCharacter(
  52337. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52338. {
  52339. front: {
  52340. height: math.unit(6, "feet"),
  52341. name: "Front",
  52342. image: {
  52343. source: "./media/characters/nylla/front.svg",
  52344. extra: 1868/1699,
  52345. bottom: 97/1965
  52346. }
  52347. },
  52348. back: {
  52349. height: math.unit(6, "feet"),
  52350. name: "Back",
  52351. image: {
  52352. source: "./media/characters/nylla/back.svg",
  52353. extra: 1889/1712,
  52354. bottom: 93/1982
  52355. }
  52356. },
  52357. frontNsfw: {
  52358. height: math.unit(6, "feet"),
  52359. name: "Front (NSFW)",
  52360. image: {
  52361. source: "./media/characters/nylla/front-nsfw.svg",
  52362. extra: 1868/1699,
  52363. bottom: 97/1965
  52364. },
  52365. extraAttributes: {
  52366. "dickLength": {
  52367. name: "Dick Length",
  52368. power: 1,
  52369. type: "length",
  52370. base: math.unit(1.4, "feet")
  52371. },
  52372. "cumVolume": {
  52373. name: "Cum Volume",
  52374. power: 3,
  52375. type: "volume",
  52376. base: math.unit(100, "mL")
  52377. },
  52378. }
  52379. },
  52380. backNsfw: {
  52381. height: math.unit(6, "feet"),
  52382. name: "Back (NSFW)",
  52383. image: {
  52384. source: "./media/characters/nylla/back-nsfw.svg",
  52385. extra: 1889/1712,
  52386. bottom: 93/1982
  52387. }
  52388. },
  52389. maw: {
  52390. height: math.unit(2.10, "feet"),
  52391. name: "Maw",
  52392. image: {
  52393. source: "./media/characters/nylla/maw.svg"
  52394. }
  52395. },
  52396. paws: {
  52397. height: math.unit(2.06, "feet"),
  52398. name: "Paws",
  52399. image: {
  52400. source: "./media/characters/nylla/paws.svg"
  52401. }
  52402. },
  52403. muzzle: {
  52404. height: math.unit(0.61, "feet"),
  52405. name: "Muzzle",
  52406. image: {
  52407. source: "./media/characters/nylla/muzzle.svg"
  52408. }
  52409. },
  52410. sheath: {
  52411. height: math.unit(1.305, "feet"),
  52412. name: "Sheath",
  52413. image: {
  52414. source: "./media/characters/nylla/sheath.svg"
  52415. }
  52416. },
  52417. },
  52418. [
  52419. {
  52420. name: "Micro",
  52421. height: math.unit(7.5, "inches")
  52422. },
  52423. {
  52424. name: "Normal",
  52425. height: math.unit(7, "feet"),
  52426. default: true
  52427. },
  52428. {
  52429. name: "Macro",
  52430. height: math.unit(60, "feet")
  52431. },
  52432. {
  52433. name: "Mega",
  52434. height: math.unit(200, "feet")
  52435. },
  52436. ]
  52437. ))
  52438. characterMakers.push(() => makeCharacter(
  52439. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52440. {
  52441. front: {
  52442. height: math.unit(10, "feet"),
  52443. weight: math.unit(2300, "lb"),
  52444. name: "Front",
  52445. image: {
  52446. source: "./media/characters/hunt3r/front.svg",
  52447. extra: 1909/1742,
  52448. bottom: 46/1955
  52449. }
  52450. },
  52451. },
  52452. [
  52453. {
  52454. name: "Normal",
  52455. height: math.unit(10, "feet"),
  52456. default: true
  52457. },
  52458. ]
  52459. ))
  52460. characterMakers.push(() => makeCharacter(
  52461. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52462. {
  52463. dressed: {
  52464. height: math.unit(11, "feet"),
  52465. weight: math.unit(18500, "lb"),
  52466. preyCapacity: math.unit(9, "people"),
  52467. name: "Dressed",
  52468. image: {
  52469. source: "./media/characters/cylphis/dressed.svg",
  52470. extra: 1028/1003,
  52471. bottom: 75/1103
  52472. },
  52473. },
  52474. undressed: {
  52475. height: math.unit(11, "feet"),
  52476. weight: math.unit(18500, "lb"),
  52477. preyCapacity: math.unit(9, "people"),
  52478. name: "Undressed",
  52479. image: {
  52480. source: "./media/characters/cylphis/undressed.svg",
  52481. extra: 1028/1003,
  52482. bottom: 75/1103
  52483. }
  52484. },
  52485. full: {
  52486. height: math.unit(11, "feet"),
  52487. weight: math.unit(18500 + 150*9, "lb"),
  52488. preyCapacity: math.unit(9, "people"),
  52489. name: "Full",
  52490. image: {
  52491. source: "./media/characters/cylphis/full.svg",
  52492. extra: 1028/1003,
  52493. bottom: 75/1103
  52494. }
  52495. },
  52496. },
  52497. [
  52498. {
  52499. name: "Small",
  52500. height: math.unit(8, "feet")
  52501. },
  52502. {
  52503. name: "Normal",
  52504. height: math.unit(11, "feet"),
  52505. default: true
  52506. },
  52507. ]
  52508. ))
  52509. characterMakers.push(() => makeCharacter(
  52510. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52511. {
  52512. front: {
  52513. height: math.unit(2 + 7/12, "feet"),
  52514. name: "Front",
  52515. image: {
  52516. source: "./media/characters/orishan/front.svg",
  52517. extra: 1058/1023,
  52518. bottom: 23/1081
  52519. }
  52520. },
  52521. back: {
  52522. height: math.unit(2 + 7/12, "feet"),
  52523. name: "Back",
  52524. image: {
  52525. source: "./media/characters/orishan/back.svg",
  52526. extra: 1058/1023,
  52527. bottom: 23/1081
  52528. }
  52529. },
  52530. },
  52531. [
  52532. {
  52533. name: "Micro",
  52534. height: math.unit(2, "cm")
  52535. },
  52536. {
  52537. name: "Normal",
  52538. height: math.unit(2 + 7/12, "feet"),
  52539. default: true
  52540. },
  52541. ]
  52542. ))
  52543. characterMakers.push(() => makeCharacter(
  52544. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52545. {
  52546. front: {
  52547. height: math.unit(3, "meters"),
  52548. weight: math.unit(508, "kg"),
  52549. name: "Front",
  52550. image: {
  52551. source: "./media/characters/seranis/front.svg",
  52552. extra: 1478/1454,
  52553. bottom: 41/1519
  52554. }
  52555. },
  52556. },
  52557. [
  52558. {
  52559. name: "Normal",
  52560. height: math.unit(3, "meters"),
  52561. default: true
  52562. },
  52563. {
  52564. name: "Macro",
  52565. height: math.unit(108, "meters")
  52566. },
  52567. {
  52568. name: "Megamacro",
  52569. height: math.unit(1250, "meters")
  52570. },
  52571. ]
  52572. ))
  52573. characterMakers.push(() => makeCharacter(
  52574. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52575. {
  52576. undressed: {
  52577. height: math.unit(5 + 3/12, "feet"),
  52578. name: "Undressed",
  52579. image: {
  52580. source: "./media/characters/ankou/undressed.svg",
  52581. extra: 1301/1213,
  52582. bottom: 87/1388
  52583. }
  52584. },
  52585. dressed: {
  52586. height: math.unit(5 + 3/12, "feet"),
  52587. name: "Dressed",
  52588. image: {
  52589. source: "./media/characters/ankou/dressed.svg",
  52590. extra: 1301/1213,
  52591. bottom: 87/1388
  52592. }
  52593. },
  52594. head: {
  52595. height: math.unit(1.61, "feet"),
  52596. name: "Head",
  52597. image: {
  52598. source: "./media/characters/ankou/head.svg"
  52599. }
  52600. },
  52601. },
  52602. [
  52603. {
  52604. name: "Normal",
  52605. height: math.unit(5 + 3/12, "feet"),
  52606. default: true
  52607. },
  52608. ]
  52609. ))
  52610. characterMakers.push(() => makeCharacter(
  52611. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52612. {
  52613. side: {
  52614. height: math.unit(6 + 3/12, "feet"),
  52615. weight: math.unit(200, "kg"),
  52616. name: "Side",
  52617. image: {
  52618. source: "./media/characters/juniper-skunktaur/side.svg",
  52619. extra: 1574/1229,
  52620. bottom: 38/1612
  52621. }
  52622. },
  52623. front: {
  52624. height: math.unit(6 + 3/12, "feet"),
  52625. weight: math.unit(200, "kg"),
  52626. name: "Front",
  52627. image: {
  52628. source: "./media/characters/juniper-skunktaur/front.svg",
  52629. extra: 1337/1278,
  52630. bottom: 22/1359
  52631. }
  52632. },
  52633. back: {
  52634. height: math.unit(6 + 3/12, "feet"),
  52635. weight: math.unit(200, "kg"),
  52636. name: "Back",
  52637. image: {
  52638. source: "./media/characters/juniper-skunktaur/back.svg",
  52639. extra: 1618/1273,
  52640. bottom: 13/1631
  52641. }
  52642. },
  52643. top: {
  52644. height: math.unit(2.62, "feet"),
  52645. weight: math.unit(200, "kg"),
  52646. name: "Top",
  52647. image: {
  52648. source: "./media/characters/juniper-skunktaur/top.svg"
  52649. }
  52650. },
  52651. },
  52652. [
  52653. {
  52654. name: "Normal",
  52655. height: math.unit(6 + 3/12, "feet"),
  52656. default: true
  52657. },
  52658. ]
  52659. ))
  52660. characterMakers.push(() => makeCharacter(
  52661. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52662. {
  52663. front: {
  52664. height: math.unit(20.5, "feet"),
  52665. name: "Front",
  52666. image: {
  52667. source: "./media/characters/rei/front.svg",
  52668. extra: 1349/1195,
  52669. bottom: 31/1380
  52670. }
  52671. },
  52672. back: {
  52673. height: math.unit(20.5, "feet"),
  52674. name: "Back",
  52675. image: {
  52676. source: "./media/characters/rei/back.svg",
  52677. extra: 1358/1204,
  52678. bottom: 22/1380
  52679. }
  52680. },
  52681. pawsDigi: {
  52682. height: math.unit(3.45, "feet"),
  52683. name: "Paws (Digi)",
  52684. image: {
  52685. source: "./media/characters/rei/paws-digi.svg"
  52686. }
  52687. },
  52688. pawsPlanti: {
  52689. height: math.unit(3.45, "feet"),
  52690. name: "Paws (Planti)",
  52691. image: {
  52692. source: "./media/characters/rei/paws-planti.svg"
  52693. }
  52694. },
  52695. },
  52696. [
  52697. {
  52698. name: "Normal",
  52699. height: math.unit(20.5, "feet"),
  52700. default: true
  52701. },
  52702. ]
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52706. {
  52707. front: {
  52708. height: math.unit(5 + 11/12, "feet"),
  52709. name: "Front",
  52710. image: {
  52711. source: "./media/characters/carina/front.svg",
  52712. extra: 1720/1449,
  52713. bottom: 14/1734
  52714. }
  52715. },
  52716. back: {
  52717. height: math.unit(5 + 11/12, "feet"),
  52718. name: "Back",
  52719. image: {
  52720. source: "./media/characters/carina/back.svg",
  52721. extra: 1493/1445,
  52722. bottom: 17/1510
  52723. }
  52724. },
  52725. paw: {
  52726. height: math.unit(0.92, "feet"),
  52727. name: "Paw",
  52728. image: {
  52729. source: "./media/characters/carina/paw.svg"
  52730. }
  52731. },
  52732. },
  52733. [
  52734. {
  52735. name: "Normal",
  52736. height: math.unit(5 + 11/12, "feet"),
  52737. default: true
  52738. },
  52739. ]
  52740. ))
  52741. characterMakers.push(() => makeCharacter(
  52742. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52743. {
  52744. normal_front: {
  52745. height: math.unit(4.88, "meters"),
  52746. name: "Front",
  52747. image: {
  52748. source: "./media/characters/maya/normal-front.svg",
  52749. extra: 1222/1145,
  52750. bottom: 57/1279
  52751. },
  52752. form: "normal",
  52753. default: true
  52754. },
  52755. monstrous_front: {
  52756. height: math.unit(10, "meters"),
  52757. name: "Front",
  52758. image: {
  52759. source: "./media/characters/maya/monstrous-front.svg",
  52760. extra: 1523/1109,
  52761. bottom: 113/1636
  52762. },
  52763. form: "monstrous",
  52764. extraAttributes: {
  52765. "swallowSize": {
  52766. name: "Tailmaw Bite Size",
  52767. power: 3,
  52768. type: "volume",
  52769. base: math.unit(43000, "liters")
  52770. },
  52771. }
  52772. },
  52773. taur_front: {
  52774. height: math.unit(10, "meters"),
  52775. name: "Front",
  52776. image: {
  52777. source: "./media/characters/maya/taur-front.svg",
  52778. extra: 743/506,
  52779. bottom: 101/844
  52780. },
  52781. form: "taur",
  52782. },
  52783. },
  52784. [
  52785. {
  52786. name: "Normal",
  52787. height: math.unit(4.88, "meters"),
  52788. default: true,
  52789. form: "normal"
  52790. },
  52791. {
  52792. name: "Macro",
  52793. height: math.unit(38.1, "meters"),
  52794. form: "normal"
  52795. },
  52796. {
  52797. name: "Macro+",
  52798. height: math.unit(152.4, "meters"),
  52799. form: "normal"
  52800. },
  52801. {
  52802. name: "Macro++",
  52803. height: math.unit(16.09, "km"),
  52804. form: "normal"
  52805. },
  52806. {
  52807. name: "Mega-macro",
  52808. height: math.unit(700, "megameters"),
  52809. form: "normal"
  52810. },
  52811. {
  52812. name: "Satiated",
  52813. height: math.unit(10, "meters"),
  52814. default: true,
  52815. form: "monstrous"
  52816. },
  52817. {
  52818. name: "Hungry",
  52819. height: math.unit(75, "meters"),
  52820. form: "monstrous"
  52821. },
  52822. {
  52823. name: "Ravenous",
  52824. height: math.unit(500, "meters"),
  52825. form: "monstrous"
  52826. },
  52827. {
  52828. name: "\"Normal\"",
  52829. height: math.unit(10, "meters"),
  52830. form: "taur"
  52831. },
  52832. {
  52833. name: "Macro",
  52834. height: math.unit(50, "meters"),
  52835. form: "taur"
  52836. },
  52837. ],
  52838. {
  52839. "normal": {
  52840. name: "Normal",
  52841. default: true
  52842. },
  52843. "monstrous": {
  52844. name: "Monstrous",
  52845. },
  52846. "taur": {
  52847. name: "Taur",
  52848. },
  52849. }
  52850. ))
  52851. characterMakers.push(() => makeCharacter(
  52852. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52853. {
  52854. front: {
  52855. height: math.unit(6 + 2/12, "feet"),
  52856. weight: math.unit(500, "lb"),
  52857. preyCapacity: math.unit(4, "people"),
  52858. name: "Front",
  52859. image: {
  52860. source: "./media/characters/yepir/front.svg"
  52861. }
  52862. },
  52863. side: {
  52864. height: math.unit(6 + 2/12, "feet"),
  52865. weight: math.unit(500, "lb"),
  52866. preyCapacity: math.unit(4, "people"),
  52867. name: "Side",
  52868. image: {
  52869. source: "./media/characters/yepir/side.svg"
  52870. }
  52871. },
  52872. paw: {
  52873. height: math.unit(1.05, "feet"),
  52874. name: "Paw",
  52875. image: {
  52876. source: "./media/characters/yepir/paw.svg"
  52877. }
  52878. },
  52879. },
  52880. [
  52881. {
  52882. name: "Normal",
  52883. height: math.unit(6 + 2/12, "feet"),
  52884. default: true
  52885. },
  52886. ]
  52887. ))
  52888. characterMakers.push(() => makeCharacter(
  52889. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52890. {
  52891. front: {
  52892. height: math.unit(5 + 4/12, "feet"),
  52893. name: "Front",
  52894. image: {
  52895. source: "./media/characters/russec/front.svg",
  52896. extra: 1926/1626,
  52897. bottom: 72/1998
  52898. }
  52899. },
  52900. back: {
  52901. height: math.unit(5 + 4/12, "feet"),
  52902. name: "Back",
  52903. image: {
  52904. source: "./media/characters/russec/back.svg",
  52905. extra: 1910/1591,
  52906. bottom: 48/1958
  52907. }
  52908. },
  52909. },
  52910. [
  52911. {
  52912. name: "Small",
  52913. height: math.unit(5 + 4/12, "feet")
  52914. },
  52915. {
  52916. name: "Normal",
  52917. height: math.unit(72, "feet"),
  52918. default: true
  52919. },
  52920. ]
  52921. ))
  52922. characterMakers.push(() => makeCharacter(
  52923. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52924. {
  52925. side: {
  52926. height: math.unit(12, "feet"),
  52927. name: "Side",
  52928. image: {
  52929. source: "./media/characters/cianus/side.svg",
  52930. extra: 808/526,
  52931. bottom: 61/869
  52932. }
  52933. },
  52934. },
  52935. [
  52936. {
  52937. name: "Normal",
  52938. height: math.unit(12, "feet"),
  52939. default: true
  52940. },
  52941. ]
  52942. ))
  52943. characterMakers.push(() => makeCharacter(
  52944. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52945. {
  52946. front: {
  52947. height: math.unit(9 + 6/12, "feet"),
  52948. weight: math.unit(300, "lb"),
  52949. name: "Front",
  52950. image: {
  52951. source: "./media/characters/ahab/front.svg",
  52952. extra: 1897/1868,
  52953. bottom: 121/2018
  52954. }
  52955. },
  52956. frontNsfw: {
  52957. height: math.unit(9 + 6/12, "feet"),
  52958. weight: math.unit(300, "lb"),
  52959. name: "Front-nsfw",
  52960. image: {
  52961. source: "./media/characters/ahab/front-nsfw.svg",
  52962. extra: 1897/1868,
  52963. bottom: 121/2018
  52964. }
  52965. },
  52966. },
  52967. [
  52968. {
  52969. name: "Normal",
  52970. height: math.unit(9 + 6/12, "feet")
  52971. },
  52972. {
  52973. name: "Macro",
  52974. height: math.unit(657, "feet"),
  52975. default: true
  52976. },
  52977. ]
  52978. ))
  52979. characterMakers.push(() => makeCharacter(
  52980. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52981. {
  52982. front: {
  52983. height: math.unit(2.69, "meters"),
  52984. weight: math.unit(132, "kg"),
  52985. name: "Front",
  52986. image: {
  52987. source: "./media/characters/aarkus/front.svg",
  52988. extra: 1400/1231,
  52989. bottom: 34/1434
  52990. }
  52991. },
  52992. back: {
  52993. height: math.unit(2.69, "meters"),
  52994. weight: math.unit(132, "kg"),
  52995. name: "Back",
  52996. image: {
  52997. source: "./media/characters/aarkus/back.svg",
  52998. extra: 1381/1218,
  52999. bottom: 30/1411
  53000. }
  53001. },
  53002. frontNsfw: {
  53003. height: math.unit(2.69, "meters"),
  53004. weight: math.unit(132, "kg"),
  53005. name: "Front (NSFW)",
  53006. image: {
  53007. source: "./media/characters/aarkus/front-nsfw.svg",
  53008. extra: 1400/1231,
  53009. bottom: 34/1434
  53010. }
  53011. },
  53012. foot: {
  53013. height: math.unit(1.45, "feet"),
  53014. name: "Foot",
  53015. image: {
  53016. source: "./media/characters/aarkus/foot.svg"
  53017. }
  53018. },
  53019. head: {
  53020. height: math.unit(2.85, "feet"),
  53021. name: "Head",
  53022. image: {
  53023. source: "./media/characters/aarkus/head.svg"
  53024. }
  53025. },
  53026. headAlt: {
  53027. height: math.unit(3.07, "feet"),
  53028. name: "Head (Alt)",
  53029. image: {
  53030. source: "./media/characters/aarkus/head-alt.svg"
  53031. }
  53032. },
  53033. mouth: {
  53034. height: math.unit(1.25, "feet"),
  53035. name: "Mouth",
  53036. image: {
  53037. source: "./media/characters/aarkus/mouth.svg"
  53038. }
  53039. },
  53040. dick: {
  53041. height: math.unit(1.77, "feet"),
  53042. name: "Dick",
  53043. image: {
  53044. source: "./media/characters/aarkus/dick.svg"
  53045. }
  53046. },
  53047. },
  53048. [
  53049. {
  53050. name: "Normal",
  53051. height: math.unit(2.69, "meters"),
  53052. default: true
  53053. },
  53054. {
  53055. name: "Macro",
  53056. height: math.unit(269, "meters")
  53057. },
  53058. {
  53059. name: "Macro+",
  53060. height: math.unit(672.5, "meters")
  53061. },
  53062. {
  53063. name: "Megamacro",
  53064. height: math.unit(2.017, "km")
  53065. },
  53066. ]
  53067. ))
  53068. characterMakers.push(() => makeCharacter(
  53069. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53070. {
  53071. front: {
  53072. height: math.unit(23.47, "cm"),
  53073. weight: math.unit(600, "grams"),
  53074. name: "Front",
  53075. image: {
  53076. source: "./media/characters/diode/front.svg",
  53077. extra: 1778/1396,
  53078. bottom: 95/1873
  53079. }
  53080. },
  53081. side: {
  53082. height: math.unit(23.47, "cm"),
  53083. weight: math.unit(600, "grams"),
  53084. name: "Side",
  53085. image: {
  53086. source: "./media/characters/diode/side.svg",
  53087. extra: 1831/1404,
  53088. bottom: 86/1917
  53089. }
  53090. },
  53091. wings: {
  53092. height: math.unit(0.683, "feet"),
  53093. name: "Wings",
  53094. image: {
  53095. source: "./media/characters/diode/wings.svg"
  53096. }
  53097. },
  53098. },
  53099. [
  53100. {
  53101. name: "Normal",
  53102. height: math.unit(23.47, "cm"),
  53103. default: true
  53104. },
  53105. ]
  53106. ))
  53107. characterMakers.push(() => makeCharacter(
  53108. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53109. {
  53110. front: {
  53111. height: math.unit(6 + 3/12, "feet"),
  53112. weight: math.unit(250, "lb"),
  53113. name: "Front",
  53114. image: {
  53115. source: "./media/characters/reika/front.svg",
  53116. extra: 1120/1078,
  53117. bottom: 86/1206
  53118. }
  53119. },
  53120. },
  53121. [
  53122. {
  53123. name: "Normal",
  53124. height: math.unit(6 + 3/12, "feet"),
  53125. default: true
  53126. },
  53127. ]
  53128. ))
  53129. characterMakers.push(() => makeCharacter(
  53130. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53131. {
  53132. front: {
  53133. height: math.unit(16 + 8/12, "feet"),
  53134. weight: math.unit(9000, "lb"),
  53135. name: "Front",
  53136. image: {
  53137. source: "./media/characters/lokuto-takama/front.svg",
  53138. extra: 1774/1632,
  53139. bottom: 147/1921
  53140. },
  53141. extraAttributes: {
  53142. "bustWidth": {
  53143. name: "Bust Width",
  53144. power: 1,
  53145. type: "length",
  53146. base: math.unit(2.4, "meters")
  53147. },
  53148. "breastWeight": {
  53149. name: "Breast Weight",
  53150. power: 3,
  53151. type: "mass",
  53152. base: math.unit(1000, "kg")
  53153. },
  53154. }
  53155. },
  53156. },
  53157. [
  53158. {
  53159. name: "Normal",
  53160. height: math.unit(16 + 8/12, "feet"),
  53161. default: true
  53162. },
  53163. ]
  53164. ))
  53165. characterMakers.push(() => makeCharacter(
  53166. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53167. {
  53168. front: {
  53169. height: math.unit(10, "cm"),
  53170. weight: math.unit(850, "grams"),
  53171. name: "Front",
  53172. image: {
  53173. source: "./media/characters/owak-bone/front.svg",
  53174. extra: 1965/1801,
  53175. bottom: 31/1996
  53176. }
  53177. },
  53178. },
  53179. [
  53180. {
  53181. name: "Normal",
  53182. height: math.unit(10, "cm"),
  53183. default: true
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53189. {
  53190. front: {
  53191. height: math.unit(2 + 6/12, "feet"),
  53192. weight: math.unit(9, "lb"),
  53193. name: "Front",
  53194. image: {
  53195. source: "./media/characters/muffin/front.svg",
  53196. extra: 1220/1195,
  53197. bottom: 84/1304
  53198. }
  53199. },
  53200. },
  53201. [
  53202. {
  53203. name: "Normal",
  53204. height: math.unit(2 + 6/12, "feet"),
  53205. default: true
  53206. },
  53207. ]
  53208. ))
  53209. characterMakers.push(() => makeCharacter(
  53210. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53211. {
  53212. front: {
  53213. height: math.unit(7, "feet"),
  53214. name: "Front",
  53215. image: {
  53216. source: "./media/characters/chimera/front.svg",
  53217. extra: 1752/1614,
  53218. bottom: 68/1820
  53219. }
  53220. },
  53221. },
  53222. [
  53223. {
  53224. name: "Normal",
  53225. height: math.unit(7, "feet")
  53226. },
  53227. {
  53228. name: "Gigamacro",
  53229. height: math.unit(2.9, "gigameters"),
  53230. default: true
  53231. },
  53232. {
  53233. name: "Universal",
  53234. height: math.unit(1.56e26, "yottameters")
  53235. },
  53236. ]
  53237. ))
  53238. characterMakers.push(() => makeCharacter(
  53239. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53240. {
  53241. front: {
  53242. height: math.unit(3, "feet"),
  53243. weight: math.unit(20, "lb"),
  53244. name: "Front",
  53245. image: {
  53246. source: "./media/characters/kit-fennec-fox/front.svg",
  53247. extra: 1027/932,
  53248. bottom: 16/1043
  53249. }
  53250. },
  53251. back: {
  53252. height: math.unit(3, "feet"),
  53253. weight: math.unit(20, "lb"),
  53254. name: "Back",
  53255. image: {
  53256. source: "./media/characters/kit-fennec-fox/back.svg",
  53257. extra: 1027/932,
  53258. bottom: 16/1043
  53259. }
  53260. },
  53261. },
  53262. [
  53263. {
  53264. name: "Normal",
  53265. height: math.unit(3, "feet"),
  53266. default: true
  53267. },
  53268. ]
  53269. ))
  53270. characterMakers.push(() => makeCharacter(
  53271. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53272. {
  53273. front: {
  53274. height: math.unit(167, "cm"),
  53275. name: "Front",
  53276. image: {
  53277. source: "./media/characters/blue-otter/front.svg",
  53278. extra: 1951/1920,
  53279. bottom: 31/1982
  53280. }
  53281. },
  53282. },
  53283. [
  53284. {
  53285. name: "Otter-Sized",
  53286. height: math.unit(100, "cm")
  53287. },
  53288. {
  53289. name: "Normal",
  53290. height: math.unit(167, "cm"),
  53291. default: true
  53292. },
  53293. ]
  53294. ))
  53295. characterMakers.push(() => makeCharacter(
  53296. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53297. {
  53298. front: {
  53299. height: math.unit(4 + 4/12, "feet"),
  53300. name: "Front",
  53301. image: {
  53302. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53303. extra: 1072/1067,
  53304. bottom: 117/1189
  53305. }
  53306. },
  53307. back: {
  53308. height: math.unit(4 + 4/12, "feet"),
  53309. name: "Back",
  53310. image: {
  53311. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53312. extra: 1135/1129,
  53313. bottom: 57/1192
  53314. }
  53315. },
  53316. head: {
  53317. height: math.unit(1.77, "feet"),
  53318. name: "Head",
  53319. image: {
  53320. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53321. }
  53322. },
  53323. },
  53324. [
  53325. {
  53326. name: "Normal",
  53327. height: math.unit(4 + 4/12, "feet"),
  53328. default: true
  53329. },
  53330. ]
  53331. ))
  53332. characterMakers.push(() => makeCharacter(
  53333. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53334. {
  53335. front: {
  53336. height: math.unit(2, "inches"),
  53337. name: "Front",
  53338. image: {
  53339. source: "./media/characters/carley-hartford/front.svg",
  53340. extra: 1035/988,
  53341. bottom: 23/1058
  53342. }
  53343. },
  53344. back: {
  53345. height: math.unit(2, "inches"),
  53346. name: "Back",
  53347. image: {
  53348. source: "./media/characters/carley-hartford/back.svg",
  53349. extra: 1035/988,
  53350. bottom: 23/1058
  53351. }
  53352. },
  53353. dressed: {
  53354. height: math.unit(2, "inches"),
  53355. name: "Dressed",
  53356. image: {
  53357. source: "./media/characters/carley-hartford/dressed.svg",
  53358. extra: 651/620,
  53359. bottom: 0/651
  53360. }
  53361. },
  53362. },
  53363. [
  53364. {
  53365. name: "Micro",
  53366. height: math.unit(2, "inches"),
  53367. default: true
  53368. },
  53369. {
  53370. name: "Macro",
  53371. height: math.unit(6 + 3/12, "feet")
  53372. },
  53373. ]
  53374. ))
  53375. characterMakers.push(() => makeCharacter(
  53376. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53377. {
  53378. front: {
  53379. height: math.unit(2 + 3/12, "feet"),
  53380. weight: math.unit(15 + 7/16, "lb"),
  53381. name: "Front",
  53382. image: {
  53383. source: "./media/characters/duke/front.svg",
  53384. extra: 910/815,
  53385. bottom: 30/940
  53386. }
  53387. },
  53388. },
  53389. [
  53390. {
  53391. name: "Normal",
  53392. height: math.unit(2 + 3/12, "feet"),
  53393. default: true
  53394. },
  53395. ]
  53396. ))
  53397. characterMakers.push(() => makeCharacter(
  53398. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53399. {
  53400. front: {
  53401. height: math.unit(5 + 4/12, "feet"),
  53402. weight: math.unit(156, "lb"),
  53403. name: "Front",
  53404. image: {
  53405. source: "./media/characters/dein/front.svg",
  53406. extra: 855/815,
  53407. bottom: 48/903
  53408. }
  53409. },
  53410. side: {
  53411. height: math.unit(5 + 4/12, "feet"),
  53412. weight: math.unit(156, "lb"),
  53413. name: "side",
  53414. image: {
  53415. source: "./media/characters/dein/side.svg",
  53416. extra: 846/803,
  53417. bottom: 25/871
  53418. }
  53419. },
  53420. maw: {
  53421. height: math.unit(1.45, "feet"),
  53422. name: "Maw",
  53423. image: {
  53424. source: "./media/characters/dein/maw.svg"
  53425. }
  53426. },
  53427. },
  53428. [
  53429. {
  53430. name: "Ferret Sized",
  53431. height: math.unit(2 + 5/12, "feet")
  53432. },
  53433. {
  53434. name: "Normal",
  53435. height: math.unit(5 + 4/12, "feet"),
  53436. default: true
  53437. },
  53438. ]
  53439. ))
  53440. characterMakers.push(() => makeCharacter(
  53441. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53442. {
  53443. front: {
  53444. height: math.unit(84 + 8/12, "feet"),
  53445. weight: math.unit(942180, "lb"),
  53446. name: "Front",
  53447. image: {
  53448. source: "./media/characters/daurine-arima/front.svg",
  53449. extra: 1989/1782,
  53450. bottom: 37/2026
  53451. }
  53452. },
  53453. side: {
  53454. height: math.unit(84 + 8/12, "feet"),
  53455. weight: math.unit(942180, "lb"),
  53456. name: "Side",
  53457. image: {
  53458. source: "./media/characters/daurine-arima/side.svg",
  53459. extra: 1997/1790,
  53460. bottom: 21/2018
  53461. }
  53462. },
  53463. back: {
  53464. height: math.unit(84 + 8/12, "feet"),
  53465. weight: math.unit(942180, "lb"),
  53466. name: "Back",
  53467. image: {
  53468. source: "./media/characters/daurine-arima/back.svg",
  53469. extra: 1992/1800,
  53470. bottom: 12/2004
  53471. }
  53472. },
  53473. head: {
  53474. height: math.unit(15.5, "feet"),
  53475. name: "Head",
  53476. image: {
  53477. source: "./media/characters/daurine-arima/head.svg"
  53478. }
  53479. },
  53480. headAlt: {
  53481. height: math.unit(19.19, "feet"),
  53482. name: "Head (Alt)",
  53483. image: {
  53484. source: "./media/characters/daurine-arima/head-alt.svg"
  53485. }
  53486. },
  53487. },
  53488. [
  53489. {
  53490. name: "Minimum height",
  53491. height: math.unit(8 + 10/12, "feet")
  53492. },
  53493. {
  53494. name: "Comfort height",
  53495. height: math.unit(19 + 6 /12, "feet")
  53496. },
  53497. {
  53498. name: "\"Normal\" height",
  53499. height: math.unit(28 + 10/12, "feet")
  53500. },
  53501. {
  53502. name: "Base height",
  53503. height: math.unit(84 + 8/12, "feet"),
  53504. default: true
  53505. },
  53506. {
  53507. name: "Mini-macro",
  53508. height: math.unit(2360, "feet")
  53509. },
  53510. {
  53511. name: "Macro",
  53512. height: math.unit(10, "miles")
  53513. },
  53514. {
  53515. name: "Goddess",
  53516. height: math.unit(9.99e40, "yottameters")
  53517. },
  53518. ]
  53519. ))
  53520. characterMakers.push(() => makeCharacter(
  53521. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53522. {
  53523. front: {
  53524. height: math.unit(2.3, "meters"),
  53525. name: "Front",
  53526. image: {
  53527. source: "./media/characters/cilenomon/front.svg",
  53528. extra: 1963/1778,
  53529. bottom: 54/2017
  53530. }
  53531. },
  53532. },
  53533. [
  53534. {
  53535. name: "Normal",
  53536. height: math.unit(2.3, "meters"),
  53537. default: true
  53538. },
  53539. {
  53540. name: "Big",
  53541. height: math.unit(5, "meters")
  53542. },
  53543. {
  53544. name: "Macro",
  53545. height: math.unit(30, "meters")
  53546. },
  53547. {
  53548. name: "True",
  53549. height: math.unit(1, "universe")
  53550. },
  53551. ]
  53552. ))
  53553. characterMakers.push(() => makeCharacter(
  53554. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53555. {
  53556. front: {
  53557. height: math.unit(5, "feet"),
  53558. name: "Front",
  53559. image: {
  53560. source: "./media/characters/sen-mink/front.svg",
  53561. extra: 1727/1675,
  53562. bottom: 35/1762
  53563. }
  53564. },
  53565. },
  53566. [
  53567. {
  53568. name: "Normal",
  53569. height: math.unit(5, "feet"),
  53570. default: true
  53571. },
  53572. ]
  53573. ))
  53574. characterMakers.push(() => makeCharacter(
  53575. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53576. {
  53577. front: {
  53578. height: math.unit(5.42999, "feet"),
  53579. weight: math.unit(100, "lb"),
  53580. name: "Front",
  53581. image: {
  53582. source: "./media/characters/ophois/front.svg",
  53583. extra: 1429/1286,
  53584. bottom: 60/1489
  53585. }
  53586. },
  53587. },
  53588. [
  53589. {
  53590. name: "Normal",
  53591. height: math.unit(5.42999, "feet"),
  53592. default: true
  53593. },
  53594. ]
  53595. ))
  53596. characterMakers.push(() => makeCharacter(
  53597. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53598. {
  53599. front: {
  53600. height: math.unit(2, "meters"),
  53601. name: "Front",
  53602. image: {
  53603. source: "./media/characters/riley/front.svg",
  53604. extra: 1779/1754,
  53605. bottom: 139/1918
  53606. }
  53607. },
  53608. },
  53609. [
  53610. {
  53611. name: "Normal",
  53612. height: math.unit(2, "meters"),
  53613. default: true
  53614. },
  53615. ]
  53616. ))
  53617. characterMakers.push(() => makeCharacter(
  53618. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53619. {
  53620. front: {
  53621. height: math.unit(6 + 2/12, "feet"),
  53622. weight: math.unit(195, "lb"),
  53623. preyCapacity: math.unit(6, "people"),
  53624. name: "Front",
  53625. image: {
  53626. source: "./media/characters/shuken-flash/front.svg",
  53627. extra: 1905/1739,
  53628. bottom: 65/1970
  53629. }
  53630. },
  53631. back: {
  53632. height: math.unit(6 + 2/12, "feet"),
  53633. weight: math.unit(195, "lb"),
  53634. preyCapacity: math.unit(6, "people"),
  53635. name: "Back",
  53636. image: {
  53637. source: "./media/characters/shuken-flash/back.svg",
  53638. extra: 1912/1751,
  53639. bottom: 13/1925
  53640. }
  53641. },
  53642. },
  53643. [
  53644. {
  53645. name: "Normal",
  53646. height: math.unit(6 + 2/12, "feet"),
  53647. default: true
  53648. },
  53649. ]
  53650. ))
  53651. characterMakers.push(() => makeCharacter(
  53652. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53653. {
  53654. front: {
  53655. height: math.unit(5 + 9/12, "feet"),
  53656. weight: math.unit(150, "lb"),
  53657. name: "Front",
  53658. image: {
  53659. source: "./media/characters/plat/front.svg",
  53660. extra: 1816/1703,
  53661. bottom: 43/1859
  53662. }
  53663. },
  53664. side: {
  53665. height: math.unit(5 + 9/12, "feet"),
  53666. weight: math.unit(300, "lb"),
  53667. name: "Side",
  53668. image: {
  53669. source: "./media/characters/plat/side.svg",
  53670. extra: 1824/1699,
  53671. bottom: 18/1842
  53672. }
  53673. },
  53674. },
  53675. [
  53676. {
  53677. name: "Normal",
  53678. height: math.unit(5 + 9/12, "feet"),
  53679. default: true
  53680. },
  53681. ]
  53682. ))
  53683. characterMakers.push(() => makeCharacter(
  53684. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53685. {
  53686. front: {
  53687. height: math.unit(9, "feet"),
  53688. weight: math.unit(1800, "lb"),
  53689. name: "Front",
  53690. image: {
  53691. source: "./media/characters/elaine/front.svg",
  53692. extra: 1833/1354,
  53693. bottom: 25/1858
  53694. }
  53695. },
  53696. back: {
  53697. height: math.unit(8.8, "feet"),
  53698. weight: math.unit(1800, "lb"),
  53699. name: "Back",
  53700. image: {
  53701. source: "./media/characters/elaine/back.svg",
  53702. extra: 1641/1233,
  53703. bottom: 53/1694
  53704. }
  53705. },
  53706. },
  53707. [
  53708. {
  53709. name: "Normal",
  53710. height: math.unit(9, "feet"),
  53711. default: true
  53712. },
  53713. ]
  53714. ))
  53715. characterMakers.push(() => makeCharacter(
  53716. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53717. {
  53718. front: {
  53719. height: math.unit(17 + 9/12, "feet"),
  53720. weight: math.unit(8000, "lb"),
  53721. name: "Front",
  53722. image: {
  53723. source: "./media/characters/vera-raven/front.svg",
  53724. extra: 1457/1412,
  53725. bottom: 121/1578
  53726. }
  53727. },
  53728. side: {
  53729. height: math.unit(17 + 9/12, "feet"),
  53730. weight: math.unit(8000, "lb"),
  53731. name: "Side",
  53732. image: {
  53733. source: "./media/characters/vera-raven/side.svg",
  53734. extra: 1510/1464,
  53735. bottom: 54/1564
  53736. }
  53737. },
  53738. },
  53739. [
  53740. {
  53741. name: "Normal",
  53742. height: math.unit(17 + 9/12, "feet"),
  53743. default: true
  53744. },
  53745. ]
  53746. ))
  53747. characterMakers.push(() => makeCharacter(
  53748. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53749. {
  53750. dressed: {
  53751. height: math.unit(6 + 9/12, "feet"),
  53752. name: "Dressed",
  53753. image: {
  53754. source: "./media/characters/nakisha/dressed.svg",
  53755. extra: 1909/1757,
  53756. bottom: 48/1957
  53757. }
  53758. },
  53759. nude: {
  53760. height: math.unit(6 + 9/12, "feet"),
  53761. name: "Nude",
  53762. image: {
  53763. source: "./media/characters/nakisha/nude.svg",
  53764. extra: 1917/1765,
  53765. bottom: 34/1951
  53766. }
  53767. },
  53768. },
  53769. [
  53770. {
  53771. name: "Normal",
  53772. height: math.unit(6 + 9/12, "feet"),
  53773. default: true
  53774. },
  53775. ]
  53776. ))
  53777. characterMakers.push(() => makeCharacter(
  53778. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53779. {
  53780. front: {
  53781. height: math.unit(87, "meters"),
  53782. name: "Front",
  53783. image: {
  53784. source: "./media/characters/serafin/front.svg",
  53785. extra: 1919/1776,
  53786. bottom: 65/1984
  53787. }
  53788. },
  53789. },
  53790. [
  53791. {
  53792. name: "Normal",
  53793. height: math.unit(87, "meters"),
  53794. default: true
  53795. },
  53796. ]
  53797. ))
  53798. characterMakers.push(() => makeCharacter(
  53799. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53800. {
  53801. front: {
  53802. height: math.unit(6, "feet"),
  53803. weight: math.unit(200, "lb"),
  53804. name: "Front",
  53805. image: {
  53806. source: "./media/characters/poptart/front.svg",
  53807. extra: 615/583,
  53808. bottom: 23/638
  53809. }
  53810. },
  53811. back: {
  53812. height: math.unit(6, "feet"),
  53813. weight: math.unit(200, "lb"),
  53814. name: "Back",
  53815. image: {
  53816. source: "./media/characters/poptart/back.svg",
  53817. extra: 617/584,
  53818. bottom: 22/639
  53819. }
  53820. },
  53821. frontNsfw: {
  53822. height: math.unit(6, "feet"),
  53823. weight: math.unit(200, "lb"),
  53824. name: "Front (NSFW)",
  53825. image: {
  53826. source: "./media/characters/poptart/front-nsfw.svg",
  53827. extra: 615/583,
  53828. bottom: 23/638
  53829. }
  53830. },
  53831. backNsfw: {
  53832. height: math.unit(6, "feet"),
  53833. weight: math.unit(200, "lb"),
  53834. name: "Back (NSFW)",
  53835. image: {
  53836. source: "./media/characters/poptart/back-nsfw.svg",
  53837. extra: 617/584,
  53838. bottom: 22/639
  53839. }
  53840. },
  53841. hand: {
  53842. height: math.unit(1.14, "feet"),
  53843. name: "Hand",
  53844. image: {
  53845. source: "./media/characters/poptart/hand.svg"
  53846. }
  53847. },
  53848. foot: {
  53849. height: math.unit(1.5, "feet"),
  53850. name: "Foot",
  53851. image: {
  53852. source: "./media/characters/poptart/foot.svg"
  53853. }
  53854. },
  53855. },
  53856. [
  53857. {
  53858. name: "Normal",
  53859. height: math.unit(6, "feet"),
  53860. default: true
  53861. },
  53862. {
  53863. name: "Grande",
  53864. height: math.unit(350, "feet")
  53865. },
  53866. {
  53867. name: "Massif",
  53868. height: math.unit(967, "feet")
  53869. },
  53870. ]
  53871. ))
  53872. characterMakers.push(() => makeCharacter(
  53873. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53874. {
  53875. hyenaSide: {
  53876. height: math.unit(120, "cm"),
  53877. weight: math.unit(120, "lb"),
  53878. name: "Side",
  53879. image: {
  53880. source: "./media/characters/trance/hyena-side.svg",
  53881. extra: 998/904,
  53882. bottom: 76/1074
  53883. }
  53884. },
  53885. },
  53886. [
  53887. {
  53888. name: "Normal",
  53889. height: math.unit(120, "cm"),
  53890. default: true
  53891. },
  53892. {
  53893. name: "Dire",
  53894. height: math.unit(230, "cm")
  53895. },
  53896. {
  53897. name: "Macro",
  53898. height: math.unit(37, "feet")
  53899. },
  53900. ]
  53901. ))
  53902. characterMakers.push(() => makeCharacter(
  53903. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53904. {
  53905. front: {
  53906. height: math.unit(6 + 3/12, "feet"),
  53907. name: "Front",
  53908. image: {
  53909. source: "./media/characters/michael-berretta/front.svg",
  53910. extra: 515/494,
  53911. bottom: 20/535
  53912. }
  53913. },
  53914. back: {
  53915. height: math.unit(6 + 3/12, "feet"),
  53916. name: "Back",
  53917. image: {
  53918. source: "./media/characters/michael-berretta/back.svg",
  53919. extra: 520/497,
  53920. bottom: 21/541
  53921. }
  53922. },
  53923. frontNsfw: {
  53924. height: math.unit(6 + 3/12, "feet"),
  53925. name: "Front (NSFW)",
  53926. image: {
  53927. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53928. extra: 515/494,
  53929. bottom: 20/535
  53930. }
  53931. },
  53932. dick: {
  53933. height: math.unit(1, "feet"),
  53934. name: "Dick",
  53935. image: {
  53936. source: "./media/characters/michael-berretta/dick.svg"
  53937. }
  53938. },
  53939. },
  53940. [
  53941. {
  53942. name: "Normal",
  53943. height: math.unit(6 + 3/12, "feet"),
  53944. default: true
  53945. },
  53946. {
  53947. name: "Big",
  53948. height: math.unit(12, "feet")
  53949. },
  53950. {
  53951. name: "Macro",
  53952. height: math.unit(187.5, "feet")
  53953. },
  53954. ]
  53955. ))
  53956. characterMakers.push(() => makeCharacter(
  53957. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53958. {
  53959. front: {
  53960. height: math.unit(9 + 9/12, "feet"),
  53961. weight: math.unit(1244, "lb"),
  53962. name: "Front",
  53963. image: {
  53964. source: "./media/characters/stella-edgecomb/front.svg",
  53965. extra: 1835/1706,
  53966. bottom: 49/1884
  53967. }
  53968. },
  53969. pen: {
  53970. height: math.unit(0.95, "feet"),
  53971. name: "Pen",
  53972. image: {
  53973. source: "./media/characters/stella-edgecomb/pen.svg"
  53974. }
  53975. },
  53976. },
  53977. [
  53978. {
  53979. name: "Cozy Bear",
  53980. height: math.unit(0.5, "inches")
  53981. },
  53982. {
  53983. name: "Normal",
  53984. height: math.unit(9 + 9/12, "feet"),
  53985. default: true
  53986. },
  53987. {
  53988. name: "Giga Bear",
  53989. height: math.unit(1, "mile")
  53990. },
  53991. {
  53992. name: "Great Bear",
  53993. height: math.unit(53, "miles")
  53994. },
  53995. {
  53996. name: "Goddess Bear",
  53997. height: math.unit(40000, "miles")
  53998. },
  53999. {
  54000. name: "Sun Bear",
  54001. height: math.unit(900000, "miles")
  54002. },
  54003. ]
  54004. ))
  54005. characterMakers.push(() => makeCharacter(
  54006. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54007. {
  54008. anthroFront: {
  54009. height: math.unit(556, "cm"),
  54010. weight: math.unit(2650, "kg"),
  54011. preyCapacity: math.unit(3, "people"),
  54012. name: "Front",
  54013. image: {
  54014. source: "./media/characters/ash´iika/front.svg",
  54015. extra: 710/673,
  54016. bottom: 15/725
  54017. },
  54018. form: "anthro",
  54019. default: true
  54020. },
  54021. anthroSide: {
  54022. height: math.unit(556, "cm"),
  54023. weight: math.unit(2650, "kg"),
  54024. preyCapacity: math.unit(3, "people"),
  54025. name: "Side",
  54026. image: {
  54027. source: "./media/characters/ash´iika/side.svg",
  54028. extra: 696/676,
  54029. bottom: 13/709
  54030. },
  54031. form: "anthro"
  54032. },
  54033. anthroDressed: {
  54034. height: math.unit(556, "cm"),
  54035. weight: math.unit(2650, "kg"),
  54036. preyCapacity: math.unit(3, "people"),
  54037. name: "Dressed",
  54038. image: {
  54039. source: "./media/characters/ash´iika/dressed.svg",
  54040. extra: 710/673,
  54041. bottom: 15/725
  54042. },
  54043. form: "anthro"
  54044. },
  54045. anthroHead: {
  54046. height: math.unit(3.5, "feet"),
  54047. name: "Head",
  54048. image: {
  54049. source: "./media/characters/ash´iika/head.svg",
  54050. extra: 348/291,
  54051. bottom: 45/393
  54052. },
  54053. form: "anthro"
  54054. },
  54055. feralSide: {
  54056. height: math.unit(870, "cm"),
  54057. weight: math.unit(17500, "kg"),
  54058. preyCapacity: math.unit(15, "people"),
  54059. name: "Side",
  54060. image: {
  54061. source: "./media/characters/ash´iika/feral.svg",
  54062. extra: 595/199,
  54063. bottom: 7/602
  54064. },
  54065. form: "feral",
  54066. default: true,
  54067. },
  54068. },
  54069. [
  54070. {
  54071. name: "Normal",
  54072. height: math.unit(556, "cm"),
  54073. default: true,
  54074. form: "anthro"
  54075. },
  54076. {
  54077. name: "Macro",
  54078. height: math.unit(88, "meters"),
  54079. form: "anthro"
  54080. },
  54081. {
  54082. name: "Normal",
  54083. height: math.unit(870, "cm"),
  54084. default: true,
  54085. form: "feral"
  54086. },
  54087. {
  54088. name: "Large",
  54089. height: math.unit(25, "meters"),
  54090. form: "feral"
  54091. },
  54092. ],
  54093. {
  54094. "anthro": {
  54095. name: "Anthro",
  54096. default: true
  54097. },
  54098. "feral": {
  54099. name: "Feral",
  54100. },
  54101. }
  54102. ))
  54103. characterMakers.push(() => makeCharacter(
  54104. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54105. {
  54106. front: {
  54107. height: math.unit(10, "feet"),
  54108. weight: math.unit(800, "lb"),
  54109. name: "Front",
  54110. image: {
  54111. source: "./media/characters/yen/front.svg",
  54112. extra: 443/411,
  54113. bottom: 6/449
  54114. }
  54115. },
  54116. sleeping: {
  54117. height: math.unit(10, "feet"),
  54118. weight: math.unit(800, "lb"),
  54119. name: "Sleeping",
  54120. image: {
  54121. source: "./media/characters/yen/sleeping.svg",
  54122. extra: 470/422,
  54123. bottom: 0/470
  54124. }
  54125. },
  54126. head: {
  54127. height: math.unit(2.2, "feet"),
  54128. name: "Head",
  54129. image: {
  54130. source: "./media/characters/yen/head.svg"
  54131. }
  54132. },
  54133. headAlt: {
  54134. height: math.unit(2.1, "feet"),
  54135. name: "Head (Alt)",
  54136. image: {
  54137. source: "./media/characters/yen/head-alt.svg"
  54138. }
  54139. },
  54140. },
  54141. [
  54142. {
  54143. name: "Normal",
  54144. height: math.unit(10, "feet"),
  54145. default: true
  54146. },
  54147. ]
  54148. ))
  54149. characterMakers.push(() => makeCharacter(
  54150. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54151. {
  54152. front: {
  54153. height: math.unit(12, "feet"),
  54154. name: "Front",
  54155. image: {
  54156. source: "./media/characters/citra/front.svg",
  54157. extra: 1950/1710,
  54158. bottom: 47/1997
  54159. }
  54160. },
  54161. },
  54162. [
  54163. {
  54164. name: "Normal",
  54165. height: math.unit(12, "feet"),
  54166. default: true
  54167. },
  54168. ]
  54169. ))
  54170. characterMakers.push(() => makeCharacter(
  54171. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54172. {
  54173. side: {
  54174. height: math.unit(7 + 10/12, "feet"),
  54175. name: "Side",
  54176. image: {
  54177. source: "./media/characters/sholstim/side.svg",
  54178. extra: 786/682,
  54179. bottom: 40/826
  54180. }
  54181. },
  54182. },
  54183. [
  54184. {
  54185. name: "Normal",
  54186. height: math.unit(7 + 10/12, "feet"),
  54187. default: true
  54188. },
  54189. ]
  54190. ))
  54191. characterMakers.push(() => makeCharacter(
  54192. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54193. {
  54194. front: {
  54195. height: math.unit(3.10, "meters"),
  54196. name: "Front",
  54197. image: {
  54198. source: "./media/characters/aggyn/front.svg",
  54199. extra: 1188/963,
  54200. bottom: 24/1212
  54201. }
  54202. },
  54203. },
  54204. [
  54205. {
  54206. name: "Normal",
  54207. height: math.unit(3.10, "meters"),
  54208. default: true
  54209. },
  54210. ]
  54211. ))
  54212. characterMakers.push(() => makeCharacter(
  54213. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54214. {
  54215. front: {
  54216. height: math.unit(7 + 5/12, "feet"),
  54217. weight: math.unit(687, "lb"),
  54218. name: "Front",
  54219. image: {
  54220. source: "./media/characters/alsandair-hergenroether/front.svg",
  54221. extra: 1251/1186,
  54222. bottom: 75/1326
  54223. }
  54224. },
  54225. back: {
  54226. height: math.unit(7 + 5/12, "feet"),
  54227. weight: math.unit(687, "lb"),
  54228. name: "Back",
  54229. image: {
  54230. source: "./media/characters/alsandair-hergenroether/back.svg",
  54231. extra: 1290/1229,
  54232. bottom: 17/1307
  54233. }
  54234. },
  54235. },
  54236. [
  54237. {
  54238. name: "Max Compression",
  54239. height: math.unit(7 + 5/12, "feet"),
  54240. default: true
  54241. },
  54242. {
  54243. name: "\"Normal\"",
  54244. height: math.unit(2, "universes")
  54245. },
  54246. ]
  54247. ))
  54248. characterMakers.push(() => makeCharacter(
  54249. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54250. {
  54251. front: {
  54252. height: math.unit(4 + 1/12, "feet"),
  54253. weight: math.unit(92, "lb"),
  54254. name: "Front",
  54255. image: {
  54256. source: "./media/characters/ie/front.svg",
  54257. extra: 1585/1352,
  54258. bottom: 91/1676
  54259. }
  54260. },
  54261. },
  54262. [
  54263. {
  54264. name: "Normal",
  54265. height: math.unit(4 + 1/12, "feet"),
  54266. default: true
  54267. },
  54268. ]
  54269. ))
  54270. characterMakers.push(() => makeCharacter(
  54271. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54272. {
  54273. anthro: {
  54274. height: math.unit(6, "feet"),
  54275. weight: math.unit(150, "lb"),
  54276. name: "Front",
  54277. image: {
  54278. source: "./media/characters/willow/anthro.svg",
  54279. extra: 1073/986,
  54280. bottom: 34/1107
  54281. },
  54282. form: "anthro",
  54283. default: true
  54284. },
  54285. taur: {
  54286. height: math.unit(6, "feet"),
  54287. weight: math.unit(150, "lb"),
  54288. name: "Side",
  54289. image: {
  54290. source: "./media/characters/willow/taur.svg",
  54291. extra: 647/512,
  54292. bottom: 136/783
  54293. },
  54294. form: "taur",
  54295. default: true
  54296. },
  54297. },
  54298. [
  54299. {
  54300. name: "Humanoid",
  54301. height: math.unit(2.7, "meters"),
  54302. form: "anthro"
  54303. },
  54304. {
  54305. name: "Normal",
  54306. height: math.unit(9, "meters"),
  54307. form: "anthro",
  54308. default: true
  54309. },
  54310. {
  54311. name: "Humanoid",
  54312. height: math.unit(2.1, "meters"),
  54313. form: "taur"
  54314. },
  54315. {
  54316. name: "Normal",
  54317. height: math.unit(7, "meters"),
  54318. form: "taur",
  54319. default: true
  54320. },
  54321. ],
  54322. {
  54323. "anthro": {
  54324. name: "Anthro",
  54325. default: true
  54326. },
  54327. "taur": {
  54328. name: "Taur",
  54329. },
  54330. }
  54331. ))
  54332. characterMakers.push(() => makeCharacter(
  54333. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54334. {
  54335. front: {
  54336. height: math.unit(2 + 5/12, "feet"),
  54337. name: "Front",
  54338. image: {
  54339. source: "./media/characters/kyan/front.svg",
  54340. extra: 460/334,
  54341. bottom: 23/483
  54342. },
  54343. extraAttributes: {
  54344. "toeLength": {
  54345. name: "Toe Length",
  54346. power: 1,
  54347. type: "length",
  54348. base: math.unit(7, "cm")
  54349. },
  54350. "toeclawLength": {
  54351. name: "Toeclaw Length",
  54352. power: 1,
  54353. type: "length",
  54354. base: math.unit(4.7, "cm")
  54355. },
  54356. "earHeight": {
  54357. name: "Ear Height",
  54358. power: 1,
  54359. type: "length",
  54360. base: math.unit(14.1, "cm")
  54361. },
  54362. }
  54363. },
  54364. paws: {
  54365. height: math.unit(0.45, "feet"),
  54366. name: "Paws",
  54367. image: {
  54368. source: "./media/characters/kyan/paws.svg",
  54369. extra: 581/581,
  54370. bottom: 114/695
  54371. }
  54372. },
  54373. },
  54374. [
  54375. {
  54376. name: "Normal",
  54377. height: math.unit(2 + 5/12, "feet"),
  54378. default: true
  54379. },
  54380. ]
  54381. ))
  54382. characterMakers.push(() => makeCharacter(
  54383. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54384. {
  54385. front: {
  54386. height: math.unit(2 + 2/3, "feet"),
  54387. name: "Front",
  54388. image: {
  54389. source: "./media/characters/xazzon/front.svg",
  54390. extra: 1109/984,
  54391. bottom: 42/1151
  54392. }
  54393. },
  54394. back: {
  54395. height: math.unit(2 + 2/3, "feet"),
  54396. name: "Back",
  54397. image: {
  54398. source: "./media/characters/xazzon/back.svg",
  54399. extra: 1095/971,
  54400. bottom: 23/1118
  54401. }
  54402. },
  54403. },
  54404. [
  54405. {
  54406. name: "Normal",
  54407. height: math.unit(2 + 2/3, "feet"),
  54408. default: true
  54409. },
  54410. ]
  54411. ))
  54412. characterMakers.push(() => makeCharacter(
  54413. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54414. {
  54415. dressed: {
  54416. height: math.unit(5 + 7/12, "feet"),
  54417. weight: math.unit(173, "lb"),
  54418. name: "Dressed",
  54419. image: {
  54420. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54421. extra: 3262/2862,
  54422. bottom: 188/3450
  54423. }
  54424. },
  54425. undressed: {
  54426. height: math.unit(5 + 7/12, "feet"),
  54427. weight: math.unit(173, "lb"),
  54428. name: "Undressed",
  54429. image: {
  54430. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54431. extra: 3262/2862,
  54432. bottom: 188/3450
  54433. }
  54434. },
  54435. },
  54436. [
  54437. {
  54438. name: "The void",
  54439. height: math.unit(7.29193e-34, "angstroms")
  54440. },
  54441. {
  54442. name: "Uh-Oh.",
  54443. height: math.unit(5.734e-7, "angstroms")
  54444. },
  54445. {
  54446. name: "Pico",
  54447. height: math.unit(0.876, "angstroms")
  54448. },
  54449. {
  54450. name: "Nano",
  54451. height: math.unit(0.000134200, "mm")
  54452. },
  54453. {
  54454. name: "Micro",
  54455. height: math.unit(0.0673020, "mm")
  54456. },
  54457. {
  54458. name: "Tiny",
  54459. height: math.unit(2.4, "mm")
  54460. },
  54461. {
  54462. name: "Actual Normal",
  54463. height: math.unit(3, "inches"),
  54464. default: true
  54465. },
  54466. {
  54467. name: "Normal",
  54468. height: math.unit(5 + 8/12, "feet")
  54469. },
  54470. {
  54471. name: "Giant",
  54472. height: math.unit(12, "feet")
  54473. },
  54474. {
  54475. name: "City Ruler",
  54476. height: math.unit(270, "meters")
  54477. },
  54478. {
  54479. name: "Giga",
  54480. height: math.unit(1117.6, "km")
  54481. },
  54482. {
  54483. name: "All-Powerful Queen",
  54484. height: math.unit(70.8, "gigameters")
  54485. },
  54486. {
  54487. name: "'Goddess'",
  54488. height: math.unit(600, "yottameters")
  54489. },
  54490. {
  54491. name: "Biggest!",
  54492. height: math.unit(4.23e5, "yottameters")
  54493. },
  54494. ]
  54495. ))
  54496. characterMakers.push(() => makeCharacter(
  54497. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54498. {
  54499. front: {
  54500. height: math.unit(8, "feet"),
  54501. weight: math.unit(300, "lb"),
  54502. name: "Front",
  54503. image: {
  54504. source: "./media/characters/khyla-shadowsong/front.svg",
  54505. extra: 861/798,
  54506. bottom: 32/893
  54507. }
  54508. },
  54509. side: {
  54510. height: math.unit(8, "feet"),
  54511. weight: math.unit(300, "lb"),
  54512. name: "Side",
  54513. image: {
  54514. source: "./media/characters/khyla-shadowsong/side.svg",
  54515. extra: 790/750,
  54516. bottom: 87/877
  54517. }
  54518. },
  54519. back: {
  54520. height: math.unit(8, "feet"),
  54521. weight: math.unit(300, "lb"),
  54522. name: "Back",
  54523. image: {
  54524. source: "./media/characters/khyla-shadowsong/back.svg",
  54525. extra: 855/808,
  54526. bottom: 14/869
  54527. }
  54528. },
  54529. head: {
  54530. height: math.unit(2.7, "feet"),
  54531. name: "Head",
  54532. image: {
  54533. source: "./media/characters/khyla-shadowsong/head.svg"
  54534. }
  54535. },
  54536. },
  54537. [
  54538. {
  54539. name: "Micro",
  54540. height: math.unit(6, "inches")
  54541. },
  54542. {
  54543. name: "Normal",
  54544. height: math.unit(8, "feet"),
  54545. default: true
  54546. },
  54547. ]
  54548. ))
  54549. characterMakers.push(() => makeCharacter(
  54550. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54551. {
  54552. hyperFront: {
  54553. height: math.unit(9 + 4/12, "feet"),
  54554. weight: math.unit(2000, "lb"),
  54555. name: "Front",
  54556. image: {
  54557. source: "./media/characters/tiden/hyper-front.svg",
  54558. extra: 400/382,
  54559. bottom: 6/406
  54560. },
  54561. form: "hyper",
  54562. },
  54563. regularFront: {
  54564. height: math.unit(7 + 10/12, "feet"),
  54565. weight: math.unit(470, "lb"),
  54566. name: "Front",
  54567. image: {
  54568. source: "./media/characters/tiden/regular-front.svg",
  54569. extra: 468/442,
  54570. bottom: 6/474
  54571. },
  54572. form: "regular",
  54573. },
  54574. },
  54575. [
  54576. {
  54577. name: "Normal",
  54578. height: math.unit(9 + 4/12, "feet"),
  54579. default: true,
  54580. form: "hyper"
  54581. },
  54582. {
  54583. name: "Normal",
  54584. height: math.unit(7 + 10/12, "feet"),
  54585. default: true,
  54586. form: "regular"
  54587. },
  54588. ],
  54589. {
  54590. "hyper": {
  54591. name: "Hyper",
  54592. default: true
  54593. },
  54594. "regular": {
  54595. name: "Regular",
  54596. },
  54597. }
  54598. ))
  54599. characterMakers.push(() => makeCharacter(
  54600. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54601. {
  54602. side: {
  54603. height: math.unit(6, "feet"),
  54604. weight: math.unit(150, "lb"),
  54605. name: "Side",
  54606. image: {
  54607. source: "./media/characters/jason-crowe/side.svg",
  54608. extra: 1771/766,
  54609. bottom: 219/1990
  54610. }
  54611. },
  54612. },
  54613. [
  54614. {
  54615. name: "Pocket Gryphon",
  54616. height: math.unit(6, "cm")
  54617. },
  54618. {
  54619. name: "Raven",
  54620. height: math.unit(60, "cm")
  54621. },
  54622. {
  54623. name: "Normal",
  54624. height: math.unit(1, "meter"),
  54625. default: true
  54626. },
  54627. ]
  54628. ))
  54629. characterMakers.push(() => makeCharacter(
  54630. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54631. {
  54632. front: {
  54633. height: math.unit(9 + 6/12, "feet"),
  54634. weight: math.unit(1100, "lb"),
  54635. name: "Front",
  54636. image: {
  54637. source: "./media/characters/django/front.svg",
  54638. extra: 1231/1136,
  54639. bottom: 34/1265
  54640. }
  54641. },
  54642. side: {
  54643. height: math.unit(9 + 6/12, "feet"),
  54644. weight: math.unit(1100, "lb"),
  54645. name: "Side",
  54646. image: {
  54647. source: "./media/characters/django/side.svg",
  54648. extra: 1267/1174,
  54649. bottom: 9/1276
  54650. }
  54651. },
  54652. },
  54653. [
  54654. {
  54655. name: "Normal",
  54656. height: math.unit(9 + 6/12, "feet"),
  54657. default: true
  54658. },
  54659. {
  54660. name: "Macro 1",
  54661. height: math.unit(50, "feet")
  54662. },
  54663. {
  54664. name: "Macro 2",
  54665. height: math.unit(500, "feet")
  54666. },
  54667. {
  54668. name: "Mega Macro",
  54669. height: math.unit(5300, "feet")
  54670. },
  54671. ]
  54672. ))
  54673. characterMakers.push(() => makeCharacter(
  54674. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54675. {
  54676. frontSfw: {
  54677. height: math.unit(120, "cm"),
  54678. weight: math.unit(15, "kg"),
  54679. name: "Front (SFW)",
  54680. image: {
  54681. source: "./media/characters/eri/front-sfw.svg",
  54682. extra: 1014/939,
  54683. bottom: 37/1051
  54684. },
  54685. form: "moth",
  54686. },
  54687. frontNsfw: {
  54688. height: math.unit(120, "cm"),
  54689. weight: math.unit(15, "kg"),
  54690. name: "Front (NSFW)",
  54691. image: {
  54692. source: "./media/characters/eri/front-nsfw.svg",
  54693. extra: 1014/939,
  54694. bottom: 37/1051
  54695. },
  54696. form: "moth",
  54697. default: true
  54698. },
  54699. egg: {
  54700. height: math.unit(10, "cm"),
  54701. name: "Egg",
  54702. image: {
  54703. source: "./media/characters/eri/egg.svg"
  54704. },
  54705. form: "egg",
  54706. default: true
  54707. },
  54708. },
  54709. [
  54710. {
  54711. name: "Normal",
  54712. height: math.unit(120, "cm"),
  54713. default: true,
  54714. form: "moth"
  54715. },
  54716. {
  54717. name: "Normal",
  54718. height: math.unit(10, "cm"),
  54719. default: true,
  54720. form: "egg"
  54721. },
  54722. ],
  54723. {
  54724. "moth": {
  54725. name: "Moth",
  54726. default: true
  54727. },
  54728. "egg": {
  54729. name: "Egg",
  54730. },
  54731. }
  54732. ))
  54733. characterMakers.push(() => makeCharacter(
  54734. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54735. {
  54736. front: {
  54737. height: math.unit(200, "feet"),
  54738. name: "Front",
  54739. image: {
  54740. source: "./media/characters/bishop-dowser/front.svg",
  54741. extra: 933/868,
  54742. bottom: 106/1039
  54743. }
  54744. },
  54745. },
  54746. [
  54747. {
  54748. name: "Giant",
  54749. height: math.unit(200, "feet"),
  54750. default: true
  54751. },
  54752. ]
  54753. ))
  54754. characterMakers.push(() => makeCharacter(
  54755. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54756. {
  54757. front: {
  54758. height: math.unit(2, "meters"),
  54759. preyCapacity: math.unit(3, "people"),
  54760. name: "Front",
  54761. image: {
  54762. source: "./media/characters/fryra/front.svg",
  54763. extra: 1025/948,
  54764. bottom: 30/1055
  54765. },
  54766. extraAttributes: {
  54767. "breastVolume": {
  54768. name: "Breast Volume",
  54769. power: 3,
  54770. type: "volume",
  54771. base: math.unit(8, "liters")
  54772. },
  54773. }
  54774. },
  54775. back: {
  54776. height: math.unit(2, "meters"),
  54777. preyCapacity: math.unit(3, "people"),
  54778. name: "Back",
  54779. image: {
  54780. source: "./media/characters/fryra/back.svg",
  54781. extra: 993/938,
  54782. bottom: 38/1031
  54783. },
  54784. extraAttributes: {
  54785. "breastVolume": {
  54786. name: "Breast Volume",
  54787. power: 3,
  54788. type: "volume",
  54789. base: math.unit(8, "liters")
  54790. },
  54791. }
  54792. },
  54793. head: {
  54794. height: math.unit(1.33, "feet"),
  54795. name: "Head",
  54796. image: {
  54797. source: "./media/characters/fryra/head.svg"
  54798. }
  54799. },
  54800. maw: {
  54801. height: math.unit(0.56, "feet"),
  54802. name: "Maw",
  54803. image: {
  54804. source: "./media/characters/fryra/maw.svg"
  54805. }
  54806. },
  54807. },
  54808. [
  54809. {
  54810. name: "Micro",
  54811. height: math.unit(5, "cm")
  54812. },
  54813. {
  54814. name: "Normal",
  54815. height: math.unit(2, "meters"),
  54816. default: true
  54817. },
  54818. {
  54819. name: "Small Macro",
  54820. height: math.unit(8, "meters")
  54821. },
  54822. {
  54823. name: "Macro",
  54824. height: math.unit(50, "meters")
  54825. },
  54826. {
  54827. name: "Megamacro",
  54828. height: math.unit(1, "km")
  54829. },
  54830. {
  54831. name: "Planetary",
  54832. height: math.unit(300000, "km")
  54833. },
  54834. {
  54835. name: "Universal",
  54836. height: math.unit(250, "lightyears")
  54837. },
  54838. {
  54839. name: "Fabric of Reality",
  54840. height: math.unit(1000, "multiverses")
  54841. },
  54842. ]
  54843. ))
  54844. characterMakers.push(() => makeCharacter(
  54845. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54846. {
  54847. frontDressed: {
  54848. height: math.unit(6 + 2/12, "feet"),
  54849. name: "Front (Dressed)",
  54850. image: {
  54851. source: "./media/characters/fiera/front-dressed.svg",
  54852. extra: 1883/1793,
  54853. bottom: 70/1953
  54854. }
  54855. },
  54856. backDressed: {
  54857. height: math.unit(6 + 2/12, "feet"),
  54858. name: "Back (Dressed)",
  54859. image: {
  54860. source: "./media/characters/fiera/back-dressed.svg",
  54861. extra: 1847/1780,
  54862. bottom: 70/1917
  54863. }
  54864. },
  54865. frontNude: {
  54866. height: math.unit(6 + 2/12, "feet"),
  54867. name: "Front (Nude)",
  54868. image: {
  54869. source: "./media/characters/fiera/front-nude.svg",
  54870. extra: 1875/1785,
  54871. bottom: 66/1941
  54872. }
  54873. },
  54874. backNude: {
  54875. height: math.unit(6 + 2/12, "feet"),
  54876. name: "Back (Nude)",
  54877. image: {
  54878. source: "./media/characters/fiera/back-nude.svg",
  54879. extra: 1855/1788,
  54880. bottom: 44/1899
  54881. }
  54882. },
  54883. maw: {
  54884. height: math.unit(1.3, "feet"),
  54885. name: "Maw",
  54886. image: {
  54887. source: "./media/characters/fiera/maw.svg"
  54888. }
  54889. },
  54890. paw: {
  54891. height: math.unit(1, "feet"),
  54892. name: "Paw",
  54893. image: {
  54894. source: "./media/characters/fiera/paw.svg"
  54895. }
  54896. },
  54897. shoe: {
  54898. height: math.unit(1.05, "feet"),
  54899. name: "Shoe",
  54900. image: {
  54901. source: "./media/characters/fiera/shoe.svg"
  54902. }
  54903. },
  54904. },
  54905. [
  54906. {
  54907. name: "Normal",
  54908. height: math.unit(6 + 2/12, "feet"),
  54909. default: true
  54910. },
  54911. {
  54912. name: "Size Difference",
  54913. height: math.unit(13, "feet")
  54914. },
  54915. {
  54916. name: "Macro",
  54917. height: math.unit(60, "feet")
  54918. },
  54919. {
  54920. name: "Mega Macro",
  54921. height: math.unit(200, "feet")
  54922. },
  54923. ]
  54924. ))
  54925. characterMakers.push(() => makeCharacter(
  54926. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54927. {
  54928. back: {
  54929. height: math.unit(6, "feet"),
  54930. name: "Back",
  54931. image: {
  54932. source: "./media/characters/flare/back.svg",
  54933. extra: 1883/1765,
  54934. bottom: 32/1915
  54935. }
  54936. },
  54937. },
  54938. [
  54939. {
  54940. name: "Normal",
  54941. height: math.unit(6 + 2/12, "feet"),
  54942. default: true
  54943. },
  54944. {
  54945. name: "Size Difference",
  54946. height: math.unit(13, "feet")
  54947. },
  54948. {
  54949. name: "Macro",
  54950. height: math.unit(60, "feet")
  54951. },
  54952. {
  54953. name: "Macro 2",
  54954. height: math.unit(100, "feet")
  54955. },
  54956. {
  54957. name: "Mega Macro",
  54958. height: math.unit(200, "feet")
  54959. },
  54960. ]
  54961. ))
  54962. characterMakers.push(() => makeCharacter(
  54963. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54964. {
  54965. front: {
  54966. height: math.unit(2.2, "m"),
  54967. weight: math.unit(300, "kg"),
  54968. name: "Front",
  54969. image: {
  54970. source: "./media/characters/hanna/front.svg",
  54971. extra: 1696/1502,
  54972. bottom: 206/1902
  54973. }
  54974. },
  54975. },
  54976. [
  54977. {
  54978. name: "Humanoid",
  54979. height: math.unit(2.2, "meters")
  54980. },
  54981. {
  54982. name: "Normal",
  54983. height: math.unit(4.8, "meters"),
  54984. default: true
  54985. },
  54986. ]
  54987. ))
  54988. characterMakers.push(() => makeCharacter(
  54989. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54990. {
  54991. front: {
  54992. height: math.unit(2.8, "meters"),
  54993. name: "Front",
  54994. image: {
  54995. source: "./media/characters/argo/front.svg",
  54996. extra: 731/518,
  54997. bottom: 84/815
  54998. }
  54999. },
  55000. },
  55001. [
  55002. {
  55003. name: "Normal",
  55004. height: math.unit(3, "meters"),
  55005. default: true
  55006. },
  55007. ]
  55008. ))
  55009. characterMakers.push(() => makeCharacter(
  55010. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55011. {
  55012. side: {
  55013. height: math.unit(3.8, "meters"),
  55014. name: "Side",
  55015. image: {
  55016. source: "./media/characters/sybil/side.svg",
  55017. extra: 382/361,
  55018. bottom: 25/407
  55019. }
  55020. },
  55021. },
  55022. [
  55023. {
  55024. name: "Normal",
  55025. height: math.unit(3.8, "meters"),
  55026. default: true
  55027. },
  55028. ]
  55029. ))
  55030. characterMakers.push(() => makeCharacter(
  55031. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55032. {
  55033. side: {
  55034. height: math.unit(6, "meters"),
  55035. name: "Side",
  55036. image: {
  55037. source: "./media/characters/plum/side.svg",
  55038. extra: 858/755,
  55039. bottom: 45/903
  55040. },
  55041. form: "taur",
  55042. default: true
  55043. },
  55044. back: {
  55045. height: math.unit(6.3, "meters"),
  55046. name: "Back",
  55047. image: {
  55048. source: "./media/characters/plum/back.svg",
  55049. extra: 887/813,
  55050. bottom: 32/919
  55051. },
  55052. form: "taur",
  55053. },
  55054. feral: {
  55055. height: math.unit(5.5, "meter"),
  55056. name: "Front",
  55057. image: {
  55058. source: "./media/characters/plum/feral.svg",
  55059. extra: 568/403,
  55060. bottom: 51/619
  55061. },
  55062. form: "feral",
  55063. default: true
  55064. },
  55065. head: {
  55066. height: math.unit(1.46, "meter"),
  55067. name: "Head",
  55068. image: {
  55069. source: "./media/characters/plum/head.svg"
  55070. },
  55071. form: "taur"
  55072. },
  55073. tailTop: {
  55074. height: math.unit(5.6, "meter"),
  55075. name: "Tail (Top)",
  55076. image: {
  55077. source: "./media/characters/plum/tail-top.svg"
  55078. },
  55079. form: "taur",
  55080. },
  55081. tailBottom: {
  55082. height: math.unit(5.6, "meter"),
  55083. name: "Tail (Bottom)",
  55084. image: {
  55085. source: "./media/characters/plum/tail-bottom.svg"
  55086. },
  55087. form: "taur",
  55088. },
  55089. feralHead: {
  55090. height: math.unit(2.56549521, "meter"),
  55091. name: "Head",
  55092. image: {
  55093. source: "./media/characters/plum/head.svg"
  55094. },
  55095. form: "feral"
  55096. },
  55097. feralTailTop: {
  55098. height: math.unit(5.44728435, "meter"),
  55099. name: "Tail (Top)",
  55100. image: {
  55101. source: "./media/characters/plum/tail-top.svg"
  55102. },
  55103. form: "feral",
  55104. },
  55105. feralTailBottom: {
  55106. height: math.unit(5.44728435, "meter"),
  55107. name: "Tail (Bottom)",
  55108. image: {
  55109. source: "./media/characters/plum/tail-bottom.svg"
  55110. },
  55111. form: "feral",
  55112. },
  55113. },
  55114. [
  55115. {
  55116. name: "Normal",
  55117. height: math.unit(6, "meters"),
  55118. default: true,
  55119. form: "taur"
  55120. },
  55121. {
  55122. name: "Normal",
  55123. height: math.unit(5.5, "meters"),
  55124. default: true,
  55125. form: "feral"
  55126. },
  55127. ],
  55128. {
  55129. "taur": {
  55130. name: "Taur",
  55131. default: true
  55132. },
  55133. "feral": {
  55134. name: "Feral",
  55135. },
  55136. }
  55137. ))
  55138. characterMakers.push(() => makeCharacter(
  55139. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55140. {
  55141. front: {
  55142. height: math.unit(6, "feet"),
  55143. weight: math.unit(115, "lb"),
  55144. name: "Front",
  55145. image: {
  55146. source: "./media/characters/celeste-kitsune/front.svg",
  55147. extra: 393/366,
  55148. bottom: 7/400
  55149. }
  55150. },
  55151. side: {
  55152. height: math.unit(6, "feet"),
  55153. weight: math.unit(115, "lb"),
  55154. name: "Side",
  55155. image: {
  55156. source: "./media/characters/celeste-kitsune/side.svg",
  55157. extra: 818/765,
  55158. bottom: 40/858
  55159. }
  55160. },
  55161. },
  55162. [
  55163. {
  55164. name: "Megamacro",
  55165. height: math.unit(1500, "miles"),
  55166. default: true
  55167. },
  55168. ]
  55169. ))
  55170. characterMakers.push(() => makeCharacter(
  55171. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55172. {
  55173. front: {
  55174. height: math.unit(8, "meters"),
  55175. name: "Front",
  55176. image: {
  55177. source: "./media/characters/io/front.svg",
  55178. extra: 865/722,
  55179. bottom: 58/923
  55180. }
  55181. },
  55182. back: {
  55183. height: math.unit(8, "meters"),
  55184. name: "Back",
  55185. image: {
  55186. source: "./media/characters/io/back.svg",
  55187. extra: 920/776,
  55188. bottom: 42/962
  55189. }
  55190. },
  55191. head: {
  55192. height: math.unit(5.09, "meters"),
  55193. name: "Head",
  55194. image: {
  55195. source: "./media/characters/io/head.svg"
  55196. }
  55197. },
  55198. hand: {
  55199. height: math.unit(1.6, "meters"),
  55200. name: "Hand",
  55201. image: {
  55202. source: "./media/characters/io/hand.svg"
  55203. }
  55204. },
  55205. foot: {
  55206. height: math.unit(2.4, "meters"),
  55207. name: "Foot",
  55208. image: {
  55209. source: "./media/characters/io/foot.svg"
  55210. }
  55211. },
  55212. },
  55213. [
  55214. {
  55215. name: "Normal",
  55216. height: math.unit(8, "meters"),
  55217. default: true
  55218. },
  55219. ]
  55220. ))
  55221. characterMakers.push(() => makeCharacter(
  55222. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55223. {
  55224. side: {
  55225. height: math.unit(6 + 3/12, "feet"),
  55226. weight: math.unit(225, "lb"),
  55227. name: "Side",
  55228. image: {
  55229. source: "./media/characters/silas/side.svg",
  55230. extra: 703/653,
  55231. bottom: 23/726
  55232. },
  55233. extraAttributes: {
  55234. "pawLength": {
  55235. name: "Paw Length",
  55236. power: 1,
  55237. type: "length",
  55238. base: math.unit(12, "inches")
  55239. },
  55240. "pawWidth": {
  55241. name: "Paw Width",
  55242. power: 1,
  55243. type: "length",
  55244. base: math.unit(4.5, "inches")
  55245. },
  55246. "pawArea": {
  55247. name: "Paw Area",
  55248. power: 2,
  55249. type: "area",
  55250. base: math.unit(12 * 4.5, "inches^2")
  55251. },
  55252. }
  55253. },
  55254. },
  55255. [
  55256. {
  55257. name: "Normal",
  55258. height: math.unit(6 + 3/12, "feet"),
  55259. default: true
  55260. },
  55261. ]
  55262. ))
  55263. characterMakers.push(() => makeCharacter(
  55264. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55265. {
  55266. back: {
  55267. height: math.unit(1.6, "meters"),
  55268. weight: math.unit(150, "lb"),
  55269. name: "Back",
  55270. image: {
  55271. source: "./media/characters/zari/back.svg",
  55272. extra: 424/411,
  55273. bottom: 32/456
  55274. },
  55275. extraAttributes: {
  55276. "bladderCapacity": {
  55277. name: "Bladder Size",
  55278. power: 3,
  55279. type: "volume",
  55280. base: math.unit(500, "mL")
  55281. },
  55282. "bladderFlow": {
  55283. name: "Flow Rate",
  55284. power: 3,
  55285. type: "volume",
  55286. base: math.unit(25, "mL")
  55287. },
  55288. }
  55289. },
  55290. },
  55291. [
  55292. {
  55293. name: "Normal",
  55294. height: math.unit(1.6, "meters"),
  55295. default: true
  55296. },
  55297. ]
  55298. ))
  55299. characterMakers.push(() => makeCharacter(
  55300. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55301. {
  55302. front: {
  55303. height: math.unit(25, "feet"),
  55304. weight: math.unit(5, "tons"),
  55305. name: "Front",
  55306. image: {
  55307. source: "./media/characters/charlie-human/front.svg",
  55308. extra: 1870/1740,
  55309. bottom: 102/1972
  55310. },
  55311. extraAttributes: {
  55312. "dickLength": {
  55313. name: "Dick Length",
  55314. power: 1,
  55315. type: "length",
  55316. base: math.unit(9, "feet")
  55317. },
  55318. }
  55319. },
  55320. back: {
  55321. height: math.unit(25, "feet"),
  55322. weight: math.unit(5, "tons"),
  55323. name: "Back",
  55324. image: {
  55325. source: "./media/characters/charlie-human/back.svg",
  55326. extra: 1858/1733,
  55327. bottom: 105/1963
  55328. },
  55329. extraAttributes: {
  55330. "dickLength": {
  55331. name: "Dick Length",
  55332. power: 1,
  55333. type: "length",
  55334. base: math.unit(9, "feet")
  55335. },
  55336. }
  55337. },
  55338. },
  55339. [
  55340. {
  55341. name: "\"Normal\"",
  55342. height: math.unit(6 + 4/12, "feet")
  55343. },
  55344. {
  55345. name: "Big",
  55346. height: math.unit(25, "feet"),
  55347. default: true
  55348. },
  55349. ]
  55350. ))
  55351. characterMakers.push(() => makeCharacter(
  55352. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55353. {
  55354. front: {
  55355. height: math.unit(6 + 4/12, "feet"),
  55356. weight: math.unit(320, "lb"),
  55357. name: "Front",
  55358. image: {
  55359. source: "./media/characters/ookitsu/front.svg",
  55360. extra: 1160/976,
  55361. bottom: 38/1198
  55362. }
  55363. },
  55364. frontNsfw: {
  55365. height: math.unit(6 + 4/12, "feet"),
  55366. weight: math.unit(320, "lb"),
  55367. name: "Front (NSFW)",
  55368. image: {
  55369. source: "./media/characters/ookitsu/front-nsfw.svg",
  55370. extra: 1160/976,
  55371. bottom: 38/1198
  55372. }
  55373. },
  55374. back: {
  55375. height: math.unit(6 + 4/12, "feet"),
  55376. weight: math.unit(320, "lb"),
  55377. name: "Back",
  55378. image: {
  55379. source: "./media/characters/ookitsu/back.svg",
  55380. extra: 1030/975,
  55381. bottom: 70/1100
  55382. }
  55383. },
  55384. head: {
  55385. height: math.unit(1.79, "feet"),
  55386. name: "Head",
  55387. image: {
  55388. source: "./media/characters/ookitsu/head.svg"
  55389. }
  55390. },
  55391. hand: {
  55392. height: math.unit(0.92, "feet"),
  55393. name: "Hand",
  55394. image: {
  55395. source: "./media/characters/ookitsu/hand.svg"
  55396. }
  55397. },
  55398. tails: {
  55399. height: math.unit(3.3, "feet"),
  55400. name: "Tails",
  55401. image: {
  55402. source: "./media/characters/ookitsu/tails.svg"
  55403. }
  55404. },
  55405. dick: {
  55406. height: math.unit(1.10833, "feet"),
  55407. name: "Dick",
  55408. image: {
  55409. source: "./media/characters/ookitsu/dick.svg"
  55410. }
  55411. },
  55412. },
  55413. [
  55414. {
  55415. name: "Normal",
  55416. height: math.unit(6 + 4/12, "feet"),
  55417. default: true
  55418. },
  55419. {
  55420. name: "Macro",
  55421. height: math.unit(30, "feet")
  55422. },
  55423. ]
  55424. ))
  55425. characterMakers.push(() => makeCharacter(
  55426. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55427. {
  55428. anthroFront: {
  55429. height: math.unit(6, "feet"),
  55430. weight: math.unit(250, "lb"),
  55431. name: "Front",
  55432. image: {
  55433. source: "./media/characters/jhusky/anthro-front.svg",
  55434. extra: 474/439,
  55435. bottom: 7/481
  55436. },
  55437. form: "anthro",
  55438. default: true
  55439. },
  55440. taurSideSfw: {
  55441. height: math.unit(6 + 4/12, "feet"),
  55442. weight: math.unit(500, "lb"),
  55443. name: "Side (SFW)",
  55444. image: {
  55445. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55446. extra: 1741/1629,
  55447. bottom: 196/1937
  55448. },
  55449. form: "taur",
  55450. default: true
  55451. },
  55452. taurSideNsfw: {
  55453. height: math.unit(6 + 4/12, "feet"),
  55454. weight: math.unit(500, "lb"),
  55455. name: "Taur (NSFW)",
  55456. image: {
  55457. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55458. extra: 1741/1629,
  55459. bottom: 196/1937
  55460. },
  55461. form: "taur",
  55462. },
  55463. },
  55464. [
  55465. {
  55466. name: "Huge",
  55467. height: math.unit(500, "feet"),
  55468. form: "anthro"
  55469. },
  55470. {
  55471. name: "Macro",
  55472. height: math.unit(1000, "feet"),
  55473. default: true,
  55474. form: "anthro"
  55475. },
  55476. {
  55477. name: "Megamacro",
  55478. height: math.unit(10000, "feet"),
  55479. form: "anthro"
  55480. },
  55481. {
  55482. name: "Huge",
  55483. height: math.unit(528, "feet"),
  55484. form: "taur"
  55485. },
  55486. {
  55487. name: "Macro",
  55488. height: math.unit(1056, "feet"),
  55489. default: true,
  55490. form: "taur"
  55491. },
  55492. {
  55493. name: "Megamacro",
  55494. height: math.unit(10556, "feet"),
  55495. form: "taur"
  55496. },
  55497. ],
  55498. {
  55499. "anthro": {
  55500. name: "Anthro",
  55501. default: true
  55502. },
  55503. "taur": {
  55504. name: "Taur",
  55505. },
  55506. }
  55507. ))
  55508. characterMakers.push(() => makeCharacter(
  55509. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55510. {
  55511. front: {
  55512. height: math.unit(8, "feet"),
  55513. weight: math.unit(500, "lb"),
  55514. name: "Front",
  55515. image: {
  55516. source: "./media/characters/armail/front.svg",
  55517. extra: 1753/1669,
  55518. bottom: 155/1908
  55519. }
  55520. },
  55521. back: {
  55522. height: math.unit(8, "feet"),
  55523. weight: math.unit(500, "lb"),
  55524. name: "Back",
  55525. image: {
  55526. source: "./media/characters/armail/back.svg",
  55527. extra: 1872/1803,
  55528. bottom: 63/1935
  55529. }
  55530. },
  55531. },
  55532. [
  55533. {
  55534. name: "Micro",
  55535. height: math.unit(0.25, "feet")
  55536. },
  55537. {
  55538. name: "Normal",
  55539. height: math.unit(8, "feet"),
  55540. default: true
  55541. },
  55542. {
  55543. name: "Mini-macro",
  55544. height: math.unit(30, "feet")
  55545. },
  55546. {
  55547. name: "Macro",
  55548. height: math.unit(400, "feet")
  55549. },
  55550. {
  55551. name: "Mega-macro",
  55552. height: math.unit(6000, "feet")
  55553. },
  55554. ]
  55555. ))
  55556. characterMakers.push(() => makeCharacter(
  55557. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55558. {
  55559. front: {
  55560. height: math.unit(6 + 7/12, "feet"),
  55561. weight: math.unit(210, "lb"),
  55562. name: "Front",
  55563. image: {
  55564. source: "./media/characters/wilfred-t-buxton/front.svg",
  55565. extra: 1068/882,
  55566. bottom: 28/1096
  55567. }
  55568. },
  55569. },
  55570. [
  55571. {
  55572. name: "Normal",
  55573. height: math.unit(6 + 7/12, "feet"),
  55574. default: true
  55575. },
  55576. ]
  55577. ))
  55578. characterMakers.push(() => makeCharacter(
  55579. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55580. {
  55581. front: {
  55582. height: math.unit(5 + 2/12, "feet"),
  55583. weight: math.unit(120, "lb"),
  55584. name: "Front",
  55585. image: {
  55586. source: "./media/characters/leighton-marrow/front.svg",
  55587. extra: 441/409,
  55588. bottom: 37/478
  55589. }
  55590. },
  55591. },
  55592. [
  55593. {
  55594. name: "Normal",
  55595. height: math.unit(5 + 2/12, "feet"),
  55596. default: true
  55597. },
  55598. ]
  55599. ))
  55600. characterMakers.push(() => makeCharacter(
  55601. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55602. {
  55603. front: {
  55604. height: math.unit(4, "meters"),
  55605. weight: math.unit(1200, "kg"),
  55606. name: "Front",
  55607. image: {
  55608. source: "./media/characters/licos/front.svg",
  55609. extra: 1727/1604,
  55610. bottom: 101/1828
  55611. },
  55612. form: "anthro",
  55613. default: true
  55614. },
  55615. taur_side: {
  55616. height: math.unit(20, "meters"),
  55617. weight: math.unit(1100000, "kg"),
  55618. name: "Side",
  55619. image: {
  55620. source: "./media/characters/licos/taur.svg",
  55621. extra: 1158/1091,
  55622. bottom: 80/1238
  55623. },
  55624. form: "taur",
  55625. default: true
  55626. },
  55627. },
  55628. [
  55629. {
  55630. name: "Normal",
  55631. height: math.unit(4, "meters"),
  55632. default: true,
  55633. form: "anthro"
  55634. },
  55635. {
  55636. name: "Normal",
  55637. height: math.unit(20, "meters"),
  55638. default: true,
  55639. form: "taur"
  55640. },
  55641. ],
  55642. {
  55643. "anthro": {
  55644. name: "Anthro",
  55645. default: true
  55646. },
  55647. "taur": {
  55648. name: "Taur",
  55649. },
  55650. }
  55651. ))
  55652. characterMakers.push(() => makeCharacter(
  55653. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55654. {
  55655. front: {
  55656. height: math.unit(10 + 3/12, "feet"),
  55657. name: "Front",
  55658. image: {
  55659. source: "./media/characters/theo-monkey/front.svg",
  55660. extra: 1735/1658,
  55661. bottom: 73/1808
  55662. }
  55663. },
  55664. back: {
  55665. height: math.unit(10 + 3/12, "feet"),
  55666. name: "Back",
  55667. image: {
  55668. source: "./media/characters/theo-monkey/back.svg",
  55669. extra: 1742/1664,
  55670. bottom: 33/1775
  55671. }
  55672. },
  55673. head: {
  55674. height: math.unit(2.29, "feet"),
  55675. name: "Head",
  55676. image: {
  55677. source: "./media/characters/theo-monkey/head.svg"
  55678. }
  55679. },
  55680. handPalm: {
  55681. height: math.unit(1.73, "feet"),
  55682. name: "Hand (Palm)",
  55683. image: {
  55684. source: "./media/characters/theo-monkey/hand-palm.svg"
  55685. }
  55686. },
  55687. handBack: {
  55688. height: math.unit(1.63, "feet"),
  55689. name: "Hand (Back)",
  55690. image: {
  55691. source: "./media/characters/theo-monkey/hand-back.svg"
  55692. }
  55693. },
  55694. footSole: {
  55695. height: math.unit(2.15, "feet"),
  55696. name: "Foot (Sole)",
  55697. image: {
  55698. source: "./media/characters/theo-monkey/foot-sole.svg"
  55699. }
  55700. },
  55701. footSide: {
  55702. height: math.unit(1.6, "feet"),
  55703. name: "Foot (Side)",
  55704. image: {
  55705. source: "./media/characters/theo-monkey/foot-side.svg"
  55706. }
  55707. },
  55708. },
  55709. [
  55710. {
  55711. name: "Normal",
  55712. height: math.unit(10 + 3/12, "feet"),
  55713. default: true
  55714. },
  55715. ]
  55716. ))
  55717. characterMakers.push(() => makeCharacter(
  55718. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55719. {
  55720. front: {
  55721. height: math.unit(11, "feet"),
  55722. weight: math.unit(3000, "lb"),
  55723. preyCapacity: math.unit(10, "people"),
  55724. name: "Front",
  55725. image: {
  55726. source: "./media/characters/brook/front.svg",
  55727. extra: 909/835,
  55728. bottom: 108/1017
  55729. }
  55730. },
  55731. back: {
  55732. height: math.unit(11, "feet"),
  55733. weight: math.unit(3000, "lb"),
  55734. preyCapacity: math.unit(10, "people"),
  55735. name: "Back",
  55736. image: {
  55737. source: "./media/characters/brook/back.svg",
  55738. extra: 976/916,
  55739. bottom: 34/1010
  55740. }
  55741. },
  55742. backAlt: {
  55743. height: math.unit(11, "feet"),
  55744. weight: math.unit(3000, "lb"),
  55745. preyCapacity: math.unit(10, "people"),
  55746. name: "Back (Alt)",
  55747. image: {
  55748. source: "./media/characters/brook/back-alt.svg",
  55749. extra: 1283/1213,
  55750. bottom: 35/1318
  55751. }
  55752. },
  55753. bust: {
  55754. height: math.unit(9.0859030837, "feet"),
  55755. weight: math.unit(3000, "lb"),
  55756. preyCapacity: math.unit(10, "people"),
  55757. name: "Bust",
  55758. image: {
  55759. source: "./media/characters/brook/bust.svg",
  55760. extra: 2043/1923,
  55761. bottom: 0/2043
  55762. }
  55763. },
  55764. },
  55765. [
  55766. {
  55767. name: "Small",
  55768. height: math.unit(11, "feet"),
  55769. default: true
  55770. },
  55771. {
  55772. name: "Towering",
  55773. height: math.unit(5, "km")
  55774. },
  55775. {
  55776. name: "Enormous",
  55777. height: math.unit(25, "earths")
  55778. },
  55779. ]
  55780. ))
  55781. characterMakers.push(() => makeCharacter(
  55782. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55783. {
  55784. front: {
  55785. height: math.unit(4, "feet"),
  55786. weight: math.unit(150, "lb"),
  55787. name: "Front",
  55788. image: {
  55789. source: "./media/characters/squishi/front.svg",
  55790. extra: 1428/1271,
  55791. bottom: 30/1458
  55792. },
  55793. extraAttributes: {
  55794. "pawSize": {
  55795. name: "Paw Size",
  55796. power: 1,
  55797. type: "length",
  55798. base: math.unit(14, "ShoeSizeMensUS"),
  55799. defaultUnit: "ShoeSizeMensUS"
  55800. },
  55801. }
  55802. },
  55803. side: {
  55804. height: math.unit(4, "feet"),
  55805. weight: math.unit(150, "lb"),
  55806. name: "Side",
  55807. image: {
  55808. source: "./media/characters/squishi/side.svg",
  55809. extra: 1428/1271,
  55810. bottom: 30/1458
  55811. },
  55812. extraAttributes: {
  55813. "pawSize": {
  55814. name: "Paw Size",
  55815. power: 1,
  55816. type: "length",
  55817. base: math.unit(14, "ShoeSizeMensUS"),
  55818. defaultUnit: "ShoeSizeMensUS"
  55819. },
  55820. }
  55821. },
  55822. back: {
  55823. height: math.unit(4, "feet"),
  55824. weight: math.unit(150, "lb"),
  55825. name: "Back",
  55826. image: {
  55827. source: "./media/characters/squishi/back.svg",
  55828. extra: 1428/1271,
  55829. bottom: 30/1458
  55830. },
  55831. extraAttributes: {
  55832. "pawSize": {
  55833. name: "Paw Size",
  55834. power: 1,
  55835. type: "length",
  55836. base: math.unit(14, "ShoeSizeMensUS"),
  55837. defaultUnit: "ShoeSizeMensUS"
  55838. },
  55839. }
  55840. },
  55841. },
  55842. [
  55843. {
  55844. name: "Normal",
  55845. height: math.unit(4, "feet"),
  55846. default: true
  55847. },
  55848. ]
  55849. ))
  55850. characterMakers.push(() => makeCharacter(
  55851. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55852. {
  55853. front: {
  55854. height: math.unit(7 + 8/12, "feet"),
  55855. weight: math.unit(333, "lb"),
  55856. name: "Front",
  55857. image: {
  55858. source: "./media/characters/vincent-vasroc/front.svg",
  55859. extra: 1962/1860,
  55860. bottom: 41/2003
  55861. }
  55862. },
  55863. back: {
  55864. height: math.unit(7 + 8/12, "feet"),
  55865. weight: math.unit(333, "lb"),
  55866. name: "Back",
  55867. image: {
  55868. source: "./media/characters/vincent-vasroc/back.svg",
  55869. extra: 1952/1815,
  55870. bottom: 33/1985
  55871. }
  55872. },
  55873. paw: {
  55874. height: math.unit(1.24, "feet"),
  55875. name: "Paw",
  55876. image: {
  55877. source: "./media/characters/vincent-vasroc/paw.svg"
  55878. }
  55879. },
  55880. ear: {
  55881. height: math.unit(0.75, "feet"),
  55882. name: "Ear",
  55883. image: {
  55884. source: "./media/characters/vincent-vasroc/ear.svg"
  55885. }
  55886. },
  55887. },
  55888. [
  55889. {
  55890. name: "Nano",
  55891. height: math.unit(92, "micrometers")
  55892. },
  55893. {
  55894. name: "Normal",
  55895. height: math.unit(7 + 8/12, "feet"),
  55896. default: true
  55897. },
  55898. ]
  55899. ))
  55900. characterMakers.push(() => makeCharacter(
  55901. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55902. {
  55903. frontNsfw: {
  55904. height: math.unit(40, "feet"),
  55905. weight: math.unit(58, "tons"),
  55906. name: "Front (NSFW)",
  55907. image: {
  55908. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55909. extra: 1265/965,
  55910. bottom: 155/1420
  55911. }
  55912. },
  55913. frontSfw: {
  55914. height: math.unit(40, "feet"),
  55915. weight: math.unit(58, "tons"),
  55916. name: "Front (SFW)",
  55917. image: {
  55918. source: "./media/characters/ru-kahn/front-sfw.svg",
  55919. extra: 1265/965,
  55920. bottom: 80/1345
  55921. }
  55922. },
  55923. },
  55924. [
  55925. {
  55926. name: "Small",
  55927. height: math.unit(4, "feet")
  55928. },
  55929. {
  55930. name: "Normal",
  55931. height: math.unit(40, "feet"),
  55932. default: true
  55933. },
  55934. {
  55935. name: "Macro",
  55936. height: math.unit(400, "feet")
  55937. },
  55938. ]
  55939. ))
  55940. characterMakers.push(() => makeCharacter(
  55941. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55942. {
  55943. frontNude: {
  55944. height: math.unit(6 + 5/12, "feet"),
  55945. name: "Front (Nude)",
  55946. image: {
  55947. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55948. extra: 1369/1366,
  55949. bottom: 68/1437
  55950. }
  55951. },
  55952. frontDressed: {
  55953. height: math.unit(6 + 5/12, "feet"),
  55954. name: "Front (Dressed)",
  55955. image: {
  55956. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55957. extra: 1369/1366,
  55958. bottom: 68/1437
  55959. }
  55960. },
  55961. },
  55962. [
  55963. {
  55964. name: "Normal",
  55965. height: math.unit(6 + 5/12, "feet"),
  55966. default: true
  55967. },
  55968. {
  55969. name: "Maximum",
  55970. height: math.unit(1930, "feet")
  55971. },
  55972. ]
  55973. ))
  55974. characterMakers.push(() => makeCharacter(
  55975. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55976. {
  55977. front: {
  55978. height: math.unit(5 + 6/12, "feet"),
  55979. name: "Front",
  55980. image: {
  55981. source: "./media/characters/kaja/front.svg",
  55982. extra: 1874/1514,
  55983. bottom: 117/1991
  55984. }
  55985. },
  55986. },
  55987. [
  55988. {
  55989. name: "Normal",
  55990. height: math.unit(5 + 6/12, "feet"),
  55991. default: true
  55992. },
  55993. ]
  55994. ))
  55995. characterMakers.push(() => makeCharacter(
  55996. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55997. {
  55998. front: {
  55999. height: math.unit(5 + 9/12, "feet"),
  56000. weight: math.unit(200, "lb"),
  56001. name: "Front",
  56002. image: {
  56003. source: "./media/characters/mark-smith/front.svg",
  56004. extra: 1004/943,
  56005. bottom: 58/1062
  56006. }
  56007. },
  56008. back: {
  56009. height: math.unit(5 + 9/12, "feet"),
  56010. weight: math.unit(200, "lb"),
  56011. name: "Back",
  56012. image: {
  56013. source: "./media/characters/mark-smith/back.svg",
  56014. extra: 1023/953,
  56015. bottom: 24/1047
  56016. }
  56017. },
  56018. head: {
  56019. height: math.unit(1.82, "feet"),
  56020. name: "Head",
  56021. image: {
  56022. source: "./media/characters/mark-smith/head.svg"
  56023. }
  56024. },
  56025. hand: {
  56026. height: math.unit(1.4, "feet"),
  56027. name: "Hand",
  56028. image: {
  56029. source: "./media/characters/mark-smith/hand.svg"
  56030. }
  56031. },
  56032. paw: {
  56033. height: math.unit(1.69, "feet"),
  56034. name: "Paw",
  56035. image: {
  56036. source: "./media/characters/mark-smith/paw.svg"
  56037. }
  56038. },
  56039. },
  56040. [
  56041. {
  56042. name: "Micro",
  56043. height: math.unit(0.25, "inches")
  56044. },
  56045. {
  56046. name: "Normal",
  56047. height: math.unit(5 + 9/12, "feet"),
  56048. default: true
  56049. },
  56050. {
  56051. name: "Macro",
  56052. height: math.unit(500, "feet")
  56053. },
  56054. ]
  56055. ))
  56056. characterMakers.push(() => makeCharacter(
  56057. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56058. {
  56059. frontNude: {
  56060. height: math.unit(6, "feet"),
  56061. name: "Front (Nude)",
  56062. image: {
  56063. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56064. extra: 1384/1321,
  56065. bottom: 57/1441
  56066. }
  56067. },
  56068. frontDressed: {
  56069. height: math.unit(6, "feet"),
  56070. name: "Front (Dressed)",
  56071. image: {
  56072. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56073. extra: 1384/1321,
  56074. bottom: 57/1441
  56075. }
  56076. },
  56077. },
  56078. [
  56079. {
  56080. name: "Normal",
  56081. height: math.unit(6, "feet"),
  56082. default: true
  56083. },
  56084. {
  56085. name: "Maximum",
  56086. height: math.unit(1776, "feet")
  56087. },
  56088. ]
  56089. ))
  56090. characterMakers.push(() => makeCharacter(
  56091. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56092. {
  56093. front: {
  56094. height: math.unit(2 + 4/12, "feet"),
  56095. weight: math.unit(350, "lb"),
  56096. name: "Front",
  56097. image: {
  56098. source: "./media/characters/devos/front.svg",
  56099. extra: 958/852,
  56100. bottom: 143/1101
  56101. }
  56102. },
  56103. },
  56104. [
  56105. {
  56106. name: "Base",
  56107. height: math.unit(2 + 4/12, "feet"),
  56108. default: true
  56109. },
  56110. ]
  56111. ))
  56112. characterMakers.push(() => makeCharacter(
  56113. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56114. {
  56115. front: {
  56116. height: math.unit(9 + 2/12, "feet"),
  56117. name: "Front",
  56118. image: {
  56119. source: "./media/characters/hiveheart/front.svg",
  56120. extra: 394/364,
  56121. bottom: 65/459
  56122. }
  56123. },
  56124. back: {
  56125. height: math.unit(9 + 2/12, "feet"),
  56126. name: "Back",
  56127. image: {
  56128. source: "./media/characters/hiveheart/back.svg",
  56129. extra: 374/357,
  56130. bottom: 63/437
  56131. }
  56132. },
  56133. },
  56134. [
  56135. {
  56136. name: "Base",
  56137. height: math.unit(9 + 2/12, "feet"),
  56138. default: true
  56139. },
  56140. ]
  56141. ))
  56142. characterMakers.push(() => makeCharacter(
  56143. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56144. {
  56145. front: {
  56146. height: math.unit(2.5, "inches"),
  56147. weight: math.unit(0.6, "oz"),
  56148. name: "Front",
  56149. image: {
  56150. source: "./media/characters/bryn/front.svg",
  56151. extra: 1480/1205,
  56152. bottom: 27/1507
  56153. }
  56154. },
  56155. back: {
  56156. height: math.unit(2.5, "inches"),
  56157. weight: math.unit(0.6, "oz"),
  56158. name: "Back",
  56159. image: {
  56160. source: "./media/characters/bryn/back.svg",
  56161. extra: 1475/1201,
  56162. bottom: 39/1514
  56163. }
  56164. },
  56165. foot: {
  56166. height: math.unit(0.4, "inches"),
  56167. name: "Foot",
  56168. image: {
  56169. source: "./media/characters/bryn/foot.svg"
  56170. }
  56171. },
  56172. },
  56173. [
  56174. {
  56175. name: "Normal",
  56176. height: math.unit(2.5, "inches"),
  56177. default: true
  56178. },
  56179. ]
  56180. ))
  56181. characterMakers.push(() => makeCharacter(
  56182. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56183. {
  56184. side: {
  56185. height: math.unit(7, "feet"),
  56186. weight: math.unit(657, "kg"),
  56187. name: "Side",
  56188. image: {
  56189. source: "./media/characters/delta/side.svg",
  56190. extra: 781/212,
  56191. bottom: 7/788
  56192. },
  56193. extraAttributes: {
  56194. "wingspan": {
  56195. name: "Wingspan",
  56196. power: 1,
  56197. type: "length",
  56198. base: math.unit(48, "feet")
  56199. },
  56200. "length": {
  56201. name: "Length",
  56202. power: 1,
  56203. type: "length",
  56204. base: math.unit(21, "feet")
  56205. },
  56206. "pawSize": {
  56207. name: "Paw Size",
  56208. power: 2,
  56209. type: "area",
  56210. base: math.unit(1.5*1.4, "feet^2")
  56211. },
  56212. }
  56213. },
  56214. },
  56215. [
  56216. {
  56217. name: "Normal",
  56218. height: math.unit(6, "feet"),
  56219. default: true
  56220. },
  56221. ]
  56222. ))
  56223. characterMakers.push(() => makeCharacter(
  56224. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56225. {
  56226. front: {
  56227. height: math.unit(6, "feet"),
  56228. name: "Front",
  56229. image: {
  56230. source: "./media/characters/pyrow/front.svg",
  56231. extra: 513/486,
  56232. bottom: 14/527
  56233. }
  56234. },
  56235. frontWing: {
  56236. height: math.unit(6, "feet"),
  56237. name: "Front (Wing)",
  56238. image: {
  56239. source: "./media/characters/pyrow/front-wing.svg",
  56240. extra: 539/383,
  56241. bottom: 20/559
  56242. }
  56243. },
  56244. back: {
  56245. height: math.unit(6, "feet"),
  56246. name: "Back",
  56247. image: {
  56248. source: "./media/characters/pyrow/back.svg",
  56249. extra: 500/473,
  56250. bottom: 9/509
  56251. }
  56252. },
  56253. },
  56254. [
  56255. {
  56256. name: "Normal",
  56257. height: math.unit(6, "feet"),
  56258. default: true
  56259. },
  56260. ]
  56261. ))
  56262. characterMakers.push(() => makeCharacter(
  56263. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56264. {
  56265. front: {
  56266. height: math.unit(5, "meters"),
  56267. weight: math.unit(3, "tonnes"),
  56268. name: "Front",
  56269. image: {
  56270. source: "./media/characters/velikan/front.svg",
  56271. extra: 867/744,
  56272. bottom: 71/938
  56273. },
  56274. extraAttributes: {
  56275. "shoeSize": {
  56276. name: "Shoe Size",
  56277. power: 1,
  56278. type: "length",
  56279. base: math.unit(135, "ShoeSizeUK"),
  56280. defaultUnit: "ShoeSizeUK"
  56281. },
  56282. }
  56283. },
  56284. },
  56285. [
  56286. {
  56287. name: "Normal",
  56288. height: math.unit(5, "meters"),
  56289. default: true
  56290. },
  56291. {
  56292. name: "Macro",
  56293. height: math.unit(1, "km")
  56294. },
  56295. {
  56296. name: "Mega Macro",
  56297. height: math.unit(100, "km")
  56298. },
  56299. {
  56300. name: "Giga Macro",
  56301. height: math.unit(2, "megameters")
  56302. },
  56303. {
  56304. name: "Planetary",
  56305. height: math.unit(22, "megameters")
  56306. },
  56307. {
  56308. name: "Solar",
  56309. height: math.unit(8, "gigameters")
  56310. },
  56311. {
  56312. name: "Cosmic",
  56313. height: math.unit(10, "zettameters")
  56314. },
  56315. {
  56316. name: "Omni",
  56317. height: math.unit(9e260, "multiverses")
  56318. },
  56319. ]
  56320. ))
  56321. characterMakers.push(() => makeCharacter(
  56322. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56323. {
  56324. front: {
  56325. height: math.unit(4 + 3/12, "feet"),
  56326. weight: math.unit(90, "lb"),
  56327. name: "Front",
  56328. image: {
  56329. source: "./media/characters/sabiki/front.svg",
  56330. extra: 1662/1423,
  56331. bottom: 65/1727
  56332. }
  56333. },
  56334. },
  56335. [
  56336. {
  56337. name: "Normal",
  56338. height: math.unit(4 + 3/12, "feet"),
  56339. default: true
  56340. },
  56341. ]
  56342. ))
  56343. characterMakers.push(() => makeCharacter(
  56344. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56345. {
  56346. frontSfw: {
  56347. height: math.unit(2, "mm"),
  56348. name: "Front (SFW)",
  56349. image: {
  56350. source: "./media/characters/carmel/front-sfw.svg",
  56351. extra: 1131/1006,
  56352. bottom: 66/1197
  56353. }
  56354. },
  56355. frontNsfw: {
  56356. height: math.unit(2, "mm"),
  56357. name: "Front (NSFW)",
  56358. image: {
  56359. source: "./media/characters/carmel/front-nsfw.svg",
  56360. extra: 1131/1006,
  56361. bottom: 66/1197
  56362. }
  56363. },
  56364. foot: {
  56365. height: math.unit(0.3, "mm"),
  56366. name: "Foot",
  56367. image: {
  56368. source: "./media/characters/carmel/foot.svg"
  56369. }
  56370. },
  56371. tongue: {
  56372. height: math.unit(0.71, "mm"),
  56373. name: "Tongue",
  56374. image: {
  56375. source: "./media/characters/carmel/tongue.svg"
  56376. }
  56377. },
  56378. dick: {
  56379. height: math.unit(0.085, "mm"),
  56380. name: "Dick",
  56381. image: {
  56382. source: "./media/characters/carmel/dick.svg"
  56383. }
  56384. },
  56385. },
  56386. [
  56387. {
  56388. name: "Micro",
  56389. height: math.unit(2, "mm"),
  56390. default: true
  56391. },
  56392. {
  56393. name: "Normal",
  56394. height: math.unit(4 + 8/12, "feet")
  56395. },
  56396. {
  56397. name: "Mega Macro",
  56398. height: math.unit(250, "feet")
  56399. },
  56400. {
  56401. name: "BIGGER",
  56402. height: math.unit(1000, "feet")
  56403. },
  56404. {
  56405. name: "BIGGEST",
  56406. height: math.unit(2, "miles")
  56407. },
  56408. ]
  56409. ))
  56410. characterMakers.push(() => makeCharacter(
  56411. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56412. {
  56413. front: {
  56414. height: math.unit(6.5, "feet"),
  56415. weight: math.unit(198, "lb"),
  56416. name: "Front",
  56417. image: {
  56418. source: "./media/characters/tamani/anthro.svg",
  56419. extra: 930/890,
  56420. bottom: 34/964
  56421. },
  56422. form: "anthro",
  56423. default: true
  56424. },
  56425. side: {
  56426. height: math.unit(6, "feet"),
  56427. weight: math.unit(198*2, "lb"),
  56428. name: "Side",
  56429. image: {
  56430. source: "./media/characters/tamani/feral.svg",
  56431. extra: 559/519,
  56432. bottom: 43/602
  56433. },
  56434. form: "feral"
  56435. },
  56436. },
  56437. [
  56438. {
  56439. name: "Normal",
  56440. height: math.unit(6.5, "feet"),
  56441. default: true,
  56442. form: "anthro"
  56443. },
  56444. {
  56445. name: "Normal",
  56446. height: math.unit(6, "feet"),
  56447. default: true,
  56448. form: "feral"
  56449. },
  56450. ],
  56451. {
  56452. "anthro": {
  56453. name: "Anthro",
  56454. default: true
  56455. },
  56456. "feral": {
  56457. name: "Feral",
  56458. },
  56459. }
  56460. ))
  56461. characterMakers.push(() => makeCharacter(
  56462. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56463. {
  56464. front: {
  56465. height: math.unit(4 + 1/12, "feet"),
  56466. weight: math.unit(114, "lb"),
  56467. name: "Front",
  56468. image: {
  56469. source: "./media/characters/dex/front.svg",
  56470. extra: 787/680,
  56471. bottom: 18/805
  56472. }
  56473. },
  56474. side: {
  56475. height: math.unit(4 + 1/12, "feet"),
  56476. weight: math.unit(114, "lb"),
  56477. name: "Side",
  56478. image: {
  56479. source: "./media/characters/dex/side.svg",
  56480. extra: 785/680,
  56481. bottom: 12/797
  56482. }
  56483. },
  56484. back: {
  56485. height: math.unit(4 + 1/12, "feet"),
  56486. weight: math.unit(114, "lb"),
  56487. name: "Back",
  56488. image: {
  56489. source: "./media/characters/dex/back.svg",
  56490. extra: 785/681,
  56491. bottom: 17/802
  56492. }
  56493. },
  56494. loungewear: {
  56495. height: math.unit(4 + 1/12, "feet"),
  56496. weight: math.unit(114, "lb"),
  56497. name: "Loungewear",
  56498. image: {
  56499. source: "./media/characters/dex/loungewear.svg",
  56500. extra: 787/680,
  56501. bottom: 18/805
  56502. }
  56503. },
  56504. workout: {
  56505. height: math.unit(4 + 1/12, "feet"),
  56506. weight: math.unit(114, "lb"),
  56507. name: "Workout",
  56508. image: {
  56509. source: "./media/characters/dex/workout.svg",
  56510. extra: 787/680,
  56511. bottom: 18/805
  56512. }
  56513. },
  56514. schoolUniform: {
  56515. height: math.unit(4 + 1/12, "feet"),
  56516. weight: math.unit(114, "lb"),
  56517. name: "School-uniform",
  56518. image: {
  56519. source: "./media/characters/dex/school-uniform.svg",
  56520. extra: 787/680,
  56521. bottom: 18/805
  56522. }
  56523. },
  56524. maw: {
  56525. height: math.unit(0.55, "feet"),
  56526. name: "Maw",
  56527. image: {
  56528. source: "./media/characters/dex/maw.svg"
  56529. }
  56530. },
  56531. paw: {
  56532. height: math.unit(0.87, "feet"),
  56533. name: "Paw",
  56534. image: {
  56535. source: "./media/characters/dex/paw.svg"
  56536. }
  56537. },
  56538. bust: {
  56539. height: math.unit(1.67, "feet"),
  56540. name: "Bust",
  56541. image: {
  56542. source: "./media/characters/dex/bust.svg"
  56543. }
  56544. },
  56545. },
  56546. [
  56547. {
  56548. name: "Normal",
  56549. height: math.unit(4 + 1/12, "feet"),
  56550. default: true
  56551. },
  56552. ]
  56553. ))
  56554. characterMakers.push(() => makeCharacter(
  56555. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56556. {
  56557. front: {
  56558. height: math.unit(4 + 3/12, "feet"),
  56559. weight: math.unit(60, "lb"),
  56560. name: "Front",
  56561. image: {
  56562. source: "./media/characters/silke/front.svg",
  56563. extra: 1334/1122,
  56564. bottom: 21/1355
  56565. }
  56566. },
  56567. back: {
  56568. height: math.unit(4 + 3/12, "feet"),
  56569. weight: math.unit(60, "lb"),
  56570. name: "Back",
  56571. image: {
  56572. source: "./media/characters/silke/back.svg",
  56573. extra: 1328/1092,
  56574. bottom: 16/1344
  56575. }
  56576. },
  56577. dressed: {
  56578. height: math.unit(4 + 3/12, "feet"),
  56579. weight: math.unit(60, "lb"),
  56580. name: "Dressed",
  56581. image: {
  56582. source: "./media/characters/silke/dressed.svg",
  56583. extra: 1334/1122,
  56584. bottom: 43/1377
  56585. }
  56586. },
  56587. },
  56588. [
  56589. {
  56590. name: "Normal",
  56591. height: math.unit(4 + 3/12, "feet"),
  56592. default: true
  56593. },
  56594. ]
  56595. ))
  56596. characterMakers.push(() => makeCharacter(
  56597. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56598. {
  56599. front: {
  56600. height: math.unit(1.58, "meters"),
  56601. weight: math.unit(47, "kg"),
  56602. name: "Front",
  56603. image: {
  56604. source: "./media/characters/wireshark/front.svg",
  56605. extra: 883/838,
  56606. bottom: 66/949
  56607. }
  56608. },
  56609. },
  56610. [
  56611. {
  56612. name: "Normal",
  56613. height: math.unit(1.58, "meters"),
  56614. default: true
  56615. },
  56616. ]
  56617. ))
  56618. characterMakers.push(() => makeCharacter(
  56619. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56620. {
  56621. front: {
  56622. height: math.unit(6, "meters"),
  56623. weight: math.unit(15000, "kg"),
  56624. name: "Front",
  56625. image: {
  56626. source: "./media/characters/gallagher/front.svg",
  56627. extra: 532/493,
  56628. bottom: 0/532
  56629. }
  56630. },
  56631. },
  56632. [
  56633. {
  56634. name: "Normal",
  56635. height: math.unit(6, "meters"),
  56636. default: true
  56637. },
  56638. ]
  56639. ))
  56640. characterMakers.push(() => makeCharacter(
  56641. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56642. {
  56643. front: {
  56644. height: math.unit(2.4, "meters"),
  56645. weight: math.unit(270, "kg"),
  56646. name: "Front",
  56647. image: {
  56648. source: "./media/characters/alice/front.svg",
  56649. extra: 950/900,
  56650. bottom: 36/986
  56651. }
  56652. },
  56653. side: {
  56654. height: math.unit(2.4, "meters"),
  56655. weight: math.unit(270, "kg"),
  56656. name: "Side",
  56657. image: {
  56658. source: "./media/characters/alice/side.svg",
  56659. extra: 921/876,
  56660. bottom: 19/940
  56661. }
  56662. },
  56663. dressed: {
  56664. height: math.unit(2.4, "meters"),
  56665. weight: math.unit(270, "kg"),
  56666. name: "Dressed",
  56667. image: {
  56668. source: "./media/characters/alice/dressed.svg",
  56669. extra: 905/850,
  56670. bottom: 81/986
  56671. }
  56672. },
  56673. fishnet: {
  56674. height: math.unit(2.4, "meters"),
  56675. weight: math.unit(270, "kg"),
  56676. name: "Fishnet",
  56677. image: {
  56678. source: "./media/characters/alice/fishnet.svg",
  56679. extra: 905/850,
  56680. bottom: 81/986
  56681. }
  56682. },
  56683. },
  56684. [
  56685. {
  56686. name: "Normal",
  56687. height: math.unit(2.4, "meters"),
  56688. default: true
  56689. },
  56690. ]
  56691. ))
  56692. characterMakers.push(() => makeCharacter(
  56693. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56694. {
  56695. front: {
  56696. height: math.unit(175.25, "feet"),
  56697. name: "Front",
  56698. image: {
  56699. source: "./media/characters/fio/front.svg",
  56700. extra: 1883/1591,
  56701. bottom: 34/1917
  56702. }
  56703. },
  56704. },
  56705. [
  56706. {
  56707. name: "Normal",
  56708. height: math.unit(175.25, "cm"),
  56709. default: true
  56710. },
  56711. ]
  56712. ))
  56713. characterMakers.push(() => makeCharacter(
  56714. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56715. {
  56716. side: {
  56717. height: math.unit(6, "meters"),
  56718. weight: math.unit(3400, "kg"),
  56719. preyCapacity: math.unit(1700, "liters"),
  56720. name: "Side",
  56721. image: {
  56722. source: "./media/characters/hass/side.svg",
  56723. extra: 1058/997,
  56724. bottom: 177/1235
  56725. }
  56726. },
  56727. feeding: {
  56728. height: math.unit(6*0.63, "meters"),
  56729. weight: math.unit(3400, "kg"),
  56730. preyCapacity: math.unit(1700, "liters"),
  56731. name: "Feeding",
  56732. image: {
  56733. source: "./media/characters/hass/feeding.svg",
  56734. extra: 689/579,
  56735. bottom: 146/835
  56736. }
  56737. },
  56738. guts: {
  56739. height: math.unit(6, "meters"),
  56740. weight: math.unit(3400, "kg"),
  56741. name: "Guts",
  56742. image: {
  56743. source: "./media/characters/hass/guts.svg",
  56744. extra: 1223/1198,
  56745. bottom: 182/1405
  56746. }
  56747. },
  56748. dickFront: {
  56749. height: math.unit(1.4, "meters"),
  56750. name: "Dick (Front)",
  56751. image: {
  56752. source: "./media/characters/hass/dick-front.svg"
  56753. }
  56754. },
  56755. dickSide: {
  56756. height: math.unit(1.3, "meters"),
  56757. name: "Dick (Side)",
  56758. image: {
  56759. source: "./media/characters/hass/dick-side.svg"
  56760. }
  56761. },
  56762. dickBack: {
  56763. height: math.unit(1.4, "meters"),
  56764. name: "Dick (Back)",
  56765. image: {
  56766. source: "./media/characters/hass/dick-back.svg"
  56767. }
  56768. },
  56769. },
  56770. [
  56771. {
  56772. name: "Normal",
  56773. height: math.unit(6, "meters"),
  56774. default: true
  56775. },
  56776. ]
  56777. ))
  56778. characterMakers.push(() => makeCharacter(
  56779. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56780. {
  56781. front: {
  56782. height: math.unit(4, "feet"),
  56783. weight: math.unit(60, "lb"),
  56784. name: "Front",
  56785. image: {
  56786. source: "./media/characters/hickory-finnegan/front.svg",
  56787. extra: 444/411,
  56788. bottom: 10/454
  56789. }
  56790. },
  56791. side: {
  56792. height: math.unit(4, "feet"),
  56793. weight: math.unit(60, "lb"),
  56794. name: "Side",
  56795. image: {
  56796. source: "./media/characters/hickory-finnegan/side.svg",
  56797. extra: 444/411,
  56798. bottom: 10/454
  56799. }
  56800. },
  56801. back: {
  56802. height: math.unit(4, "feet"),
  56803. weight: math.unit(60, "lb"),
  56804. name: "Back",
  56805. image: {
  56806. source: "./media/characters/hickory-finnegan/back.svg",
  56807. extra: 444/411,
  56808. bottom: 10/454
  56809. }
  56810. },
  56811. },
  56812. [
  56813. {
  56814. name: "Normal",
  56815. height: math.unit(4, "feet"),
  56816. default: true
  56817. },
  56818. ]
  56819. ))
  56820. characterMakers.push(() => makeCharacter(
  56821. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56822. {
  56823. snivy_front: {
  56824. height: math.unit(2, "feet"),
  56825. weight: math.unit(17.9, "lb"),
  56826. name: "Front",
  56827. image: {
  56828. source: "./media/characters/robin-phox/snivy-front.svg",
  56829. extra: 569/504,
  56830. bottom: 33/602
  56831. },
  56832. form: "snivy",
  56833. default: true
  56834. },
  56835. snivy_frontNsfw: {
  56836. height: math.unit(2, "feet"),
  56837. weight: math.unit(17.9, "lb"),
  56838. name: "Front (NSFW)",
  56839. image: {
  56840. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56841. extra: 569/504,
  56842. bottom: 33/602
  56843. },
  56844. form: "snivy",
  56845. },
  56846. snivy_back: {
  56847. height: math.unit(2, "feet"),
  56848. weight: math.unit(17.9, "lb"),
  56849. name: "Back",
  56850. image: {
  56851. source: "./media/characters/robin-phox/snivy-back.svg",
  56852. extra: 577/508,
  56853. bottom: 21/598
  56854. },
  56855. form: "snivy",
  56856. },
  56857. snivy_foot: {
  56858. height: math.unit(0.68, "feet"),
  56859. name: "Foot",
  56860. image: {
  56861. source: "./media/characters/robin-phox/snivy-foot.svg"
  56862. },
  56863. form: "snivy",
  56864. },
  56865. snivy_sole: {
  56866. height: math.unit(0.68, "feet"),
  56867. name: "Sole",
  56868. image: {
  56869. source: "./media/characters/robin-phox/snivy-sole.svg"
  56870. },
  56871. form: "snivy",
  56872. },
  56873. yoshi_front: {
  56874. height: math.unit(6, "feet"),
  56875. weight: math.unit(150, "lb"),
  56876. name: "Front",
  56877. image: {
  56878. source: "./media/characters/robin-phox/yoshi-front.svg",
  56879. extra: 890/792,
  56880. bottom: 29/919
  56881. },
  56882. form: "yoshi",
  56883. default: true
  56884. },
  56885. yoshi_frontNsfw: {
  56886. height: math.unit(6, "feet"),
  56887. weight: math.unit(150, "lb"),
  56888. name: "Front (NSFW)",
  56889. image: {
  56890. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56891. extra: 890/792,
  56892. bottom: 29/919
  56893. },
  56894. form: "yoshi",
  56895. },
  56896. yoshi_back: {
  56897. height: math.unit(6, "feet"),
  56898. weight: math.unit(150, "lb"),
  56899. name: "Back",
  56900. image: {
  56901. source: "./media/characters/robin-phox/yoshi-back.svg",
  56902. extra: 890/792,
  56903. bottom: 29/919
  56904. },
  56905. form: "yoshi",
  56906. },
  56907. yoshi_foot: {
  56908. height: math.unit(1.5, "feet"),
  56909. name: "Foot",
  56910. image: {
  56911. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56912. },
  56913. form: "yoshi",
  56914. },
  56915. delphox_front: {
  56916. height: math.unit(4 + 11/12, "feet"),
  56917. weight: math.unit(86, "lb"),
  56918. name: "Front",
  56919. image: {
  56920. source: "./media/characters/robin-phox/delphox-front.svg",
  56921. extra: 1266/1069,
  56922. bottom: 32/1298
  56923. },
  56924. form: "delphox",
  56925. default: true
  56926. },
  56927. delphox_frontNsfw: {
  56928. height: math.unit(4 + 11/12, "feet"),
  56929. weight: math.unit(86, "lb"),
  56930. name: "Front (NSFW)",
  56931. image: {
  56932. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56933. extra: 1266/1069,
  56934. bottom: 32/1298
  56935. },
  56936. form: "delphox",
  56937. },
  56938. delphox_back: {
  56939. height: math.unit(4 + 11/12, "feet"),
  56940. weight: math.unit(86, "lb"),
  56941. name: "Back",
  56942. image: {
  56943. source: "./media/characters/robin-phox/delphox-back.svg",
  56944. extra: 1269/1083,
  56945. bottom: 15/1284
  56946. },
  56947. form: "delphox",
  56948. },
  56949. mienshao_front: {
  56950. height: math.unit(4 + 7/12, "feet"),
  56951. weight: math.unit(78.3, "lb"),
  56952. name: "Front",
  56953. image: {
  56954. source: "./media/characters/robin-phox/mienshao-front.svg",
  56955. extra: 1052/970,
  56956. bottom: 108/1160
  56957. },
  56958. form: "mienshao",
  56959. default: true
  56960. },
  56961. mienshao_frontNsfw: {
  56962. height: math.unit(4 + 7/12, "feet"),
  56963. weight: math.unit(78.3, "lb"),
  56964. name: "Front (NSFW)",
  56965. image: {
  56966. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56967. extra: 1052/970,
  56968. bottom: 108/1160
  56969. },
  56970. form: "mienshao",
  56971. },
  56972. mienshao_back: {
  56973. height: math.unit(4 + 7/12, "feet"),
  56974. weight: math.unit(78.3, "lb"),
  56975. name: "Back",
  56976. image: {
  56977. source: "./media/characters/robin-phox/mienshao-back.svg",
  56978. extra: 1102/982,
  56979. bottom: 32/1134
  56980. },
  56981. form: "mienshao",
  56982. },
  56983. inteleon_front: {
  56984. height: math.unit(6 + 3/12, "feet"),
  56985. weight: math.unit(99.6, "lb"),
  56986. name: "Front",
  56987. image: {
  56988. source: "./media/characters/robin-phox/inteleon-front.svg",
  56989. extra: 910/799,
  56990. bottom: 76/986
  56991. },
  56992. form: "inteleon",
  56993. default: true
  56994. },
  56995. inteleon_frontNsfw: {
  56996. height: math.unit(6 + 3/12, "feet"),
  56997. weight: math.unit(99.6, "lb"),
  56998. name: "Front (NSFW)",
  56999. image: {
  57000. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57001. extra: 910/799,
  57002. bottom: 76/986
  57003. },
  57004. form: "inteleon",
  57005. },
  57006. inteleon_back: {
  57007. height: math.unit(6 + 3/12, "feet"),
  57008. weight: math.unit(99.6, "lb"),
  57009. name: "Back",
  57010. image: {
  57011. source: "./media/characters/robin-phox/inteleon-back.svg",
  57012. extra: 907/796,
  57013. bottom: 25/932
  57014. },
  57015. form: "inteleon",
  57016. },
  57017. reshiram_front: {
  57018. height: math.unit(10 + 6/12, "feet"),
  57019. weight: math.unit(727.5, "lb"),
  57020. name: "Front",
  57021. image: {
  57022. source: "./media/characters/robin-phox/reshiram-front.svg",
  57023. extra: 1198/940,
  57024. bottom: 123/1321
  57025. },
  57026. form: "reshiram",
  57027. },
  57028. reshiram_frontNsfw: {
  57029. height: math.unit(10 + 6/12, "feet"),
  57030. weight: math.unit(727.5, "lb"),
  57031. name: "Front-nsfw",
  57032. image: {
  57033. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57034. extra: 1198/940,
  57035. bottom: 123/1321
  57036. },
  57037. form: "reshiram",
  57038. },
  57039. reshiram_back: {
  57040. height: math.unit(10 + 6/12, "feet"),
  57041. weight: math.unit(727.5, "lb"),
  57042. name: "Back",
  57043. image: {
  57044. source: "./media/characters/robin-phox/reshiram-back.svg",
  57045. extra: 1024/904,
  57046. bottom: 85/1109
  57047. },
  57048. form: "reshiram",
  57049. },
  57050. samurott_front: {
  57051. height: math.unit(8, "feet"),
  57052. weight: math.unit(208.6, "lb"),
  57053. name: "Front",
  57054. image: {
  57055. source: "./media/characters/robin-phox/samurott-front.svg",
  57056. extra: 1048/984,
  57057. bottom: 100/1148
  57058. },
  57059. form: "samurott",
  57060. },
  57061. samurott_frontNsfw: {
  57062. height: math.unit(8, "feet"),
  57063. weight: math.unit(208.6, "lb"),
  57064. name: "Front-nsfw",
  57065. image: {
  57066. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57067. extra: 1048/984,
  57068. bottom: 100/1148
  57069. },
  57070. form: "samurott",
  57071. },
  57072. samurott_back: {
  57073. height: math.unit(8, "feet"),
  57074. weight: math.unit(208.6, "lb"),
  57075. name: "Back",
  57076. image: {
  57077. source: "./media/characters/robin-phox/samurott-back.svg",
  57078. extra: 1110/1042,
  57079. bottom: 12/1122
  57080. },
  57081. form: "samurott",
  57082. },
  57083. samurott_feral: {
  57084. height: math.unit(4 + 11/12, "feet"),
  57085. weight: math.unit(208.6, "lb"),
  57086. name: "Feral",
  57087. image: {
  57088. source: "./media/characters/robin-phox/samurott-feral.svg",
  57089. extra: 766/681,
  57090. bottom: 108/874
  57091. },
  57092. form: "samurott",
  57093. },
  57094. },
  57095. [
  57096. {
  57097. name: "Normal",
  57098. height: math.unit(2, "feet"),
  57099. default: true,
  57100. form: "snivy"
  57101. },
  57102. {
  57103. name: "Normal",
  57104. height: math.unit(6, "feet"),
  57105. default: true,
  57106. form: "yoshi"
  57107. },
  57108. {
  57109. name: "Normal",
  57110. height: math.unit(4 + 11/12, "feet"),
  57111. default: true,
  57112. form: "delphox"
  57113. },
  57114. {
  57115. name: "Normal",
  57116. height: math.unit(4 + 7/12, "feet"),
  57117. default: true,
  57118. form: "mienshao"
  57119. },
  57120. {
  57121. name: "Normal",
  57122. height: math.unit(6 + 3/12, "feet"),
  57123. default: true,
  57124. form: "inteleon"
  57125. },
  57126. {
  57127. name: "Normal",
  57128. height: math.unit(10 + 6/12, "feet"),
  57129. default: true,
  57130. form: "reshiram"
  57131. },
  57132. {
  57133. name: "Normal",
  57134. height: math.unit(8, "feet"),
  57135. default: true,
  57136. form: "samurott"
  57137. },
  57138. {
  57139. name: "Macro",
  57140. height: math.unit(500, "feet"),
  57141. allForms: true
  57142. },
  57143. {
  57144. name: "Mega Macro",
  57145. height: math.unit(10, "earths"),
  57146. allForms: true
  57147. },
  57148. {
  57149. name: "Giga Macro",
  57150. height: math.unit(1, "galaxy"),
  57151. allForms: true
  57152. },
  57153. {
  57154. name: "Godly Macro",
  57155. height: math.unit(1e10, "multiverses"),
  57156. allForms: true
  57157. },
  57158. ],
  57159. {
  57160. "snivy": {
  57161. name: "Snivy",
  57162. default: true
  57163. },
  57164. "yoshi": {
  57165. name: "Yoshi",
  57166. },
  57167. "delphox": {
  57168. name: "Delphox",
  57169. },
  57170. "mienshao": {
  57171. name: "Mienshao",
  57172. },
  57173. "inteleon": {
  57174. name: "Inteleon",
  57175. },
  57176. "reshiram": {
  57177. name: "Reshiram",
  57178. },
  57179. "samurott": {
  57180. name: "Samurott",
  57181. },
  57182. }
  57183. ))
  57184. characterMakers.push(() => makeCharacter(
  57185. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57186. {
  57187. front: {
  57188. height: math.unit(4, "feet"),
  57189. name: "Front",
  57190. image: {
  57191. source: "./media/characters/ash-leung/front.svg",
  57192. extra: 1916/1792,
  57193. bottom: 50/1966
  57194. }
  57195. },
  57196. },
  57197. [
  57198. {
  57199. name: "Atomic",
  57200. height: math.unit(1, "angstrom")
  57201. },
  57202. {
  57203. name: "Microscopic",
  57204. height: math.unit(4000, "angstroms")
  57205. },
  57206. {
  57207. name: "Speck",
  57208. height: math.unit(1, "mm")
  57209. },
  57210. {
  57211. name: "Small",
  57212. height: math.unit(1, "inch")
  57213. },
  57214. {
  57215. name: "Normal",
  57216. height: math.unit(4, "feet"),
  57217. default: true
  57218. },
  57219. ]
  57220. ))
  57221. characterMakers.push(() => makeCharacter(
  57222. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57223. {
  57224. frontDressed: {
  57225. height: math.unit(2.08, "meters"),
  57226. weight: math.unit(175, "lb"),
  57227. name: "Front (Dressed)",
  57228. image: {
  57229. source: "./media/characters/carie/front-dressed.svg",
  57230. extra: 456/417,
  57231. bottom: 7/463
  57232. }
  57233. },
  57234. backDressed: {
  57235. height: math.unit(2.08, "meters"),
  57236. weight: math.unit(175, "lb"),
  57237. name: "Back (Dressed)",
  57238. image: {
  57239. source: "./media/characters/carie/back-dressed.svg",
  57240. extra: 455/414,
  57241. bottom: 11/466
  57242. }
  57243. },
  57244. front: {
  57245. height: math.unit(2, "meters"),
  57246. weight: math.unit(175, "lb"),
  57247. name: "Front",
  57248. image: {
  57249. source: "./media/characters/carie/front.svg",
  57250. extra: 438/399,
  57251. bottom: 12/450
  57252. }
  57253. },
  57254. back: {
  57255. height: math.unit(2, "meters"),
  57256. weight: math.unit(175, "lb"),
  57257. name: "Back",
  57258. image: {
  57259. source: "./media/characters/carie/back.svg",
  57260. extra: 438/397,
  57261. bottom: 7/445
  57262. }
  57263. },
  57264. },
  57265. [
  57266. {
  57267. name: "Normal",
  57268. height: math.unit(2.08, "meters"),
  57269. default: true
  57270. },
  57271. {
  57272. name: "Macro",
  57273. height: math.unit(2.08e3, "meters")
  57274. },
  57275. {
  57276. name: "Mega Macro",
  57277. height: math.unit(2.08e6, "meters")
  57278. },
  57279. {
  57280. name: "Giga Macro",
  57281. height: math.unit(2.08e9, "meters")
  57282. },
  57283. {
  57284. name: "Tera Macro",
  57285. height: math.unit(2.08e12, "meters")
  57286. },
  57287. {
  57288. name: "Peta Macro",
  57289. height: math.unit(2.08e15, "meters")
  57290. },
  57291. {
  57292. name: "Exa Macro",
  57293. height: math.unit(2.08e18, "meters")
  57294. },
  57295. {
  57296. name: "Zetta Macro",
  57297. height: math.unit(2.08e21, "meters")
  57298. },
  57299. {
  57300. name: "Yotta Macro",
  57301. height: math.unit(2.08e24, "meters")
  57302. },
  57303. ]
  57304. ))
  57305. characterMakers.push(() => makeCharacter(
  57306. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57307. {
  57308. front: {
  57309. height: math.unit(5 + 2/12, "feet"),
  57310. weight: math.unit(120, "lb"),
  57311. name: "Front",
  57312. image: {
  57313. source: "./media/characters/sai-bree/front.svg",
  57314. extra: 1843/1702,
  57315. bottom: 91/1934
  57316. }
  57317. },
  57318. back: {
  57319. height: math.unit(5 + 2/12, "feet"),
  57320. weight: math.unit(120, "lb"),
  57321. name: "Back",
  57322. image: {
  57323. source: "./media/characters/sai-bree/back.svg",
  57324. extra: 1809/1637,
  57325. bottom: 56/1865
  57326. }
  57327. },
  57328. },
  57329. [
  57330. {
  57331. name: "Normal",
  57332. height: math.unit(5 + 2/12, "feet"),
  57333. default: true
  57334. },
  57335. {
  57336. name: "Macro",
  57337. height: math.unit(500, "feet")
  57338. },
  57339. ]
  57340. ))
  57341. characterMakers.push(() => makeCharacter(
  57342. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57343. {
  57344. side: {
  57345. height: math.unit(0.77, "meters"),
  57346. weight: math.unit(120, "lb"),
  57347. name: "Side",
  57348. image: {
  57349. source: "./media/characters/davwyn/side.svg",
  57350. extra: 1557/1225,
  57351. bottom: 131/1688
  57352. }
  57353. },
  57354. front: {
  57355. height: math.unit(0.835410, "meters"),
  57356. weight: math.unit(120, "lb"),
  57357. name: "Front",
  57358. image: {
  57359. source: "./media/characters/davwyn/front.svg",
  57360. extra: 870/843,
  57361. bottom: 175/1045
  57362. }
  57363. },
  57364. },
  57365. [
  57366. {
  57367. name: "Minidrake",
  57368. height: math.unit(0.77/4, "meters")
  57369. },
  57370. {
  57371. name: "Normal",
  57372. height: math.unit(0.77, "meters"),
  57373. default: true
  57374. },
  57375. ]
  57376. ))
  57377. characterMakers.push(() => makeCharacter(
  57378. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57379. {
  57380. front: {
  57381. height: math.unit(10 + 3/12, "feet"),
  57382. weight: math.unit(2857, "lb"),
  57383. name: "Front",
  57384. image: {
  57385. source: "./media/characters/balans/front.svg",
  57386. extra: 427/402,
  57387. bottom: 26/453
  57388. }
  57389. },
  57390. side: {
  57391. height: math.unit(10 + 3/12, "feet"),
  57392. weight: math.unit(2857, "lb"),
  57393. name: "Side",
  57394. image: {
  57395. source: "./media/characters/balans/side.svg",
  57396. extra: 397/371,
  57397. bottom: 17/414
  57398. }
  57399. },
  57400. back: {
  57401. height: math.unit(10 + 3/12, "feet"),
  57402. weight: math.unit(2857, "lb"),
  57403. name: "Back",
  57404. image: {
  57405. source: "./media/characters/balans/back.svg",
  57406. extra: 408/381,
  57407. bottom: 14/422
  57408. }
  57409. },
  57410. hand: {
  57411. height: math.unit(1.15, "feet"),
  57412. name: "Hand",
  57413. image: {
  57414. source: "./media/characters/balans/hand.svg"
  57415. }
  57416. },
  57417. footRest: {
  57418. height: math.unit(3.1, "feet"),
  57419. name: "Foot (Rest)",
  57420. image: {
  57421. source: "./media/characters/balans/foot-rest.svg"
  57422. }
  57423. },
  57424. footActive: {
  57425. height: math.unit(3.5, "feet"),
  57426. name: "Foot (Active)",
  57427. image: {
  57428. source: "./media/characters/balans/foot-active.svg"
  57429. }
  57430. },
  57431. },
  57432. [
  57433. {
  57434. name: "Normal",
  57435. height: math.unit(10 + 3/12, "feet"),
  57436. default: true
  57437. },
  57438. ]
  57439. ))
  57440. characterMakers.push(() => makeCharacter(
  57441. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57442. {
  57443. side: {
  57444. height: math.unit(9, "meters"),
  57445. weight: math.unit(114, "tonnes"),
  57446. name: "Side",
  57447. image: {
  57448. source: "./media/characters/eldkveikir/side.svg",
  57449. extra: 1927/338,
  57450. bottom: 42/1969
  57451. }
  57452. },
  57453. sitting: {
  57454. height: math.unit(13.4, "meters"),
  57455. weight: math.unit(114, "tonnes"),
  57456. name: "Sitting",
  57457. image: {
  57458. source: "./media/characters/eldkveikir/sitting.svg",
  57459. extra: 1108/963,
  57460. bottom: 610/1718
  57461. }
  57462. },
  57463. maw: {
  57464. height: math.unit(8.36, "meters"),
  57465. name: "Maw",
  57466. image: {
  57467. source: "./media/characters/eldkveikir/maw.svg"
  57468. }
  57469. },
  57470. hand: {
  57471. height: math.unit(4.84, "meters"),
  57472. name: "Hand",
  57473. image: {
  57474. source: "./media/characters/eldkveikir/hand.svg"
  57475. }
  57476. },
  57477. foot: {
  57478. height: math.unit(6.9, "meters"),
  57479. name: "Foot",
  57480. image: {
  57481. source: "./media/characters/eldkveikir/foot.svg"
  57482. }
  57483. },
  57484. genitals: {
  57485. height: math.unit(9.6, "meters"),
  57486. name: "Genitals",
  57487. image: {
  57488. source: "./media/characters/eldkveikir/genitals.svg"
  57489. }
  57490. },
  57491. },
  57492. [
  57493. {
  57494. name: "Normal",
  57495. height: math.unit(9, "meters"),
  57496. default: true
  57497. },
  57498. ]
  57499. ))
  57500. characterMakers.push(() => makeCharacter(
  57501. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57502. {
  57503. front: {
  57504. height: math.unit(14, "feet"),
  57505. weight: math.unit(4100, "lb"),
  57506. name: "Front",
  57507. image: {
  57508. source: "./media/characters/arrow/front.svg",
  57509. extra: 330/318,
  57510. bottom: 56/386
  57511. }
  57512. },
  57513. },
  57514. [
  57515. {
  57516. name: "Normal",
  57517. height: math.unit(14, "feet"),
  57518. default: true
  57519. },
  57520. {
  57521. name: "Minimacro",
  57522. height: math.unit(63, "feet")
  57523. },
  57524. {
  57525. name: "Macro",
  57526. height: math.unit(630, "feet")
  57527. },
  57528. {
  57529. name: "Megamacro",
  57530. height: math.unit(12600, "feet")
  57531. },
  57532. {
  57533. name: "Gigamacro",
  57534. height: math.unit(18000, "miles")
  57535. },
  57536. ]
  57537. ))
  57538. characterMakers.push(() => makeCharacter(
  57539. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57540. {
  57541. front: {
  57542. height: math.unit(10, "feet"),
  57543. weight: math.unit(2.4, "tons"),
  57544. name: "Front",
  57545. image: {
  57546. source: "./media/characters/3yk-k0-unit/front.svg",
  57547. extra: 573/561,
  57548. bottom: 33/606
  57549. }
  57550. },
  57551. back: {
  57552. height: math.unit(10, "feet"),
  57553. weight: math.unit(2.4, "tons"),
  57554. name: "Back",
  57555. image: {
  57556. source: "./media/characters/3yk-k0-unit/back.svg",
  57557. extra: 614/573,
  57558. bottom: 32/646
  57559. }
  57560. },
  57561. maw: {
  57562. height: math.unit(2.15, "feet"),
  57563. name: "Maw",
  57564. image: {
  57565. source: "./media/characters/3yk-k0-unit/maw.svg"
  57566. }
  57567. },
  57568. },
  57569. [
  57570. {
  57571. name: "Normal",
  57572. height: math.unit(10, "feet"),
  57573. default: true
  57574. },
  57575. ]
  57576. ))
  57577. characterMakers.push(() => makeCharacter(
  57578. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57579. {
  57580. front: {
  57581. height: math.unit(8 + 8/12, "feet"),
  57582. name: "Front",
  57583. image: {
  57584. source: "./media/characters/nemo/front.svg",
  57585. extra: 1308/1217,
  57586. bottom: 57/1365
  57587. }
  57588. },
  57589. },
  57590. [
  57591. {
  57592. name: "Normal",
  57593. height: math.unit(8 + 8/12, "feet"),
  57594. default: true
  57595. },
  57596. ]
  57597. ))
  57598. characterMakers.push(() => makeCharacter(
  57599. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57600. {
  57601. front: {
  57602. height: math.unit(8, "feet"),
  57603. weight: math.unit(760, "lb"),
  57604. name: "Front",
  57605. image: {
  57606. source: "./media/characters/rexx/front.svg",
  57607. extra: 786/750,
  57608. bottom: 17/803
  57609. },
  57610. extraAttributes: {
  57611. "pawLength": {
  57612. name: "Paw Length",
  57613. power: 1,
  57614. type: "length",
  57615. base: math.unit(27, "inches")
  57616. },
  57617. }
  57618. },
  57619. },
  57620. [
  57621. {
  57622. name: "Micro",
  57623. height: math.unit(2, "inches")
  57624. },
  57625. {
  57626. name: "Normal",
  57627. height: math.unit(8, "feet"),
  57628. default: true
  57629. },
  57630. {
  57631. name: "Macro",
  57632. height: math.unit(150, "feet")
  57633. },
  57634. ]
  57635. ))
  57636. characterMakers.push(() => makeCharacter(
  57637. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57638. {
  57639. front: {
  57640. height: math.unit(18, "feet"),
  57641. weight: math.unit(1975, "lb"),
  57642. name: "Front",
  57643. image: {
  57644. source: "./media/characters/draco/front.svg",
  57645. extra: 1325/1241,
  57646. bottom: 83/1408
  57647. }
  57648. },
  57649. back: {
  57650. height: math.unit(18, "feet"),
  57651. weight: math.unit(1975, "lb"),
  57652. name: "Back",
  57653. image: {
  57654. source: "./media/characters/draco/back.svg",
  57655. extra: 1332/1250,
  57656. bottom: 43/1375
  57657. }
  57658. },
  57659. dick: {
  57660. height: math.unit(7.5, "feet"),
  57661. name: "Dick",
  57662. image: {
  57663. source: "./media/characters/draco/dick.svg"
  57664. }
  57665. },
  57666. },
  57667. [
  57668. {
  57669. name: "Normal",
  57670. height: math.unit(18, "feet"),
  57671. default: true
  57672. },
  57673. ]
  57674. ))
  57675. characterMakers.push(() => makeCharacter(
  57676. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57677. {
  57678. front: {
  57679. height: math.unit(3.2, "meters"),
  57680. name: "Front",
  57681. image: {
  57682. source: "./media/characters/harriett/front.svg",
  57683. extra: 1966/1915,
  57684. bottom: 9/1975
  57685. }
  57686. },
  57687. },
  57688. [
  57689. {
  57690. name: "Normal",
  57691. height: math.unit(3.2, "meters"),
  57692. default: true
  57693. },
  57694. ]
  57695. ))
  57696. characterMakers.push(() => makeCharacter(
  57697. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57698. {
  57699. sitting: {
  57700. height: math.unit(0.8, "meter"),
  57701. name: "Sitting",
  57702. image: {
  57703. source: "./media/characters/serpentus/sitting.svg",
  57704. extra: 293/290,
  57705. bottom: 140/433
  57706. }
  57707. },
  57708. },
  57709. [
  57710. {
  57711. name: "Normal",
  57712. height: math.unit(0.8, "meter"),
  57713. default: true
  57714. },
  57715. ]
  57716. ))
  57717. characterMakers.push(() => makeCharacter(
  57718. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57719. {
  57720. front: {
  57721. height: math.unit(5.7174385736, "feet"),
  57722. name: "Front",
  57723. image: {
  57724. source: "./media/characters/nova-polecat/front.svg",
  57725. extra: 1317/1216,
  57726. bottom: 92/1409
  57727. }
  57728. },
  57729. },
  57730. [
  57731. {
  57732. name: "Normal",
  57733. height: math.unit(5.7174385736, "feet"),
  57734. default: true
  57735. },
  57736. ]
  57737. ))
  57738. characterMakers.push(() => makeCharacter(
  57739. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57740. {
  57741. front: {
  57742. height: math.unit(5 + 4/12, "feet"),
  57743. weight: math.unit(250, "lb"),
  57744. name: "Front",
  57745. image: {
  57746. source: "./media/characters/mook/front.svg",
  57747. extra: 1088/1037,
  57748. bottom: 132/1220
  57749. }
  57750. },
  57751. back: {
  57752. height: math.unit(5 + 1/12, "feet"),
  57753. weight: math.unit(250, "lb"),
  57754. name: "Back",
  57755. image: {
  57756. source: "./media/characters/mook/back.svg",
  57757. extra: 1184/905,
  57758. bottom: 96/1280
  57759. }
  57760. },
  57761. head: {
  57762. height: math.unit(1.85, "feet"),
  57763. name: "Head",
  57764. image: {
  57765. source: "./media/characters/mook/head.svg"
  57766. }
  57767. },
  57768. hand: {
  57769. height: math.unit(1.9, "feet"),
  57770. name: "Hand",
  57771. image: {
  57772. source: "./media/characters/mook/hand.svg"
  57773. }
  57774. },
  57775. palm: {
  57776. height: math.unit(1.84, "feet"),
  57777. name: "Palm",
  57778. image: {
  57779. source: "./media/characters/mook/palm.svg"
  57780. }
  57781. },
  57782. foot: {
  57783. height: math.unit(1.44, "feet"),
  57784. name: "Foot",
  57785. image: {
  57786. source: "./media/characters/mook/foot.svg"
  57787. }
  57788. },
  57789. sole: {
  57790. height: math.unit(1.44, "feet"),
  57791. name: "Sole",
  57792. image: {
  57793. source: "./media/characters/mook/sole.svg"
  57794. }
  57795. },
  57796. },
  57797. [
  57798. {
  57799. name: "Normal",
  57800. height: math.unit(5 + 4/12, "feet"),
  57801. default: true
  57802. },
  57803. {
  57804. name: "Big",
  57805. height: math.unit(12, "feet")
  57806. },
  57807. ]
  57808. ))
  57809. characterMakers.push(() => makeCharacter(
  57810. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57811. {
  57812. front: {
  57813. height: math.unit(6 + 10/12, "feet"),
  57814. weight: math.unit(233, "lb"),
  57815. name: "Front",
  57816. image: {
  57817. source: "./media/characters/kayla/front.svg",
  57818. extra: 1850/1775,
  57819. bottom: 65/1915
  57820. }
  57821. },
  57822. },
  57823. [
  57824. {
  57825. name: "Normal",
  57826. height: math.unit(6 + 10/12, "feet"),
  57827. default: true
  57828. },
  57829. {
  57830. name: "Amazonian",
  57831. height: math.unit(12 + 5/12, "feet")
  57832. },
  57833. {
  57834. name: "Mini Giantess",
  57835. height: math.unit(26, "feet")
  57836. },
  57837. {
  57838. name: "Giantess",
  57839. height: math.unit(200, "feet")
  57840. },
  57841. {
  57842. name: "Mega Giantess",
  57843. height: math.unit(2500, "feet")
  57844. },
  57845. {
  57846. name: "City Sized",
  57847. height: math.unit(50, "miles")
  57848. },
  57849. {
  57850. name: "Country Sized",
  57851. height: math.unit(500, "miles")
  57852. },
  57853. {
  57854. name: "Continent Sized",
  57855. height: math.unit(2500, "miles")
  57856. },
  57857. {
  57858. name: "Planet Sized",
  57859. height: math.unit(10000, "miles")
  57860. },
  57861. {
  57862. name: "Star Sized",
  57863. height: math.unit(5e6, "miles")
  57864. },
  57865. {
  57866. name: "Solar System Sized",
  57867. height: math.unit(125, "AU")
  57868. },
  57869. {
  57870. name: "Galaxy Sized",
  57871. height: math.unit(300e3, "lightyears")
  57872. },
  57873. {
  57874. name: "Universe Sized",
  57875. height: math.unit(200e9, "lightyears")
  57876. },
  57877. {
  57878. name: "Multiverse Sized",
  57879. height: math.unit(20, "exauniverses")
  57880. },
  57881. {
  57882. name: "Mother of Existence",
  57883. height: math.unit(1e6, "yottauniverses")
  57884. },
  57885. ]
  57886. ))
  57887. characterMakers.push(() => makeCharacter(
  57888. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57889. {
  57890. side: {
  57891. height: math.unit(9.5, "meters"),
  57892. name: "Side",
  57893. image: {
  57894. source: "./media/characters/kulve-ragnarok/side.svg",
  57895. extra: 364/326,
  57896. bottom: 50/414
  57897. }
  57898. },
  57899. },
  57900. [
  57901. {
  57902. name: "Normal",
  57903. height: math.unit(9.5, "meters"),
  57904. default: true
  57905. },
  57906. ]
  57907. ))
  57908. characterMakers.push(() => makeCharacter(
  57909. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57910. {
  57911. front: {
  57912. height: math.unit(8 + 9/12, "feet"),
  57913. name: "Front",
  57914. image: {
  57915. source: "./media/characters/atlas-goat/front.svg",
  57916. extra: 1462/1323,
  57917. bottom: 12/1474
  57918. }
  57919. },
  57920. },
  57921. [
  57922. {
  57923. name: "Normal",
  57924. height: math.unit(8 + 9/12, "feet"),
  57925. default: true
  57926. },
  57927. {
  57928. name: "Skyline",
  57929. height: math.unit(845, "feet")
  57930. },
  57931. {
  57932. name: "Orbital",
  57933. height: math.unit(93000, "miles")
  57934. },
  57935. {
  57936. name: "Constellation",
  57937. height: math.unit(27000, "lightyears")
  57938. },
  57939. ]
  57940. ))
  57941. characterMakers.push(() => makeCharacter(
  57942. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57943. {
  57944. side: {
  57945. height: math.unit(1.8, "meters"),
  57946. weight: math.unit(120, "kg"),
  57947. name: "Side",
  57948. image: {
  57949. source: "./media/characters/xie-ling/side.svg",
  57950. extra: 646/574,
  57951. bottom: 44/690
  57952. }
  57953. },
  57954. },
  57955. [
  57956. {
  57957. name: "Tiny",
  57958. height: math.unit(1.80, "meters")
  57959. },
  57960. {
  57961. name: "Small",
  57962. height: math.unit(6, "meters")
  57963. },
  57964. {
  57965. name: "Medium",
  57966. height: math.unit(15, "meters")
  57967. },
  57968. {
  57969. name: "Normal",
  57970. height: math.unit(30, "meters"),
  57971. default: true
  57972. },
  57973. {
  57974. name: "Above Normal",
  57975. height: math.unit(60, "meters")
  57976. },
  57977. {
  57978. name: "Big",
  57979. height: math.unit(220, "meters")
  57980. },
  57981. {
  57982. name: "Giant",
  57983. height: math.unit(2.2, "km")
  57984. },
  57985. {
  57986. name: "Macro",
  57987. height: math.unit(25, "km")
  57988. },
  57989. {
  57990. name: "Mega Macro",
  57991. height: math.unit(350, "km")
  57992. },
  57993. {
  57994. name: "Mega Macro+",
  57995. height: math.unit(5000, "km")
  57996. },
  57997. {
  57998. name: "Goddess",
  57999. height: math.unit(3, "multiverses")
  58000. },
  58001. ]
  58002. ))
  58003. characterMakers.push(() => makeCharacter(
  58004. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58005. {
  58006. frontSfw: {
  58007. height: math.unit(5 + 11/12, "feet"),
  58008. weight: math.unit(210, "lb"),
  58009. name: "Front",
  58010. image: {
  58011. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58012. extra: 1928/1821,
  58013. bottom: 45/1973
  58014. }
  58015. },
  58016. backSfw: {
  58017. height: math.unit(5 + 11/12, "feet"),
  58018. weight: math.unit(210, "lb"),
  58019. name: "Back",
  58020. image: {
  58021. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58022. extra: 1920/1813,
  58023. bottom: 34/1954
  58024. }
  58025. },
  58026. frontNsfw: {
  58027. height: math.unit(5 + 11/12, "feet"),
  58028. weight: math.unit(210, "lb"),
  58029. name: "Front (NSFW)",
  58030. image: {
  58031. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58032. extra: 1928/1821,
  58033. bottom: 45/1973
  58034. }
  58035. },
  58036. backNsfw: {
  58037. height: math.unit(5 + 11/12, "feet"),
  58038. weight: math.unit(210, "lb"),
  58039. name: "Back (NSFW)",
  58040. image: {
  58041. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58042. extra: 1920/1813,
  58043. bottom: 34/1954
  58044. }
  58045. },
  58046. },
  58047. [
  58048. {
  58049. name: "Normal",
  58050. height: math.unit(5 + 11/12, "feet"),
  58051. default: true
  58052. },
  58053. {
  58054. name: "Goddess",
  58055. height: math.unit(20 + 3/12, "feet")
  58056. },
  58057. {
  58058. name: "Breaker of Man",
  58059. height: math.unit(329 + 9/12, "feet")
  58060. },
  58061. {
  58062. name: "Solar Justice",
  58063. height: math.unit(0.6, "solarradii")
  58064. },
  58065. {
  58066. name: "She Who Judges",
  58067. height: math.unit(1, "universe")
  58068. },
  58069. ]
  58070. ))
  58071. characterMakers.push(() => makeCharacter(
  58072. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58073. {
  58074. casual_front: {
  58075. height: math.unit(6 + 1/12, "feet"),
  58076. weight: math.unit(190, "lb"),
  58077. preyCapacity: math.unit(1, "people"),
  58078. name: "Front",
  58079. image: {
  58080. source: "./media/characters/managarmr/casual-front.svg",
  58081. extra: 411/381,
  58082. bottom: 15/426
  58083. },
  58084. extraAttributes: {
  58085. "pawSize": {
  58086. name: "Paw Size",
  58087. power: 1,
  58088. type: "length",
  58089. base: math.unit(0.2, "meters")
  58090. },
  58091. },
  58092. form: "casual",
  58093. },
  58094. casual_back: {
  58095. height: math.unit(6 + 1/12, "feet"),
  58096. weight: math.unit(190, "lb"),
  58097. preyCapacity: math.unit(1, "people"),
  58098. name: "Back",
  58099. image: {
  58100. source: "./media/characters/managarmr/casual-back.svg",
  58101. extra: 413/383,
  58102. bottom: 13/426
  58103. },
  58104. extraAttributes: {
  58105. "pawSize": {
  58106. name: "Paw Size",
  58107. power: 1,
  58108. type: "length",
  58109. base: math.unit(0.2, "meters")
  58110. },
  58111. },
  58112. form: "casual",
  58113. },
  58114. base_front: {
  58115. height: math.unit(7, "feet"),
  58116. weight: math.unit(210, "lb"),
  58117. preyCapacity: math.unit(2, "people"),
  58118. name: "Front",
  58119. image: {
  58120. source: "./media/characters/managarmr/base-front.svg",
  58121. extra: 580/485,
  58122. bottom: 32/612
  58123. },
  58124. extraAttributes: {
  58125. "wingspan": {
  58126. name: "Wingspan",
  58127. power: 1,
  58128. type: "length",
  58129. base: math.unit(4, "meters")
  58130. },
  58131. "pawSize": {
  58132. name: "Paw Size",
  58133. power: 1,
  58134. type: "length",
  58135. base: math.unit(0.2, "meters")
  58136. },
  58137. },
  58138. form: "base",
  58139. },
  58140. "true-divine_front": {
  58141. height: math.unit(40, "feet"),
  58142. weight: math.unit(39000, "lb"),
  58143. preyCapacity: math.unit(375, "people"),
  58144. name: "Front",
  58145. image: {
  58146. source: "./media/characters/managarmr/true-divine-front.svg",
  58147. extra: 725/573,
  58148. bottom: 120/845
  58149. },
  58150. extraAttributes: {
  58151. "wingspan": {
  58152. name: "Wingspan",
  58153. power: 1,
  58154. type: "length",
  58155. base: math.unit(20, "meters")
  58156. },
  58157. "pawSize": {
  58158. name: "Paw Size",
  58159. power: 1,
  58160. type: "length",
  58161. base: math.unit(1.5, "meters")
  58162. },
  58163. },
  58164. form: "true-divine",
  58165. },
  58166. },
  58167. [
  58168. {
  58169. name: "Normal",
  58170. height: math.unit(6 + 1/12, "feet"),
  58171. form: "casual",
  58172. default: true
  58173. },
  58174. {
  58175. name: "Normal",
  58176. height: math.unit(7, "feet"),
  58177. form: "base",
  58178. default: true
  58179. },
  58180. ],
  58181. {
  58182. "casual": {
  58183. name: "Casual",
  58184. default: true
  58185. },
  58186. "base": {
  58187. name: "Base",
  58188. },
  58189. "true-divine": {
  58190. name: "True Divine",
  58191. },
  58192. }
  58193. ))
  58194. characterMakers.push(() => makeCharacter(
  58195. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58196. {
  58197. front: {
  58198. height: math.unit(1.8, "meters"),
  58199. weight: math.unit(110, "kg"),
  58200. name: "Front",
  58201. image: {
  58202. source: "./media/characters/mystra/front.svg",
  58203. extra: 529/442,
  58204. bottom: 31/560
  58205. }
  58206. },
  58207. frontLewd: {
  58208. height: math.unit(1.8, "meters"),
  58209. weight: math.unit(110, "kg"),
  58210. name: "Front (Lewd)",
  58211. image: {
  58212. source: "./media/characters/mystra/front-lewd.svg",
  58213. extra: 529/442,
  58214. bottom: 31/560
  58215. }
  58216. },
  58217. head: {
  58218. height: math.unit(1.63, "feet"),
  58219. name: "Head",
  58220. image: {
  58221. source: "./media/characters/mystra/head.svg"
  58222. }
  58223. },
  58224. paw: {
  58225. height: math.unit(1.9, "feet"),
  58226. name: "Paw",
  58227. image: {
  58228. source: "./media/characters/mystra/paw.svg"
  58229. }
  58230. },
  58231. },
  58232. [
  58233. {
  58234. name: "Incognito",
  58235. height: math.unit(2.3, "meters")
  58236. },
  58237. {
  58238. name: "Small Macro",
  58239. height: math.unit(300, "meters")
  58240. },
  58241. {
  58242. name: "Small Mega",
  58243. height: math.unit(2, "km")
  58244. },
  58245. {
  58246. name: "Mega",
  58247. height: math.unit(30, "km")
  58248. },
  58249. {
  58250. name: "Small Giga",
  58251. height: math.unit(100, "km")
  58252. },
  58253. {
  58254. name: "Giga",
  58255. height: math.unit(1000, "km"),
  58256. default: true
  58257. },
  58258. {
  58259. name: "Continental",
  58260. height: math.unit(5000, "km")
  58261. },
  58262. {
  58263. name: "Terra",
  58264. height: math.unit(20000, "km")
  58265. },
  58266. {
  58267. name: "Solar",
  58268. height: math.unit(2e6, "km")
  58269. },
  58270. {
  58271. name: "Galactic",
  58272. height: math.unit(528502, "lightyears")
  58273. },
  58274. {
  58275. name: "Universal",
  58276. height: math.unit(20, "universes")
  58277. },
  58278. ]
  58279. ))
  58280. characterMakers.push(() => makeCharacter(
  58281. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58282. {
  58283. front: {
  58284. height: math.unit(2, "meters"),
  58285. weight: math.unit(140, "kg"),
  58286. name: "Front",
  58287. image: {
  58288. source: "./media/characters/caleb/front.svg",
  58289. extra: 873/817,
  58290. bottom: 47/920
  58291. }
  58292. },
  58293. back: {
  58294. height: math.unit(2, "meters"),
  58295. weight: math.unit(140, "kg"),
  58296. name: "Back",
  58297. image: {
  58298. source: "./media/characters/caleb/back.svg",
  58299. extra: 877/828,
  58300. bottom: 24/901
  58301. }
  58302. },
  58303. snakeTail: {
  58304. height: math.unit(1.44, "feet"),
  58305. name: "Snake Tail",
  58306. image: {
  58307. source: "./media/characters/caleb/snake-tail.svg"
  58308. }
  58309. },
  58310. dick: {
  58311. height: math.unit(2.6, "feet"),
  58312. name: "Dick",
  58313. image: {
  58314. source: "./media/characters/caleb/dick.svg"
  58315. }
  58316. },
  58317. },
  58318. [
  58319. {
  58320. name: "Incognito",
  58321. height: math.unit(3, "meters")
  58322. },
  58323. {
  58324. name: "Home Size",
  58325. height: math.unit(200, "meters"),
  58326. default: true
  58327. },
  58328. {
  58329. name: "Macro",
  58330. height: math.unit(500, "meters")
  58331. },
  58332. {
  58333. name: "Big Macro",
  58334. height: math.unit(5, "km")
  58335. },
  58336. {
  58337. name: "Giga",
  58338. height: math.unit(250, "km")
  58339. },
  58340. {
  58341. name: "Giga+",
  58342. height: math.unit(5000, "km")
  58343. },
  58344. {
  58345. name: "Small Terra",
  58346. height: math.unit(35e3, "km")
  58347. },
  58348. {
  58349. name: "Terra",
  58350. height: math.unit(2e6, "km")
  58351. },
  58352. {
  58353. name: "Terra+",
  58354. height: math.unit(1.5e6, "km")
  58355. },
  58356. ]
  58357. ))
  58358. characterMakers.push(() => makeCharacter(
  58359. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58360. {
  58361. front: {
  58362. height: math.unit(2, "meters"),
  58363. weight: math.unit(120, "kg"),
  58364. name: "Front",
  58365. image: {
  58366. source: "./media/characters/gilirian/front.svg",
  58367. extra: 805/737,
  58368. bottom: 13/818
  58369. }
  58370. },
  58371. side: {
  58372. height: math.unit(2, "meters"),
  58373. weight: math.unit(120, "kg"),
  58374. name: "Side",
  58375. image: {
  58376. source: "./media/characters/gilirian/side.svg",
  58377. extra: 810/746,
  58378. bottom: 6/816
  58379. }
  58380. },
  58381. back: {
  58382. height: math.unit(2, "meters"),
  58383. weight: math.unit(120, "kg"),
  58384. name: "Back",
  58385. image: {
  58386. source: "./media/characters/gilirian/back.svg",
  58387. extra: 815/745,
  58388. bottom: 15/830
  58389. }
  58390. },
  58391. frontNsfw: {
  58392. height: math.unit(2, "meters"),
  58393. weight: math.unit(120, "kg"),
  58394. name: "Front (NSFW)",
  58395. image: {
  58396. source: "./media/characters/gilirian/front-nsfw.svg",
  58397. extra: 805/737,
  58398. bottom: 13/818
  58399. }
  58400. },
  58401. sideNsfw: {
  58402. height: math.unit(2, "meters"),
  58403. weight: math.unit(120, "kg"),
  58404. name: "Side (NSFW)",
  58405. image: {
  58406. source: "./media/characters/gilirian/side-nsfw.svg",
  58407. extra: 810/746,
  58408. bottom: 6/816
  58409. }
  58410. },
  58411. },
  58412. [
  58413. {
  58414. name: "Incognito",
  58415. height: math.unit(2, "meters"),
  58416. default: true
  58417. },
  58418. {
  58419. name: "Macro",
  58420. height: math.unit(250, "meters")
  58421. },
  58422. {
  58423. name: "Big Macro",
  58424. height: math.unit(1500, "meters")
  58425. },
  58426. {
  58427. name: "Mega",
  58428. height: math.unit(40, "km")
  58429. },
  58430. {
  58431. name: "Giga",
  58432. height: math.unit(300, "km")
  58433. },
  58434. {
  58435. name: "Extra Giga",
  58436. height: math.unit(5000, "km")
  58437. },
  58438. {
  58439. name: "Small Terra",
  58440. height: math.unit(10e3, "km")
  58441. },
  58442. {
  58443. name: "Terra",
  58444. height: math.unit(3e5, "km")
  58445. },
  58446. {
  58447. name: "Galactic",
  58448. height: math.unit(369950, "lightyears")
  58449. },
  58450. ]
  58451. ))
  58452. characterMakers.push(() => makeCharacter(
  58453. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58454. {
  58455. front: {
  58456. height: math.unit(2.5, "meters"),
  58457. weight: math.unit(230, "lb"),
  58458. name: "Front",
  58459. image: {
  58460. source: "./media/characters/tarken/front.svg",
  58461. extra: 764/720,
  58462. bottom: 49/813
  58463. }
  58464. },
  58465. back: {
  58466. height: math.unit(2.5, "meters"),
  58467. weight: math.unit(230, "lb"),
  58468. name: "Back",
  58469. image: {
  58470. source: "./media/characters/tarken/back.svg",
  58471. extra: 756/720,
  58472. bottom: 35/791
  58473. }
  58474. },
  58475. frontNsfw: {
  58476. height: math.unit(2.5, "meters"),
  58477. weight: math.unit(230, "lb"),
  58478. name: "Front (NSFW)",
  58479. image: {
  58480. source: "./media/characters/tarken/front-nsfw.svg",
  58481. extra: 764/720,
  58482. bottom: 49/813
  58483. }
  58484. },
  58485. backNsfw: {
  58486. height: math.unit(2.5, "meters"),
  58487. weight: math.unit(230, "lb"),
  58488. name: "Back (NSFW)",
  58489. image: {
  58490. source: "./media/characters/tarken/back-nsfw.svg",
  58491. extra: 756/720,
  58492. bottom: 35/791
  58493. }
  58494. },
  58495. head: {
  58496. height: math.unit(2.22, "feet"),
  58497. name: "Head",
  58498. image: {
  58499. source: "./media/characters/tarken/head.svg"
  58500. }
  58501. },
  58502. tail: {
  58503. height: math.unit(5.25, "feet"),
  58504. name: "Tail",
  58505. image: {
  58506. source: "./media/characters/tarken/tail.svg"
  58507. }
  58508. },
  58509. dick: {
  58510. height: math.unit(1.95, "feet"),
  58511. name: "Dick",
  58512. image: {
  58513. source: "./media/characters/tarken/dick.svg"
  58514. }
  58515. },
  58516. hand: {
  58517. height: math.unit(1.78, "feet"),
  58518. name: "Hand",
  58519. image: {
  58520. source: "./media/characters/tarken/hand.svg"
  58521. }
  58522. },
  58523. beam: {
  58524. height: math.unit(1.5, "feet"),
  58525. name: "Beam",
  58526. image: {
  58527. source: "./media/characters/tarken/beam.svg"
  58528. }
  58529. },
  58530. },
  58531. [
  58532. {
  58533. name: "Original Size",
  58534. height: math.unit(2.5, "meters")
  58535. },
  58536. {
  58537. name: "Macro",
  58538. height: math.unit(150, "meters"),
  58539. default: true
  58540. },
  58541. {
  58542. name: "Macro+",
  58543. height: math.unit(300, "meters")
  58544. },
  58545. {
  58546. name: "Mega",
  58547. height: math.unit(2, "km")
  58548. },
  58549. {
  58550. name: "Mega+",
  58551. height: math.unit(35, "km")
  58552. },
  58553.  {
  58554. name: "Mega++",
  58555. height: math.unit(60, "km")
  58556. },
  58557. {
  58558. name: "Giga",
  58559. height: math.unit(200, "km")
  58560. },
  58561. {
  58562. name: "Giga+",
  58563. height: math.unit(2500, "km")
  58564. },
  58565. {
  58566. name: "Giga++",
  58567. height: math.unit(6600, "km")
  58568. },
  58569. {
  58570. name: "Terra",
  58571. height: math.unit(20000, "km")
  58572. },
  58573. {
  58574. name: "Terra+",
  58575. height: math.unit(300000, "km")
  58576. },
  58577. ]
  58578. ))
  58579. characterMakers.push(() => makeCharacter(
  58580. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58581. {
  58582. magpie_dressed: {
  58583. height: math.unit(1.7, "meters"),
  58584. weight: math.unit(70, "kg"),
  58585. name: "Dressed",
  58586. image: {
  58587. source: "./media/characters/otreus/magpie-dressed.svg",
  58588. extra: 691/672,
  58589. bottom: 116/807
  58590. },
  58591. form: "magpie",
  58592. default: true
  58593. },
  58594. magpie_nude: {
  58595. height: math.unit(1.7, "meters"),
  58596. weight: math.unit(70, "kg"),
  58597. name: "Nude",
  58598. image: {
  58599. source: "./media/characters/otreus/magpie-nude.svg",
  58600. extra: 691/672,
  58601. bottom: 116/807
  58602. },
  58603. form: "magpie",
  58604. },
  58605. magpie_dressedLewd: {
  58606. height: math.unit(1.7, "meters"),
  58607. weight: math.unit(70, "kg"),
  58608. name: "Dressed (Lewd)",
  58609. image: {
  58610. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58611. extra: 691/672,
  58612. bottom: 116/807
  58613. },
  58614. form: "magpie",
  58615. },
  58616. magpie_nudeLewd: {
  58617. height: math.unit(1.7, "meters"),
  58618. weight: math.unit(70, "kg"),
  58619. name: "Nude (Lewd)",
  58620. image: {
  58621. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58622. extra: 691/672,
  58623. bottom: 116/807
  58624. },
  58625. form: "magpie",
  58626. },
  58627. magpie_leftFoot: {
  58628. height: math.unit(1.58, "feet"),
  58629. name: "Left Foot",
  58630. image: {
  58631. source: "./media/characters/otreus/magpie-left-foot.svg"
  58632. },
  58633. form: "magpie",
  58634. },
  58635. magpie_rightFoot: {
  58636. height: math.unit(1.58, "feet"),
  58637. name: "Right Foot",
  58638. image: {
  58639. source: "./media/characters/otreus/magpie-right-foot.svg"
  58640. },
  58641. form: "magpie",
  58642. },
  58643. magpie_wingspan: {
  58644. height: math.unit(2, "meters"),
  58645. weight: math.unit(70, "kg"),
  58646. name: "Wingspan",
  58647. image: {
  58648. source: "./media/characters/otreus/magpie-wingspan.svg"
  58649. },
  58650. extraAttributes: {
  58651. "wingspan": {
  58652. name: "Wingspan",
  58653. power: 1,
  58654. type: "length",
  58655. base: math.unit(3.35, "meters")
  58656. },
  58657. },
  58658. form: "magpie",
  58659. },
  58660. hippogriff_dressed: {
  58661. height: math.unit(1.7, "meters"),
  58662. weight: math.unit(70, "kg"),
  58663. name: "Dressed",
  58664. image: {
  58665. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58666. extra: 710/689,
  58667. bottom: 67/777
  58668. },
  58669. form: "hippogriff",
  58670. default: true
  58671. },
  58672. hippogriff_nude: {
  58673. height: math.unit(1.7, "meters"),
  58674. weight: math.unit(70, "kg"),
  58675. name: "Nude",
  58676. image: {
  58677. source: "./media/characters/otreus/hippogriff-nude.svg",
  58678. extra: 710/689,
  58679. bottom: 67/777
  58680. },
  58681. form: "hippogriff",
  58682. },
  58683. hippogriff_dressedLewd: {
  58684. height: math.unit(1.7, "meters"),
  58685. weight: math.unit(70, "kg"),
  58686. name: "Dressed (Lewd)",
  58687. image: {
  58688. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58689. extra: 710/689,
  58690. bottom: 67/777
  58691. },
  58692. form: "hippogriff",
  58693. },
  58694. hippogriff_nudeLewd: {
  58695. height: math.unit(1.7, "meters"),
  58696. weight: math.unit(70, "kg"),
  58697. name: "Nude (Lewd)",
  58698. image: {
  58699. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58700. extra: 710/689,
  58701. bottom: 67/777
  58702. },
  58703. form: "hippogriff",
  58704. },
  58705. },
  58706. [
  58707. {
  58708. name: "Original Size",
  58709. height: math.unit(1.7, "meters"),
  58710. allForms: true
  58711. },
  58712. {
  58713. name: "Incognito Size",
  58714. height: math.unit(2, "meters"),
  58715. allForms: true
  58716. },
  58717. {
  58718. name: "Mega",
  58719. height: math.unit(2, "km"),
  58720. allForms: true
  58721. },
  58722. {
  58723. name: "Mega+",
  58724. height: math.unit(40, "km"),
  58725. allForms: true
  58726. },
  58727. {
  58728. name: "Giga",
  58729. height: math.unit(250, "km"),
  58730. allForms: true
  58731. },
  58732. {
  58733. name: "Giga+",
  58734. height: math.unit(3000, "km"),
  58735. allForms: true
  58736. },
  58737. {
  58738. name: "Terra",
  58739. height: math.unit(20000, "km"),
  58740. allForms: true
  58741. },
  58742. {
  58743. name: "Solar (Home Size)",
  58744. height: math.unit(3e6, "km"),
  58745. allForms: true,
  58746. default: true
  58747. },
  58748. ],
  58749. {
  58750. "magpie": {
  58751. name: "Magpie",
  58752. default: true
  58753. },
  58754. "hippogriff": {
  58755. name: "Hippogriff",
  58756. },
  58757. }
  58758. ))
  58759. characterMakers.push(() => makeCharacter(
  58760. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58761. {
  58762. frontDressed: {
  58763. height: math.unit(1.8, "meters"),
  58764. weight: math.unit(90, "kg"),
  58765. name: "Front (Dressed)",
  58766. image: {
  58767. source: "./media/characters/thalia/front-dressed.svg",
  58768. extra: 478/402,
  58769. bottom: 55/533
  58770. }
  58771. },
  58772. backDressed: {
  58773. height: math.unit(1.8, "meters"),
  58774. weight: math.unit(90, "kg"),
  58775. name: "Back (Dressed)",
  58776. image: {
  58777. source: "./media/characters/thalia/back-dressed.svg",
  58778. extra: 500/424,
  58779. bottom: 15/515
  58780. }
  58781. },
  58782. frontNude: {
  58783. height: math.unit(1.8, "meters"),
  58784. weight: math.unit(90, "kg"),
  58785. name: "Front (Nude)",
  58786. image: {
  58787. source: "./media/characters/thalia/front-nude.svg",
  58788. extra: 478/402,
  58789. bottom: 55/533
  58790. }
  58791. },
  58792. backNude: {
  58793. height: math.unit(1.8, "meters"),
  58794. weight: math.unit(90, "kg"),
  58795. name: "Back (Nude)",
  58796. image: {
  58797. source: "./media/characters/thalia/back-nude.svg",
  58798. extra: 500/424,
  58799. bottom: 15/515
  58800. }
  58801. },
  58802. },
  58803. [
  58804. {
  58805. name: "Incognito",
  58806. height: math.unit(3, "meters")
  58807. },
  58808. {
  58809. name: "Macro",
  58810. height: math.unit(500, "meters")
  58811. },
  58812. {
  58813. name: "Mega",
  58814. height: math.unit(5, "km")
  58815. },
  58816. {
  58817. name: "Mega+",
  58818. height: math.unit(30, "km")
  58819. },
  58820. {
  58821. name: "Giga",
  58822. height: math.unit(350, "km")
  58823. },
  58824. {
  58825. name: "Giga+",
  58826. height: math.unit(4000, "km")
  58827. },
  58828. {
  58829. name: "Terra",
  58830. height: math.unit(35000, "km")
  58831. },
  58832. {
  58833. name: "Original Size",
  58834. height: math.unit(130000, "km")
  58835. },
  58836. {
  58837. name: "Solar (Home Size)",
  58838. height: math.unit(4e6, "km"),
  58839. default: true
  58840. },
  58841. ]
  58842. ))
  58843. characterMakers.push(() => makeCharacter(
  58844. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58845. {
  58846. front: {
  58847. height: math.unit(1.8, "meters"),
  58848. weight: math.unit(95, "kg"),
  58849. name: "Front",
  58850. image: {
  58851. source: "./media/characters/shango/front.svg",
  58852. extra: 1925/1774,
  58853. bottom: 67/1992
  58854. }
  58855. },
  58856. back: {
  58857. height: math.unit(1.8, "meters"),
  58858. weight: math.unit(95, "kg"),
  58859. name: "Back",
  58860. image: {
  58861. source: "./media/characters/shango/back.svg",
  58862. extra: 1915/1766,
  58863. bottom: 52/1967
  58864. }
  58865. },
  58866. frontLewd: {
  58867. height: math.unit(1.8, "meters"),
  58868. weight: math.unit(95, "kg"),
  58869. name: "Front (Lewd)",
  58870. image: {
  58871. source: "./media/characters/shango/front-lewd.svg",
  58872. extra: 1925/1774,
  58873. bottom: 67/1992
  58874. }
  58875. },
  58876. backLewd: {
  58877. height: math.unit(1.8, "meters"),
  58878. weight: math.unit(95, "kg"),
  58879. name: "Back (Lewd)",
  58880. image: {
  58881. source: "./media/characters/shango/back-lewd.svg",
  58882. extra: 1915/1766,
  58883. bottom: 52/1967
  58884. }
  58885. },
  58886. maw: {
  58887. height: math.unit(1.64, "feet"),
  58888. name: "Maw",
  58889. image: {
  58890. source: "./media/characters/shango/maw.svg"
  58891. }
  58892. },
  58893. dick: {
  58894. height: math.unit(2.14, "feet"),
  58895. name: "Dick",
  58896. image: {
  58897. source: "./media/characters/shango/dick.svg"
  58898. }
  58899. },
  58900. },
  58901. [
  58902. {
  58903. name: "Incognito",
  58904. height: math.unit(1.8, "meters")
  58905. },
  58906. {
  58907. name: "Home Size",
  58908. height: math.unit(60, "meters"),
  58909. default: true
  58910. },
  58911. {
  58912. name: "Macro",
  58913. height: math.unit(450, "meters")
  58914. },
  58915. {
  58916. name: "Mega",
  58917. height: math.unit(6, "km")
  58918. },
  58919. {
  58920. name: "Mega+",
  58921. height: math.unit(35, "km")
  58922. },
  58923. {
  58924. name: "Giga",
  58925. height: math.unit(500, "km")
  58926. },
  58927. {
  58928. name: "Giga+",
  58929. height: math.unit(5000, "km")
  58930. },
  58931. {
  58932. name: "Terra",
  58933. height: math.unit(60000, "km")
  58934. },
  58935. {
  58936. name: "Terra+",
  58937. height: math.unit(400000, "km")
  58938. },
  58939. ]
  58940. ))
  58941. characterMakers.push(() => makeCharacter(
  58942. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58943. {
  58944. front: {
  58945. height: math.unit(2, "meters"),
  58946. weight: math.unit(95, "kg"),
  58947. name: "Front",
  58948. image: {
  58949. source: "./media/characters/osiris-gryphon/front.svg",
  58950. extra: 1508/1313,
  58951. bottom: 87/1595
  58952. }
  58953. },
  58954. back: {
  58955. height: math.unit(2, "meters"),
  58956. weight: math.unit(95, "kg"),
  58957. name: "Back",
  58958. image: {
  58959. source: "./media/characters/osiris-gryphon/back.svg",
  58960. extra: 1436/1309,
  58961. bottom: 64/1500
  58962. }
  58963. },
  58964. frontLewd: {
  58965. height: math.unit(2, "meters"),
  58966. weight: math.unit(95, "kg"),
  58967. name: "Front-lewd",
  58968. image: {
  58969. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58970. extra: 1508/1313,
  58971. bottom: 87/1595
  58972. }
  58973. },
  58974. wing: {
  58975. height: math.unit(6.3333, "feet"),
  58976. name: "Wing",
  58977. image: {
  58978. source: "./media/characters/osiris-gryphon/wing.svg"
  58979. }
  58980. },
  58981. },
  58982. [
  58983. {
  58984. name: "Incognito",
  58985. height: math.unit(2, "meters")
  58986. },
  58987. {
  58988. name: "Home Size",
  58989. height: math.unit(30, "meters"),
  58990. default: true
  58991. },
  58992. {
  58993. name: "Macro",
  58994. height: math.unit(100, "meters")
  58995. },
  58996. {
  58997. name: "Macro+",
  58998. height: math.unit(350, "meters")
  58999. },
  59000. {
  59001. name: "Mega",
  59002. height: math.unit(40, "km")
  59003. },
  59004. {
  59005. name: "Giga",
  59006. height: math.unit(300, "km")
  59007. },
  59008. {
  59009. name: "Giga+",
  59010. height: math.unit(2000, "km")
  59011. },
  59012. {
  59013. name: "Terra",
  59014. height: math.unit(30000, "km")
  59015. },
  59016. ]
  59017. ))
  59018. characterMakers.push(() => makeCharacter(
  59019. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59020. {
  59021. front: {
  59022. height: math.unit(2.5, "meters"),
  59023. weight: math.unit(200, "kg"),
  59024. name: "Front",
  59025. image: {
  59026. source: "./media/characters/atlas-dragon/front.svg",
  59027. extra: 745/462,
  59028. bottom: 36/781
  59029. }
  59030. },
  59031. back: {
  59032. height: math.unit(2.5, "meters"),
  59033. weight: math.unit(200, "kg"),
  59034. name: "Back",
  59035. image: {
  59036. source: "./media/characters/atlas-dragon/back.svg",
  59037. extra: 848/822,
  59038. bottom: 57/905
  59039. }
  59040. },
  59041. frontLewd: {
  59042. height: math.unit(2.5, "meters"),
  59043. weight: math.unit(200, "kg"),
  59044. name: "Front (Lewd)",
  59045. image: {
  59046. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59047. extra: 745/462,
  59048. bottom: 36/781
  59049. }
  59050. },
  59051. backLewd: {
  59052. height: math.unit(2.5, "meters"),
  59053. weight: math.unit(200, "kg"),
  59054. name: "Back (Lewd)",
  59055. image: {
  59056. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59057. extra: 848/822,
  59058. bottom: 57/905
  59059. }
  59060. },
  59061. },
  59062. [
  59063. {
  59064. name: "Incognito",
  59065. height: math.unit(2.5, "meters")
  59066. },
  59067. {
  59068. name: "Small Macro",
  59069. height: math.unit(50, "meters")
  59070. },
  59071. {
  59072. name: "Macro",
  59073. height: math.unit(350, "meters")
  59074. },
  59075. {
  59076. name: "Mega",
  59077. height: math.unit(5.5, "kilometers")
  59078. },
  59079. {
  59080. name: "Mega+",
  59081. height: math.unit(50, "km")
  59082. },
  59083. {
  59084. name: "Giga",
  59085. height: math.unit(350, "km")
  59086. },
  59087. {
  59088. name: "Giga+",
  59089. height: math.unit(2000, "km")
  59090. },
  59091. {
  59092. name: "Giga++",
  59093. height: math.unit(6500, "km")
  59094. },
  59095. {
  59096. name: "Terra",
  59097. height: math.unit(30000, "km")
  59098. },
  59099. {
  59100. name: "Terra+",
  59101. height: math.unit(250000, "km")
  59102. },
  59103. {
  59104. name: "True Size",
  59105. height: math.unit(100, "multiverses"),
  59106. default: true
  59107. },
  59108. ]
  59109. ))
  59110. characterMakers.push(() => makeCharacter(
  59111. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59112. {
  59113. front: {
  59114. height: math.unit(1.8, "m"),
  59115. weight: math.unit(120, "kg"),
  59116. name: "Front",
  59117. image: {
  59118. source: "./media/characters/chey/front.svg",
  59119. extra: 1359/1270,
  59120. bottom: 18/1377
  59121. }
  59122. },
  59123. arm: {
  59124. height: math.unit(2.05, "feet"),
  59125. name: "Arm",
  59126. image: {
  59127. source: "./media/characters/chey/arm.svg"
  59128. }
  59129. },
  59130. head: {
  59131. height: math.unit(1.89, "feet"),
  59132. name: "Head",
  59133. image: {
  59134. source: "./media/characters/chey/head.svg"
  59135. }
  59136. },
  59137. },
  59138. [
  59139. {
  59140. name: "Original Size",
  59141. height: math.unit(5, "cm")
  59142. },
  59143. {
  59144. name: "Incognito Size",
  59145. height: math.unit(2.4, "m")
  59146. },
  59147. {
  59148. name: "Home Size",
  59149. height: math.unit(200, "meters"),
  59150. default: true
  59151. },
  59152. {
  59153. name: "Mega",
  59154. height: math.unit(2, "km")
  59155. },
  59156. {
  59157. name: "Giga (Preferred Size)",
  59158. height: math.unit(2000, "km")
  59159. },
  59160. {
  59161. name: "Giga+",
  59162. height: math.unit(6000, "km")
  59163. },
  59164. {
  59165. name: "Terra",
  59166. height: math.unit(17000, "km")
  59167. },
  59168. {
  59169. name: "Terra+",
  59170. height: math.unit(75000, "km")
  59171. },
  59172. {
  59173. name: "Terra++",
  59174. height: math.unit(225000, "km")
  59175. },
  59176. ]
  59177. ))
  59178. characterMakers.push(() => makeCharacter(
  59179. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59180. {
  59181. side: {
  59182. height: math.unit(7.8, "meters"),
  59183. name: "Side",
  59184. image: {
  59185. source: "./media/characters/ragnarok/side.svg",
  59186. extra: 725/621,
  59187. bottom: 72/797
  59188. }
  59189. },
  59190. },
  59191. [
  59192. {
  59193. name: "Normal",
  59194. height: math.unit(7.8, "meters"),
  59195. default: true
  59196. },
  59197. ]
  59198. ))
  59199. characterMakers.push(() => makeCharacter(
  59200. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59201. {
  59202. hyena_front: {
  59203. height: math.unit(2.1, "meters"),
  59204. weight: math.unit(110, "kg"),
  59205. name: "Front",
  59206. image: {
  59207. source: "./media/characters/nima/hyena-front.svg",
  59208. extra: 1904/1796,
  59209. bottom: 67/1971
  59210. },
  59211. form: "hyena",
  59212. },
  59213. hyena_back: {
  59214. height: math.unit(2.1, "meters"),
  59215. weight: math.unit(110, "kg"),
  59216. name: "Back",
  59217. image: {
  59218. source: "./media/characters/nima/hyena-back.svg",
  59219. extra: 1964/1884,
  59220. bottom: 35/1999
  59221. },
  59222. form: "hyena",
  59223. },
  59224. shark_front: {
  59225. height: math.unit(1.95, "meters"),
  59226. weight: math.unit(110, "kg"),
  59227. name: "Front",
  59228. image: {
  59229. source: "./media/characters/nima/shark-front.svg",
  59230. extra: 2238/2013,
  59231. bottom: 0/223
  59232. },
  59233. form: "shark",
  59234. },
  59235. paw: {
  59236. height: math.unit(1, "feet"),
  59237. name: "Paw",
  59238. image: {
  59239. source: "./media/characters/nima/paw.svg"
  59240. }
  59241. },
  59242. circlet: {
  59243. height: math.unit(0.3, "feet"),
  59244. name: "Circlet",
  59245. image: {
  59246. source: "./media/characters/nima/circlet.svg"
  59247. }
  59248. },
  59249. necklace: {
  59250. height: math.unit(1.2, "feet"),
  59251. name: "Necklace",
  59252. image: {
  59253. source: "./media/characters/nima/necklace.svg"
  59254. }
  59255. },
  59256. bracelet: {
  59257. height: math.unit(0.51, "feet"),
  59258. name: "Bracelet",
  59259. image: {
  59260. source: "./media/characters/nima/bracelet.svg"
  59261. }
  59262. },
  59263. armband: {
  59264. height: math.unit(1.3, "feet"),
  59265. name: "Armband",
  59266. image: {
  59267. source: "./media/characters/nima/armband.svg"
  59268. }
  59269. },
  59270. },
  59271. [
  59272. {
  59273. name: "Incognito",
  59274. height: math.unit(2.1, "meters"),
  59275. allForms: true
  59276. },
  59277. {
  59278. name: "Small Macro",
  59279. height: math.unit(50, "meters"),
  59280. allForms: true
  59281. },
  59282. {
  59283. name: "Macro",
  59284. height: math.unit(200, "meters"),
  59285. allForms: true
  59286. },
  59287. {
  59288. name: "Mega",
  59289. height: math.unit(2.5, "km"),
  59290. allForms: true
  59291. },
  59292. {
  59293. name: "Mega+",
  59294. height: math.unit(30, "km"),
  59295. allForms: true
  59296. },
  59297. {
  59298. name: "Giga (Home Size)",
  59299. height: math.unit(400, "km"),
  59300. allForms: true,
  59301. default: true
  59302. },
  59303. {
  59304. name: "Giga+",
  59305. height: math.unit(2500, "km"),
  59306. allForms: true
  59307. },
  59308. {
  59309. name: "Giga++",
  59310. height: math.unit(8000, "km"),
  59311. allForms: true
  59312. },
  59313. {
  59314. name: "Terra",
  59315. height: math.unit(20000, "km"),
  59316. allForms: true
  59317. },
  59318. {
  59319. name: "Terra+",
  59320. height: math.unit(70000, "km"),
  59321. allForms: true
  59322. },
  59323. {
  59324. name: "Terra++",
  59325. height: math.unit(600000, "km"),
  59326. allForms: true
  59327. },
  59328. {
  59329. name: "Galactic",
  59330. height: math.unit(40, "galaxies"),
  59331. allForms: true
  59332. },
  59333. {
  59334. name: "Universal",
  59335. height: math.unit(40, "universes"),
  59336. allForms: true
  59337. },
  59338. ],
  59339. {
  59340. "hyena": {
  59341. name: "Hyena",
  59342. default: true
  59343. },
  59344. "shark": {
  59345. name: "Shark",
  59346. },
  59347. }
  59348. ))
  59349. characterMakers.push(() => makeCharacter(
  59350. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59351. {
  59352. anthro_front: {
  59353. height: math.unit(1.5, "meters"),
  59354. name: "Front",
  59355. image: {
  59356. source: "./media/characters/adelaide/anthro-front.svg",
  59357. extra: 860/783,
  59358. bottom: 60/920
  59359. },
  59360. form: "anthro",
  59361. default: true
  59362. },
  59363. hand: {
  59364. height: math.unit(0.65, "feet"),
  59365. name: "Hand",
  59366. image: {
  59367. source: "./media/characters/adelaide/hand.svg"
  59368. },
  59369. form: "anthro"
  59370. },
  59371. foot: {
  59372. height: math.unit(1.38 * 259 / 314, "feet"),
  59373. name: "Foot",
  59374. image: {
  59375. source: "./media/characters/adelaide/foot.svg",
  59376. extra: 259/259,
  59377. bottom: 55/314
  59378. },
  59379. form: "anthro"
  59380. },
  59381. feather: {
  59382. height: math.unit(0.85, "feet"),
  59383. name: "Feather",
  59384. image: {
  59385. source: "./media/characters/adelaide/feather.svg"
  59386. },
  59387. form: "anthro"
  59388. },
  59389. feral_side: {
  59390. height: math.unit(1, "meters"),
  59391. name: "Side",
  59392. image: {
  59393. source: "./media/characters/adelaide/feral-side.svg",
  59394. extra: 550/467,
  59395. bottom: 37/587
  59396. },
  59397. form: "feral",
  59398. default: true
  59399. },
  59400. feral_hand: {
  59401. height: math.unit(0.58, "feet"),
  59402. name: "Hand",
  59403. image: {
  59404. source: "./media/characters/adelaide/hand.svg"
  59405. },
  59406. form: "feral"
  59407. },
  59408. feral_foot: {
  59409. height: math.unit(1.2 * 259 / 314, "feet"),
  59410. name: "Foot",
  59411. image: {
  59412. source: "./media/characters/adelaide/foot.svg",
  59413. extra: 259/259,
  59414. bottom: 55/314
  59415. },
  59416. form: "feral"
  59417. },
  59418. feral_feather: {
  59419. height: math.unit(0.63, "feet"),
  59420. name: "Feather",
  59421. image: {
  59422. source: "./media/characters/adelaide/feather.svg"
  59423. },
  59424. form: "feral"
  59425. },
  59426. },
  59427. [
  59428. {
  59429. name: "Normal",
  59430. height: math.unit(1.5, "meters"),
  59431. form: "anthro",
  59432. default: true
  59433. },
  59434. {
  59435. name: "Normal",
  59436. height: math.unit(1, "meters"),
  59437. form: "feral",
  59438. default: true
  59439. },
  59440. ],
  59441. {
  59442. "anthro": {
  59443. name: "Anthro",
  59444. default: true
  59445. },
  59446. "feral": {
  59447. name: "Feral",
  59448. },
  59449. }
  59450. ))
  59451. characterMakers.push(() => makeCharacter(
  59452. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59453. {
  59454. front: {
  59455. height: math.unit(2.5, "meters"),
  59456. name: "Front",
  59457. image: {
  59458. source: "./media/characters/goa/front.svg",
  59459. extra: 1109/1013,
  59460. bottom: 150/1259
  59461. }
  59462. },
  59463. },
  59464. [
  59465. {
  59466. name: "Normal",
  59467. height: math.unit(2.5, "meters"),
  59468. default: true
  59469. },
  59470. ]
  59471. ))
  59472. characterMakers.push(() => makeCharacter(
  59473. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59474. {
  59475. front: {
  59476. height: math.unit(2, "meters"),
  59477. weight: math.unit(100, "kg"),
  59478. name: "Front",
  59479. image: {
  59480. source: "./media/characters/kiki-weavile/front.svg",
  59481. extra: 357/332,
  59482. bottom: 60/417
  59483. }
  59484. },
  59485. },
  59486. [
  59487. {
  59488. name: "Normal",
  59489. height: math.unit(2, "meters"),
  59490. default: true
  59491. },
  59492. ]
  59493. ))
  59494. characterMakers.push(() => makeCharacter(
  59495. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59496. {
  59497. side: {
  59498. height: math.unit(1.6, "meters"),
  59499. name: "Side",
  59500. image: {
  59501. source: "./media/characters/liza/side.svg",
  59502. extra: 943/915,
  59503. bottom: 72/1015
  59504. }
  59505. },
  59506. },
  59507. [
  59508. {
  59509. name: "Normal",
  59510. height: math.unit(1.6, "meters"),
  59511. default: true
  59512. },
  59513. ]
  59514. ))
  59515. characterMakers.push(() => makeCharacter(
  59516. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59517. {
  59518. side: {
  59519. height: math.unit(2.5, "meters"),
  59520. preyCapacity: math.unit(1, "people"),
  59521. name: "Side",
  59522. image: {
  59523. source: "./media/characters/persephone-sweetbreath/side.svg",
  59524. extra: 796/700,
  59525. bottom: 44/840
  59526. }
  59527. },
  59528. sideVore: {
  59529. height: math.unit(2.5, "meters"),
  59530. preyCapacity: math.unit(1, "people"),
  59531. name: "Side (Full)",
  59532. image: {
  59533. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59534. extra: 796/700,
  59535. bottom: 44/840
  59536. }
  59537. },
  59538. },
  59539. [
  59540. {
  59541. name: "Normal",
  59542. height: math.unit(2.5, "meters"),
  59543. default: true
  59544. },
  59545. ]
  59546. ))
  59547. characterMakers.push(() => makeCharacter(
  59548. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59549. {
  59550. front: {
  59551. height: math.unit(32, "meters"),
  59552. name: "Front",
  59553. image: {
  59554. source: "./media/characters/pierce/front.svg",
  59555. extra: 1695/1475,
  59556. bottom: 185/1880
  59557. }
  59558. },
  59559. side: {
  59560. height: math.unit(32, "meters"),
  59561. name: "Side",
  59562. image: {
  59563. source: "./media/characters/pierce/side.svg",
  59564. extra: 974/859,
  59565. bottom: 43/1017
  59566. }
  59567. },
  59568. frontWingless: {
  59569. height: math.unit(32, "meters"),
  59570. name: "Front (Wingless)",
  59571. image: {
  59572. source: "./media/characters/pierce/front-wingless.svg",
  59573. extra: 1695/1475,
  59574. bottom: 185/1880
  59575. }
  59576. },
  59577. sideWingless: {
  59578. height: math.unit(32, "meters"),
  59579. name: "Side (Wingless)",
  59580. image: {
  59581. source: "./media/characters/pierce/side-wingless.svg",
  59582. extra: 974/859,
  59583. bottom: 43/1017
  59584. }
  59585. },
  59586. maw: {
  59587. height: math.unit(19.3, "meters"),
  59588. name: "Maw",
  59589. image: {
  59590. source: "./media/characters/pierce/maw.svg"
  59591. }
  59592. },
  59593. },
  59594. [
  59595. {
  59596. name: "Small",
  59597. height: math.unit(8.5, "meters")
  59598. },
  59599. {
  59600. name: "Normal",
  59601. height: math.unit(32, "meters"),
  59602. default: true
  59603. },
  59604. ]
  59605. ))
  59606. characterMakers.push(() => makeCharacter(
  59607. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59608. {
  59609. front: {
  59610. height: math.unit(2.3, "meters"),
  59611. weight: math.unit(165, "kg"),
  59612. name: "Front",
  59613. image: {
  59614. source: "./media/characters/shira/front.svg",
  59615. extra: 924/919,
  59616. bottom: 17/941
  59617. },
  59618. form: "cobra",
  59619. default: true
  59620. },
  59621. back: {
  59622. height: math.unit(2.3, "meters"),
  59623. weight: math.unit(165, "kg"),
  59624. name: "Back",
  59625. image: {
  59626. source: "./media/characters/shira/back.svg",
  59627. extra: 928/922,
  59628. bottom: 18/946
  59629. },
  59630. form: "cobra"
  59631. },
  59632. frontLewd: {
  59633. height: math.unit(2.3, "meters"),
  59634. weight: math.unit(165, "kg"),
  59635. name: "Front (Lewd)",
  59636. image: {
  59637. source: "./media/characters/shira/front-lewd.svg",
  59638. extra: 924/919,
  59639. bottom: 17/941
  59640. },
  59641. form: "cobra"
  59642. },
  59643. backLewd: {
  59644. height: math.unit(2.3, "meters"),
  59645. weight: math.unit(165, "kg"),
  59646. name: "Back (Lewd)",
  59647. image: {
  59648. source: "./media/characters/shira/back-lewd.svg",
  59649. extra: 928/922,
  59650. bottom: 18/946
  59651. },
  59652. form: "cobra"
  59653. },
  59654. maw: {
  59655. height: math.unit(1.14, "feet"),
  59656. name: "Maw",
  59657. image: {
  59658. source: "./media/characters/shira/maw.svg"
  59659. },
  59660. form: "cobra"
  59661. },
  59662. magma_front: {
  59663. height: math.unit(2.3, "meters"),
  59664. weight: math.unit(165, "kg"),
  59665. name: "Front",
  59666. image: {
  59667. source: "./media/characters/shira/magma-front.svg",
  59668. extra: 1870/1693,
  59669. bottom: 24/1894
  59670. },
  59671. form: "magma",
  59672. },
  59673. magma_back: {
  59674. height: math.unit(2.3, "meters"),
  59675. weight: math.unit(165, "kg"),
  59676. name: "Back",
  59677. image: {
  59678. source: "./media/characters/shira/magma-back.svg",
  59679. extra: 1918/1756,
  59680. bottom: 46/1964
  59681. },
  59682. form: "magma",
  59683. },
  59684. },
  59685. [
  59686. {
  59687. name: "Incognito",
  59688. height: math.unit(2.3, "meters"),
  59689. allForms: true
  59690. },
  59691. {
  59692. name: "Home Size",
  59693. height: math.unit(150, "meters"),
  59694. default: true,
  59695. allForms: true
  59696. },
  59697. {
  59698. name: "Macro",
  59699. height: math.unit(2, "km"),
  59700. allForms: true
  59701. },
  59702. {
  59703. name: "Mega",
  59704. height: math.unit(30, "km"),
  59705. allForms: true
  59706. },
  59707. {
  59708. name: "Giga",
  59709. height: math.unit(450, "km"),
  59710. allForms: true
  59711. },
  59712. {
  59713. name: "Giga+",
  59714. height: math.unit(3000, "km"),
  59715. allForms: true
  59716. },
  59717. {
  59718. name: "Giga++",
  59719. height: math.unit(6000, "km"),
  59720. allForms: true
  59721. },
  59722. {
  59723. name: "Terra",
  59724. height: math.unit(80000, "km"),
  59725. allForms: true
  59726. },
  59727. {
  59728. name: "Terra+",
  59729. height: math.unit(350000, "km"),
  59730. allForms: true
  59731. },
  59732. {
  59733. name: "Solar",
  59734. height: math.unit(1e6, "km"),
  59735. allForms: true
  59736. },
  59737. ],
  59738. {
  59739. "cobra": {
  59740. name: "Cobra",
  59741. default: true
  59742. },
  59743. "magma": {
  59744. name: "Magma Dragon",
  59745. },
  59746. }
  59747. ))
  59748. characterMakers.push(() => makeCharacter(
  59749. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59750. {
  59751. front: {
  59752. height: math.unit(2, "meters"),
  59753. weight: math.unit(160, "kg"),
  59754. name: "Front",
  59755. image: {
  59756. source: "./media/characters/daxerios/front.svg",
  59757. extra: 1334/1277,
  59758. bottom: 45/1379
  59759. }
  59760. },
  59761. frontLewd: {
  59762. height: math.unit(2, "meters"),
  59763. weight: math.unit(160, "kg"),
  59764. name: "Front (Lewd)",
  59765. image: {
  59766. source: "./media/characters/daxerios/front-lewd.svg",
  59767. extra: 1334/1277,
  59768. bottom: 45/1379
  59769. }
  59770. },
  59771. dick: {
  59772. height: math.unit(2.35, "feet"),
  59773. name: "Dick",
  59774. image: {
  59775. source: "./media/characters/daxerios/dick.svg"
  59776. }
  59777. },
  59778. },
  59779. [
  59780. {
  59781. name: "\"Small\"",
  59782. height: math.unit(5, "meters")
  59783. },
  59784. {
  59785. name: "Original Size",
  59786. height: math.unit(500, "meters"),
  59787. default: true
  59788. },
  59789. {
  59790. name: "Mega",
  59791. height: math.unit(2, "km")
  59792. },
  59793. {
  59794. name: "Mega+",
  59795. height: math.unit(35, "km")
  59796. },
  59797. {
  59798. name: "Giga",
  59799. height: math.unit(250, "km")
  59800. },
  59801. {
  59802. name: "Giga+",
  59803. height: math.unit(3000, "km")
  59804. },
  59805. {
  59806. name: "Terra",
  59807. height: math.unit(25000, "km")
  59808. },
  59809. {
  59810. name: "Terra+",
  59811. height: math.unit(300000, "km")
  59812. },
  59813. {
  59814. name: "Solar",
  59815. height: math.unit(1e6, "km")
  59816. },
  59817. ]
  59818. ))
  59819. characterMakers.push(() => makeCharacter(
  59820. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59821. {
  59822. front: {
  59823. height: math.unit(8 + 4/12, "feet"),
  59824. weight: math.unit(464, "lb"),
  59825. name: "Front",
  59826. image: {
  59827. source: "./media/characters/caveat/front.svg",
  59828. extra: 1861/1678,
  59829. bottom: 40/1901
  59830. }
  59831. },
  59832. },
  59833. [
  59834. {
  59835. name: "Normal",
  59836. height: math.unit(8 + 4/12, "feet"),
  59837. default: true
  59838. },
  59839. ]
  59840. ))
  59841. characterMakers.push(() => makeCharacter(
  59842. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59843. {
  59844. front: {
  59845. height: math.unit(12, "feet"),
  59846. weight: math.unit(1800, "lb"),
  59847. name: "Front",
  59848. image: {
  59849. source: "./media/characters/centbair/front.svg",
  59850. extra: 781/663,
  59851. bottom: 25/806
  59852. }
  59853. },
  59854. frontNsfw: {
  59855. height: math.unit(12, "feet"),
  59856. weight: math.unit(1800, "lb"),
  59857. name: "Front (NSFW)",
  59858. image: {
  59859. source: "./media/characters/centbair/front-nsfw.svg",
  59860. extra: 781/663,
  59861. bottom: 25/806
  59862. }
  59863. },
  59864. back: {
  59865. height: math.unit(12, "feet"),
  59866. weight: math.unit(1800, "lb"),
  59867. name: "Back",
  59868. image: {
  59869. source: "./media/characters/centbair/back.svg",
  59870. extra: 808/761,
  59871. bottom: 19/827
  59872. }
  59873. },
  59874. dick: {
  59875. height: math.unit(6.5, "feet"),
  59876. name: "Dick",
  59877. image: {
  59878. source: "./media/characters/centbair/dick.svg"
  59879. }
  59880. },
  59881. slit: {
  59882. height: math.unit(3.25, "feet"),
  59883. name: "Slit",
  59884. image: {
  59885. source: "./media/characters/centbair/slit.svg"
  59886. }
  59887. },
  59888. },
  59889. [
  59890. {
  59891. name: "Normal",
  59892. height: math.unit(12, "feet"),
  59893. default: true
  59894. },
  59895. ]
  59896. ))
  59897. characterMakers.push(() => makeCharacter(
  59898. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59899. {
  59900. front: {
  59901. height: math.unit(5 + 7/12, "feet"),
  59902. name: "Front",
  59903. image: {
  59904. source: "./media/characters/andy/front.svg",
  59905. extra: 634/588,
  59906. bottom: 36/670
  59907. },
  59908. extraAttributes: {
  59909. "pawLength": {
  59910. name: "Paw Length",
  59911. power: 1,
  59912. type: "length",
  59913. base: math.unit(1, "feet")
  59914. },
  59915. }
  59916. },
  59917. side: {
  59918. height: math.unit(5 + 7/12, "feet"),
  59919. name: "Side",
  59920. image: {
  59921. source: "./media/characters/andy/side.svg",
  59922. extra: 641/596,
  59923. bottom: 34/675
  59924. },
  59925. extraAttributes: {
  59926. "pawLength": {
  59927. name: "Paw Length",
  59928. power: 1,
  59929. type: "length",
  59930. base: math.unit(1, "feet")
  59931. },
  59932. }
  59933. },
  59934. back: {
  59935. height: math.unit(5 + 7/12, "feet"),
  59936. name: "Back",
  59937. image: {
  59938. source: "./media/characters/andy/back.svg",
  59939. extra: 618/583,
  59940. bottom: 39/657
  59941. },
  59942. extraAttributes: {
  59943. "pawLength": {
  59944. name: "Paw Length",
  59945. power: 1,
  59946. type: "length",
  59947. base: math.unit(1, "feet")
  59948. },
  59949. }
  59950. },
  59951. paw: {
  59952. height: math.unit(1.13, "feet"),
  59953. name: "Paw",
  59954. image: {
  59955. source: "./media/characters/andy/paw.svg"
  59956. }
  59957. },
  59958. },
  59959. [
  59960. {
  59961. name: "Micro",
  59962. height: math.unit(4, "inches")
  59963. },
  59964. {
  59965. name: "Normal",
  59966. height: math.unit(5 + 7/12, "feet"),
  59967. default: true
  59968. },
  59969. {
  59970. name: "Macro",
  59971. height: math.unit(390.42, "feet")
  59972. },
  59973. ]
  59974. ))
  59975. characterMakers.push(() => makeCharacter(
  59976. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59977. {
  59978. front: {
  59979. height: math.unit(7, "feet"),
  59980. weight: math.unit(250, "lb"),
  59981. name: "Front",
  59982. image: {
  59983. source: "./media/characters/vix-titan/front.svg",
  59984. extra: 460/428,
  59985. bottom: 15/475
  59986. },
  59987. extraAttributes: {
  59988. "pawWidth": {
  59989. name: "Paw Width",
  59990. power: 1,
  59991. type: "length",
  59992. base: math.unit(0.75, "feet")
  59993. },
  59994. }
  59995. },
  59996. },
  59997. [
  59998. {
  59999. name: "Normal",
  60000. height: math.unit(7, "feet"),
  60001. default: true
  60002. },
  60003. {
  60004. name: "Giant",
  60005. height: math.unit(1500, "feet")
  60006. },
  60007. {
  60008. name: "Mega",
  60009. height: math.unit(10, "miles")
  60010. },
  60011. {
  60012. name: "Giga",
  60013. height: math.unit(150, "miles")
  60014. },
  60015. {
  60016. name: "Tera",
  60017. height: math.unit(144000, "miles")
  60018. },
  60019. ]
  60020. ))
  60021. characterMakers.push(() => makeCharacter(
  60022. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60023. {
  60024. front: {
  60025. height: math.unit(6 + 2/12, "feet"),
  60026. name: "Front",
  60027. image: {
  60028. source: "./media/characters/reiku/front.svg",
  60029. extra: 1910/1757,
  60030. bottom: 103/2013
  60031. },
  60032. extraAttributes: {
  60033. "thighThickness": {
  60034. name: "Thigh Thickness",
  60035. power: 1,
  60036. type: "length",
  60037. base: math.unit(1.12, "feet")
  60038. },
  60039. "assThickness": {
  60040. name: "Ass Thickness",
  60041. power: 1,
  60042. type: "length",
  60043. base: math.unit(1.12*2, "feet")
  60044. },
  60045. }
  60046. },
  60047. side: {
  60048. height: math.unit(6 + 2/12, "feet"),
  60049. name: "Side",
  60050. image: {
  60051. source: "./media/characters/reiku/side.svg",
  60052. extra: 1846/1748,
  60053. bottom: 99/1945
  60054. },
  60055. extraAttributes: {
  60056. "thighThickness": {
  60057. name: "Thigh Thickness",
  60058. power: 1,
  60059. type: "length",
  60060. base: math.unit(1.12, "feet")
  60061. },
  60062. "assThickness": {
  60063. name: "Ass Thickness",
  60064. power: 1,
  60065. type: "length",
  60066. base: math.unit(1.12*2, "feet")
  60067. },
  60068. }
  60069. },
  60070. back: {
  60071. height: math.unit(6 + 2/12, "feet"),
  60072. name: "Back",
  60073. image: {
  60074. source: "./media/characters/reiku/back.svg",
  60075. extra: 1941/1786,
  60076. bottom: 34/1975
  60077. },
  60078. extraAttributes: {
  60079. "thighThickness": {
  60080. name: "Thigh Thickness",
  60081. power: 1,
  60082. type: "length",
  60083. base: math.unit(1.12, "feet")
  60084. },
  60085. "assThickness": {
  60086. name: "Ass Thickness",
  60087. power: 1,
  60088. type: "length",
  60089. base: math.unit(1.12*2, "feet")
  60090. },
  60091. }
  60092. },
  60093. head: {
  60094. height: math.unit(1.8, "feet"),
  60095. name: "Head",
  60096. image: {
  60097. source: "./media/characters/reiku/head.svg"
  60098. }
  60099. },
  60100. tailTop: {
  60101. height: math.unit(8.4, "feet"),
  60102. name: "Tail (Top)",
  60103. image: {
  60104. source: "./media/characters/reiku/tail-top.svg"
  60105. }
  60106. },
  60107. tailBottom: {
  60108. height: math.unit(8.4, "feet"),
  60109. name: "Tail (Bottom)",
  60110. image: {
  60111. source: "./media/characters/reiku/tail-bottom.svg"
  60112. }
  60113. },
  60114. foot: {
  60115. height: math.unit(2.6, "feet"),
  60116. name: "Foot",
  60117. image: {
  60118. source: "./media/characters/reiku/foot.svg"
  60119. }
  60120. },
  60121. footCurled: {
  60122. height: math.unit(2.3, "feet"),
  60123. name: "Foot (Curled)",
  60124. image: {
  60125. source: "./media/characters/reiku/foot-curled.svg"
  60126. }
  60127. },
  60128. footSide: {
  60129. height: math.unit(1.26, "feet"),
  60130. name: "Foot (Side)",
  60131. image: {
  60132. source: "./media/characters/reiku/foot-side.svg"
  60133. }
  60134. },
  60135. },
  60136. [
  60137. {
  60138. name: "Normal",
  60139. height: math.unit(6 + 2/12, "feet"),
  60140. default: true
  60141. },
  60142. ]
  60143. ))
  60144. characterMakers.push(() => makeCharacter(
  60145. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60146. {
  60147. front: {
  60148. height: math.unit(7, "feet"),
  60149. weight: math.unit(500, "kg"),
  60150. name: "Front",
  60151. image: {
  60152. source: "./media/characters/cialda/front.svg",
  60153. extra: 912/745,
  60154. bottom: 55/967
  60155. }
  60156. },
  60157. },
  60158. [
  60159. {
  60160. name: "Normal",
  60161. height: math.unit(7, "feet"),
  60162. default: true
  60163. },
  60164. ]
  60165. ))
  60166. characterMakers.push(() => makeCharacter(
  60167. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60168. {
  60169. side: {
  60170. height: math.unit(6, "feet"),
  60171. weight: math.unit(600, "lb"),
  60172. preyCapacity: math.unit(25, "liters"),
  60173. name: "Side",
  60174. image: {
  60175. source: "./media/characters/darkkin/side.svg",
  60176. extra: 1597/1447,
  60177. bottom: 101/1698
  60178. }
  60179. },
  60180. },
  60181. [
  60182. {
  60183. name: "Canon Height",
  60184. height: math.unit(568, "feet"),
  60185. default: true
  60186. },
  60187. ]
  60188. ))
  60189. characterMakers.push(() => makeCharacter(
  60190. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60191. {
  60192. front: {
  60193. height: math.unit(6, "feet"),
  60194. weight: math.unit(1500, "lb"),
  60195. preyCapacity: math.unit(3, "people"),
  60196. name: "Front",
  60197. image: {
  60198. source: "./media/characters/livnia/front.svg",
  60199. extra: 934/932,
  60200. bottom: 83/1017
  60201. }
  60202. },
  60203. back: {
  60204. height: math.unit(6, "feet"),
  60205. weight: math.unit(1500, "lb"),
  60206. preyCapacity: math.unit(3, "people"),
  60207. name: "Back",
  60208. image: {
  60209. source: "./media/characters/livnia/back.svg",
  60210. extra: 916/915,
  60211. bottom: 58/974
  60212. }
  60213. },
  60214. head: {
  60215. height: math.unit(1.53, "feet"),
  60216. name: "Head",
  60217. image: {
  60218. source: "./media/characters/livnia/head.svg"
  60219. }
  60220. },
  60221. maw: {
  60222. height: math.unit(0.78, "feet"),
  60223. name: "Maw",
  60224. image: {
  60225. source: "./media/characters/livnia/maw.svg"
  60226. }
  60227. },
  60228. genitals: {
  60229. height: math.unit(0.35, "feet"),
  60230. name: "Genitals",
  60231. image: {
  60232. source: "./media/characters/livnia/genitals.svg"
  60233. }
  60234. },
  60235. },
  60236. [
  60237. {
  60238. name: "Normal",
  60239. height: math.unit(1000, "feet"),
  60240. default: true
  60241. },
  60242. ]
  60243. ))
  60244. characterMakers.push(() => makeCharacter(
  60245. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60246. {
  60247. front: {
  60248. height: math.unit(4, "feet"),
  60249. weight: math.unit(73, "lb"),
  60250. name: "Front",
  60251. image: {
  60252. source: "./media/characters/hayaku/front.svg",
  60253. extra: 1011/888,
  60254. bottom: 33/1044
  60255. }
  60256. },
  60257. back: {
  60258. height: math.unit(4, "feet"),
  60259. weight: math.unit(73, "lb"),
  60260. name: "Back",
  60261. image: {
  60262. source: "./media/characters/hayaku/back.svg",
  60263. extra: 1040/930,
  60264. bottom: 20/1060
  60265. }
  60266. },
  60267. },
  60268. [
  60269. {
  60270. name: "Normal",
  60271. height: math.unit(4, "feet"),
  60272. default: true
  60273. },
  60274. ]
  60275. ))
  60276. characterMakers.push(() => makeCharacter(
  60277. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60278. {
  60279. front: {
  60280. height: math.unit(6 + 7/12, "feet"),
  60281. weight: math.unit(300, "lb"),
  60282. name: "Front",
  60283. image: {
  60284. source: "./media/characters/athena-bryzant/front.svg",
  60285. extra: 870/835,
  60286. bottom: 33/903
  60287. }
  60288. },
  60289. back: {
  60290. height: math.unit(6 + 7/12, "feet"),
  60291. weight: math.unit(300, "lb"),
  60292. name: "Back",
  60293. image: {
  60294. source: "./media/characters/athena-bryzant/back.svg",
  60295. extra: 858/823,
  60296. bottom: 30/888
  60297. }
  60298. },
  60299. head: {
  60300. height: math.unit(2.38, "feet"),
  60301. name: "Head",
  60302. image: {
  60303. source: "./media/characters/athena-bryzant/head.svg"
  60304. }
  60305. },
  60306. wings: {
  60307. height: math.unit(2.85, "feet"),
  60308. name: "Wings",
  60309. image: {
  60310. source: "./media/characters/athena-bryzant/wings.svg"
  60311. }
  60312. },
  60313. },
  60314. [
  60315. {
  60316. name: "Normal",
  60317. height: math.unit(6 + 7/12, "feet"),
  60318. default: true
  60319. },
  60320. {
  60321. name: "Big",
  60322. height: math.unit(8, "feet")
  60323. },
  60324. {
  60325. name: "Very Big",
  60326. height: math.unit(11, "feet")
  60327. },
  60328. ]
  60329. ))
  60330. characterMakers.push(() => makeCharacter(
  60331. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60332. {
  60333. side: {
  60334. height: math.unit(3, "meters"),
  60335. weight: math.unit(7500, "kg"),
  60336. preyCapacity: math.unit(1e12, "people"),
  60337. name: "Side",
  60338. image: {
  60339. source: "./media/characters/zel-kesh/side.svg",
  60340. extra: 910/407,
  60341. bottom: 147/1057
  60342. }
  60343. },
  60344. },
  60345. [
  60346. {
  60347. name: "Normal",
  60348. height: math.unit(3, "meters"),
  60349. default: true
  60350. },
  60351. ]
  60352. ))
  60353. characterMakers.push(() => makeCharacter(
  60354. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60355. {
  60356. front: {
  60357. height: math.unit(2, "meters"),
  60358. weight: math.unit(95, "kg"),
  60359. name: "Front",
  60360. image: {
  60361. source: "./media/characters/kane-fox/front.svg",
  60362. extra: 945/888,
  60363. bottom: 27/972
  60364. }
  60365. },
  60366. back: {
  60367. height: math.unit(2, "meters"),
  60368. weight: math.unit(95, "kg"),
  60369. name: "Back",
  60370. image: {
  60371. source: "./media/characters/kane-fox/back.svg",
  60372. extra: 959/914,
  60373. bottom: 15/974
  60374. }
  60375. },
  60376. frontLewd: {
  60377. height: math.unit(2, "meters"),
  60378. weight: math.unit(95, "kg"),
  60379. name: "Front (Lewd)",
  60380. image: {
  60381. source: "./media/characters/kane-fox/front-lewd.svg",
  60382. extra: 945/888,
  60383. bottom: 27/972
  60384. }
  60385. },
  60386. },
  60387. [
  60388. {
  60389. name: "Home Size",
  60390. height: math.unit(2, "meters"),
  60391. default: true
  60392. },
  60393. {
  60394. name: "Macro",
  60395. height: math.unit(200, "meters")
  60396. },
  60397. {
  60398. name: "Small Mega",
  60399. height: math.unit(3, "km")
  60400. },
  60401. {
  60402. name: "Mega",
  60403. height: math.unit(50, "km")
  60404. },
  60405. {
  60406. name: "Giga",
  60407. height: math.unit(200, "km")
  60408. },
  60409. {
  60410. name: "Giga+",
  60411. height: math.unit(2500, "km")
  60412. },
  60413. {
  60414. name: "Terra",
  60415. height: math.unit(70000, "km")
  60416. },
  60417. {
  60418. name: "Terra+",
  60419. height: math.unit(150000, "km")
  60420. },
  60421. {
  60422. name: "Terra++",
  60423. height: math.unit(400000, "km")
  60424. },
  60425. ]
  60426. ))
  60427. characterMakers.push(() => makeCharacter(
  60428. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60429. {
  60430. otter_front: {
  60431. height: math.unit(1.8, "meters"),
  60432. weight: math.unit(90, "kg"),
  60433. name: "Front",
  60434. image: {
  60435. source: "./media/characters/ayranus/otter-front.svg",
  60436. extra: 468/452,
  60437. bottom: 43/511
  60438. },
  60439. form: "otter",
  60440. },
  60441. otter_frontLewd: {
  60442. height: math.unit(1.8, "meters"),
  60443. weight: math.unit(90, "kg"),
  60444. name: "Front (Lewd)",
  60445. image: {
  60446. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60447. extra: 468/452,
  60448. bottom: 43/511
  60449. },
  60450. form: "otter",
  60451. },
  60452. lionbat_front: {
  60453. height: math.unit(1.8, "meters"),
  60454. weight: math.unit(90, "kg"),
  60455. name: "Front (Lewd)",
  60456. image: {
  60457. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60458. extra: 797/740,
  60459. bottom: 78/875
  60460. },
  60461. form: "lionbat",
  60462. },
  60463. paw: {
  60464. height: math.unit(1.5, "feet"),
  60465. name: "Paw",
  60466. image: {
  60467. source: "./media/characters/ayranus/paw.svg"
  60468. },
  60469. },
  60470. },
  60471. [
  60472. {
  60473. name: "Incognito",
  60474. height: math.unit(1.8, "meters"),
  60475. allForms: true
  60476. },
  60477. {
  60478. name: "Macro",
  60479. height: math.unit(60, "meters"),
  60480. allForms: true
  60481. },
  60482. {
  60483. name: "Macro+",
  60484. height: math.unit(200, "meters"),
  60485. allForms: true
  60486. },
  60487. {
  60488. name: "Mega",
  60489. height: math.unit(35, "km"),
  60490. allForms: true
  60491. },
  60492. {
  60493. name: "Giga",
  60494. height: math.unit(220, "km"),
  60495. allForms: true
  60496. },
  60497. {
  60498. name: "Giga+",
  60499. height: math.unit(1500, "km"),
  60500. allForms: true
  60501. },
  60502. {
  60503. name: "Terra",
  60504. height: math.unit(13000, "km"),
  60505. allForms: true
  60506. },
  60507. {
  60508. name: "Terra+",
  60509. height: math.unit(500000, "km"),
  60510. allForms: true
  60511. },
  60512. {
  60513. name: "Galactic",
  60514. height: math.unit(486080, "parsecs"),
  60515. default: true,
  60516. allForms: true
  60517. },
  60518. ],
  60519. {
  60520. "otter": {
  60521. name: "Otter",
  60522. default: true
  60523. },
  60524. "lionbat": {
  60525. name: "Lionbat",
  60526. },
  60527. }
  60528. ))
  60529. characterMakers.push(() => makeCharacter(
  60530. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60531. {
  60532. front: {
  60533. height: math.unit(7 + 4/12, "feet"),
  60534. weight: math.unit(400, "lb"),
  60535. name: "Front",
  60536. image: {
  60537. source: "./media/characters/proxy/front.svg",
  60538. extra: 1605/1542,
  60539. bottom: 55/1660
  60540. }
  60541. },
  60542. side: {
  60543. height: math.unit(7 + 4/12, "feet"),
  60544. weight: math.unit(400, "lb"),
  60545. name: "Side",
  60546. image: {
  60547. source: "./media/characters/proxy/side.svg",
  60548. extra: 794/759,
  60549. bottom: 6/800
  60550. }
  60551. },
  60552. hand: {
  60553. height: math.unit(1.54, "feet"),
  60554. name: "Hand",
  60555. image: {
  60556. source: "./media/characters/proxy/hand.svg"
  60557. }
  60558. },
  60559. paw: {
  60560. height: math.unit(1.53, "feet"),
  60561. name: "Paw",
  60562. image: {
  60563. source: "./media/characters/proxy/paw.svg"
  60564. }
  60565. },
  60566. maw: {
  60567. height: math.unit(1.9, "feet"),
  60568. name: "Maw",
  60569. image: {
  60570. source: "./media/characters/proxy/maw.svg"
  60571. }
  60572. },
  60573. },
  60574. [
  60575. {
  60576. name: "Normal",
  60577. height: math.unit(7 + 4/12, "feet"),
  60578. default: true
  60579. },
  60580. ]
  60581. ))
  60582. characterMakers.push(() => makeCharacter(
  60583. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60584. {
  60585. front: {
  60586. height: math.unit(4, "meters"),
  60587. name: "Front",
  60588. image: {
  60589. source: "./media/characters/crocozilla/front.svg",
  60590. extra: 1790/1742,
  60591. bottom: 78/1868
  60592. }
  60593. },
  60594. },
  60595. [
  60596. {
  60597. name: "Normal",
  60598. height: math.unit(4, "meters"),
  60599. default: true
  60600. },
  60601. ]
  60602. ))
  60603. characterMakers.push(() => makeCharacter(
  60604. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60605. {
  60606. front: {
  60607. height: math.unit(1.8, "meters"),
  60608. weight: math.unit(120, "kg"),
  60609. name: "Front",
  60610. image: {
  60611. source: "./media/characters/kurz/front.svg",
  60612. extra: 1960/1824,
  60613. bottom: 41/2001
  60614. }
  60615. },
  60616. back: {
  60617. height: math.unit(1.8, "meters"),
  60618. weight: math.unit(120, "kg"),
  60619. name: "Back",
  60620. image: {
  60621. source: "./media/characters/kurz/back.svg",
  60622. extra: 1906/1787,
  60623. bottom: 60/1966
  60624. }
  60625. },
  60626. frontLewd: {
  60627. height: math.unit(1.8, "meters"),
  60628. weight: math.unit(120, "kg"),
  60629. name: "Front (Lewd)",
  60630. image: {
  60631. source: "./media/characters/kurz/front-lewd.svg",
  60632. extra: 1960/1824,
  60633. bottom: 41/2001
  60634. }
  60635. },
  60636. maw: {
  60637. height: math.unit(0.69, "meters"),
  60638. name: "Maw",
  60639. image: {
  60640. source: "./media/characters/kurz/maw.svg"
  60641. }
  60642. },
  60643. },
  60644. [
  60645. {
  60646. name: "Original Size",
  60647. height: math.unit(1.8, "meters")
  60648. },
  60649. {
  60650. name: "Incognito Size",
  60651. height: math.unit(2.4, "meters"),
  60652. default: true
  60653. },
  60654. {
  60655. name: "Macro",
  60656. height: math.unit(30, "meters")
  60657. },
  60658. {
  60659. name: "Macro+",
  60660. height: math.unit(250, "meters")
  60661. },
  60662. {
  60663. name: "Mega",
  60664. height: math.unit(2, "km")
  60665. },
  60666. {
  60667. name: "Mega+",
  60668. height: math.unit(35, "km")
  60669. },
  60670. {
  60671. name: "Mega++",
  60672. height: math.unit(75, "km")
  60673. },
  60674. {
  60675. name: "Giga",
  60676. height: math.unit(250, "km")
  60677. },
  60678. {
  60679. name: "Terra",
  60680. height: math.unit(15000, "km")
  60681. },
  60682. {
  60683. name: "Terra+",
  60684. height: math.unit(2250000, "km")
  60685. },
  60686. ]
  60687. ))
  60688. characterMakers.push(() => makeCharacter(
  60689. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60690. {
  60691. front: {
  60692. height: math.unit(16 + 3/12, "feet"),
  60693. weight: math.unit(3575, "lb"),
  60694. name: "Front",
  60695. image: {
  60696. source: "./media/characters/nikita/front.svg",
  60697. extra: 1064/955,
  60698. bottom: 47/1111
  60699. }
  60700. },
  60701. },
  60702. [
  60703. {
  60704. name: "Normal",
  60705. height: math.unit(16 + 3/12, "feet"),
  60706. default: true
  60707. },
  60708. {
  60709. name: "Big",
  60710. height: math.unit(21, "feet")
  60711. },
  60712. {
  60713. name: "Biggest",
  60714. height: math.unit(50, "feet")
  60715. },
  60716. ]
  60717. ))
  60718. characterMakers.push(() => makeCharacter(
  60719. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60720. {
  60721. front: {
  60722. height: math.unit(1.92, "m"),
  60723. weight: math.unit(76, "kg"),
  60724. name: "Front",
  60725. image: {
  60726. source: "./media/characters/kyara/front.svg",
  60727. extra: 1550/1438,
  60728. bottom: 139/1689
  60729. }
  60730. },
  60731. back: {
  60732. height: math.unit(1.92, "m"),
  60733. weight: math.unit(76, "kg"),
  60734. name: "Back",
  60735. image: {
  60736. source: "./media/characters/kyara/back.svg",
  60737. extra: 1523/1427,
  60738. bottom: 83/1606
  60739. }
  60740. },
  60741. head: {
  60742. height: math.unit(1.22, "feet"),
  60743. name: "Head",
  60744. image: {
  60745. source: "./media/characters/kyara/head.svg"
  60746. }
  60747. },
  60748. maw: {
  60749. height: math.unit(0.73, "feet"),
  60750. name: "Maw",
  60751. image: {
  60752. source: "./media/characters/kyara/maw.svg"
  60753. }
  60754. },
  60755. paws: {
  60756. height: math.unit(0.95, "feet"),
  60757. name: "Paws",
  60758. image: {
  60759. source: "./media/characters/kyara/paws.svg"
  60760. }
  60761. },
  60762. },
  60763. [
  60764. {
  60765. name: "Normal",
  60766. height: math.unit(1.92, "meters"),
  60767. default: true
  60768. },
  60769. {
  60770. name: "Mini Macro",
  60771. height: math.unit(192, "meters")
  60772. },
  60773. {
  60774. name: "Macro",
  60775. height: math.unit(480, "meters")
  60776. },
  60777. {
  60778. name: "Mega Macro",
  60779. height: math.unit(1440, "meters")
  60780. },
  60781. ]
  60782. ))
  60783. characterMakers.push(() => makeCharacter(
  60784. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60785. {
  60786. front: {
  60787. height: math.unit(6, "feet"),
  60788. weight: math.unit(160, "lbs"),
  60789. preyCapacity: math.unit(0.05, "people"),
  60790. name: "Front",
  60791. image: {
  60792. source: "./media/characters/layla-amari/front.svg",
  60793. extra: 1922/1723,
  60794. bottom: 90/2012
  60795. }
  60796. },
  60797. back: {
  60798. height: math.unit(6, "feet"),
  60799. weight: math.unit(160, "lbs"),
  60800. preyCapacity: math.unit(0.05, "people"),
  60801. name: "Back",
  60802. image: {
  60803. source: "./media/characters/layla-amari/back.svg",
  60804. extra: 1917/1718,
  60805. bottom: 50/1967
  60806. }
  60807. },
  60808. frontDressed: {
  60809. height: math.unit(6, "feet"),
  60810. weight: math.unit(160, "lbs"),
  60811. preyCapacity: math.unit(0.05, "people"),
  60812. name: "Front (Dressed)",
  60813. image: {
  60814. source: "./media/characters/layla-amari/front-dressed.svg",
  60815. extra: 1922/1723,
  60816. bottom: 90/2012
  60817. }
  60818. },
  60819. face: {
  60820. height: math.unit(0.93, "feet"),
  60821. name: "Face",
  60822. image: {
  60823. source: "./media/characters/layla-amari/face.svg"
  60824. }
  60825. },
  60826. hand: {
  60827. height: math.unit(0.66 , "feet"),
  60828. name: "Hand",
  60829. image: {
  60830. source: "./media/characters/layla-amari/hand.svg"
  60831. }
  60832. },
  60833. foot: {
  60834. height: math.unit(1, "feet"),
  60835. name: "Foot",
  60836. image: {
  60837. source: "./media/characters/layla-amari/foot.svg"
  60838. }
  60839. },
  60840. necklace: {
  60841. height: math.unit(0.32, "feet"),
  60842. name: "Necklace",
  60843. image: {
  60844. source: "./media/characters/layla-amari/necklace.svg"
  60845. }
  60846. },
  60847. nipple: {
  60848. height: math.unit(0.2, "feet"),
  60849. name: "Nipple",
  60850. image: {
  60851. source: "./media/characters/layla-amari/nipple.svg"
  60852. }
  60853. },
  60854. slit: {
  60855. height: math.unit(0.26, "feet"),
  60856. name: "Slit",
  60857. image: {
  60858. source: "./media/characters/layla-amari/slit.svg"
  60859. }
  60860. },
  60861. },
  60862. [
  60863. {
  60864. name: "Natural",
  60865. height: math.unit(825, "feet"),
  60866. default: true
  60867. },
  60868. {
  60869. name: "Enhanced",
  60870. height: math.unit(8250, "feet")
  60871. },
  60872. {
  60873. name: "Apparent Size",
  60874. height: math.unit(9.04363e+8, "meters")
  60875. },
  60876. ]
  60877. ))
  60878. characterMakers.push(() => makeCharacter(
  60879. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60880. {
  60881. front: {
  60882. height: math.unit(1.3, "meters"),
  60883. name: "Front",
  60884. image: {
  60885. source: "./media/characters/percy/front.svg",
  60886. extra: 1444/1289,
  60887. bottom: 54/1498
  60888. }
  60889. },
  60890. },
  60891. [
  60892. {
  60893. name: "Normal",
  60894. height: math.unit(1.3, "meters"),
  60895. default: true
  60896. },
  60897. ]
  60898. ))
  60899. //characters
  60900. function makeCharacters() {
  60901. const results = [];
  60902. characterMakers.forEach(character => {
  60903. results.push(character());
  60904. });
  60905. return results;
  60906. }