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.
 
 
 

61935 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. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. "kardox": {
  2242. name: "Kardox",
  2243. parents: ["wolf", "dragon", "horse"]
  2244. },
  2245. "food": {
  2246. name: "Food",
  2247. parents: ["object"]
  2248. },
  2249. "object": {
  2250. name: "Object",
  2251. parents: []
  2252. },
  2253. "honey-badger": {
  2254. name: "honey-badger",
  2255. parents: ["badger"]
  2256. },
  2257. "badger": {
  2258. name: "Badger",
  2259. parents: ["mustelid"]
  2260. },
  2261. "rattlesnake": {
  2262. name: "Rattlesnake",
  2263. parents: ["snake"]
  2264. },
  2265. "diamondback": {
  2266. name: "Diamondback",
  2267. parents: ["snake"]
  2268. },
  2269. "spidox": {
  2270. name: "Spidox",
  2271. parents: ["spider", "fox"]
  2272. },
  2273. "kodiak-bear": {
  2274. name: "Kodiak Bear",
  2275. parents: ["bear"]
  2276. },
  2277. }
  2278. //species
  2279. function getSpeciesInfo(speciesList) {
  2280. let result = new Set();
  2281. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2282. result.add(entry)
  2283. });
  2284. return Array.from(result);
  2285. };
  2286. function getSpeciesInfoHelper(species) {
  2287. if (!speciesData[species]) {
  2288. console.warn(species + " doesn't exist");
  2289. return [];
  2290. }
  2291. if (speciesData[species].parents) {
  2292. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2293. } else {
  2294. return [species];
  2295. }
  2296. }
  2297. characterMakers.push(() => makeCharacter(
  2298. {
  2299. name: "Fen",
  2300. species: ["crux"],
  2301. description: {
  2302. title: "Bio",
  2303. text: "Very furry. Sheds on everything."
  2304. },
  2305. tags: [
  2306. "anthro",
  2307. "goo"
  2308. ]
  2309. },
  2310. {
  2311. front: {
  2312. height: math.unit(12, "feet"),
  2313. weight: math.unit(2400, "lb"),
  2314. preyCapacity: math.unit(1, "people"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/fen/front.svg",
  2318. extra: 1804/1562,
  2319. bottom: 205/2009
  2320. },
  2321. extraAttributes: {
  2322. pawSize: {
  2323. name: "Paw Size",
  2324. power: 2,
  2325. type: "area",
  2326. base: math.unit(0.35, "m^2")
  2327. }
  2328. }
  2329. },
  2330. diving: {
  2331. height: math.unit(4.9, "meters"),
  2332. weight: math.unit(2400, "lb"),
  2333. name: "Diving",
  2334. image: {
  2335. source: "./media/characters/fen/diving.svg"
  2336. }
  2337. },
  2338. sleeby: {
  2339. height: math.unit(3.45, "meters"),
  2340. weight: math.unit(2400, "lb"),
  2341. name: "Sleeby",
  2342. image: {
  2343. source: "./media/characters/fen/sleeby.svg"
  2344. }
  2345. },
  2346. goo: {
  2347. height: math.unit(12, "feet"),
  2348. weight: math.unit(3600, "lb"),
  2349. volume: math.unit(1000, "liters"),
  2350. preyCapacity: math.unit(6, "people"),
  2351. name: "Goo",
  2352. image: {
  2353. source: "./media/characters/fen/goo.svg",
  2354. extra: 1307/1071,
  2355. bottom: 134/1441
  2356. }
  2357. },
  2358. horror: {
  2359. height: math.unit(13.6, "feet"),
  2360. weight: math.unit(2400, "lb"),
  2361. preyCapacity: math.unit(1, "people"),
  2362. name: "Horror",
  2363. image: {
  2364. source: "./media/characters/fen/horror.svg",
  2365. extra: 893/797,
  2366. bottom: 0/893
  2367. }
  2368. },
  2369. gooNsfw: {
  2370. height: math.unit(12, "feet"),
  2371. weight: math.unit(3750, "lb"),
  2372. volume: math.unit(1000, "liters"),
  2373. preyCapacity: math.unit(6, "people"),
  2374. name: "Goo (NSFW)",
  2375. image: {
  2376. source: "./media/characters/fen/goo-nsfw.svg",
  2377. extra: 1875/1734,
  2378. bottom: 122/1997
  2379. }
  2380. },
  2381. maw: {
  2382. height: math.unit(5.03, "feet"),
  2383. name: "Maw",
  2384. image: {
  2385. source: "./media/characters/fen/maw.svg"
  2386. }
  2387. },
  2388. gooCeiling: {
  2389. height: math.unit(6.6, "feet"),
  2390. weight: math.unit(3000, "lb"),
  2391. volume: math.unit(1000, "liters"),
  2392. preyCapacity: math.unit(6, "people"),
  2393. name: "Maw (Goo)",
  2394. image: {
  2395. source: "./media/characters/fen/goo-maw.svg"
  2396. }
  2397. },
  2398. paw: {
  2399. height: math.unit(3.77, "feet"),
  2400. name: "Paw",
  2401. image: {
  2402. source: "./media/characters/fen/paw.svg"
  2403. },
  2404. extraAttributes: {
  2405. "toeSize": {
  2406. name: "Toe Size",
  2407. power: 2,
  2408. type: "area",
  2409. base: math.unit(0.02875, "m^2")
  2410. },
  2411. "pawSize": {
  2412. name: "Paw Size",
  2413. power: 2,
  2414. type: "area",
  2415. base: math.unit(0.378, "m^2")
  2416. },
  2417. }
  2418. },
  2419. tail: {
  2420. height: math.unit(12.1, "feet"),
  2421. name: "Tail",
  2422. image: {
  2423. source: "./media/characters/fen/tail.svg"
  2424. }
  2425. },
  2426. tailFull: {
  2427. height: math.unit(12.1, "feet"),
  2428. name: "Full Tail",
  2429. image: {
  2430. source: "./media/characters/fen/tail-full.svg"
  2431. }
  2432. },
  2433. back: {
  2434. height: math.unit(12, "feet"),
  2435. weight: math.unit(2400, "lb"),
  2436. name: "Back",
  2437. image: {
  2438. source: "./media/characters/fen/back.svg",
  2439. },
  2440. info: {
  2441. description: {
  2442. mode: "append",
  2443. text: "\n\nHe is not currently looking at you."
  2444. }
  2445. }
  2446. },
  2447. full: {
  2448. height: math.unit(1.85, "meter"),
  2449. weight: math.unit(3200, "lb"),
  2450. name: "Full",
  2451. image: {
  2452. source: "./media/characters/fen/full.svg",
  2453. extra: 1133/859,
  2454. bottom: 145/1278
  2455. },
  2456. info: {
  2457. description: {
  2458. mode: "append",
  2459. text: "\n\nMunch."
  2460. }
  2461. }
  2462. },
  2463. gooLounging: {
  2464. height: math.unit(4.53, "feet"),
  2465. weight: math.unit(3000, "lb"),
  2466. preyCapacity: math.unit(6, "people"),
  2467. name: "Goo (Lounging)",
  2468. image: {
  2469. source: "./media/characters/fen/goo-lounging.svg",
  2470. bottom: 116 / 613
  2471. }
  2472. },
  2473. lounging: {
  2474. height: math.unit(10.52, "feet"),
  2475. weight: math.unit(2400, "lb"),
  2476. name: "Lounging",
  2477. image: {
  2478. source: "./media/characters/fen/lounging.svg"
  2479. }
  2480. },
  2481. },
  2482. [
  2483. {
  2484. name: "Small",
  2485. height: math.unit(2.2428, "meter")
  2486. },
  2487. {
  2488. name: "Normal",
  2489. height: math.unit(12, "feet"),
  2490. default: true,
  2491. },
  2492. {
  2493. name: "Big",
  2494. height: math.unit(20, "feet")
  2495. },
  2496. {
  2497. name: "Minimacro",
  2498. height: math.unit(40, "feet"),
  2499. info: {
  2500. description: {
  2501. mode: "append",
  2502. text: "\n\nTOO DAMN BIG"
  2503. }
  2504. }
  2505. },
  2506. {
  2507. name: "Macro",
  2508. height: math.unit(100, "feet"),
  2509. info: {
  2510. description: {
  2511. mode: "append",
  2512. text: "\n\nTOO DAMN BIG"
  2513. }
  2514. }
  2515. },
  2516. {
  2517. name: "Megamacro",
  2518. height: math.unit(2, "miles")
  2519. },
  2520. {
  2521. name: "Gigamacro",
  2522. height: math.unit(10, "earths")
  2523. },
  2524. ]
  2525. ))
  2526. characterMakers.push(() => makeCharacter(
  2527. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2528. {
  2529. front: {
  2530. height: math.unit(183, "cm"),
  2531. weight: math.unit(80, "kg"),
  2532. name: "Front",
  2533. image: {
  2534. source: "./media/characters/sofia-fluttertail/front.svg",
  2535. bottom: 0.01,
  2536. extra: 2154 / 2081
  2537. }
  2538. },
  2539. frontAlt: {
  2540. height: math.unit(183, "cm"),
  2541. weight: math.unit(80, "kg"),
  2542. name: "Front (alt)",
  2543. image: {
  2544. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2545. }
  2546. },
  2547. back: {
  2548. height: math.unit(183, "cm"),
  2549. weight: math.unit(80, "kg"),
  2550. name: "Back",
  2551. image: {
  2552. source: "./media/characters/sofia-fluttertail/back.svg"
  2553. }
  2554. },
  2555. kneeling: {
  2556. height: math.unit(125, "cm"),
  2557. weight: math.unit(80, "kg"),
  2558. name: "Kneeling",
  2559. image: {
  2560. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2561. extra: 1033 / 977,
  2562. bottom: 23.7 / 1057
  2563. }
  2564. },
  2565. maw: {
  2566. height: math.unit(183 / 5, "cm"),
  2567. name: "Maw",
  2568. image: {
  2569. source: "./media/characters/sofia-fluttertail/maw.svg"
  2570. }
  2571. },
  2572. mawcloseup: {
  2573. height: math.unit(183 / 5 * 0.41, "cm"),
  2574. name: "Maw (Closeup)",
  2575. image: {
  2576. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2577. }
  2578. },
  2579. paws: {
  2580. height: math.unit(1.17, "feet"),
  2581. name: "Paws",
  2582. image: {
  2583. source: "./media/characters/sofia-fluttertail/paws.svg",
  2584. extra: 851 / 851,
  2585. bottom: 17 / 868
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Normal",
  2592. height: math.unit(1.83, "meter")
  2593. },
  2594. {
  2595. name: "Size Thief",
  2596. height: math.unit(18, "feet")
  2597. },
  2598. {
  2599. name: "50 Foot Collie",
  2600. height: math.unit(50, "feet")
  2601. },
  2602. {
  2603. name: "Macro",
  2604. height: math.unit(96, "feet"),
  2605. default: true
  2606. },
  2607. {
  2608. name: "Megamerger",
  2609. height: math.unit(650, "feet")
  2610. },
  2611. ]
  2612. ))
  2613. characterMakers.push(() => makeCharacter(
  2614. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2615. {
  2616. front: {
  2617. height: math.unit(7, "feet"),
  2618. weight: math.unit(100, "kg"),
  2619. name: "Front",
  2620. image: {
  2621. source: "./media/characters/march/front.svg",
  2622. extra: 1992/1851,
  2623. bottom: 39/2031
  2624. }
  2625. },
  2626. foot: {
  2627. height: math.unit(0.9, "feet"),
  2628. name: "Foot",
  2629. image: {
  2630. source: "./media/characters/march/foot.svg"
  2631. }
  2632. },
  2633. },
  2634. [
  2635. {
  2636. name: "Normal",
  2637. height: math.unit(7.9, "feet")
  2638. },
  2639. {
  2640. name: "Macro",
  2641. height: math.unit(220, "meters")
  2642. },
  2643. {
  2644. name: "Megamacro",
  2645. height: math.unit(2.98, "km"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Gigamacro",
  2650. height: math.unit(15963, "km")
  2651. },
  2652. {
  2653. name: "Teramacro",
  2654. height: math.unit(2980000000, "km")
  2655. },
  2656. {
  2657. name: "Examacro",
  2658. height: math.unit(250, "parsecs")
  2659. },
  2660. ]
  2661. ))
  2662. characterMakers.push(() => makeCharacter(
  2663. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2664. {
  2665. front: {
  2666. height: math.unit(6, "feet"),
  2667. weight: math.unit(60, "kg"),
  2668. name: "Front",
  2669. image: {
  2670. source: "./media/characters/noir/front.svg",
  2671. extra: 1,
  2672. bottom: 0.032
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(6.6, "feet")
  2680. },
  2681. {
  2682. name: "Macro",
  2683. height: math.unit(500, "feet")
  2684. },
  2685. {
  2686. name: "Megamacro",
  2687. height: math.unit(2.5, "km"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Gigamacro",
  2692. height: math.unit(22500, "km")
  2693. },
  2694. {
  2695. name: "Teramacro",
  2696. height: math.unit(2500000000, "km")
  2697. },
  2698. {
  2699. name: "Examacro",
  2700. height: math.unit(200, "parsecs")
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2706. {
  2707. front: {
  2708. height: math.unit(7, "feet"),
  2709. weight: math.unit(100, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/okuri/front.svg",
  2713. extra: 739/665,
  2714. bottom: 39/778
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(7, "feet"),
  2719. weight: math.unit(100, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/okuri/back.svg",
  2723. extra: 734/653,
  2724. bottom: 13/747
  2725. }
  2726. },
  2727. sitting: {
  2728. height: math.unit(2.95, "feet"),
  2729. weight: math.unit(100, "kg"),
  2730. name: "Sitting",
  2731. image: {
  2732. source: "./media/characters/okuri/sitting.svg",
  2733. extra: 370/318,
  2734. bottom: 99/469
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Smallest",
  2741. height: math.unit(5 + 2/12, "feet")
  2742. },
  2743. {
  2744. name: "Smaller",
  2745. height: math.unit(300, "feet")
  2746. },
  2747. {
  2748. name: "Small",
  2749. height: math.unit(1000, "feet")
  2750. },
  2751. {
  2752. name: "Macro",
  2753. height: math.unit(1, "mile")
  2754. },
  2755. {
  2756. name: "Mega Macro (Small)",
  2757. height: math.unit(20, "km")
  2758. },
  2759. {
  2760. name: "Mega Macro (Large)",
  2761. height: math.unit(600, "km")
  2762. },
  2763. {
  2764. name: "Giga Macro",
  2765. height: math.unit(10000, "km")
  2766. },
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(577560, "km"),
  2770. default: true
  2771. },
  2772. {
  2773. name: "Large",
  2774. height: math.unit(4, "galaxies")
  2775. },
  2776. {
  2777. name: "Largest",
  2778. height: math.unit(15, "multiverses")
  2779. },
  2780. ]
  2781. ))
  2782. characterMakers.push(() => makeCharacter(
  2783. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2784. {
  2785. front: {
  2786. height: math.unit(7, "feet"),
  2787. weight: math.unit(100, "kg"),
  2788. name: "Front",
  2789. image: {
  2790. source: "./media/characters/manny/front.svg",
  2791. extra: 1,
  2792. bottom: 0.06
  2793. }
  2794. },
  2795. back: {
  2796. height: math.unit(7, "feet"),
  2797. weight: math.unit(100, "kg"),
  2798. name: "Back",
  2799. image: {
  2800. source: "./media/characters/manny/back.svg",
  2801. extra: 1,
  2802. bottom: 0.014
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(7, "feet"),
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(78, "feet"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "Macro+",
  2818. height: math.unit(300, "meters")
  2819. },
  2820. {
  2821. name: "Macro++",
  2822. height: math.unit(2400, "meters")
  2823. },
  2824. {
  2825. name: "Megamacro",
  2826. height: math.unit(5167, "meters")
  2827. },
  2828. {
  2829. name: "Gigamacro",
  2830. height: math.unit(41769, "miles")
  2831. },
  2832. ]
  2833. ))
  2834. characterMakers.push(() => makeCharacter(
  2835. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2836. {
  2837. front: {
  2838. height: math.unit(7, "feet"),
  2839. weight: math.unit(100, "kg"),
  2840. name: "Front",
  2841. image: {
  2842. source: "./media/characters/adake/front-1.svg"
  2843. }
  2844. },
  2845. frontAlt: {
  2846. height: math.unit(7, "feet"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Front (Alt)",
  2849. image: {
  2850. source: "./media/characters/adake/front-2.svg",
  2851. extra: 1,
  2852. bottom: 0.01
  2853. }
  2854. },
  2855. back: {
  2856. height: math.unit(7, "feet"),
  2857. weight: math.unit(100, "kg"),
  2858. name: "Back",
  2859. image: {
  2860. source: "./media/characters/adake/back.svg",
  2861. }
  2862. },
  2863. kneel: {
  2864. height: math.unit(5.385, "feet"),
  2865. weight: math.unit(100, "kg"),
  2866. name: "Kneeling",
  2867. image: {
  2868. source: "./media/characters/adake/kneel.svg",
  2869. bottom: 0.052
  2870. }
  2871. },
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(7, "feet"),
  2877. },
  2878. {
  2879. name: "Macro",
  2880. height: math.unit(78, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Macro+",
  2885. height: math.unit(300, "meters")
  2886. },
  2887. {
  2888. name: "Macro++",
  2889. height: math.unit(2400, "meters")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(5167, "meters")
  2894. },
  2895. {
  2896. name: "Gigamacro",
  2897. height: math.unit(41769, "miles")
  2898. },
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(1.65, "meters"),
  2906. weight: math.unit(50, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/elijah/front.svg",
  2910. extra: 858 / 830,
  2911. bottom: 95.5 / 953.8559
  2912. }
  2913. },
  2914. back: {
  2915. height: math.unit(1.65, "meters"),
  2916. weight: math.unit(50, "kg"),
  2917. name: "Back",
  2918. image: {
  2919. source: "./media/characters/elijah/back.svg",
  2920. extra: 895 / 850,
  2921. bottom: 5.3 / 897.956
  2922. }
  2923. },
  2924. frontNsfw: {
  2925. height: math.unit(1.65, "meters"),
  2926. weight: math.unit(50, "kg"),
  2927. name: "Front (NSFW)",
  2928. image: {
  2929. source: "./media/characters/elijah/front-nsfw.svg",
  2930. extra: 858 / 830,
  2931. bottom: 95.5 / 953.8559
  2932. }
  2933. },
  2934. backNsfw: {
  2935. height: math.unit(1.65, "meters"),
  2936. weight: math.unit(50, "kg"),
  2937. name: "Back (NSFW)",
  2938. image: {
  2939. source: "./media/characters/elijah/back-nsfw.svg",
  2940. extra: 895 / 850,
  2941. bottom: 5.3 / 897.956
  2942. }
  2943. },
  2944. dick: {
  2945. height: math.unit(1, "feet"),
  2946. name: "Dick",
  2947. image: {
  2948. source: "./media/characters/elijah/dick.svg"
  2949. }
  2950. },
  2951. beakOpen: {
  2952. height: math.unit(1.25, "feet"),
  2953. name: "Beak (Open)",
  2954. image: {
  2955. source: "./media/characters/elijah/beak-open.svg"
  2956. }
  2957. },
  2958. beakShut: {
  2959. height: math.unit(1.25, "feet"),
  2960. name: "Beak (Shut)",
  2961. image: {
  2962. source: "./media/characters/elijah/beak-shut.svg"
  2963. }
  2964. },
  2965. footFlexing: {
  2966. height: math.unit(1.61, "feet"),
  2967. name: "Foot (Flexing)",
  2968. image: {
  2969. source: "./media/characters/elijah/foot-flexing.svg"
  2970. }
  2971. },
  2972. footStepping: {
  2973. height: math.unit(1.44, "feet"),
  2974. name: "Foot (Stepping)",
  2975. image: {
  2976. source: "./media/characters/elijah/foot-stepping.svg"
  2977. }
  2978. },
  2979. plantigradeLeg: {
  2980. height: math.unit(2.34, "feet"),
  2981. name: "Plantigrade Leg",
  2982. image: {
  2983. source: "./media/characters/elijah/plantigrade-leg.svg"
  2984. }
  2985. },
  2986. plantigradeFootLeft: {
  2987. height: math.unit(0.9, "feet"),
  2988. name: "Plantigrade Foot (Left)",
  2989. image: {
  2990. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2991. }
  2992. },
  2993. plantigradeFootRight: {
  2994. height: math.unit(0.9, "feet"),
  2995. name: "Plantigrade Foot (Right)",
  2996. image: {
  2997. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2998. }
  2999. },
  3000. },
  3001. [
  3002. {
  3003. name: "Normal",
  3004. height: math.unit(1.65, "meters")
  3005. },
  3006. {
  3007. name: "Macro",
  3008. height: math.unit(55, "meters"),
  3009. default: true
  3010. },
  3011. {
  3012. name: "Macro+",
  3013. height: math.unit(105, "meters")
  3014. },
  3015. ]
  3016. ))
  3017. characterMakers.push(() => makeCharacter(
  3018. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3019. {
  3020. front: {
  3021. height: math.unit(7 + 2/12, "feet"),
  3022. weight: math.unit(320, "kg"),
  3023. preyCapacity: math.unit(0.276549935, "people"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/rai/front.svg",
  3027. extra: 1802/1696,
  3028. bottom: 68/1870
  3029. },
  3030. form: "anthro",
  3031. default: true
  3032. },
  3033. frontDressed: {
  3034. height: math.unit(7 + 2/12, "feet"),
  3035. weight: math.unit(320, "kg"),
  3036. preyCapacity: math.unit(0.276549935, "people"),
  3037. name: "Front (Dressed)",
  3038. image: {
  3039. source: "./media/characters/rai/front-dressed.svg",
  3040. extra: 1802/1696,
  3041. bottom: 68/1870
  3042. },
  3043. form: "anthro"
  3044. },
  3045. side: {
  3046. height: math.unit(7 + 2/12, "feet"),
  3047. weight: math.unit(320, "kg"),
  3048. preyCapacity: math.unit(0.276549935, "people"),
  3049. name: "Side",
  3050. image: {
  3051. source: "./media/characters/rai/side.svg",
  3052. extra: 1789/1710,
  3053. bottom: 115/1904
  3054. },
  3055. form: "anthro"
  3056. },
  3057. back: {
  3058. height: math.unit(7 + 2/12, "feet"),
  3059. weight: math.unit(320, "kg"),
  3060. preyCapacity: math.unit(0.276549935, "people"),
  3061. name: "Back",
  3062. image: {
  3063. source: "./media/characters/rai/back.svg",
  3064. extra: 1770/1707,
  3065. bottom: 28/1798
  3066. },
  3067. form: "anthro"
  3068. },
  3069. feral: {
  3070. height: math.unit(9.5, "feet"),
  3071. weight: math.unit(640, "kg"),
  3072. preyCapacity: math.unit(4, "people"),
  3073. name: "Feral",
  3074. image: {
  3075. source: "./media/characters/rai/feral.svg",
  3076. extra: 945/553,
  3077. bottom: 176/1121
  3078. },
  3079. form: "feral",
  3080. default: true
  3081. },
  3082. dragon: {
  3083. height: math.unit(23, "feet"),
  3084. weight: math.unit(50000, "lb"),
  3085. name: "Dragon",
  3086. image: {
  3087. source: "./media/characters/rai/dragon.svg",
  3088. extra: 2498 / 2030,
  3089. bottom: 85.2 / 2584
  3090. },
  3091. form: "dragon",
  3092. default: true
  3093. },
  3094. maw: {
  3095. height: math.unit(1.69, "feet"),
  3096. name: "Maw",
  3097. image: {
  3098. source: "./media/characters/rai/maw.svg"
  3099. },
  3100. form: "anthro"
  3101. },
  3102. },
  3103. [
  3104. {
  3105. name: "Normal",
  3106. height: math.unit(7 + 2/12, "feet"),
  3107. form: "anthro"
  3108. },
  3109. {
  3110. name: "Big",
  3111. height: math.unit(11, "feet"),
  3112. form: "anthro"
  3113. },
  3114. {
  3115. name: "Minimacro",
  3116. height: math.unit(77, "feet"),
  3117. form: "anthro"
  3118. },
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(302, "feet"),
  3122. default: true,
  3123. form: "anthro"
  3124. },
  3125. {
  3126. name: "Normal",
  3127. height: math.unit(9.5, "feet"),
  3128. form: "feral",
  3129. default: true
  3130. },
  3131. {
  3132. name: "Normal",
  3133. height: math.unit(23, "feet"),
  3134. form: "dragon",
  3135. default: true
  3136. }
  3137. ],
  3138. {
  3139. "anthro": {
  3140. name: "Anthro",
  3141. default: true
  3142. },
  3143. "feral": {
  3144. name: "Feral",
  3145. },
  3146. "dragon": {
  3147. name: "Dragon",
  3148. },
  3149. }
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3153. {
  3154. frontDressed: {
  3155. height: math.unit(216, "feet"),
  3156. weight: math.unit(7000000, "lb"),
  3157. preyCapacity: math.unit(1321, "people"),
  3158. name: "Front (Dressed)",
  3159. image: {
  3160. source: "./media/characters/jazzy/front-dressed.svg",
  3161. extra: 2738 / 2651,
  3162. bottom: 41.8 / 2786
  3163. }
  3164. },
  3165. backDressed: {
  3166. height: math.unit(216, "feet"),
  3167. weight: math.unit(7000000, "lb"),
  3168. preyCapacity: math.unit(1321, "people"),
  3169. name: "Back (Dressed)",
  3170. image: {
  3171. source: "./media/characters/jazzy/back-dressed.svg",
  3172. extra: 2775 / 2673,
  3173. bottom: 36.8 / 2817
  3174. }
  3175. },
  3176. front: {
  3177. height: math.unit(216, "feet"),
  3178. weight: math.unit(7000000, "lb"),
  3179. preyCapacity: math.unit(1321, "people"),
  3180. name: "Front",
  3181. image: {
  3182. source: "./media/characters/jazzy/front.svg",
  3183. extra: 2738 / 2651,
  3184. bottom: 41.8 / 2786
  3185. }
  3186. },
  3187. back: {
  3188. height: math.unit(216, "feet"),
  3189. weight: math.unit(7000000, "lb"),
  3190. preyCapacity: math.unit(1321, "people"),
  3191. name: "Back",
  3192. image: {
  3193. source: "./media/characters/jazzy/back.svg",
  3194. extra: 2775 / 2673,
  3195. bottom: 36.8 / 2817
  3196. }
  3197. },
  3198. maw: {
  3199. height: math.unit(20, "feet"),
  3200. name: "Maw",
  3201. image: {
  3202. source: "./media/characters/jazzy/maw.svg"
  3203. }
  3204. },
  3205. paws: {
  3206. height: math.unit(27.5, "feet"),
  3207. name: "Paws",
  3208. image: {
  3209. source: "./media/characters/jazzy/paws.svg"
  3210. }
  3211. },
  3212. eye: {
  3213. height: math.unit(4.4, "feet"),
  3214. name: "Eye",
  3215. image: {
  3216. source: "./media/characters/jazzy/eye.svg"
  3217. }
  3218. },
  3219. droneOffense: {
  3220. height: math.unit(9.5, "inches"),
  3221. name: "Drone (Offense)",
  3222. image: {
  3223. source: "./media/characters/jazzy/drone-offense.svg"
  3224. }
  3225. },
  3226. droneRecon: {
  3227. height: math.unit(9.5, "inches"),
  3228. name: "Drone (Recon)",
  3229. image: {
  3230. source: "./media/characters/jazzy/drone-recon.svg"
  3231. }
  3232. },
  3233. droneDefense: {
  3234. height: math.unit(9.5, "inches"),
  3235. name: "Drone (Defense)",
  3236. image: {
  3237. source: "./media/characters/jazzy/drone-defense.svg"
  3238. }
  3239. },
  3240. },
  3241. [
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(216, "feet"),
  3245. default: true
  3246. },
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(9 + 6/12, "feet"),
  3254. weight: math.unit(700, "lb"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/flamm/front.svg",
  3258. extra: 1736/1596,
  3259. bottom: 93/1829
  3260. }
  3261. },
  3262. buff: {
  3263. height: math.unit(9 + 6/12, "feet"),
  3264. weight: math.unit(950, "lb"),
  3265. name: "Buff",
  3266. image: {
  3267. source: "./media/characters/flamm/buff.svg",
  3268. extra: 3018/2874,
  3269. bottom: 221/3239
  3270. }
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(9.5, "feet")
  3277. },
  3278. {
  3279. name: "Macro",
  3280. height: math.unit(200, "feet"),
  3281. default: true
  3282. },
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(5 + 3/12, "feet"),
  3290. weight: math.unit(60, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/zephiro/front.svg",
  3294. extra: 1873/1761,
  3295. bottom: 147/2020
  3296. }
  3297. },
  3298. side: {
  3299. height: math.unit(5 + 3/12, "feet"),
  3300. weight: math.unit(60, "kg"),
  3301. name: "Side",
  3302. image: {
  3303. source: "./media/characters/zephiro/side.svg",
  3304. extra: 1929/1827,
  3305. bottom: 65/1994
  3306. }
  3307. },
  3308. back: {
  3309. height: math.unit(5 + 3/12, "feet"),
  3310. weight: math.unit(60, "kg"),
  3311. name: "Back",
  3312. image: {
  3313. source: "./media/characters/zephiro/back.svg",
  3314. extra: 1926/1816,
  3315. bottom: 41/1967
  3316. }
  3317. },
  3318. hand: {
  3319. height: math.unit(0.68, "feet"),
  3320. name: "Hand",
  3321. image: {
  3322. source: "./media/characters/zephiro/hand.svg"
  3323. }
  3324. },
  3325. paw: {
  3326. height: math.unit(1, "feet"),
  3327. name: "Paw",
  3328. image: {
  3329. source: "./media/characters/zephiro/paw.svg"
  3330. }
  3331. },
  3332. beans: {
  3333. height: math.unit(0.93, "feet"),
  3334. name: "Beans",
  3335. image: {
  3336. source: "./media/characters/zephiro/beans.svg"
  3337. }
  3338. },
  3339. },
  3340. [
  3341. {
  3342. name: "Micro",
  3343. height: math.unit(3, "inches")
  3344. },
  3345. {
  3346. name: "Normal",
  3347. height: math.unit(5 + 3 / 12, "feet"),
  3348. default: true
  3349. },
  3350. {
  3351. name: "Macro",
  3352. height: math.unit(118, "feet")
  3353. },
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3358. {
  3359. front: {
  3360. height: math.unit(5, "feet"),
  3361. weight: math.unit(90, "kg"),
  3362. preyCapacity: math.unit(14, "people"),
  3363. name: "Front",
  3364. image: {
  3365. source: "./media/characters/fory/front.svg",
  3366. extra: 2862 / 2674,
  3367. bottom: 180 / 3043.8
  3368. },
  3369. form: "weaselbun",
  3370. default: true,
  3371. extraAttributes: {
  3372. "pawSize": {
  3373. name: "Paw Size",
  3374. power: 2,
  3375. type: "area",
  3376. base: math.unit(0.1596, "m^2")
  3377. },
  3378. "pawLength": {
  3379. name: "Paw Length",
  3380. power: 1,
  3381. type: "length",
  3382. base: math.unit(0.7, "m")
  3383. }
  3384. }
  3385. },
  3386. back: {
  3387. height: math.unit(5, "feet"),
  3388. weight: math.unit(90, "kg"),
  3389. preyCapacity: math.unit(14, "people"),
  3390. name: "Back",
  3391. image: {
  3392. source: "./media/characters/fory/back.svg",
  3393. extra: 1790/1672,
  3394. bottom: 84/1874
  3395. },
  3396. form: "weaselbun",
  3397. extraAttributes: {
  3398. "pawSize": {
  3399. name: "Paw Size",
  3400. power: 2,
  3401. type: "area",
  3402. base: math.unit(0.1596, "m^2")
  3403. },
  3404. "pawLength": {
  3405. name: "Paw Length",
  3406. power: 1,
  3407. type: "length",
  3408. base: math.unit(0.7, "m")
  3409. }
  3410. }
  3411. },
  3412. paw: {
  3413. height: math.unit(2.14, "feet"),
  3414. name: "Paw",
  3415. image: {
  3416. source: "./media/characters/fory/paw.svg"
  3417. },
  3418. form: "weaselbun",
  3419. extraAttributes: {
  3420. "pawSize": {
  3421. name: "Paw Size",
  3422. power: 2,
  3423. type: "area",
  3424. base: math.unit(0.1596, "m^2")
  3425. },
  3426. "pawLength": {
  3427. name: "Paw Length",
  3428. power: 1,
  3429. type: "length",
  3430. base: math.unit(0.48, "m")
  3431. }
  3432. }
  3433. },
  3434. bunBack: {
  3435. height: math.unit(3, "feet"),
  3436. weight: math.unit(20, "kg"),
  3437. preyCapacity: math.unit(3, "people"),
  3438. name: "Back",
  3439. image: {
  3440. source: "./media/characters/fory/bun-back.svg",
  3441. extra: 1749/1564,
  3442. bottom: 246/1995
  3443. },
  3444. form: "bun",
  3445. default: true,
  3446. extraAttributes: {
  3447. "pawSize": {
  3448. name: "Paw Size",
  3449. power: 2,
  3450. type: "area",
  3451. base: math.unit(0.072, "m^2")
  3452. },
  3453. "pawLength": {
  3454. name: "Paw Length",
  3455. power: 1,
  3456. type: "length",
  3457. base: math.unit(0.45, "m")
  3458. }
  3459. }
  3460. },
  3461. },
  3462. [
  3463. {
  3464. name: "Normal",
  3465. height: math.unit(5, "feet"),
  3466. form: "weaselbun"
  3467. },
  3468. {
  3469. name: "Macro",
  3470. height: math.unit(50, "feet"),
  3471. default: true,
  3472. form: "weaselbun"
  3473. },
  3474. {
  3475. name: "Megamacro",
  3476. height: math.unit(10, "miles"),
  3477. form: "weaselbun"
  3478. },
  3479. {
  3480. name: "Gigamacro",
  3481. height: math.unit(5, "earths"),
  3482. form: "weaselbun"
  3483. },
  3484. {
  3485. name: "Normal",
  3486. height: math.unit(3, "feet"),
  3487. default: true,
  3488. form: "bun"
  3489. },
  3490. {
  3491. name: "Fun-Size",
  3492. height: math.unit(12, "feet"),
  3493. form: "bun"
  3494. },
  3495. {
  3496. name: "Macro",
  3497. height: math.unit(100, "feet"),
  3498. form: "bun"
  3499. },
  3500. {
  3501. name: "Planetary",
  3502. height: math.unit(3, "earths"),
  3503. form: "bun"
  3504. },
  3505. ],
  3506. {
  3507. "weaselbun": {
  3508. name: "Weaselbun",
  3509. default: true
  3510. },
  3511. "bun": {
  3512. name: "Bun",
  3513. },
  3514. }
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(7, "feet"),
  3521. weight: math.unit(90, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/kurrikage/front.svg",
  3525. extra: 1845/1733,
  3526. bottom: 119/1964
  3527. }
  3528. },
  3529. back: {
  3530. height: math.unit(7, "feet"),
  3531. weight: math.unit(90, "kg"),
  3532. name: "Back",
  3533. image: {
  3534. source: "./media/characters/kurrikage/back.svg",
  3535. extra: 1790/1677,
  3536. bottom: 61/1851
  3537. }
  3538. },
  3539. dressed: {
  3540. height: math.unit(7, "feet"),
  3541. weight: math.unit(90, "kg"),
  3542. name: "Dressed",
  3543. image: {
  3544. source: "./media/characters/kurrikage/dressed.svg",
  3545. extra: 1845/1733,
  3546. bottom: 119/1964
  3547. }
  3548. },
  3549. foot: {
  3550. height: math.unit(1.5, "feet"),
  3551. name: "Foot",
  3552. image: {
  3553. source: "./media/characters/kurrikage/foot.svg"
  3554. }
  3555. },
  3556. staff: {
  3557. height: math.unit(6.7, "feet"),
  3558. name: "Staff",
  3559. image: {
  3560. source: "./media/characters/kurrikage/staff.svg"
  3561. }
  3562. },
  3563. peek: {
  3564. height: math.unit(1.05, "feet"),
  3565. name: "Peeking",
  3566. image: {
  3567. source: "./media/characters/kurrikage/peek.svg",
  3568. bottom: 0.08
  3569. }
  3570. },
  3571. },
  3572. [
  3573. {
  3574. name: "Normal",
  3575. height: math.unit(12, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Big",
  3580. height: math.unit(20, "feet")
  3581. },
  3582. {
  3583. name: "Macro",
  3584. height: math.unit(500, "feet")
  3585. },
  3586. {
  3587. name: "Megamacro",
  3588. height: math.unit(20, "miles")
  3589. },
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(6, "feet"),
  3597. weight: math.unit(75, "kg"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/shingo/front.svg",
  3601. extra: 1900/1825,
  3602. bottom: 82/1982
  3603. }
  3604. },
  3605. side: {
  3606. height: math.unit(6, "feet"),
  3607. weight: math.unit(75, "kg"),
  3608. name: "Side",
  3609. image: {
  3610. source: "./media/characters/shingo/side.svg",
  3611. extra: 1930/1865,
  3612. bottom: 16/1946
  3613. }
  3614. },
  3615. back: {
  3616. height: math.unit(6, "feet"),
  3617. weight: math.unit(75, "kg"),
  3618. name: "Back",
  3619. image: {
  3620. source: "./media/characters/shingo/back.svg",
  3621. extra: 1922/1852,
  3622. bottom: 16/1938
  3623. }
  3624. },
  3625. frontDressed: {
  3626. height: math.unit(6, "feet"),
  3627. weight: math.unit(150, "lb"),
  3628. name: "Front-dressed",
  3629. image: {
  3630. source: "./media/characters/shingo/front-dressed.svg",
  3631. extra: 1900/1825,
  3632. bottom: 82/1982
  3633. }
  3634. },
  3635. paw: {
  3636. height: math.unit(1.29, "feet"),
  3637. name: "Paw",
  3638. image: {
  3639. source: "./media/characters/shingo/paw.svg"
  3640. }
  3641. },
  3642. hand: {
  3643. height: math.unit(1.07, "feet"),
  3644. name: "Hand",
  3645. image: {
  3646. source: "./media/characters/shingo/hand.svg"
  3647. }
  3648. },
  3649. frontAlt: {
  3650. height: math.unit(6, "feet"),
  3651. weight: math.unit(75, "kg"),
  3652. name: "Front (Alt)",
  3653. image: {
  3654. source: "./media/characters/shingo/front-alt.svg",
  3655. extra: 3511 / 3338,
  3656. bottom: 0.005
  3657. }
  3658. },
  3659. frontAlt2: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(75, "kg"),
  3662. name: "Front (Alt 2)",
  3663. image: {
  3664. source: "./media/characters/shingo/front-alt-2.svg",
  3665. extra: 706/681,
  3666. bottom: 11/717
  3667. }
  3668. },
  3669. pawAlt: {
  3670. height: math.unit(1, "feet"),
  3671. name: "Paw (Alt)",
  3672. image: {
  3673. source: "./media/characters/shingo/paw-alt.svg"
  3674. }
  3675. },
  3676. },
  3677. [
  3678. {
  3679. name: "Micro",
  3680. height: math.unit(4, "inches")
  3681. },
  3682. {
  3683. name: "Normal",
  3684. height: math.unit(6, "feet"),
  3685. default: true
  3686. },
  3687. {
  3688. name: "Macro",
  3689. height: math.unit(108, "feet")
  3690. },
  3691. {
  3692. name: "Macro+",
  3693. height: math.unit(1500, "feet")
  3694. },
  3695. ]
  3696. ))
  3697. characterMakers.push(() => makeCharacter(
  3698. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3699. {
  3700. side: {
  3701. height: math.unit(6, "feet"),
  3702. weight: math.unit(75, "kg"),
  3703. name: "Side",
  3704. image: {
  3705. source: "./media/characters/aigey/side.svg"
  3706. }
  3707. },
  3708. },
  3709. [
  3710. {
  3711. name: "Macro",
  3712. height: math.unit(200, "feet"),
  3713. default: true
  3714. },
  3715. {
  3716. name: "Megamacro",
  3717. height: math.unit(100, "miles")
  3718. },
  3719. ]
  3720. )
  3721. )
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3724. {
  3725. front: {
  3726. height: math.unit(5 + 5 / 12, "feet"),
  3727. weight: math.unit(75, "kg"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/natasha/front.svg",
  3731. extra: 859 / 824,
  3732. bottom: 23 / 879.6
  3733. }
  3734. },
  3735. frontNsfw: {
  3736. height: math.unit(5 + 5 / 12, "feet"),
  3737. weight: math.unit(75, "kg"),
  3738. name: "Front (NSFW)",
  3739. image: {
  3740. source: "./media/characters/natasha/front-nsfw.svg",
  3741. extra: 859 / 824,
  3742. bottom: 23 / 879.6
  3743. }
  3744. },
  3745. frontErect: {
  3746. height: math.unit(5 + 5 / 12, "feet"),
  3747. weight: math.unit(75, "kg"),
  3748. name: "Front (Erect)",
  3749. image: {
  3750. source: "./media/characters/natasha/front-erect.svg",
  3751. extra: 859 / 824,
  3752. bottom: 23 / 879.6
  3753. }
  3754. },
  3755. back: {
  3756. height: math.unit(5 + 5 / 12, "feet"),
  3757. weight: math.unit(75, "kg"),
  3758. name: "Back",
  3759. image: {
  3760. source: "./media/characters/natasha/back.svg",
  3761. extra: 887.9 / 852.6,
  3762. bottom: 9.7 / 896.4
  3763. }
  3764. },
  3765. backAlt: {
  3766. height: math.unit(5 + 5 / 12, "feet"),
  3767. weight: math.unit(75, "kg"),
  3768. name: "Back (Alt)",
  3769. image: {
  3770. source: "./media/characters/natasha/back-alt.svg",
  3771. extra: 1236.7 / 1192,
  3772. bottom: 22.3 / 1258.2
  3773. }
  3774. },
  3775. dick: {
  3776. height: math.unit(1.772, "feet"),
  3777. name: "Dick",
  3778. image: {
  3779. source: "./media/characters/natasha/dick.svg"
  3780. }
  3781. },
  3782. paw: {
  3783. height: math.unit(0.250, "meters"),
  3784. name: "Paw",
  3785. image: {
  3786. source: "./media/characters/natasha/paw.svg"
  3787. },
  3788. extraAttributes: {
  3789. "toeSize": {
  3790. name: "Toe Size",
  3791. power: 2,
  3792. type: "area",
  3793. base: math.unit(0.0024, "m^2")
  3794. },
  3795. "padSize": {
  3796. name: "Pad Size",
  3797. power: 2,
  3798. type: "area",
  3799. base: math.unit(0.00889, "m^2")
  3800. },
  3801. "pawSize": {
  3802. name: "Paw Size",
  3803. power: 2,
  3804. type: "area",
  3805. base: math.unit(0.023667, "m^2")
  3806. },
  3807. }
  3808. },
  3809. },
  3810. [
  3811. {
  3812. name: "Shortstack",
  3813. height: math.unit(3, "feet"),
  3814. default: true
  3815. },
  3816. {
  3817. name: "Normal",
  3818. height: math.unit(5 + 5 / 12, "feet")
  3819. },
  3820. {
  3821. name: "Large",
  3822. height: math.unit(12, "feet")
  3823. },
  3824. {
  3825. name: "Macro",
  3826. height: math.unit(100, "feet")
  3827. },
  3828. {
  3829. name: "Macro+",
  3830. height: math.unit(260, "feet")
  3831. },
  3832. {
  3833. name: "Macro++",
  3834. height: math.unit(1, "mile")
  3835. },
  3836. ]
  3837. ))
  3838. characterMakers.push(() => makeCharacter(
  3839. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3840. {
  3841. front: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Front",
  3845. image: {
  3846. source: "./media/characters/malik/front.svg",
  3847. extra: 1750/1561,
  3848. bottom: 80/1830
  3849. },
  3850. extraAttributes: {
  3851. "toeSize": {
  3852. name: "Toe Size",
  3853. power: 2,
  3854. type: "area",
  3855. base: math.unit(0.0159, "m^2")
  3856. },
  3857. "pawSize": {
  3858. name: "Paw Size",
  3859. power: 2,
  3860. type: "area",
  3861. base: math.unit(0.09834, "m^2")
  3862. },
  3863. }
  3864. },
  3865. side: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(75, "kg"),
  3868. name: "Side",
  3869. image: {
  3870. source: "./media/characters/malik/side.svg",
  3871. extra: 1802/1685,
  3872. bottom: 42/1844
  3873. },
  3874. extraAttributes: {
  3875. "toeSize": {
  3876. name: "Toe Size",
  3877. power: 2,
  3878. type: "area",
  3879. base: math.unit(0.0159, "m^2")
  3880. },
  3881. "pawSize": {
  3882. name: "Paw Size",
  3883. power: 2,
  3884. type: "area",
  3885. base: math.unit(0.09834, "m^2")
  3886. },
  3887. }
  3888. },
  3889. back: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(75, "kg"),
  3892. name: "Back",
  3893. image: {
  3894. source: "./media/characters/malik/back.svg",
  3895. extra: 1803/1607,
  3896. bottom: 33/1836
  3897. },
  3898. extraAttributes: {
  3899. "toeSize": {
  3900. name: "Toe Size",
  3901. power: 2,
  3902. type: "area",
  3903. base: math.unit(0.0159, "m^2")
  3904. },
  3905. "pawSize": {
  3906. name: "Paw Size",
  3907. power: 2,
  3908. type: "area",
  3909. base: math.unit(0.09834, "m^2")
  3910. },
  3911. }
  3912. },
  3913. },
  3914. [
  3915. {
  3916. name: "Macro",
  3917. height: math.unit(156, "feet"),
  3918. default: true
  3919. },
  3920. {
  3921. name: "Macro+",
  3922. height: math.unit(1188, "feet")
  3923. },
  3924. ]
  3925. ))
  3926. characterMakers.push(() => makeCharacter(
  3927. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3928. {
  3929. front: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(75, "kg"),
  3932. name: "Front",
  3933. image: {
  3934. source: "./media/characters/sefer/front.svg",
  3935. extra: 848 / 659,
  3936. bottom: 28.3 / 876.442
  3937. }
  3938. },
  3939. back: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(75, "kg"),
  3942. name: "Back",
  3943. image: {
  3944. source: "./media/characters/sefer/back.svg",
  3945. extra: 864 / 695,
  3946. bottom: 10 / 871
  3947. }
  3948. },
  3949. frontDressed: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(75, "kg"),
  3952. name: "Dressed",
  3953. image: {
  3954. source: "./media/characters/sefer/dressed.svg",
  3955. extra: 839 / 653,
  3956. bottom: 37.6 / 878
  3957. }
  3958. },
  3959. },
  3960. [
  3961. {
  3962. name: "Normal",
  3963. height: math.unit(6, "feet"),
  3964. default: true
  3965. },
  3966. {
  3967. name: "Big",
  3968. height: math.unit(8, "meters")
  3969. },
  3970. ]
  3971. ))
  3972. characterMakers.push(() => makeCharacter(
  3973. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3974. {
  3975. body: {
  3976. height: math.unit(2.2428, "meter"),
  3977. weight: math.unit(124.738, "kg"),
  3978. name: "Body",
  3979. image: {
  3980. extra: 1225 / 1050,
  3981. source: "./media/characters/north/front.svg"
  3982. }
  3983. }
  3984. },
  3985. [
  3986. {
  3987. name: "Micro",
  3988. height: math.unit(4, "inches")
  3989. },
  3990. {
  3991. name: "Macro",
  3992. height: math.unit(63, "meters")
  3993. },
  3994. {
  3995. name: "Megamacro",
  3996. height: math.unit(101, "miles"),
  3997. default: true
  3998. }
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4003. {
  4004. angled: {
  4005. height: math.unit(4, "meter"),
  4006. weight: math.unit(150, "kg"),
  4007. name: "Angled",
  4008. image: {
  4009. source: "./media/characters/talan/angled-sfw.svg",
  4010. bottom: 29 / 3734
  4011. }
  4012. },
  4013. angledNsfw: {
  4014. height: math.unit(4, "meter"),
  4015. weight: math.unit(150, "kg"),
  4016. name: "Angled (NSFW)",
  4017. image: {
  4018. source: "./media/characters/talan/angled-nsfw.svg",
  4019. bottom: 29 / 3734
  4020. }
  4021. },
  4022. frontNsfw: {
  4023. height: math.unit(4, "meter"),
  4024. weight: math.unit(150, "kg"),
  4025. name: "Front (NSFW)",
  4026. image: {
  4027. source: "./media/characters/talan/front-nsfw.svg",
  4028. bottom: 29 / 3734
  4029. }
  4030. },
  4031. sideNsfw: {
  4032. height: math.unit(4, "meter"),
  4033. weight: math.unit(150, "kg"),
  4034. name: "Side (NSFW)",
  4035. image: {
  4036. source: "./media/characters/talan/side-nsfw.svg",
  4037. bottom: 29 / 3734
  4038. }
  4039. },
  4040. back: {
  4041. height: math.unit(4, "meter"),
  4042. weight: math.unit(150, "kg"),
  4043. name: "Back",
  4044. image: {
  4045. source: "./media/characters/talan/back.svg"
  4046. }
  4047. },
  4048. dickBottom: {
  4049. height: math.unit(0.621, "meter"),
  4050. name: "Dick (Bottom)",
  4051. image: {
  4052. source: "./media/characters/talan/dick-bottom.svg"
  4053. }
  4054. },
  4055. dickTop: {
  4056. height: math.unit(0.621, "meter"),
  4057. name: "Dick (Top)",
  4058. image: {
  4059. source: "./media/characters/talan/dick-top.svg"
  4060. }
  4061. },
  4062. dickSide: {
  4063. height: math.unit(0.305, "meter"),
  4064. name: "Dick (Side)",
  4065. image: {
  4066. source: "./media/characters/talan/dick-side.svg"
  4067. }
  4068. },
  4069. dickFront: {
  4070. height: math.unit(0.305, "meter"),
  4071. name: "Dick (Front)",
  4072. image: {
  4073. source: "./media/characters/talan/dick-front.svg"
  4074. }
  4075. },
  4076. },
  4077. [
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(4, "meters")
  4081. },
  4082. {
  4083. name: "Macro",
  4084. height: math.unit(100, "meters")
  4085. },
  4086. {
  4087. name: "Megamacro",
  4088. height: math.unit(2, "miles"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Gigamacro",
  4093. height: math.unit(5000, "miles")
  4094. },
  4095. {
  4096. name: "Teramacro",
  4097. height: math.unit(100, "parsecs")
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4103. {
  4104. front: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(90, "kg"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/gael'rathus/front.svg"
  4110. }
  4111. },
  4112. frontAlt: {
  4113. height: math.unit(2, "meter"),
  4114. weight: math.unit(90, "kg"),
  4115. name: "Front (alt)",
  4116. image: {
  4117. source: "./media/characters/gael'rathus/front-alt.svg"
  4118. }
  4119. },
  4120. frontAlt2: {
  4121. height: math.unit(2, "meter"),
  4122. weight: math.unit(90, "kg"),
  4123. name: "Front (alt 2)",
  4124. image: {
  4125. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4126. }
  4127. }
  4128. },
  4129. [
  4130. {
  4131. name: "Normal",
  4132. height: math.unit(9, "feet"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Large",
  4137. height: math.unit(25, "feet")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(0.25, "miles")
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(10, "miles")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4151. {
  4152. side: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(140, "kg"),
  4155. name: "Side",
  4156. image: {
  4157. source: "./media/characters/sosha/side.svg",
  4158. extra: 1170/1006,
  4159. bottom: 94/1264
  4160. }
  4161. },
  4162. maw: {
  4163. height: math.unit(2.87, "feet"),
  4164. name: "Maw",
  4165. image: {
  4166. source: "./media/characters/sosha/maw.svg",
  4167. extra: 966/865,
  4168. bottom: 0/966
  4169. }
  4170. },
  4171. cooch: {
  4172. height: math.unit(5.6, "feet"),
  4173. name: "Cooch",
  4174. image: {
  4175. source: "./media/characters/sosha/cooch.svg"
  4176. }
  4177. },
  4178. },
  4179. [
  4180. {
  4181. name: "Normal",
  4182. height: math.unit(12, "feet"),
  4183. default: true
  4184. }
  4185. ]
  4186. ))
  4187. characterMakers.push(() => makeCharacter(
  4188. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4189. {
  4190. side: {
  4191. height: math.unit(5 + 5 / 12, "feet"),
  4192. weight: math.unit(170, "kg"),
  4193. name: "Side",
  4194. image: {
  4195. source: "./media/characters/runnola/side.svg",
  4196. extra: 741 / 448,
  4197. bottom: 0.05
  4198. }
  4199. },
  4200. },
  4201. [
  4202. {
  4203. name: "Small",
  4204. height: math.unit(3, "feet")
  4205. },
  4206. {
  4207. name: "Normal",
  4208. height: math.unit(5 + 5 / 12, "feet"),
  4209. default: true
  4210. },
  4211. {
  4212. name: "Big",
  4213. height: math.unit(10, "feet")
  4214. },
  4215. ]
  4216. ))
  4217. characterMakers.push(() => makeCharacter(
  4218. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4219. {
  4220. front: {
  4221. height: math.unit(2, "meter"),
  4222. weight: math.unit(50, "kg"),
  4223. name: "Front",
  4224. image: {
  4225. source: "./media/characters/kurribird/front.svg",
  4226. bottom: 0.015
  4227. }
  4228. },
  4229. frontAlt: {
  4230. height: math.unit(1.5, "meter"),
  4231. weight: math.unit(50, "kg"),
  4232. name: "Front (Alt)",
  4233. image: {
  4234. source: "./media/characters/kurribird/front-alt.svg",
  4235. extra: 1.45
  4236. }
  4237. },
  4238. },
  4239. [
  4240. {
  4241. name: "Normal",
  4242. height: math.unit(7, "feet")
  4243. },
  4244. {
  4245. name: "Big",
  4246. height: math.unit(12, "feet"),
  4247. default: true
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(1500, "feet")
  4252. },
  4253. {
  4254. name: "Megamacro",
  4255. height: math.unit(2, "miles")
  4256. }
  4257. ]
  4258. ))
  4259. characterMakers.push(() => makeCharacter(
  4260. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4261. {
  4262. front: {
  4263. height: math.unit(2, "meter"),
  4264. weight: math.unit(80, "kg"),
  4265. name: "Front",
  4266. image: {
  4267. source: "./media/characters/elbial/front.svg",
  4268. extra: 1643 / 1556,
  4269. bottom: 60.2 / 1696
  4270. }
  4271. },
  4272. side: {
  4273. height: math.unit(2, "meter"),
  4274. weight: math.unit(80, "kg"),
  4275. name: "Side",
  4276. image: {
  4277. source: "./media/characters/elbial/side.svg",
  4278. extra: 1601/1528,
  4279. bottom: 97/1698
  4280. }
  4281. },
  4282. back: {
  4283. height: math.unit(2, "meter"),
  4284. weight: math.unit(80, "kg"),
  4285. name: "Back",
  4286. image: {
  4287. source: "./media/characters/elbial/back.svg",
  4288. extra: 1653/1569,
  4289. bottom: 20/1673
  4290. }
  4291. },
  4292. frontDressed: {
  4293. height: math.unit(2, "meter"),
  4294. weight: math.unit(80, "kg"),
  4295. name: "Front (Dressed)",
  4296. image: {
  4297. source: "./media/characters/elbial/front-dressed.svg",
  4298. extra: 1638/1569,
  4299. bottom: 70/1708
  4300. }
  4301. },
  4302. genitals: {
  4303. height: math.unit(2 / 3.367, "meter"),
  4304. name: "Genitals",
  4305. image: {
  4306. source: "./media/characters/elbial/genitals.svg"
  4307. }
  4308. },
  4309. },
  4310. [
  4311. {
  4312. name: "Large",
  4313. height: math.unit(100, "feet")
  4314. },
  4315. {
  4316. name: "Macro",
  4317. height: math.unit(500, "feet"),
  4318. default: true
  4319. },
  4320. {
  4321. name: "Megamacro",
  4322. height: math.unit(10, "miles")
  4323. },
  4324. {
  4325. name: "Gigamacro",
  4326. height: math.unit(25000, "miles")
  4327. },
  4328. {
  4329. name: "Full-Size",
  4330. height: math.unit(8000000, "gigaparsecs")
  4331. }
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(2, "meter"),
  4339. weight: math.unit(60, "kg"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/noah/front.svg",
  4343. extra: 1383/1313,
  4344. bottom: 104/1487
  4345. }
  4346. },
  4347. hand: {
  4348. height: math.unit(0.6, "feet"),
  4349. name: "Hand",
  4350. image: {
  4351. source: "./media/characters/noah/hand.svg"
  4352. }
  4353. },
  4354. talons: {
  4355. height: math.unit(1.385, "feet"),
  4356. name: "Talons",
  4357. image: {
  4358. source: "./media/characters/noah/talons.svg"
  4359. }
  4360. },
  4361. beak: {
  4362. height: math.unit(0.43, "feet"),
  4363. name: "Beak",
  4364. image: {
  4365. source: "./media/characters/noah/beak.svg"
  4366. }
  4367. },
  4368. collar: {
  4369. height: math.unit(0.88, "feet"),
  4370. name: "Collar",
  4371. image: {
  4372. source: "./media/characters/noah/collar.svg"
  4373. }
  4374. },
  4375. eyeNarrow: {
  4376. height: math.unit(0.18, "feet"),
  4377. name: "Eye (Narrow)",
  4378. image: {
  4379. source: "./media/characters/noah/eye-narrow.svg"
  4380. }
  4381. },
  4382. eyeNormal: {
  4383. height: math.unit(0.18, "feet"),
  4384. name: "Eye (Normal)",
  4385. image: {
  4386. source: "./media/characters/noah/eye-normal.svg"
  4387. }
  4388. },
  4389. eyeWide: {
  4390. height: math.unit(0.18, "feet"),
  4391. name: "Eye (Wide)",
  4392. image: {
  4393. source: "./media/characters/noah/eye-wide.svg"
  4394. }
  4395. },
  4396. ear: {
  4397. height: math.unit(0.64, "feet"),
  4398. name: "Ear",
  4399. image: {
  4400. source: "./media/characters/noah/ear.svg"
  4401. }
  4402. },
  4403. },
  4404. [
  4405. {
  4406. name: "Large",
  4407. height: math.unit(50, "feet")
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(750, "feet"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Megamacro",
  4416. height: math.unit(50, "miles")
  4417. },
  4418. {
  4419. name: "Gigamacro",
  4420. height: math.unit(100000, "miles")
  4421. },
  4422. {
  4423. name: "Full-Size",
  4424. height: math.unit(3000000000, "miles")
  4425. }
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4430. {
  4431. front: {
  4432. height: math.unit(2, "meter"),
  4433. weight: math.unit(80, "kg"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/natalya/front.svg"
  4437. }
  4438. },
  4439. back: {
  4440. height: math.unit(2, "meter"),
  4441. weight: math.unit(80, "kg"),
  4442. name: "Back",
  4443. image: {
  4444. source: "./media/characters/natalya/back.svg"
  4445. }
  4446. }
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(150, "feet"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Megamacro",
  4456. height: math.unit(5, "miles")
  4457. },
  4458. {
  4459. name: "Full-Size",
  4460. height: math.unit(600, "kiloparsecs")
  4461. }
  4462. ]
  4463. ))
  4464. characterMakers.push(() => makeCharacter(
  4465. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4466. {
  4467. front: {
  4468. height: math.unit(2, "meter"),
  4469. weight: math.unit(50, "kg"),
  4470. name: "Front",
  4471. image: {
  4472. source: "./media/characters/erestrebah/front.svg",
  4473. extra: 1262/1162,
  4474. bottom: 96/1358
  4475. }
  4476. },
  4477. back: {
  4478. height: math.unit(2, "meter"),
  4479. weight: math.unit(50, "kg"),
  4480. name: "Back",
  4481. image: {
  4482. source: "./media/characters/erestrebah/back.svg",
  4483. extra: 1257/1139,
  4484. bottom: 13/1270
  4485. }
  4486. },
  4487. wing: {
  4488. height: math.unit(2, "meter"),
  4489. weight: math.unit(50, "kg"),
  4490. name: "Wing",
  4491. image: {
  4492. source: "./media/characters/erestrebah/wing.svg",
  4493. extra: 1262/1162,
  4494. bottom: 96/1358
  4495. }
  4496. },
  4497. mouth: {
  4498. height: math.unit(0.39, "feet"),
  4499. name: "Mouth",
  4500. image: {
  4501. source: "./media/characters/erestrebah/mouth.svg"
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(10, "feet")
  4509. },
  4510. {
  4511. name: "Large",
  4512. height: math.unit(50, "feet"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Macro",
  4517. height: math.unit(300, "feet")
  4518. },
  4519. {
  4520. name: "Macro+",
  4521. height: math.unit(750, "feet")
  4522. },
  4523. {
  4524. name: "Megamacro",
  4525. height: math.unit(3, "miles")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4531. {
  4532. front: {
  4533. height: math.unit(2, "meter"),
  4534. weight: math.unit(80, "kg"),
  4535. name: "Front",
  4536. image: {
  4537. source: "./media/characters/jennifer/front.svg",
  4538. bottom: 0.11,
  4539. extra: 1.16
  4540. }
  4541. },
  4542. frontAlt: {
  4543. height: math.unit(2, "meter"),
  4544. weight: math.unit(80, "kg"),
  4545. name: "Front (Alt)",
  4546. image: {
  4547. source: "./media/characters/jennifer/front-alt.svg"
  4548. }
  4549. }
  4550. },
  4551. [
  4552. {
  4553. name: "Canon Height",
  4554. height: math.unit(120, "feet"),
  4555. default: true
  4556. },
  4557. {
  4558. name: "Macro+",
  4559. height: math.unit(300, "feet")
  4560. },
  4561. {
  4562. name: "Megamacro",
  4563. height: math.unit(20000, "feet")
  4564. }
  4565. ]
  4566. ))
  4567. characterMakers.push(() => makeCharacter(
  4568. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4569. {
  4570. front: {
  4571. height: math.unit(2, "meter"),
  4572. weight: math.unit(50, "kg"),
  4573. name: "Front",
  4574. image: {
  4575. source: "./media/characters/kalista/front.svg",
  4576. extra: 1314/1145,
  4577. bottom: 101/1415
  4578. }
  4579. },
  4580. back: {
  4581. height: math.unit(2, "meter"),
  4582. weight: math.unit(50, "kg"),
  4583. name: "Back",
  4584. image: {
  4585. source: "./media/characters/kalista/back.svg",
  4586. extra: 1366 / 1156,
  4587. bottom: 33.9 / 1362.78
  4588. }
  4589. }
  4590. },
  4591. [
  4592. {
  4593. name: "Uncomfortably Small",
  4594. height: math.unit(10, "feet")
  4595. },
  4596. {
  4597. name: "Small",
  4598. height: math.unit(30, "feet")
  4599. },
  4600. {
  4601. name: "Macro",
  4602. height: math.unit(100, "feet"),
  4603. default: true
  4604. },
  4605. {
  4606. name: "Macro+",
  4607. height: math.unit(2000, "feet")
  4608. },
  4609. {
  4610. name: "True Form",
  4611. height: math.unit(8924, "miles")
  4612. }
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4617. {
  4618. front: {
  4619. height: math.unit(2, "meter"),
  4620. weight: math.unit(120, "kg"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/ggv/front.svg"
  4624. }
  4625. },
  4626. side: {
  4627. height: math.unit(2, "meter"),
  4628. weight: math.unit(120, "kg"),
  4629. name: "Side",
  4630. image: {
  4631. source: "./media/characters/ggv/side.svg"
  4632. }
  4633. }
  4634. },
  4635. [
  4636. {
  4637. name: "Extremely Puny",
  4638. height: math.unit(9 + 5 / 12, "feet")
  4639. },
  4640. {
  4641. name: "Horribly Small",
  4642. height: math.unit(47.7, "miles"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Reasonably Sized",
  4647. height: math.unit(25000, "parsecs")
  4648. },
  4649. {
  4650. name: "Slightly Uncompressed",
  4651. height: math.unit(7.77e31, "parsecs")
  4652. },
  4653. {
  4654. name: "Omniversal",
  4655. height: math.unit(1e300, "meters")
  4656. },
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4661. {
  4662. front: {
  4663. height: math.unit(2, "meter"),
  4664. weight: math.unit(75, "lb"),
  4665. name: "Front",
  4666. image: {
  4667. source: "./media/characters/napalm/front.svg"
  4668. }
  4669. },
  4670. back: {
  4671. height: math.unit(2, "meter"),
  4672. weight: math.unit(75, "lb"),
  4673. name: "Back",
  4674. image: {
  4675. source: "./media/characters/napalm/back.svg"
  4676. }
  4677. }
  4678. },
  4679. [
  4680. {
  4681. name: "Standard",
  4682. height: math.unit(55, "feet"),
  4683. default: true
  4684. }
  4685. ]
  4686. ))
  4687. characterMakers.push(() => makeCharacter(
  4688. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4689. {
  4690. front: {
  4691. height: math.unit(7 + 5 / 6, "feet"),
  4692. weight: math.unit(325, "lb"),
  4693. name: "Front",
  4694. image: {
  4695. source: "./media/characters/asana/front.svg",
  4696. extra: 1133 / 1060,
  4697. bottom: 15.2 / 1148.6
  4698. }
  4699. },
  4700. back: {
  4701. height: math.unit(7 + 5 / 6, "feet"),
  4702. weight: math.unit(325, "lb"),
  4703. name: "Back",
  4704. image: {
  4705. source: "./media/characters/asana/back.svg",
  4706. extra: 1114 / 1043,
  4707. bottom: 5 / 1120
  4708. }
  4709. },
  4710. dressedDark: {
  4711. height: math.unit(7 + 5 / 6, "feet"),
  4712. weight: math.unit(325, "lb"),
  4713. name: "Dressed (Dark)",
  4714. image: {
  4715. source: "./media/characters/asana/dressed-dark.svg",
  4716. extra: 1133 / 1060,
  4717. bottom: 15.2 / 1148.6
  4718. }
  4719. },
  4720. dressedLight: {
  4721. height: math.unit(7 + 5 / 6, "feet"),
  4722. weight: math.unit(325, "lb"),
  4723. name: "Dressed (Light)",
  4724. image: {
  4725. source: "./media/characters/asana/dressed-light.svg",
  4726. extra: 1133 / 1060,
  4727. bottom: 15.2 / 1148.6
  4728. }
  4729. },
  4730. },
  4731. [
  4732. {
  4733. name: "Standard",
  4734. height: math.unit(7 + 5 / 6, "feet"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Large",
  4739. height: math.unit(10, "meters")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(2500, "meters")
  4744. },
  4745. {
  4746. name: "Megamacro",
  4747. height: math.unit(5e6, "meters")
  4748. },
  4749. {
  4750. name: "Examacro",
  4751. height: math.unit(5e12, "lightyears")
  4752. },
  4753. {
  4754. name: "Max Size",
  4755. height: math.unit(1e31, "lightyears")
  4756. }
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4761. {
  4762. front: {
  4763. height: math.unit(2, "meter"),
  4764. weight: math.unit(60, "kg"),
  4765. name: "Front",
  4766. image: {
  4767. source: "./media/characters/ebony/front.svg",
  4768. bottom: 0.03,
  4769. extra: 1045 / 810 + 0.03
  4770. }
  4771. },
  4772. side: {
  4773. height: math.unit(2, "meter"),
  4774. weight: math.unit(60, "kg"),
  4775. name: "Side",
  4776. image: {
  4777. source: "./media/characters/ebony/side.svg",
  4778. bottom: 0.03,
  4779. extra: 1045 / 810 + 0.03
  4780. }
  4781. },
  4782. back: {
  4783. height: math.unit(2, "meter"),
  4784. weight: math.unit(60, "kg"),
  4785. name: "Back",
  4786. image: {
  4787. source: "./media/characters/ebony/back.svg",
  4788. bottom: 0.01,
  4789. extra: 1045 / 810 + 0.01
  4790. }
  4791. },
  4792. },
  4793. [
  4794. // TODO check why I did this lol
  4795. {
  4796. name: "Standard",
  4797. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4798. default: true
  4799. },
  4800. {
  4801. name: "Macro",
  4802. height: math.unit(200, "feet")
  4803. },
  4804. {
  4805. name: "Gigamacro",
  4806. height: math.unit(13000, "km")
  4807. }
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4812. {
  4813. front: {
  4814. height: math.unit(6, "feet"),
  4815. weight: math.unit(175, "lb"),
  4816. name: "Front",
  4817. image: {
  4818. source: "./media/characters/mountain/front.svg",
  4819. extra: 972 / 955,
  4820. bottom: 64 / 1036.6
  4821. }
  4822. },
  4823. back: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(175, "lb"),
  4826. name: "Back",
  4827. image: {
  4828. source: "./media/characters/mountain/back.svg",
  4829. extra: 970 / 950,
  4830. bottom: 28.25 / 999
  4831. }
  4832. },
  4833. },
  4834. [
  4835. {
  4836. name: "Large",
  4837. height: math.unit(20, "meters")
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(300, "meters")
  4842. },
  4843. {
  4844. name: "Gigamacro",
  4845. height: math.unit(10000, "km"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Examacro",
  4850. height: math.unit(10e9, "lightyears")
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4856. {
  4857. front: {
  4858. height: math.unit(8, "feet"),
  4859. weight: math.unit(500, "lb"),
  4860. name: "Front",
  4861. image: {
  4862. source: "./media/characters/rick/front.svg"
  4863. }
  4864. }
  4865. },
  4866. [
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(8, "feet"),
  4870. default: true
  4871. },
  4872. {
  4873. name: "Macro",
  4874. height: math.unit(5, "km")
  4875. }
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4880. {
  4881. front: {
  4882. height: math.unit(8, "feet"),
  4883. weight: math.unit(120, "lb"),
  4884. name: "Front",
  4885. image: {
  4886. source: "./media/characters/ona/front.svg"
  4887. }
  4888. },
  4889. frontAlt: {
  4890. height: math.unit(8, "feet"),
  4891. weight: math.unit(120, "lb"),
  4892. name: "Front (Alt)",
  4893. image: {
  4894. source: "./media/characters/ona/front-alt.svg"
  4895. }
  4896. },
  4897. back: {
  4898. height: math.unit(8, "feet"),
  4899. weight: math.unit(120, "lb"),
  4900. name: "Back",
  4901. image: {
  4902. source: "./media/characters/ona/back.svg"
  4903. }
  4904. },
  4905. foot: {
  4906. height: math.unit(1.1, "feet"),
  4907. name: "Foot",
  4908. image: {
  4909. source: "./media/characters/ona/foot.svg"
  4910. }
  4911. }
  4912. },
  4913. [
  4914. {
  4915. name: "Megamacro",
  4916. height: math.unit(70, "km"),
  4917. default: true
  4918. },
  4919. {
  4920. name: "Gigamacro",
  4921. height: math.unit(681818, "miles")
  4922. },
  4923. {
  4924. name: "Examacro",
  4925. height: math.unit(3800000, "lightyears")
  4926. },
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4931. {
  4932. front: {
  4933. height: math.unit(12, "feet"),
  4934. weight: math.unit(3000, "lb"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/mech/front.svg",
  4938. extra: 2900 / 2770,
  4939. bottom: 110 / 3010
  4940. }
  4941. },
  4942. back: {
  4943. height: math.unit(12, "feet"),
  4944. weight: math.unit(3000, "lb"),
  4945. name: "Back",
  4946. image: {
  4947. source: "./media/characters/mech/back.svg",
  4948. extra: 3011 / 2890,
  4949. bottom: 94 / 3105
  4950. }
  4951. },
  4952. maw: {
  4953. height: math.unit(3.07, "feet"),
  4954. name: "Maw",
  4955. image: {
  4956. source: "./media/characters/mech/maw.svg"
  4957. }
  4958. },
  4959. head: {
  4960. height: math.unit(3.07, "feet"),
  4961. name: "Head",
  4962. image: {
  4963. source: "./media/characters/mech/head.svg"
  4964. }
  4965. },
  4966. dick: {
  4967. height: math.unit(1.43, "feet"),
  4968. name: "Dick",
  4969. image: {
  4970. source: "./media/characters/mech/dick.svg"
  4971. }
  4972. },
  4973. },
  4974. [
  4975. {
  4976. name: "Normal",
  4977. height: math.unit(12, "feet")
  4978. },
  4979. {
  4980. name: "Macro",
  4981. height: math.unit(300, "feet"),
  4982. default: true
  4983. },
  4984. {
  4985. name: "Macro+",
  4986. height: math.unit(1500, "feet")
  4987. },
  4988. ]
  4989. ))
  4990. characterMakers.push(() => makeCharacter(
  4991. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4992. {
  4993. front: {
  4994. height: math.unit(1.3, "meter"),
  4995. weight: math.unit(30, "kg"),
  4996. name: "Front",
  4997. image: {
  4998. source: "./media/characters/gregory/front.svg",
  4999. }
  5000. }
  5001. },
  5002. [
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(1.3, "meter"),
  5006. default: true
  5007. },
  5008. {
  5009. name: "Macro",
  5010. height: math.unit(20, "meter")
  5011. }
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5016. {
  5017. front: {
  5018. height: math.unit(2.8, "meter"),
  5019. weight: math.unit(200, "kg"),
  5020. name: "Front",
  5021. image: {
  5022. source: "./media/characters/elory/front.svg",
  5023. }
  5024. }
  5025. },
  5026. [
  5027. {
  5028. name: "Normal",
  5029. height: math.unit(2.8, "meter"),
  5030. default: true
  5031. },
  5032. {
  5033. name: "Macro",
  5034. height: math.unit(38, "meter")
  5035. }
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5040. {
  5041. front: {
  5042. height: math.unit(470, "feet"),
  5043. weight: math.unit(924, "tons"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/angelpatamon/front.svg",
  5047. }
  5048. }
  5049. },
  5050. [
  5051. {
  5052. name: "Normal",
  5053. height: math.unit(470, "feet"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Deity Size I",
  5058. height: math.unit(28651.2, "km")
  5059. },
  5060. {
  5061. name: "Deity Size II",
  5062. height: math.unit(171907.2, "km")
  5063. }
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5068. {
  5069. side: {
  5070. height: math.unit(7.2, "meter"),
  5071. weight: math.unit(8.2, "tons"),
  5072. name: "Side",
  5073. image: {
  5074. source: "./media/characters/cryae/side.svg",
  5075. extra: 3500 / 1500
  5076. }
  5077. }
  5078. },
  5079. [
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(7.2, "meter"),
  5083. default: true
  5084. }
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5089. {
  5090. front: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(175, "lb"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/xera/front.svg",
  5096. extra: 2377 / 1972,
  5097. bottom: 75.5 / 2452
  5098. }
  5099. },
  5100. side: {
  5101. height: math.unit(6, "feet"),
  5102. weight: math.unit(175, "lb"),
  5103. name: "Side",
  5104. image: {
  5105. source: "./media/characters/xera/side.svg",
  5106. extra: 2345 / 2019,
  5107. bottom: 39.7 / 2384
  5108. }
  5109. },
  5110. back: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(175, "lb"),
  5113. name: "Back",
  5114. image: {
  5115. source: "./media/characters/xera/back.svg",
  5116. extra: 2095 / 1984,
  5117. bottom: 67 / 2166
  5118. }
  5119. },
  5120. },
  5121. [
  5122. {
  5123. name: "Small",
  5124. height: math.unit(10, "feet")
  5125. },
  5126. {
  5127. name: "Macro",
  5128. height: math.unit(500, "meters"),
  5129. default: true
  5130. },
  5131. {
  5132. name: "Macro+",
  5133. height: math.unit(10, "km")
  5134. },
  5135. {
  5136. name: "Gigamacro",
  5137. height: math.unit(25000, "km")
  5138. },
  5139. {
  5140. name: "Teramacro",
  5141. height: math.unit(3e6, "km")
  5142. }
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5147. {
  5148. front: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(175, "lb"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/nebula/front.svg",
  5154. extra: 2566 / 2362,
  5155. bottom: 81 / 2644
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Small",
  5162. height: math.unit(4.5, "meters")
  5163. },
  5164. {
  5165. name: "Macro",
  5166. height: math.unit(1500, "meters"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Megamacro",
  5171. height: math.unit(150, "km")
  5172. },
  5173. {
  5174. name: "Gigamacro",
  5175. height: math.unit(27000, "km")
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5181. {
  5182. front: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(225, "lb"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/abysgar/front.svg",
  5188. extra: 1739/1614,
  5189. bottom: 71/1810
  5190. }
  5191. },
  5192. frontNsfw: {
  5193. height: math.unit(6, "feet"),
  5194. weight: math.unit(225, "lb"),
  5195. name: "Front (NSFW)",
  5196. image: {
  5197. source: "./media/characters/abysgar/front-nsfw.svg",
  5198. extra: 1739/1614,
  5199. bottom: 71/1810
  5200. }
  5201. },
  5202. back: {
  5203. height: math.unit(4.6, "feet"),
  5204. weight: math.unit(225, "lb"),
  5205. name: "Back",
  5206. image: {
  5207. source: "./media/characters/abysgar/back.svg",
  5208. extra: 1384/1327,
  5209. bottom: 0/1384
  5210. }
  5211. },
  5212. head: {
  5213. height: math.unit(1.25, "feet"),
  5214. name: "Head",
  5215. image: {
  5216. source: "./media/characters/abysgar/head.svg",
  5217. extra: 669/569,
  5218. bottom: 0/669
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Small",
  5225. height: math.unit(4.5, "meters")
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(1250, "meters"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Megamacro",
  5234. height: math.unit(125, "km")
  5235. },
  5236. {
  5237. name: "Gigamacro",
  5238. height: math.unit(26000, "km")
  5239. }
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5244. {
  5245. front: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(180, "lb"),
  5248. name: "Front",
  5249. image: {
  5250. source: "./media/characters/yakuz/front.svg"
  5251. }
  5252. }
  5253. },
  5254. [
  5255. {
  5256. name: "Small",
  5257. height: math.unit(5, "meters")
  5258. },
  5259. {
  5260. name: "Macro",
  5261. height: math.unit(1500, "meters"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Megamacro",
  5266. height: math.unit(200, "km")
  5267. },
  5268. {
  5269. name: "Gigamacro",
  5270. height: math.unit(100000, "km")
  5271. }
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(175, "lb"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/mirova/front.svg",
  5283. extra: 3334 / 3071,
  5284. bottom: 42 / 3375.6
  5285. }
  5286. }
  5287. },
  5288. [
  5289. {
  5290. name: "Small",
  5291. height: math.unit(5, "meters")
  5292. },
  5293. {
  5294. name: "Macro",
  5295. height: math.unit(900, "meters"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(135, "km")
  5301. },
  5302. {
  5303. name: "Gigamacro",
  5304. height: math.unit(20000, "km")
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5310. {
  5311. side: {
  5312. height: math.unit(28.35, "feet"),
  5313. weight: math.unit(99.75, "tons"),
  5314. name: "Side",
  5315. image: {
  5316. source: "./media/characters/asana-mech/side.svg",
  5317. extra: 923 / 699,
  5318. bottom: 50 / 975
  5319. }
  5320. },
  5321. chaingun: {
  5322. height: math.unit(7, "feet"),
  5323. weight: math.unit(2400, "lb"),
  5324. name: "Chaingun",
  5325. image: {
  5326. source: "./media/characters/asana-mech/chaingun.svg"
  5327. }
  5328. },
  5329. laser: {
  5330. height: math.unit(7.12, "feet"),
  5331. weight: math.unit(2000, "lb"),
  5332. name: "Laser",
  5333. image: {
  5334. source: "./media/characters/asana-mech/laser.svg"
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(28.35, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Macro",
  5346. height: math.unit(2500, "feet")
  5347. },
  5348. {
  5349. name: "Megamacro",
  5350. height: math.unit(25, "miles")
  5351. },
  5352. {
  5353. name: "Examacro",
  5354. height: math.unit(6e8, "lightyears")
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(5, "meters"),
  5363. weight: math.unit(1000, "kg"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/asche/front.svg",
  5367. extra: 1258 / 1190,
  5368. bottom: 47 / 1305
  5369. }
  5370. },
  5371. frontUnderwear: {
  5372. height: math.unit(5, "meters"),
  5373. weight: math.unit(1000, "kg"),
  5374. name: "Front (Underwear)",
  5375. image: {
  5376. source: "./media/characters/asche/front-underwear.svg",
  5377. extra: 1258 / 1190,
  5378. bottom: 47 / 1305
  5379. }
  5380. },
  5381. frontDressed: {
  5382. height: math.unit(5, "meters"),
  5383. weight: math.unit(1000, "kg"),
  5384. name: "Front (Dressed)",
  5385. image: {
  5386. source: "./media/characters/asche/front-dressed.svg",
  5387. extra: 1258 / 1190,
  5388. bottom: 47 / 1305
  5389. }
  5390. },
  5391. frontArmor: {
  5392. height: math.unit(5, "meters"),
  5393. weight: math.unit(1000, "kg"),
  5394. name: "Front (Armored)",
  5395. image: {
  5396. source: "./media/characters/asche/front-armored.svg",
  5397. extra: 1374 / 1308,
  5398. bottom: 23 / 1397
  5399. }
  5400. },
  5401. mp724: {
  5402. height: math.unit(0.96, "meters"),
  5403. weight: math.unit(38, "kg"),
  5404. name: "H&K MP724",
  5405. image: {
  5406. source: "./media/characters/asche/h&k-mp724.svg"
  5407. }
  5408. },
  5409. side: {
  5410. height: math.unit(5, "meters"),
  5411. weight: math.unit(1000, "kg"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/asche/side.svg",
  5415. extra: 1717 / 1609,
  5416. bottom: 0.005
  5417. }
  5418. },
  5419. back: {
  5420. height: math.unit(5, "meters"),
  5421. weight: math.unit(1000, "kg"),
  5422. name: "Back",
  5423. image: {
  5424. source: "./media/characters/asche/back.svg",
  5425. extra: 1570 / 1501
  5426. }
  5427. },
  5428. },
  5429. [
  5430. {
  5431. name: "DEFCON 5",
  5432. height: math.unit(5, "meters")
  5433. },
  5434. {
  5435. name: "DEFCON 4",
  5436. height: math.unit(500, "meters"),
  5437. default: true
  5438. },
  5439. {
  5440. name: "DEFCON 3",
  5441. height: math.unit(5, "km")
  5442. },
  5443. {
  5444. name: "DEFCON 2",
  5445. height: math.unit(500, "km")
  5446. },
  5447. {
  5448. name: "DEFCON 1",
  5449. height: math.unit(500000, "km")
  5450. },
  5451. {
  5452. name: "DEFCON 0",
  5453. height: math.unit(3, "gigaparsecs")
  5454. },
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5459. {
  5460. front: {
  5461. height: math.unit(7, "feet"),
  5462. weight: math.unit(92.7, "kg"),
  5463. name: "Front",
  5464. image: {
  5465. source: "./media/characters/gale/front.svg",
  5466. extra: 977/919,
  5467. bottom: 105/1082
  5468. }
  5469. },
  5470. side: {
  5471. height: math.unit(6.7, "feet"),
  5472. weight: math.unit(92.7, "kg"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/gale/side.svg",
  5476. extra: 978/922,
  5477. bottom: 140/1118
  5478. }
  5479. },
  5480. back: {
  5481. height: math.unit(7, "feet"),
  5482. weight: math.unit(92.7, "kg"),
  5483. name: "Back",
  5484. image: {
  5485. source: "./media/characters/gale/back.svg",
  5486. extra: 966/920,
  5487. bottom: 61/1027
  5488. }
  5489. },
  5490. maw: {
  5491. height: math.unit(2.23, "feet"),
  5492. name: "Maw",
  5493. image: {
  5494. source: "./media/characters/gale/maw.svg"
  5495. }
  5496. },
  5497. foot: {
  5498. height: math.unit(2.1, "feet"),
  5499. name: "Foot",
  5500. image: {
  5501. source: "./media/characters/gale/foot.svg"
  5502. }
  5503. },
  5504. },
  5505. [
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(7, "feet")
  5509. },
  5510. {
  5511. name: "Macro",
  5512. height: math.unit(150, "feet"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Macro+",
  5517. height: math.unit(300, "feet")
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5523. {
  5524. front: {
  5525. height: math.unit(5 + 10/12, "feet"),
  5526. weight: math.unit(67, "kg"),
  5527. name: "Front",
  5528. image: {
  5529. source: "./media/characters/draylen/front.svg",
  5530. extra: 832/777,
  5531. bottom: 85/917
  5532. }
  5533. }
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(5 + 10/12, "feet")
  5539. },
  5540. {
  5541. name: "Macro",
  5542. height: math.unit(150, "feet"),
  5543. default: true
  5544. }
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(7 + 9 / 12, "feet"),
  5552. weight: math.unit(379, "lbs"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/chez/front.svg"
  5556. }
  5557. },
  5558. side: {
  5559. height: math.unit(7 + 9 / 12, "feet"),
  5560. weight: math.unit(379, "lbs"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/chez/side.svg"
  5564. }
  5565. }
  5566. },
  5567. [
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(7 + 9 / 12, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "God King",
  5575. height: math.unit(9750000, "meters")
  5576. }
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(275, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/kaylum/front.svg",
  5588. bottom: 0.01,
  5589. extra: 1166 / 1031
  5590. }
  5591. },
  5592. frontWingless: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(275, "lbs"),
  5595. name: "Front (Wingless)",
  5596. image: {
  5597. source: "./media/characters/kaylum/front-wingless.svg",
  5598. bottom: 0.01,
  5599. extra: 1117 / 1031
  5600. }
  5601. }
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(3.05, "meters")
  5607. },
  5608. {
  5609. name: "Master",
  5610. height: math.unit(5.5, "meters")
  5611. },
  5612. {
  5613. name: "Rampage",
  5614. height: math.unit(19, "meters")
  5615. },
  5616. {
  5617. name: "Macro Lite",
  5618. height: math.unit(37, "meters")
  5619. },
  5620. {
  5621. name: "Hyper Predator",
  5622. height: math.unit(61, "meters")
  5623. },
  5624. {
  5625. name: "Macro",
  5626. height: math.unit(138, "meters"),
  5627. default: true
  5628. }
  5629. ]
  5630. ))
  5631. characterMakers.push(() => makeCharacter(
  5632. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5633. {
  5634. front: {
  5635. height: math.unit(5 + 5 / 12, "feet"),
  5636. weight: math.unit(120, "lbs"),
  5637. name: "Front",
  5638. image: {
  5639. source: "./media/characters/geta/front.svg",
  5640. extra: 1003/933,
  5641. bottom: 21/1024
  5642. }
  5643. },
  5644. paw: {
  5645. height: math.unit(0.35, "feet"),
  5646. name: "Paw",
  5647. image: {
  5648. source: "./media/characters/geta/paw.svg"
  5649. }
  5650. },
  5651. },
  5652. [
  5653. {
  5654. name: "Micro",
  5655. height: math.unit(3, "inches"),
  5656. default: true
  5657. },
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(5 + 5 / 12, "feet")
  5661. }
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5666. {
  5667. front: {
  5668. height: math.unit(6, "feet"),
  5669. weight: math.unit(300, "lbs"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/tyrnn/front.svg"
  5673. }
  5674. }
  5675. },
  5676. [
  5677. {
  5678. name: "Main Height",
  5679. height: math.unit(355, "feet"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "Fave. Height",
  5684. height: math.unit(2400, "feet")
  5685. }
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(6, "feet"),
  5693. weight: math.unit(300, "lbs"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/appledectomy/front.svg"
  5697. }
  5698. }
  5699. },
  5700. [
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(2500, "feet")
  5704. },
  5705. {
  5706. name: "Megamacro",
  5707. height: math.unit(50, "miles"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "Gigamacro",
  5712. height: math.unit(5000, "miles")
  5713. },
  5714. {
  5715. name: "Teramacro",
  5716. height: math.unit(250000, "miles")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(6, "feet"),
  5725. weight: math.unit(200, "lbs"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/vulpes/front.svg",
  5729. extra: 573 / 543,
  5730. bottom: 0.033
  5731. }
  5732. },
  5733. side: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(200, "lbs"),
  5736. name: "Side",
  5737. image: {
  5738. source: "./media/characters/vulpes/side.svg",
  5739. extra: 577 / 549,
  5740. bottom: 11 / 588
  5741. }
  5742. },
  5743. back: {
  5744. height: math.unit(6, "feet"),
  5745. weight: math.unit(200, "lbs"),
  5746. name: "Back",
  5747. image: {
  5748. source: "./media/characters/vulpes/back.svg",
  5749. extra: 573 / 549,
  5750. bottom: 20 / 593
  5751. }
  5752. },
  5753. feet: {
  5754. height: math.unit(1.276, "feet"),
  5755. name: "Feet",
  5756. image: {
  5757. source: "./media/characters/vulpes/feet.svg"
  5758. }
  5759. },
  5760. maw: {
  5761. height: math.unit(1.18, "feet"),
  5762. name: "Maw",
  5763. image: {
  5764. source: "./media/characters/vulpes/maw.svg"
  5765. }
  5766. },
  5767. },
  5768. [
  5769. {
  5770. name: "Micro",
  5771. height: math.unit(2, "inches")
  5772. },
  5773. {
  5774. name: "Normal",
  5775. height: math.unit(6.3, "feet")
  5776. },
  5777. {
  5778. name: "Macro",
  5779. height: math.unit(850, "feet")
  5780. },
  5781. {
  5782. name: "Megamacro",
  5783. height: math.unit(7500, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Gigamacro",
  5788. height: math.unit(570000, "miles")
  5789. }
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5794. {
  5795. front: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(210, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/rain-fallen/front.svg"
  5801. }
  5802. },
  5803. side: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(210, "lbs"),
  5806. name: "Side",
  5807. image: {
  5808. source: "./media/characters/rain-fallen/side.svg"
  5809. }
  5810. },
  5811. back: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(210, "lbs"),
  5814. name: "Back",
  5815. image: {
  5816. source: "./media/characters/rain-fallen/back.svg"
  5817. }
  5818. },
  5819. feral: {
  5820. height: math.unit(9, "feet"),
  5821. weight: math.unit(700, "lbs"),
  5822. name: "Feral",
  5823. image: {
  5824. source: "./media/characters/rain-fallen/feral.svg"
  5825. }
  5826. },
  5827. },
  5828. [
  5829. {
  5830. name: "Meddling with Mortals",
  5831. height: math.unit(8 + 8/12, "feet")
  5832. },
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(5, "meter")
  5836. },
  5837. {
  5838. name: "Macro",
  5839. height: math.unit(150, "meter"),
  5840. default: true
  5841. },
  5842. {
  5843. name: "Megamacro",
  5844. height: math.unit(278e6, "meter")
  5845. },
  5846. {
  5847. name: "Gigamacro",
  5848. height: math.unit(2e9, "meter")
  5849. },
  5850. {
  5851. name: "Teramacro",
  5852. height: math.unit(8e12, "meter")
  5853. },
  5854. {
  5855. name: "Devourer",
  5856. height: math.unit(14, "zettameters")
  5857. },
  5858. {
  5859. name: "Scarlet King",
  5860. height: math.unit(18, "yottameters")
  5861. },
  5862. {
  5863. name: "Void",
  5864. height: math.unit(1e88, "yottameters")
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5870. {
  5871. standing: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(180, "lbs"),
  5874. name: "Standing",
  5875. image: {
  5876. source: "./media/characters/zaakira/standing.svg",
  5877. extra: 1599/1504,
  5878. bottom: 39/1638
  5879. }
  5880. },
  5881. laying: {
  5882. height: math.unit(3.3, "feet"),
  5883. weight: math.unit(180, "lbs"),
  5884. name: "Laying",
  5885. image: {
  5886. source: "./media/characters/zaakira/laying.svg"
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(12, "feet")
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(279, "feet"),
  5898. default: true
  5899. }
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5904. {
  5905. femSfw: {
  5906. height: math.unit(8, "feet"),
  5907. weight: math.unit(350, "lb"),
  5908. name: "Fem",
  5909. image: {
  5910. source: "./media/characters/sigvald/fem-sfw.svg",
  5911. extra: 182 / 164,
  5912. bottom: 8.7 / 190.5
  5913. }
  5914. },
  5915. femNsfw: {
  5916. height: math.unit(8, "feet"),
  5917. weight: math.unit(350, "lb"),
  5918. name: "Fem (NSFW)",
  5919. image: {
  5920. source: "./media/characters/sigvald/fem-nsfw.svg",
  5921. extra: 182 / 164,
  5922. bottom: 8.7 / 190.5
  5923. }
  5924. },
  5925. maleNsfw: {
  5926. height: math.unit(8, "feet"),
  5927. weight: math.unit(350, "lb"),
  5928. name: "Male (NSFW)",
  5929. image: {
  5930. source: "./media/characters/sigvald/male-nsfw.svg",
  5931. extra: 182 / 164,
  5932. bottom: 8.7 / 190.5
  5933. }
  5934. },
  5935. hermNsfw: {
  5936. height: math.unit(8, "feet"),
  5937. weight: math.unit(350, "lb"),
  5938. name: "Herm (NSFW)",
  5939. image: {
  5940. source: "./media/characters/sigvald/herm-nsfw.svg",
  5941. extra: 182 / 164,
  5942. bottom: 8.7 / 190.5
  5943. }
  5944. },
  5945. dick: {
  5946. height: math.unit(2.36, "feet"),
  5947. name: "Dick",
  5948. image: {
  5949. source: "./media/characters/sigvald/dick.svg"
  5950. }
  5951. },
  5952. eye: {
  5953. height: math.unit(0.31, "feet"),
  5954. name: "Eye",
  5955. image: {
  5956. source: "./media/characters/sigvald/eye.svg"
  5957. }
  5958. },
  5959. mouth: {
  5960. height: math.unit(0.92, "feet"),
  5961. name: "Mouth",
  5962. image: {
  5963. source: "./media/characters/sigvald/mouth.svg"
  5964. }
  5965. },
  5966. paws: {
  5967. height: math.unit(2.2, "feet"),
  5968. name: "Paws",
  5969. image: {
  5970. source: "./media/characters/sigvald/paws.svg"
  5971. }
  5972. }
  5973. },
  5974. [
  5975. {
  5976. name: "Normal",
  5977. height: math.unit(8, "feet")
  5978. },
  5979. {
  5980. name: "Large",
  5981. height: math.unit(12, "feet")
  5982. },
  5983. {
  5984. name: "Larger",
  5985. height: math.unit(20, "feet")
  5986. },
  5987. {
  5988. name: "Macro",
  5989. height: math.unit(150, "feet")
  5990. },
  5991. {
  5992. name: "Macro+",
  5993. height: math.unit(200, "feet"),
  5994. default: true
  5995. },
  5996. ]
  5997. ))
  5998. characterMakers.push(() => makeCharacter(
  5999. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6000. {
  6001. side: {
  6002. height: math.unit(12, "feet"),
  6003. weight: math.unit(2000, "kg"),
  6004. name: "Side",
  6005. image: {
  6006. source: "./media/characters/scott/side.svg",
  6007. extra: 754 / 724,
  6008. bottom: 0.069
  6009. }
  6010. },
  6011. upright: {
  6012. height: math.unit(12, "feet"),
  6013. weight: math.unit(2000, "kg"),
  6014. name: "Upright",
  6015. image: {
  6016. source: "./media/characters/scott/upright.svg",
  6017. extra: 3881 / 3722,
  6018. bottom: 0.05
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(12, "feet"),
  6026. default: true
  6027. },
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6032. {
  6033. side: {
  6034. height: math.unit(8, "meters"),
  6035. weight: math.unit(84755, "lbs"),
  6036. name: "Side",
  6037. image: {
  6038. source: "./media/characters/tobias/side.svg",
  6039. extra: 1474 / 1096,
  6040. bottom: 38.9 / 1513.1235
  6041. }
  6042. },
  6043. },
  6044. [
  6045. {
  6046. name: "Normal",
  6047. height: math.unit(8, "meters"),
  6048. default: true
  6049. },
  6050. ]
  6051. ))
  6052. characterMakers.push(() => makeCharacter(
  6053. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6054. {
  6055. front: {
  6056. height: math.unit(5.5, "feet"),
  6057. weight: math.unit(400, "lbs"),
  6058. name: "Front",
  6059. image: {
  6060. source: "./media/characters/kieran/front.svg",
  6061. extra: 2694 / 2364,
  6062. bottom: 217 / 2908
  6063. }
  6064. },
  6065. side: {
  6066. height: math.unit(5.5, "feet"),
  6067. weight: math.unit(400, "lbs"),
  6068. name: "Side",
  6069. image: {
  6070. source: "./media/characters/kieran/side.svg",
  6071. extra: 875 / 777,
  6072. bottom: 84.6 / 959
  6073. }
  6074. },
  6075. },
  6076. [
  6077. {
  6078. name: "Normal",
  6079. height: math.unit(5.5, "feet"),
  6080. default: true
  6081. },
  6082. ]
  6083. ))
  6084. characterMakers.push(() => makeCharacter(
  6085. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6086. {
  6087. side: {
  6088. height: math.unit(2, "meters"),
  6089. weight: math.unit(70, "kg"),
  6090. name: "Side",
  6091. image: {
  6092. source: "./media/characters/sanya/side.svg",
  6093. bottom: 0.02,
  6094. extra: 1.02
  6095. }
  6096. },
  6097. },
  6098. [
  6099. {
  6100. name: "Small",
  6101. height: math.unit(2, "meters")
  6102. },
  6103. {
  6104. name: "Normal",
  6105. height: math.unit(3, "meters")
  6106. },
  6107. {
  6108. name: "Macro",
  6109. height: math.unit(16, "meters"),
  6110. default: true
  6111. },
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6116. {
  6117. front: {
  6118. height: math.unit(2, "meters"),
  6119. weight: math.unit(120, "kg"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/miranda/front.svg",
  6123. extra: 195 / 185,
  6124. bottom: 10.9 / 206.5
  6125. }
  6126. },
  6127. back: {
  6128. height: math.unit(2, "meters"),
  6129. weight: math.unit(120, "kg"),
  6130. name: "Back",
  6131. image: {
  6132. source: "./media/characters/miranda/back.svg",
  6133. extra: 201 / 193,
  6134. bottom: 2.3 / 203.7
  6135. }
  6136. },
  6137. },
  6138. [
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(10, "feet"),
  6142. default: true
  6143. }
  6144. ]
  6145. ))
  6146. characterMakers.push(() => makeCharacter(
  6147. { name: "James", species: ["deer"], tags: ["anthro"] },
  6148. {
  6149. side: {
  6150. height: math.unit(2, "meters"),
  6151. weight: math.unit(100, "kg"),
  6152. name: "Front",
  6153. image: {
  6154. source: "./media/characters/james/front.svg",
  6155. extra: 10 / 8.5
  6156. }
  6157. },
  6158. },
  6159. [
  6160. {
  6161. name: "Normal",
  6162. height: math.unit(8.5, "feet"),
  6163. default: true
  6164. }
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6169. {
  6170. side: {
  6171. height: math.unit(9.5, "feet"),
  6172. weight: math.unit(2500, "lbs"),
  6173. name: "Side",
  6174. image: {
  6175. source: "./media/characters/heather/side.svg"
  6176. }
  6177. },
  6178. },
  6179. [
  6180. {
  6181. name: "Normal",
  6182. height: math.unit(9.5, "feet"),
  6183. default: true
  6184. }
  6185. ]
  6186. ))
  6187. characterMakers.push(() => makeCharacter(
  6188. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6189. {
  6190. side: {
  6191. height: math.unit(6.5, "feet"),
  6192. weight: math.unit(400, "lbs"),
  6193. name: "Side",
  6194. image: {
  6195. source: "./media/characters/lukas/side.svg",
  6196. extra: 7.25 / 6.5
  6197. }
  6198. },
  6199. },
  6200. [
  6201. {
  6202. name: "Normal",
  6203. height: math.unit(6.5, "feet"),
  6204. default: true
  6205. }
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6210. {
  6211. side: {
  6212. height: math.unit(5, "feet"),
  6213. weight: math.unit(3000, "lbs"),
  6214. name: "Side",
  6215. image: {
  6216. source: "./media/characters/louise/side.svg"
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(5, "feet"),
  6224. default: true
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6230. {
  6231. side: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(150, "lbs"),
  6234. name: "Side",
  6235. image: {
  6236. source: "./media/characters/ramona/side.svg",
  6237. extra: 871/854,
  6238. bottom: 41/912
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(6 + 4/12, "feet")
  6246. },
  6247. {
  6248. name: "Minimacro",
  6249. height: math.unit(5.3, "meters"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(20, "stories")
  6255. },
  6256. {
  6257. name: "Macro+",
  6258. height: math.unit(50, "stories")
  6259. },
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6264. {
  6265. standing: {
  6266. height: math.unit(5.75, "feet"),
  6267. weight: math.unit(160, "lbs"),
  6268. name: "Standing",
  6269. image: {
  6270. source: "./media/characters/deerpuff/standing.svg",
  6271. extra: 682 / 624
  6272. }
  6273. },
  6274. sitting: {
  6275. height: math.unit(5.75 / 1.79, "feet"),
  6276. weight: math.unit(160, "lbs"),
  6277. name: "Sitting",
  6278. image: {
  6279. source: "./media/characters/deerpuff/sitting.svg",
  6280. bottom: 44 / 400,
  6281. extra: 1
  6282. }
  6283. },
  6284. taurLaying: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(400, "lbs"),
  6287. name: "Taur (Laying)",
  6288. image: {
  6289. source: "./media/characters/deerpuff/taur-laying.svg"
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Puffball",
  6296. height: math.unit(6, "inches")
  6297. },
  6298. {
  6299. name: "Normalpuff",
  6300. height: math.unit(5.75, "feet")
  6301. },
  6302. {
  6303. name: "Macropuff",
  6304. height: math.unit(1500, "feet"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Megapuff",
  6309. height: math.unit(500, "miles")
  6310. },
  6311. {
  6312. name: "Gigapuff",
  6313. height: math.unit(250000, "miles")
  6314. },
  6315. {
  6316. name: "Omegapuff",
  6317. height: math.unit(1000, "lightyears")
  6318. },
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6323. {
  6324. stomping: {
  6325. height: math.unit(6, "feet"),
  6326. weight: math.unit(170, "lbs"),
  6327. name: "Stomping",
  6328. image: {
  6329. source: "./media/characters/vivian/stomping.svg"
  6330. }
  6331. },
  6332. sitting: {
  6333. height: math.unit(6 / 1.75, "feet"),
  6334. weight: math.unit(170, "lbs"),
  6335. name: "Sitting",
  6336. image: {
  6337. source: "./media/characters/vivian/sitting.svg",
  6338. bottom: 1 / 6.4,
  6339. extra: 1,
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(7, "feet"),
  6347. default: true
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(10, "stories")
  6352. },
  6353. {
  6354. name: "Macro+",
  6355. height: math.unit(30, "stories")
  6356. },
  6357. {
  6358. name: "Megamacro",
  6359. height: math.unit(10, "miles")
  6360. },
  6361. {
  6362. name: "Megamacro+",
  6363. height: math.unit(2750000, "meters")
  6364. },
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(160, "lbs"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/prince/front.svg",
  6376. extra: 1938/1682,
  6377. bottom: 45/1983
  6378. }
  6379. },
  6380. back: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(160, "lbs"),
  6383. name: "Back",
  6384. image: {
  6385. source: "./media/characters/prince/back.svg",
  6386. extra: 1955/1726,
  6387. bottom: 6/1961
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(7.75, "feet"),
  6395. default: true
  6396. },
  6397. {
  6398. name: "Not cute",
  6399. height: math.unit(17, "feet")
  6400. },
  6401. {
  6402. name: "I said NOT",
  6403. height: math.unit(91, "feet")
  6404. },
  6405. {
  6406. name: "Please stop",
  6407. height: math.unit(560, "feet")
  6408. },
  6409. {
  6410. name: "What have you done",
  6411. height: math.unit(2200, "feet")
  6412. },
  6413. {
  6414. name: "Deer God",
  6415. height: math.unit(3.6, "miles")
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6421. {
  6422. standing: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(300, "lbs"),
  6425. name: "Standing",
  6426. image: {
  6427. source: "./media/characters/psymon/standing.svg",
  6428. extra: 1888 / 1810,
  6429. bottom: 0.05
  6430. }
  6431. },
  6432. slithering: {
  6433. height: math.unit(6, "feet"),
  6434. weight: math.unit(300, "lbs"),
  6435. name: "Slithering",
  6436. image: {
  6437. source: "./media/characters/psymon/slithering.svg",
  6438. extra: 1330 / 1224
  6439. }
  6440. },
  6441. slitheringAlt: {
  6442. height: math.unit(6, "feet"),
  6443. weight: math.unit(300, "lbs"),
  6444. name: "Slithering (Alt)",
  6445. image: {
  6446. source: "./media/characters/psymon/slithering-alt.svg",
  6447. extra: 1330 / 1224
  6448. }
  6449. },
  6450. },
  6451. [
  6452. {
  6453. name: "Normal",
  6454. height: math.unit(11.25, "feet"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Large",
  6459. height: math.unit(27, "feet")
  6460. },
  6461. {
  6462. name: "Giant",
  6463. height: math.unit(87, "feet")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(365, "feet")
  6468. },
  6469. {
  6470. name: "Megamacro",
  6471. height: math.unit(3, "miles")
  6472. },
  6473. {
  6474. name: "World Serpent",
  6475. height: math.unit(8000, "miles")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(180, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/daimos/front.svg",
  6488. extra: 4160 / 3897,
  6489. bottom: 0.021
  6490. }
  6491. }
  6492. },
  6493. [
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(8, "feet"),
  6497. default: true
  6498. },
  6499. {
  6500. name: "Big Dog",
  6501. height: math.unit(22, "feet")
  6502. },
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(127, "feet")
  6506. },
  6507. {
  6508. name: "Megamacro",
  6509. height: math.unit(3600, "feet")
  6510. },
  6511. ]
  6512. ))
  6513. characterMakers.push(() => makeCharacter(
  6514. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6515. {
  6516. side: {
  6517. height: math.unit(6, "feet"),
  6518. weight: math.unit(180, "lbs"),
  6519. name: "Side",
  6520. image: {
  6521. source: "./media/characters/blake/side.svg",
  6522. extra: 1212 / 1120,
  6523. bottom: 0.05
  6524. }
  6525. },
  6526. crouched: {
  6527. height: math.unit(6 * 0.57, "feet"),
  6528. weight: math.unit(180, "lbs"),
  6529. name: "Crouched",
  6530. image: {
  6531. source: "./media/characters/blake/crouched.svg",
  6532. extra: 840 / 587,
  6533. bottom: 0.04
  6534. }
  6535. },
  6536. bent: {
  6537. height: math.unit(6 * 0.75, "feet"),
  6538. weight: math.unit(180, "lbs"),
  6539. name: "Bent",
  6540. image: {
  6541. source: "./media/characters/blake/bent.svg",
  6542. extra: 592 / 544,
  6543. bottom: 0.035
  6544. }
  6545. },
  6546. },
  6547. [
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(8 + 1 / 6, "feet"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Big Backside",
  6555. height: math.unit(37, "feet")
  6556. },
  6557. {
  6558. name: "Subway Shredder",
  6559. height: math.unit(72, "feet")
  6560. },
  6561. {
  6562. name: "City Carver",
  6563. height: math.unit(1675, "feet")
  6564. },
  6565. {
  6566. name: "Tectonic Tweaker",
  6567. height: math.unit(2300, "miles")
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(180, "lbs"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/guisetto/front.svg",
  6580. extra: 856 / 817,
  6581. bottom: 0.06
  6582. }
  6583. },
  6584. airborne: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(180, "lbs"),
  6587. name: "Airborne",
  6588. image: {
  6589. source: "./media/characters/guisetto/airborne.svg",
  6590. extra: 584 / 525
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(10 + 11 / 12, "feet"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Large",
  6602. height: math.unit(35, "feet")
  6603. },
  6604. {
  6605. name: "Macro",
  6606. height: math.unit(475, "feet")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(180, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/luxor/front.svg",
  6619. extra: 2940 / 2152
  6620. }
  6621. },
  6622. back: {
  6623. height: math.unit(6, "feet"),
  6624. weight: math.unit(180, "lbs"),
  6625. name: "Back",
  6626. image: {
  6627. source: "./media/characters/luxor/back.svg",
  6628. extra: 1083 / 960
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(5 + 5 / 6, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Lamp",
  6640. height: math.unit(50, "feet")
  6641. },
  6642. {
  6643. name: "Lämp",
  6644. height: math.unit(300, "feet")
  6645. },
  6646. {
  6647. name: "The sun is a lamp",
  6648. height: math.unit(250000, "miles")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6654. {
  6655. front: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(50, "lbs"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/huoyan/front.svg"
  6661. }
  6662. },
  6663. side: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(180, "lbs"),
  6666. name: "Side",
  6667. image: {
  6668. source: "./media/characters/huoyan/side.svg"
  6669. }
  6670. },
  6671. },
  6672. [
  6673. {
  6674. name: "Chef",
  6675. height: math.unit(9, "feet")
  6676. },
  6677. {
  6678. name: "Normal",
  6679. height: math.unit(65, "feet"),
  6680. default: true
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(780, "feet")
  6685. },
  6686. {
  6687. name: "Flaming Mountain",
  6688. height: math.unit(4.8, "miles")
  6689. },
  6690. {
  6691. name: "Celestial",
  6692. height: math.unit(765000, "miles")
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6698. {
  6699. front: {
  6700. height: math.unit(5 + 3 / 4, "feet"),
  6701. weight: math.unit(120, "lbs"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/tails/front.svg"
  6705. }
  6706. }
  6707. },
  6708. [
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(5 + 3 / 4, "feet"),
  6712. default: true
  6713. }
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6718. {
  6719. front: {
  6720. height: math.unit(4, "feet"),
  6721. weight: math.unit(50, "lbs"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/rainy/front.svg"
  6725. }
  6726. }
  6727. },
  6728. [
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(800, "feet"),
  6732. default: true
  6733. }
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(150, "lbs"),
  6742. name: "Front",
  6743. image: {
  6744. source: "./media/characters/rainier/front.svg"
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Micro",
  6751. height: math.unit(2, "mm"),
  6752. default: true
  6753. }
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6758. {
  6759. front: {
  6760. height: math.unit(8 + 4/12, "feet"),
  6761. weight: math.unit(450, "kilograms"),
  6762. volume: math.unit(5, "cups"),
  6763. name: "Front",
  6764. image: {
  6765. source: "./media/characters/andy-renard/front.svg",
  6766. extra: 1839/1726,
  6767. bottom: 134/1973
  6768. }
  6769. },
  6770. back: {
  6771. height: math.unit(8 + 4/12, "feet"),
  6772. weight: math.unit(450, "kilograms"),
  6773. volume: math.unit(5, "cups"),
  6774. name: "Back",
  6775. image: {
  6776. source: "./media/characters/andy-renard/back.svg",
  6777. extra: 1838/1710,
  6778. bottom: 105/1943
  6779. }
  6780. },
  6781. },
  6782. [
  6783. {
  6784. name: "Tall",
  6785. height: math.unit(8 + 4/12, "feet")
  6786. },
  6787. {
  6788. name: "Mini Macro",
  6789. height: math.unit(15, "feet"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(100, "feet")
  6795. },
  6796. {
  6797. name: "Mega Macro",
  6798. height: math.unit(1000, "feet")
  6799. },
  6800. {
  6801. name: "Giga Macro",
  6802. height: math.unit(10, "miles")
  6803. },
  6804. {
  6805. name: "God Macro",
  6806. height: math.unit(1, "multiverse")
  6807. },
  6808. ]
  6809. ))
  6810. characterMakers.push(() => makeCharacter(
  6811. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6812. {
  6813. front: {
  6814. height: math.unit(6, "feet"),
  6815. weight: math.unit(210, "lbs"),
  6816. name: "Front",
  6817. image: {
  6818. source: "./media/characters/cimmaron/front-sfw.svg",
  6819. extra: 701 / 676,
  6820. bottom: 0.046
  6821. }
  6822. },
  6823. back: {
  6824. height: math.unit(6, "feet"),
  6825. weight: math.unit(210, "lbs"),
  6826. name: "Back",
  6827. image: {
  6828. source: "./media/characters/cimmaron/back-sfw.svg",
  6829. extra: 701 / 676,
  6830. bottom: 0.046
  6831. }
  6832. },
  6833. frontNsfw: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(210, "lbs"),
  6836. name: "Front (NSFW)",
  6837. image: {
  6838. source: "./media/characters/cimmaron/front-nsfw.svg",
  6839. extra: 701 / 676,
  6840. bottom: 0.046
  6841. }
  6842. },
  6843. backNsfw: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(210, "lbs"),
  6846. name: "Back (NSFW)",
  6847. image: {
  6848. source: "./media/characters/cimmaron/back-nsfw.svg",
  6849. extra: 701 / 676,
  6850. bottom: 0.046
  6851. }
  6852. },
  6853. dick: {
  6854. height: math.unit(1.714, "feet"),
  6855. name: "Dick",
  6856. image: {
  6857. source: "./media/characters/cimmaron/dick.svg"
  6858. }
  6859. },
  6860. },
  6861. [
  6862. {
  6863. name: "Normal",
  6864. height: math.unit(6, "feet"),
  6865. default: true
  6866. },
  6867. {
  6868. name: "Macro Mayor",
  6869. height: math.unit(350, "meters")
  6870. },
  6871. ]
  6872. ))
  6873. characterMakers.push(() => makeCharacter(
  6874. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6875. {
  6876. front: {
  6877. height: math.unit(6, "feet"),
  6878. weight: math.unit(200, "lbs"),
  6879. name: "Front",
  6880. image: {
  6881. source: "./media/characters/akari/front.svg",
  6882. extra: 962 / 901,
  6883. bottom: 0.04
  6884. }
  6885. }
  6886. },
  6887. [
  6888. {
  6889. name: "Micro",
  6890. height: math.unit(5, "inches"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Normal",
  6895. height: math.unit(7, "feet")
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(140, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/cynosura/front.svg",
  6908. extra: 437/410,
  6909. bottom: 9/446
  6910. }
  6911. },
  6912. back: {
  6913. height: math.unit(6, "feet"),
  6914. weight: math.unit(140, "lbs"),
  6915. name: "Back",
  6916. image: {
  6917. source: "./media/characters/cynosura/back.svg",
  6918. extra: 1304/1160,
  6919. bottom: 71/1375
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Micro",
  6926. height: math.unit(4, "inches")
  6927. },
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(5.75, "feet"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Tall",
  6935. height: math.unit(10, "feet")
  6936. },
  6937. {
  6938. name: "Big",
  6939. height: math.unit(20, "feet")
  6940. },
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(50, "feet")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(13 + 2/12, "feet"),
  6952. weight: math.unit(800, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/gin/front.svg",
  6956. extra: 1312/1191,
  6957. bottom: 45/1357
  6958. }
  6959. },
  6960. mouth: {
  6961. height: math.unit(2.39 * 1.8, "feet"),
  6962. name: "Mouth",
  6963. image: {
  6964. source: "./media/characters/gin/mouth.svg"
  6965. }
  6966. },
  6967. hand: {
  6968. height: math.unit(1.57 * 2.19, "feet"),
  6969. name: "Hand",
  6970. image: {
  6971. source: "./media/characters/gin/hand.svg"
  6972. }
  6973. },
  6974. foot: {
  6975. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6976. name: "Foot",
  6977. image: {
  6978. source: "./media/characters/gin/foot.svg"
  6979. }
  6980. },
  6981. sole: {
  6982. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6983. name: "Sole",
  6984. image: {
  6985. source: "./media/characters/gin/sole.svg"
  6986. }
  6987. },
  6988. },
  6989. [
  6990. {
  6991. name: "Very Small",
  6992. height: math.unit(13 + 2 / 12, "feet")
  6993. },
  6994. {
  6995. name: "Micro",
  6996. height: math.unit(600, "miles")
  6997. },
  6998. {
  6999. name: "Regular",
  7000. height: math.unit(20, "earths"),
  7001. default: true
  7002. },
  7003. {
  7004. name: "Macro",
  7005. height: math.unit(2.2, "solarradii")
  7006. },
  7007. {
  7008. name: "Teramacro",
  7009. height: math.unit(1.2, "galaxies")
  7010. },
  7011. {
  7012. name: "Omegamacro",
  7013. height: math.unit(200, "universes")
  7014. },
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7019. {
  7020. front: {
  7021. height: math.unit(6 + 1 / 6, "feet"),
  7022. weight: math.unit(178, "lbs"),
  7023. name: "Front",
  7024. image: {
  7025. source: "./media/characters/guy/front.svg"
  7026. }
  7027. }
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(6 + 1 / 6, "feet"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Large",
  7037. height: math.unit(25 + 7 / 12, "feet")
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(60 + 9 / 12, "feet")
  7042. },
  7043. {
  7044. name: "Macro+",
  7045. height: math.unit(246, "feet")
  7046. },
  7047. {
  7048. name: "Macro++",
  7049. height: math.unit(878, "feet")
  7050. }
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(9, "feet"),
  7058. weight: math.unit(800, "lbs"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/tiberius/front.svg",
  7062. extra: 2295 / 2071
  7063. }
  7064. },
  7065. back: {
  7066. height: math.unit(9, "feet"),
  7067. weight: math.unit(800, "lbs"),
  7068. name: "Back",
  7069. image: {
  7070. source: "./media/characters/tiberius/back.svg",
  7071. extra: 2373 / 2160
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(9, "feet"),
  7079. default: true
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(600, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/surgo/front.svg",
  7092. extra: 3591 / 2227
  7093. }
  7094. },
  7095. back: {
  7096. height: math.unit(6, "feet"),
  7097. weight: math.unit(600, "lbs"),
  7098. name: "Back",
  7099. image: {
  7100. source: "./media/characters/surgo/back.svg",
  7101. extra: 3557 / 2228
  7102. }
  7103. },
  7104. laying: {
  7105. height: math.unit(6 * 0.85, "feet"),
  7106. weight: math.unit(600, "lbs"),
  7107. name: "Laying",
  7108. image: {
  7109. source: "./media/characters/surgo/laying.svg"
  7110. }
  7111. },
  7112. },
  7113. [
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(6, "feet"),
  7117. default: true
  7118. }
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7123. {
  7124. side: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(150, "lbs"),
  7127. name: "Side",
  7128. image: {
  7129. source: "./media/characters/cibus/side.svg",
  7130. extra: 800 / 400
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(6, "feet"),
  7138. default: true
  7139. }
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7144. {
  7145. front: {
  7146. height: math.unit(6, "feet"),
  7147. weight: math.unit(240, "lbs"),
  7148. name: "Front",
  7149. image: {
  7150. source: "./media/characters/nibbles/front.svg"
  7151. }
  7152. },
  7153. side: {
  7154. height: math.unit(6, "feet"),
  7155. weight: math.unit(240, "lbs"),
  7156. name: "Side",
  7157. image: {
  7158. source: "./media/characters/nibbles/side.svg"
  7159. }
  7160. },
  7161. },
  7162. [
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(9, "feet"),
  7166. default: true
  7167. }
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7172. {
  7173. side: {
  7174. height: math.unit(5 + 1 / 6, "feet"),
  7175. weight: math.unit(130, "lbs"),
  7176. name: "Side",
  7177. image: {
  7178. source: "./media/characters/rikky/side.svg",
  7179. extra: 851 / 801
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(5 + 1 / 6, "feet")
  7187. },
  7188. {
  7189. name: "Macro",
  7190. height: math.unit(152, "feet"),
  7191. default: true
  7192. },
  7193. {
  7194. name: "Megamacro",
  7195. height: math.unit(7, "miles")
  7196. }
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7201. {
  7202. side: {
  7203. height: math.unit(370, "cm"),
  7204. weight: math.unit(350, "lbs"),
  7205. name: "Side",
  7206. image: {
  7207. source: "./media/characters/malfressa/side.svg"
  7208. }
  7209. },
  7210. walking: {
  7211. height: math.unit(370, "cm"),
  7212. weight: math.unit(350, "lbs"),
  7213. name: "Walking",
  7214. image: {
  7215. source: "./media/characters/malfressa/walking.svg"
  7216. }
  7217. },
  7218. feral: {
  7219. height: math.unit(2500, "cm"),
  7220. weight: math.unit(100000, "lbs"),
  7221. name: "Feral",
  7222. image: {
  7223. source: "./media/characters/malfressa/feral.svg",
  7224. extra: 2108 / 837,
  7225. bottom: 0.02
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Normal",
  7232. height: math.unit(370, "cm")
  7233. },
  7234. {
  7235. name: "Macro",
  7236. height: math.unit(300, "meters"),
  7237. default: true
  7238. }
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(6, "feet"),
  7246. weight: math.unit(60, "kg"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/jaro/front.svg",
  7250. extra: 845/817,
  7251. bottom: 45/890
  7252. }
  7253. },
  7254. back: {
  7255. height: math.unit(6, "feet"),
  7256. weight: math.unit(60, "kg"),
  7257. name: "Back",
  7258. image: {
  7259. source: "./media/characters/jaro/back.svg",
  7260. extra: 847/817,
  7261. bottom: 34/881
  7262. }
  7263. },
  7264. },
  7265. [
  7266. {
  7267. name: "Micro",
  7268. height: math.unit(7, "inches")
  7269. },
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(5.5, "feet"),
  7273. default: true
  7274. },
  7275. {
  7276. name: "Minimacro",
  7277. height: math.unit(20, "feet")
  7278. },
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(200, "meters")
  7282. }
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(195, "lb"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/rogue/front.svg"
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(90, "feet"),
  7301. default: true
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7307. {
  7308. standing: {
  7309. height: math.unit(5 + 8 / 12, "feet"),
  7310. weight: math.unit(140, "lb"),
  7311. name: "Standing",
  7312. image: {
  7313. source: "./media/characters/piper/standing.svg",
  7314. extra: 1440/1284,
  7315. bottom: 66/1506
  7316. }
  7317. },
  7318. running: {
  7319. height: math.unit(5 + 8 / 12, "feet"),
  7320. weight: math.unit(140, "lb"),
  7321. name: "Running",
  7322. image: {
  7323. source: "./media/characters/piper/running.svg",
  7324. extra: 3948/3655,
  7325. bottom: 0/3948
  7326. }
  7327. },
  7328. sole: {
  7329. height: math.unit(0.81, "feet"),
  7330. weight: math.unit(2, "kg"),
  7331. name: "Sole",
  7332. image: {
  7333. source: "./media/characters/piper/sole.svg"
  7334. }
  7335. },
  7336. nipple: {
  7337. height: math.unit(0.25, "feet"),
  7338. weight: math.unit(1.5, "lb"),
  7339. name: "Nipple",
  7340. image: {
  7341. source: "./media/characters/piper/nipple.svg"
  7342. }
  7343. },
  7344. head: {
  7345. height: math.unit(1.1, "feet"),
  7346. name: "Head",
  7347. image: {
  7348. source: "./media/characters/piper/head.svg"
  7349. }
  7350. },
  7351. },
  7352. [
  7353. {
  7354. name: "Micro",
  7355. height: math.unit(2, "inches")
  7356. },
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(5 + 8 / 12, "feet")
  7360. },
  7361. {
  7362. name: "Macro",
  7363. height: math.unit(250, "feet"),
  7364. default: true
  7365. },
  7366. {
  7367. name: "Megamacro",
  7368. height: math.unit(7, "miles")
  7369. },
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7374. {
  7375. front: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(220, "lb"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/gemini/front.svg"
  7381. }
  7382. },
  7383. back: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(220, "lb"),
  7386. name: "Back",
  7387. image: {
  7388. source: "./media/characters/gemini/back.svg"
  7389. }
  7390. },
  7391. kneeling: {
  7392. height: math.unit(6 / 1.5, "feet"),
  7393. weight: math.unit(220, "lb"),
  7394. name: "Kneeling",
  7395. image: {
  7396. source: "./media/characters/gemini/kneeling.svg",
  7397. bottom: 0.02
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Macro",
  7404. height: math.unit(300, "meters"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Megamacro",
  7409. height: math.unit(6900, "meters")
  7410. },
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7415. {
  7416. anthro: {
  7417. height: math.unit(2.35, "meters"),
  7418. weight: math.unit(73, "kg"),
  7419. name: "Anthro",
  7420. image: {
  7421. source: "./media/characters/alicia/anthro.svg",
  7422. extra: 2571 / 2385,
  7423. bottom: 75 / 2648
  7424. }
  7425. },
  7426. paw: {
  7427. height: math.unit(1.32, "feet"),
  7428. name: "Paw",
  7429. image: {
  7430. source: "./media/characters/alicia/paw.svg"
  7431. }
  7432. },
  7433. feral: {
  7434. height: math.unit(1.69, "meters"),
  7435. weight: math.unit(73, "kg"),
  7436. name: "Feral",
  7437. image: {
  7438. source: "./media/characters/alicia/feral.svg",
  7439. extra: 2123 / 1715,
  7440. bottom: 222 / 2349
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(2.35, "meters")
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(60, "meters"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(10000, "kilometers")
  7457. },
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(7, "feet"),
  7465. weight: math.unit(250, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/archy/front.svg"
  7469. }
  7470. }
  7471. },
  7472. [
  7473. {
  7474. name: "Micro",
  7475. height: math.unit(1, "inch")
  7476. },
  7477. {
  7478. name: "Shorty",
  7479. height: math.unit(5, "feet")
  7480. },
  7481. {
  7482. name: "Normal",
  7483. height: math.unit(7, "feet")
  7484. },
  7485. {
  7486. name: "Macro",
  7487. height: math.unit(600, "meters"),
  7488. default: true
  7489. },
  7490. {
  7491. name: "Megamacro",
  7492. height: math.unit(1, "mile")
  7493. },
  7494. ]
  7495. ))
  7496. characterMakers.push(() => makeCharacter(
  7497. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7498. {
  7499. front: {
  7500. height: math.unit(1.65, "meters"),
  7501. weight: math.unit(74, "kg"),
  7502. name: "Front",
  7503. image: {
  7504. source: "./media/characters/berri/front.svg",
  7505. extra: 857 / 837,
  7506. bottom: 18 / 877
  7507. }
  7508. },
  7509. bum: {
  7510. height: math.unit(1.46, "feet"),
  7511. name: "Bum",
  7512. image: {
  7513. source: "./media/characters/berri/bum.svg"
  7514. }
  7515. },
  7516. mouth: {
  7517. height: math.unit(0.44, "feet"),
  7518. name: "Mouth",
  7519. image: {
  7520. source: "./media/characters/berri/mouth.svg"
  7521. }
  7522. },
  7523. paw: {
  7524. height: math.unit(0.826, "feet"),
  7525. name: "Paw",
  7526. image: {
  7527. source: "./media/characters/berri/paw.svg"
  7528. }
  7529. },
  7530. },
  7531. [
  7532. {
  7533. name: "Normal",
  7534. height: math.unit(1.65, "meters")
  7535. },
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(60, "m"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Megamacro",
  7543. height: math.unit(9.213, "km")
  7544. },
  7545. {
  7546. name: "Planet Eater",
  7547. height: math.unit(489, "megameters")
  7548. },
  7549. {
  7550. name: "Teramacro",
  7551. height: math.unit(2471635000000, "meters")
  7552. },
  7553. {
  7554. name: "Examacro",
  7555. height: math.unit(8.0624e+26, "meters")
  7556. }
  7557. ]
  7558. ))
  7559. characterMakers.push(() => makeCharacter(
  7560. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7561. {
  7562. front: {
  7563. height: math.unit(1.72, "meters"),
  7564. weight: math.unit(68, "kg"),
  7565. name: "Front",
  7566. image: {
  7567. source: "./media/characters/lexi/front.svg"
  7568. }
  7569. }
  7570. },
  7571. [
  7572. {
  7573. name: "Very Smol",
  7574. height: math.unit(10, "mm")
  7575. },
  7576. {
  7577. name: "Micro",
  7578. height: math.unit(6.8, "cm"),
  7579. default: true
  7580. },
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(1.72, "m")
  7584. }
  7585. ]
  7586. ))
  7587. characterMakers.push(() => makeCharacter(
  7588. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7589. {
  7590. front: {
  7591. height: math.unit(1.69, "meters"),
  7592. weight: math.unit(68, "kg"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/martin/front.svg",
  7596. extra: 596 / 581
  7597. }
  7598. }
  7599. },
  7600. [
  7601. {
  7602. name: "Micro",
  7603. height: math.unit(6.85, "cm"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(1.69, "m")
  7609. }
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(1.69, "meters"),
  7617. weight: math.unit(68, "kg"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/juno/front.svg"
  7621. }
  7622. }
  7623. },
  7624. [
  7625. {
  7626. name: "Micro",
  7627. height: math.unit(7, "cm")
  7628. },
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(1.89, "m")
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(353, "meters"),
  7636. default: true
  7637. }
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(1.93, "meters"),
  7645. weight: math.unit(83, "kg"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/samantha/front.svg"
  7649. }
  7650. },
  7651. frontClothed: {
  7652. height: math.unit(1.93, "meters"),
  7653. weight: math.unit(83, "kg"),
  7654. name: "Front (Clothed)",
  7655. image: {
  7656. source: "./media/characters/samantha/front-clothed.svg"
  7657. }
  7658. },
  7659. back: {
  7660. height: math.unit(1.93, "meters"),
  7661. weight: math.unit(83, "kg"),
  7662. name: "Back",
  7663. image: {
  7664. source: "./media/characters/samantha/back.svg"
  7665. }
  7666. },
  7667. },
  7668. [
  7669. {
  7670. name: "Normal",
  7671. height: math.unit(1.93, "m")
  7672. },
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(74, "meters"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Macro+",
  7680. height: math.unit(223, "meters"),
  7681. },
  7682. {
  7683. name: "Megamacro",
  7684. height: math.unit(8381, "meters"),
  7685. },
  7686. {
  7687. name: "Megamacro+",
  7688. height: math.unit(12000, "kilometers")
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(1.92, "meters"),
  7697. weight: math.unit(80, "kg"),
  7698. name: "Front",
  7699. image: {
  7700. source: "./media/characters/dr-clay/front.svg"
  7701. }
  7702. },
  7703. frontClothed: {
  7704. height: math.unit(1.92, "meters"),
  7705. weight: math.unit(80, "kg"),
  7706. name: "Front (Clothed)",
  7707. image: {
  7708. source: "./media/characters/dr-clay/front-clothed.svg"
  7709. }
  7710. }
  7711. },
  7712. [
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(1.92, "m")
  7716. },
  7717. {
  7718. name: "Macro",
  7719. height: math.unit(214, "meters"),
  7720. default: true
  7721. },
  7722. {
  7723. name: "Macro+",
  7724. height: math.unit(12.237, "meters"),
  7725. },
  7726. {
  7727. name: "Megamacro",
  7728. height: math.unit(557, "megameters"),
  7729. },
  7730. {
  7731. name: "Unimaginable",
  7732. height: math.unit(120e9, "lightyears")
  7733. },
  7734. ]
  7735. ))
  7736. characterMakers.push(() => makeCharacter(
  7737. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7738. {
  7739. front: {
  7740. height: math.unit(2, "meters"),
  7741. weight: math.unit(80, "kg"),
  7742. name: "Front",
  7743. image: {
  7744. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7745. }
  7746. }
  7747. },
  7748. [
  7749. {
  7750. name: "Teramacro",
  7751. height: math.unit(500000, "lightyears"),
  7752. default: true
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7758. {
  7759. crux: {
  7760. height: math.unit(2, "meters"),
  7761. weight: math.unit(150, "kg"),
  7762. name: "Crux",
  7763. image: {
  7764. source: "./media/characters/vemus/crux.svg",
  7765. extra: 1074/936,
  7766. bottom: 23/1097
  7767. }
  7768. },
  7769. skunkTanuki: {
  7770. height: math.unit(2, "meters"),
  7771. weight: math.unit(150, "kg"),
  7772. name: "Skunk-Tanuki",
  7773. image: {
  7774. source: "./media/characters/vemus/skunk-tanuki.svg",
  7775. extra: 926/893,
  7776. bottom: 20/946
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(4, "meters"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Big",
  7788. height: math.unit(8, "meters")
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(100, "meters")
  7793. },
  7794. {
  7795. name: "Macro+",
  7796. height: math.unit(1500, "meters")
  7797. },
  7798. {
  7799. name: "Stellar",
  7800. height: math.unit(14e8, "meters")
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(2, "meters"),
  7809. weight: math.unit(70, "kg"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/beherit/front.svg",
  7813. extra: 1234/1109,
  7814. bottom: 55/1289
  7815. }
  7816. }
  7817. },
  7818. [
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(6, "feet")
  7822. },
  7823. {
  7824. name: "Lorg",
  7825. height: math.unit(25, "feet"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Lorger",
  7830. height: math.unit(75, "feet")
  7831. },
  7832. {
  7833. name: "Macro",
  7834. height: math.unit(200, "meters")
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(2, "meters"),
  7843. weight: math.unit(150, "kg"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/everett/front.svg",
  7847. extra: 1017/866,
  7848. bottom: 86/1103
  7849. }
  7850. },
  7851. paw: {
  7852. height: math.unit(2 / 3.6, "meters"),
  7853. name: "Paw",
  7854. image: {
  7855. source: "./media/characters/everett/paw.svg"
  7856. }
  7857. },
  7858. },
  7859. [
  7860. {
  7861. name: "Normal",
  7862. height: math.unit(15, "feet"),
  7863. default: true
  7864. },
  7865. {
  7866. name: "Lorg",
  7867. height: math.unit(70, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Lorger",
  7872. height: math.unit(250, "feet")
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(500, "meters")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(2, "meters"),
  7885. weight: math.unit(86, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/rose/front.svg",
  7889. extra: 1785/1636,
  7890. bottom: 30/1815
  7891. },
  7892. form: "liom",
  7893. default: true
  7894. },
  7895. frontSporty: {
  7896. height: math.unit(2, "meters"),
  7897. weight: math.unit(86, "kg"),
  7898. name: "Front (Sporty)",
  7899. image: {
  7900. source: "./media/characters/rose/front-sporty.svg",
  7901. extra: 350/335,
  7902. bottom: 10/360
  7903. },
  7904. form: "liom"
  7905. },
  7906. frontAlt: {
  7907. height: math.unit(1.6, "meters"),
  7908. weight: math.unit(86, "kg"),
  7909. name: "Front (Alt)",
  7910. image: {
  7911. source: "./media/characters/rose/front-alt.svg",
  7912. extra: 299/283,
  7913. bottom: 3/302
  7914. },
  7915. form: "liom"
  7916. },
  7917. plush: {
  7918. height: math.unit(2, "meters"),
  7919. weight: math.unit(86/3, "kg"),
  7920. name: "Plush",
  7921. image: {
  7922. source: "./media/characters/rose/plush.svg",
  7923. extra: 361/337,
  7924. bottom: 11/372
  7925. },
  7926. form: "plush",
  7927. default: true
  7928. },
  7929. faeStanding: {
  7930. height: math.unit(10, "cm"),
  7931. weight: math.unit(10, "grams"),
  7932. name: "Standing",
  7933. image: {
  7934. source: "./media/characters/rose/fae-standing.svg",
  7935. extra: 1189/1060,
  7936. bottom: 27/1216
  7937. },
  7938. form: "fae",
  7939. default: true
  7940. },
  7941. faeSitting: {
  7942. height: math.unit(5, "cm"),
  7943. weight: math.unit(10, "grams"),
  7944. name: "Sitting",
  7945. image: {
  7946. source: "./media/characters/rose/fae-sitting.svg",
  7947. extra: 737/577,
  7948. bottom: 356/1093
  7949. },
  7950. form: "fae"
  7951. },
  7952. faePaw: {
  7953. height: math.unit(1.35, "cm"),
  7954. name: "Paw",
  7955. image: {
  7956. source: "./media/characters/rose/fae-paw.svg"
  7957. },
  7958. form: "fae"
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "True Micro",
  7964. height: math.unit(9, "cm"),
  7965. form: "liom"
  7966. },
  7967. {
  7968. name: "Micro",
  7969. height: math.unit(16, "cm"),
  7970. form: "liom"
  7971. },
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(1.85, "meters"),
  7975. default: true,
  7976. form: "liom"
  7977. },
  7978. {
  7979. name: "Mini-Macro",
  7980. height: math.unit(5, "meters"),
  7981. form: "liom"
  7982. },
  7983. {
  7984. name: "Macro",
  7985. height: math.unit(15, "meters"),
  7986. form: "liom"
  7987. },
  7988. {
  7989. name: "True Macro",
  7990. height: math.unit(40, "meters"),
  7991. form: "liom"
  7992. },
  7993. {
  7994. name: "City Scale",
  7995. height: math.unit(1, "km"),
  7996. form: "liom"
  7997. },
  7998. {
  7999. name: "Plushie",
  8000. height: math.unit(9, "cm"),
  8001. form: "plush",
  8002. default: true
  8003. },
  8004. {
  8005. name: "Fae",
  8006. height: math.unit(10, "cm"),
  8007. form: "fae",
  8008. default: true
  8009. },
  8010. ],
  8011. {
  8012. "liom": {
  8013. name: "Liom"
  8014. },
  8015. "plush": {
  8016. name: "Plush"
  8017. },
  8018. "fae": {
  8019. name: "Fae Fox",
  8020. default: true
  8021. }
  8022. }
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(2, "meters"),
  8029. weight: math.unit(350, "lbs"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/regal/front.svg"
  8033. }
  8034. },
  8035. back: {
  8036. height: math.unit(2, "meters"),
  8037. weight: math.unit(350, "lbs"),
  8038. name: "Back",
  8039. image: {
  8040. source: "./media/characters/regal/back.svg"
  8041. }
  8042. },
  8043. },
  8044. [
  8045. {
  8046. name: "Macro",
  8047. height: math.unit(350, "feet"),
  8048. default: true
  8049. }
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(4 + 11 / 12, "feet"),
  8057. weight: math.unit(100, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/opal/front.svg"
  8061. }
  8062. },
  8063. frontAlt: {
  8064. height: math.unit(4 + 11 / 12, "feet"),
  8065. weight: math.unit(100, "lbs"),
  8066. name: "Front (Alt)",
  8067. image: {
  8068. source: "./media/characters/opal/front-alt.svg"
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Small",
  8075. height: math.unit(4 + 11 / 12, "feet")
  8076. },
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(20, "feet"),
  8080. default: true
  8081. },
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(120, "feet")
  8085. },
  8086. {
  8087. name: "Megamacro",
  8088. height: math.unit(80, "miles")
  8089. },
  8090. {
  8091. name: "True Size",
  8092. height: math.unit(100000, "lightyears")
  8093. },
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8098. {
  8099. front: {
  8100. height: math.unit(6, "feet"),
  8101. weight: math.unit(200, "lbs"),
  8102. name: "Front",
  8103. image: {
  8104. source: "./media/characters/vector-wuff/front.svg"
  8105. }
  8106. }
  8107. },
  8108. [
  8109. {
  8110. name: "Normal",
  8111. height: math.unit(2.8, "meters")
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(450, "meters"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "Megamacro",
  8120. height: math.unit(15, "kilometers")
  8121. }
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(256, "lbs"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/dannik/front.svg"
  8133. }
  8134. }
  8135. },
  8136. [
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(69.57, "meters"),
  8140. default: true
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8146. {
  8147. front: {
  8148. height: math.unit(6, "feet"),
  8149. weight: math.unit(120, "lbs"),
  8150. name: "Front",
  8151. image: {
  8152. source: "./media/characters/azura-saharah/front.svg"
  8153. }
  8154. },
  8155. back: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(120, "lbs"),
  8158. name: "Back",
  8159. image: {
  8160. source: "./media/characters/azura-saharah/back.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Macro",
  8167. height: math.unit(100, "feet"),
  8168. default: true
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8174. {
  8175. side: {
  8176. height: math.unit(5 + 4 / 12, "feet"),
  8177. weight: math.unit(163, "lbs"),
  8178. name: "Side",
  8179. image: {
  8180. source: "./media/characters/kennedy/side.svg"
  8181. }
  8182. }
  8183. },
  8184. [
  8185. {
  8186. name: "Standard Doggo",
  8187. height: math.unit(5 + 4 / 12, "feet")
  8188. },
  8189. {
  8190. name: "Big Doggo",
  8191. height: math.unit(25 + 3 / 12, "feet"),
  8192. default: true
  8193. },
  8194. ]
  8195. ))
  8196. characterMakers.push(() => makeCharacter(
  8197. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8198. {
  8199. front: {
  8200. height: math.unit(5 + 5/12, "feet"),
  8201. weight: math.unit(100, "lbs"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/odios-de-lunar/front.svg",
  8205. extra: 1468/1323,
  8206. bottom: 22/1490
  8207. }
  8208. }
  8209. },
  8210. [
  8211. {
  8212. name: "Micro",
  8213. height: math.unit(3, "inches")
  8214. },
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(5.5, "feet"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(100, "feet")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8228. {
  8229. back: {
  8230. height: math.unit(6, "feet"),
  8231. weight: math.unit(220, "lbs"),
  8232. name: "Back",
  8233. image: {
  8234. source: "./media/characters/mandake/back.svg"
  8235. }
  8236. }
  8237. },
  8238. [
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(7, "feet"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Macro",
  8246. height: math.unit(78, "feet")
  8247. },
  8248. {
  8249. name: "Macro+",
  8250. height: math.unit(300, "meters")
  8251. },
  8252. {
  8253. name: "Macro++",
  8254. height: math.unit(2400, "feet")
  8255. },
  8256. {
  8257. name: "Megamacro",
  8258. height: math.unit(5167, "meters")
  8259. },
  8260. {
  8261. name: "Gigamacro",
  8262. height: math.unit(41769, "miles")
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(120, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/yozey/front.svg"
  8275. }
  8276. },
  8277. frontAlt: {
  8278. height: math.unit(6, "feet"),
  8279. weight: math.unit(120, "lbs"),
  8280. name: "Front (Alt)",
  8281. image: {
  8282. source: "./media/characters/yozey/front-alt.svg"
  8283. }
  8284. },
  8285. side: {
  8286. height: math.unit(6, "feet"),
  8287. weight: math.unit(120, "lbs"),
  8288. name: "Side",
  8289. image: {
  8290. source: "./media/characters/yozey/side.svg"
  8291. }
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "Micro",
  8297. height: math.unit(3, "inches"),
  8298. default: true
  8299. },
  8300. {
  8301. name: "Normal",
  8302. height: math.unit(6, "feet")
  8303. }
  8304. ]
  8305. ))
  8306. characterMakers.push(() => makeCharacter(
  8307. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8308. {
  8309. front: {
  8310. height: math.unit(6, "feet"),
  8311. weight: math.unit(103, "lbs"),
  8312. name: "Front",
  8313. image: {
  8314. source: "./media/characters/valeska-voss/front.svg"
  8315. }
  8316. }
  8317. },
  8318. [
  8319. {
  8320. name: "Mini-Sized Sub",
  8321. height: math.unit(3.1, "inches")
  8322. },
  8323. {
  8324. name: "Mid-Sized Sub",
  8325. height: math.unit(6.2, "inches")
  8326. },
  8327. {
  8328. name: "Full-Sized Sub",
  8329. height: math.unit(9.3, "inches")
  8330. },
  8331. {
  8332. name: "Normal",
  8333. height: math.unit(5 + 2 / 12, "foot"),
  8334. default: true
  8335. },
  8336. ]
  8337. ))
  8338. characterMakers.push(() => makeCharacter(
  8339. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8340. {
  8341. front: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(160, "lbs"),
  8344. name: "Front",
  8345. image: {
  8346. source: "./media/characters/gene-zeta/front.svg",
  8347. extra: 3006 / 2826,
  8348. bottom: 182 / 3188
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Micro",
  8355. height: math.unit(6, "inches")
  8356. },
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(5 + 11 / 12, "foot"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(140, "feet")
  8365. },
  8366. {
  8367. name: "Supercharged",
  8368. height: math.unit(2500, "feet")
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(350, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/razinox/front.svg",
  8381. extra: 1686 / 1548,
  8382. bottom: 28.2 / 1868
  8383. }
  8384. },
  8385. back: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(350, "lbs"),
  8388. name: "Back",
  8389. image: {
  8390. source: "./media/characters/razinox/back.svg",
  8391. extra: 1660 / 1590,
  8392. bottom: 15 / 1665
  8393. }
  8394. },
  8395. },
  8396. [
  8397. {
  8398. name: "Normal",
  8399. height: math.unit(10 + 8 / 12, "foot")
  8400. },
  8401. {
  8402. name: "Minimacro",
  8403. height: math.unit(15, "foot")
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(60, "foot"),
  8408. default: true
  8409. },
  8410. {
  8411. name: "Megamacro",
  8412. height: math.unit(5, "miles")
  8413. },
  8414. {
  8415. name: "Gigamacro",
  8416. height: math.unit(6000, "miles")
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(6, "feet"),
  8425. weight: math.unit(150, "lbs"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/cobalt/front.svg"
  8429. }
  8430. }
  8431. },
  8432. [
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(8 + 1 / 12, "foot")
  8436. },
  8437. {
  8438. name: "Macro",
  8439. height: math.unit(111, "foot"),
  8440. default: true
  8441. },
  8442. {
  8443. name: "Supracosmic",
  8444. height: math.unit(1e42, "feet")
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(5, "inches"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/amanda/front.svg",
  8456. extra: 926/791,
  8457. bottom: 38/964
  8458. }
  8459. },
  8460. back: {
  8461. height: math.unit(5, "inches"),
  8462. name: "Back",
  8463. image: {
  8464. source: "./media/characters/amanda/back.svg",
  8465. extra: 909/805,
  8466. bottom: 43/952
  8467. }
  8468. },
  8469. },
  8470. [
  8471. {
  8472. name: "Micro",
  8473. height: math.unit(5, "inches"),
  8474. default: true
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(2.75, "meters"),
  8483. weight: math.unit(1200, "lb"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/teal/front.svg",
  8487. extra: 2463 / 2320,
  8488. bottom: 166 / 2629
  8489. }
  8490. },
  8491. back: {
  8492. height: math.unit(2.75, "meters"),
  8493. weight: math.unit(1200, "lb"),
  8494. name: "Back",
  8495. image: {
  8496. source: "./media/characters/teal/back.svg",
  8497. extra: 2580 / 2489,
  8498. bottom: 151 / 2731
  8499. }
  8500. },
  8501. sitting: {
  8502. height: math.unit(1.9, "meters"),
  8503. weight: math.unit(1200, "lb"),
  8504. name: "Sitting",
  8505. image: {
  8506. source: "./media/characters/teal/sitting.svg",
  8507. extra: 623 / 590,
  8508. bottom: 121 / 744
  8509. }
  8510. },
  8511. standing: {
  8512. height: math.unit(2.75, "meters"),
  8513. weight: math.unit(1200, "lb"),
  8514. name: "Standing",
  8515. image: {
  8516. source: "./media/characters/teal/standing.svg",
  8517. extra: 923 / 893,
  8518. bottom: 60 / 983
  8519. }
  8520. },
  8521. stretching: {
  8522. height: math.unit(3.65, "meters"),
  8523. weight: math.unit(1200, "lb"),
  8524. name: "Stretching",
  8525. image: {
  8526. source: "./media/characters/teal/stretching.svg",
  8527. extra: 1276 / 1244,
  8528. bottom: 0 / 1276
  8529. }
  8530. },
  8531. legged: {
  8532. height: math.unit(1.3, "meters"),
  8533. weight: math.unit(100, "lb"),
  8534. name: "Legged",
  8535. image: {
  8536. source: "./media/characters/teal/legged.svg",
  8537. extra: 462 / 437,
  8538. bottom: 24 / 486
  8539. }
  8540. },
  8541. naga: {
  8542. height: math.unit(5.4, "meters"),
  8543. weight: math.unit(4000, "lb"),
  8544. name: "Naga",
  8545. image: {
  8546. source: "./media/characters/teal/naga.svg",
  8547. extra: 1902 / 1858,
  8548. bottom: 0 / 1902
  8549. }
  8550. },
  8551. hand: {
  8552. height: math.unit(0.52, "meters"),
  8553. name: "Hand",
  8554. image: {
  8555. source: "./media/characters/teal/hand.svg"
  8556. }
  8557. },
  8558. maw: {
  8559. height: math.unit(0.43, "meters"),
  8560. name: "Maw",
  8561. image: {
  8562. source: "./media/characters/teal/maw.svg"
  8563. }
  8564. },
  8565. slit: {
  8566. height: math.unit(0.25, "meters"),
  8567. name: "Slit",
  8568. image: {
  8569. source: "./media/characters/teal/slit.svg"
  8570. }
  8571. },
  8572. },
  8573. [
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(2.75, "meters"),
  8577. default: true
  8578. },
  8579. {
  8580. name: "Macro",
  8581. height: math.unit(300, "feet")
  8582. },
  8583. {
  8584. name: "Macro+",
  8585. height: math.unit(2000, "feet")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8591. {
  8592. frontCat: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(180, "lbs"),
  8595. name: "Front (Cat)",
  8596. image: {
  8597. source: "./media/characters/ravin-amulet/front-cat.svg"
  8598. }
  8599. },
  8600. frontCatAlt: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(180, "lbs"),
  8603. name: "Front (Alt, Cat)",
  8604. image: {
  8605. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8606. }
  8607. },
  8608. frontWerewolf: {
  8609. height: math.unit(6 * 1.2, "feet"),
  8610. weight: math.unit(225, "lbs"),
  8611. name: "Front (Werewolf)",
  8612. image: {
  8613. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8614. }
  8615. },
  8616. backWerewolf: {
  8617. height: math.unit(6 * 1.2, "feet"),
  8618. weight: math.unit(225, "lbs"),
  8619. name: "Back (Werewolf)",
  8620. image: {
  8621. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Nano",
  8628. height: math.unit(1, "micrometer")
  8629. },
  8630. {
  8631. name: "Micro",
  8632. height: math.unit(1, "inch")
  8633. },
  8634. {
  8635. name: "Normal",
  8636. height: math.unit(6, "feet"),
  8637. default: true
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(60, "feet")
  8642. }
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(6, "feet"),
  8650. weight: math.unit(165, "lbs"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/fluoresce/front.svg"
  8654. }
  8655. }
  8656. },
  8657. [
  8658. {
  8659. name: "Micro",
  8660. height: math.unit(6, "cm")
  8661. },
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(5 + 7 / 12, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Macro",
  8669. height: math.unit(56, "feet")
  8670. },
  8671. {
  8672. name: "Megamacro",
  8673. height: math.unit(1.9, "miles")
  8674. },
  8675. ]
  8676. ))
  8677. characterMakers.push(() => makeCharacter(
  8678. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8679. {
  8680. front: {
  8681. height: math.unit(9 + 6 / 12, "feet"),
  8682. weight: math.unit(523, "lbs"),
  8683. name: "Side",
  8684. image: {
  8685. source: "./media/characters/aurora/side.svg",
  8686. extra: 474/393,
  8687. bottom: 5/479
  8688. }
  8689. }
  8690. },
  8691. [
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(9 + 6 / 12, "feet")
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(96, "feet"),
  8699. default: true
  8700. },
  8701. {
  8702. name: "Macro+",
  8703. height: math.unit(243, "feet")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(194, "cm"),
  8712. weight: math.unit(90, "kg"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/ranek/front.svg",
  8716. extra: 1862/1791,
  8717. bottom: 80/1942
  8718. }
  8719. },
  8720. back: {
  8721. height: math.unit(194, "cm"),
  8722. weight: math.unit(90, "kg"),
  8723. name: "Back",
  8724. image: {
  8725. source: "./media/characters/ranek/back.svg",
  8726. extra: 1853/1787,
  8727. bottom: 74/1927
  8728. }
  8729. },
  8730. feral: {
  8731. height: math.unit(30, "cm"),
  8732. weight: math.unit(1.6, "lbs"),
  8733. name: "Feral",
  8734. image: {
  8735. source: "./media/characters/ranek/feral.svg",
  8736. extra: 990/631,
  8737. bottom: 29/1019
  8738. }
  8739. },
  8740. },
  8741. [
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(194, "cm"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(100, "meters")
  8750. },
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(5 + 6 / 12, "feet"),
  8758. weight: math.unit(153, "lbs"),
  8759. name: "Front",
  8760. image: {
  8761. source: "./media/characters/andrew-cooper/front.svg"
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Nano",
  8768. height: math.unit(1, "mm")
  8769. },
  8770. {
  8771. name: "Micro",
  8772. height: math.unit(2, "inches")
  8773. },
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(5 + 6 / 12, "feet"),
  8777. default: true
  8778. }
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(180, "lbs"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/akane-sato/front.svg",
  8790. extra: 1219 / 1140
  8791. }
  8792. },
  8793. back: {
  8794. height: math.unit(6, "feet"),
  8795. weight: math.unit(180, "lbs"),
  8796. name: "Back",
  8797. image: {
  8798. source: "./media/characters/akane-sato/back.svg",
  8799. extra: 1219 / 1170
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(2.5, "meters")
  8807. },
  8808. {
  8809. name: "Macro",
  8810. height: math.unit(250, "meters"),
  8811. default: true
  8812. },
  8813. {
  8814. name: "Megamacro",
  8815. height: math.unit(25, "km")
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(65, "kg"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/rook/front.svg",
  8828. extra: 960 / 950
  8829. }
  8830. }
  8831. },
  8832. [
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(8.8, "feet")
  8836. },
  8837. {
  8838. name: "Macro",
  8839. height: math.unit(88, "feet"),
  8840. default: true
  8841. },
  8842. {
  8843. name: "Megamacro",
  8844. height: math.unit(8, "miles")
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(12 + 2 / 12, "feet"),
  8853. weight: math.unit(808, "lbs"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/prodigy/front.svg"
  8857. }
  8858. }
  8859. },
  8860. [
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(12 + 2 / 12, "feet"),
  8864. default: true
  8865. },
  8866. {
  8867. name: "Macro",
  8868. height: math.unit(143, "feet")
  8869. },
  8870. {
  8871. name: "Macro+",
  8872. height: math.unit(400, "feet")
  8873. },
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8878. {
  8879. front: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(225, "lbs"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/daniel/front.svg"
  8885. }
  8886. },
  8887. leaning: {
  8888. height: math.unit(6, "feet"),
  8889. weight: math.unit(225, "lbs"),
  8890. name: "Leaning",
  8891. image: {
  8892. source: "./media/characters/daniel/leaning.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(1000, "feet"),
  8900. default: true
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(88, "lbs"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/chiros/front.svg",
  8913. extra: 306 / 226
  8914. }
  8915. },
  8916. side: {
  8917. height: math.unit(6, "feet"),
  8918. weight: math.unit(88, "lbs"),
  8919. name: "Side",
  8920. image: {
  8921. source: "./media/characters/chiros/side.svg",
  8922. extra: 306 / 226
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(6, "cm"),
  8930. default: true
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8936. {
  8937. front: {
  8938. height: math.unit(6, "feet"),
  8939. weight: math.unit(100, "lbs"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/selka/front.svg",
  8943. extra: 947 / 887
  8944. }
  8945. }
  8946. },
  8947. [
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(5, "cm"),
  8951. default: true
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(8 + 3 / 12, "feet"),
  8960. weight: math.unit(424, "lbs"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/verin/front.svg",
  8964. extra: 1845 / 1550
  8965. }
  8966. },
  8967. frontArmored: {
  8968. height: math.unit(8 + 3 / 12, "feet"),
  8969. weight: math.unit(424, "lbs"),
  8970. name: "Front (Armored)",
  8971. image: {
  8972. source: "./media/characters/verin/front-armor.svg",
  8973. extra: 1845 / 1550,
  8974. bottom: 0.01
  8975. }
  8976. },
  8977. back: {
  8978. height: math.unit(8 + 3 / 12, "feet"),
  8979. weight: math.unit(424, "lbs"),
  8980. name: "Back",
  8981. image: {
  8982. source: "./media/characters/verin/back.svg",
  8983. bottom: 0.1,
  8984. extra: 1
  8985. }
  8986. },
  8987. foot: {
  8988. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8989. name: "Foot",
  8990. image: {
  8991. source: "./media/characters/verin/foot.svg"
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Normal",
  8998. height: math.unit(8 + 3 / 12, "feet")
  8999. },
  9000. {
  9001. name: "Minimacro",
  9002. height: math.unit(21, "feet"),
  9003. default: true
  9004. },
  9005. {
  9006. name: "Macro",
  9007. height: math.unit(626, "feet")
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(2.718, "meters"),
  9016. weight: math.unit(150, "lbs"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/sovrim-terraquian/front.svg",
  9020. extra: 1752/1689,
  9021. bottom: 36/1788
  9022. }
  9023. },
  9024. back: {
  9025. height: math.unit(2.718, "meters"),
  9026. weight: math.unit(150, "lbs"),
  9027. name: "Back",
  9028. image: {
  9029. source: "./media/characters/sovrim-terraquian/back.svg",
  9030. extra: 1698/1657,
  9031. bottom: 58/1756
  9032. }
  9033. },
  9034. tongue: {
  9035. height: math.unit(2.865, "feet"),
  9036. name: "Tongue",
  9037. image: {
  9038. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9039. }
  9040. },
  9041. hand: {
  9042. height: math.unit(1.61, "feet"),
  9043. name: "Hand",
  9044. image: {
  9045. source: "./media/characters/sovrim-terraquian/hand.svg"
  9046. }
  9047. },
  9048. foot: {
  9049. height: math.unit(1.05, "feet"),
  9050. name: "Foot",
  9051. image: {
  9052. source: "./media/characters/sovrim-terraquian/foot.svg"
  9053. }
  9054. },
  9055. footAlt: {
  9056. height: math.unit(0.88, "feet"),
  9057. name: "Foot (Alt)",
  9058. image: {
  9059. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Micro",
  9066. height: math.unit(2, "inches")
  9067. },
  9068. {
  9069. name: "Small",
  9070. height: math.unit(1, "meter")
  9071. },
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(Math.E, "meters"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Macro",
  9079. height: math.unit(20, "meters")
  9080. },
  9081. {
  9082. name: "Macro+",
  9083. height: math.unit(400, "meters")
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(7, "feet"),
  9092. weight: math.unit(489, "lbs"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/reece-silvermane/front.svg",
  9096. bottom: 0.02,
  9097. extra: 1
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Macro",
  9104. height: math.unit(1.5, "miles"),
  9105. default: true
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(78, "kg"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/kane/front.svg",
  9118. extra: 978 / 899
  9119. }
  9120. },
  9121. back: {
  9122. height: math.unit(6, "feet"),
  9123. weight: math.unit(78, "kg"),
  9124. name: "Back",
  9125. image: {
  9126. source: "./media/characters/kane/back.svg",
  9127. extra: 1966/1800,
  9128. bottom: 0/1966
  9129. }
  9130. },
  9131. head: {
  9132. height: math.unit(1.4, "feet"),
  9133. name: "Head",
  9134. image: {
  9135. source: "./media/characters/kane/head.svg"
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(2.1, "m"),
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(1, "km"),
  9147. default: true
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(6, "feet"),
  9156. weight: math.unit(200, "kg"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/tegon/front.svg",
  9160. bottom: 0.01,
  9161. extra: 1
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Micro",
  9168. height: math.unit(1, "inch")
  9169. },
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(6 + 3 / 12, "feet"),
  9173. default: true
  9174. },
  9175. {
  9176. name: "Macro",
  9177. height: math.unit(300, "feet")
  9178. },
  9179. {
  9180. name: "Megamacro",
  9181. height: math.unit(69, "miles")
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9187. {
  9188. side: {
  9189. height: math.unit(6, "feet"),
  9190. weight: math.unit(2304, "lbs"),
  9191. name: "Side",
  9192. image: {
  9193. source: "./media/characters/arcturax/side.svg",
  9194. extra: 790 / 376,
  9195. bottom: 0.01
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Micro",
  9202. height: math.unit(2, "inch")
  9203. },
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(6, "feet")
  9207. },
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(39, "feet"),
  9211. default: true
  9212. },
  9213. {
  9214. name: "Megamacro",
  9215. height: math.unit(7, "miles")
  9216. },
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(6, "feet"),
  9224. weight: math.unit(50, "lbs"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/sentri/front.svg",
  9228. extra: 1750 / 1570,
  9229. bottom: 0.025
  9230. }
  9231. },
  9232. frontAlt: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(50, "lbs"),
  9235. name: "Front (Alt)",
  9236. image: {
  9237. source: "./media/characters/sentri/front-alt.svg",
  9238. extra: 1750 / 1570,
  9239. bottom: 0.025
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Normal",
  9246. height: math.unit(15, "feet"),
  9247. default: true
  9248. },
  9249. {
  9250. name: "Macro",
  9251. height: math.unit(2500, "feet")
  9252. }
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(5 + 8 / 12, "feet"),
  9260. weight: math.unit(130, "lbs"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/corvin/front.svg",
  9264. extra: 1803 / 1629
  9265. }
  9266. },
  9267. frontShirt: {
  9268. height: math.unit(5 + 8 / 12, "feet"),
  9269. weight: math.unit(130, "lbs"),
  9270. name: "Front (Shirt)",
  9271. image: {
  9272. source: "./media/characters/corvin/front-shirt.svg",
  9273. extra: 1803 / 1629
  9274. }
  9275. },
  9276. frontPoncho: {
  9277. height: math.unit(5 + 8 / 12, "feet"),
  9278. weight: math.unit(130, "lbs"),
  9279. name: "Front (Poncho)",
  9280. image: {
  9281. source: "./media/characters/corvin/front-poncho.svg",
  9282. extra: 1803 / 1629
  9283. }
  9284. },
  9285. side: {
  9286. height: math.unit(5 + 8 / 12, "feet"),
  9287. weight: math.unit(130, "lbs"),
  9288. name: "Side",
  9289. image: {
  9290. source: "./media/characters/corvin/side.svg",
  9291. extra: 1012 / 945
  9292. }
  9293. },
  9294. back: {
  9295. height: math.unit(5 + 8 / 12, "feet"),
  9296. weight: math.unit(130, "lbs"),
  9297. name: "Back",
  9298. image: {
  9299. source: "./media/characters/corvin/back.svg",
  9300. extra: 1803 / 1629
  9301. }
  9302. },
  9303. },
  9304. [
  9305. {
  9306. name: "Micro",
  9307. height: math.unit(3, "inches")
  9308. },
  9309. {
  9310. name: "Normal",
  9311. height: math.unit(5 + 8 / 12, "feet")
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(300, "feet"),
  9316. default: true
  9317. },
  9318. {
  9319. name: "Megamacro",
  9320. height: math.unit(500, "miles")
  9321. }
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9326. {
  9327. front: {
  9328. height: math.unit(6, "feet"),
  9329. weight: math.unit(135, "lbs"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/q/front.svg",
  9333. extra: 854 / 752,
  9334. bottom: 0.005
  9335. }
  9336. },
  9337. back: {
  9338. height: math.unit(6, "feet"),
  9339. weight: math.unit(130, "lbs"),
  9340. name: "Back",
  9341. image: {
  9342. source: "./media/characters/q/back.svg",
  9343. extra: 854 / 752
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Macro",
  9350. height: math.unit(90, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Extra Macro",
  9355. height: math.unit(300, "feet"),
  9356. },
  9357. {
  9358. name: "BIG WALF",
  9359. height: math.unit(750, "feet"),
  9360. },
  9361. ]
  9362. ))
  9363. characterMakers.push(() => makeCharacter(
  9364. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9365. {
  9366. front: {
  9367. height: math.unit(3, "feet"),
  9368. weight: math.unit(28, "lbs"),
  9369. name: "Front",
  9370. image: {
  9371. source: "./media/characters/citrine/front.svg"
  9372. }
  9373. }
  9374. },
  9375. [
  9376. {
  9377. name: "Normal",
  9378. height: math.unit(3, "feet"),
  9379. default: true
  9380. }
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9385. {
  9386. front: {
  9387. height: math.unit(14, "feet"),
  9388. weight: math.unit(1450, "kg"),
  9389. preyCapacity: math.unit(15, "people"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/aura-starwind/front.svg",
  9393. extra: 1440/1327,
  9394. bottom: 11/1451
  9395. }
  9396. },
  9397. side: {
  9398. height: math.unit(14, "feet"),
  9399. weight: math.unit(1450, "kg"),
  9400. preyCapacity: math.unit(15, "people"),
  9401. name: "Side",
  9402. image: {
  9403. source: "./media/characters/aura-starwind/side.svg",
  9404. extra: 1654 / 1497
  9405. }
  9406. },
  9407. taur: {
  9408. height: math.unit(18, "feet"),
  9409. weight: math.unit(5500, "kg"),
  9410. preyCapacity: math.unit(50, "people"),
  9411. name: "Taur",
  9412. image: {
  9413. source: "./media/characters/aura-starwind/taur.svg",
  9414. extra: 1760 / 1650
  9415. }
  9416. },
  9417. feral: {
  9418. height: math.unit(46, "feet"),
  9419. weight: math.unit(25000, "kg"),
  9420. preyCapacity: math.unit(120, "people"),
  9421. name: "Feral",
  9422. image: {
  9423. source: "./media/characters/aura-starwind/feral.svg"
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(14, "feet"),
  9431. default: true
  9432. },
  9433. {
  9434. name: "Macro",
  9435. height: math.unit(50, "meters")
  9436. },
  9437. {
  9438. name: "Megamacro",
  9439. height: math.unit(5000, "meters")
  9440. },
  9441. {
  9442. name: "Gigamacro",
  9443. height: math.unit(100000, "kilometers")
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(2 + 7 / 12, "feet"),
  9452. weight: math.unit(32, "lbs"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/rivet/front.svg",
  9456. extra: 1716 / 1658,
  9457. bottom: 0.03
  9458. }
  9459. },
  9460. foot: {
  9461. height: math.unit(0.551, "feet"),
  9462. name: "Rivet's Foot",
  9463. image: {
  9464. source: "./media/characters/rivet/foot.svg"
  9465. },
  9466. rename: true
  9467. }
  9468. },
  9469. [
  9470. {
  9471. name: "Micro",
  9472. height: math.unit(1.5, "inches"),
  9473. },
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(2 + 7 / 12, "feet"),
  9477. default: true
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(85, "feet")
  9482. },
  9483. {
  9484. name: "Megamacro",
  9485. height: math.unit(2.2, "km")
  9486. }
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(5 + 9 / 12, "feet"),
  9494. weight: math.unit(150, "lbs"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/coffee/front.svg",
  9498. extra: 946/880,
  9499. bottom: 66/1012
  9500. }
  9501. },
  9502. foot: {
  9503. height: math.unit(1.29, "feet"),
  9504. name: "Foot",
  9505. image: {
  9506. source: "./media/characters/coffee/foot.svg"
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inches"),
  9514. },
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(5 + 9 / 12, "feet"),
  9518. default: true
  9519. },
  9520. {
  9521. name: "Macro",
  9522. height: math.unit(800, "feet")
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(25, "miles")
  9527. }
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(200, "lbs"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/chari-gal/front.svg",
  9539. extra: 735/649,
  9540. bottom: 55/790
  9541. },
  9542. form: "normal",
  9543. default: true
  9544. },
  9545. back: {
  9546. height: math.unit(6, "feet"),
  9547. weight: math.unit(200, "lb"),
  9548. name: "Back",
  9549. image: {
  9550. source: "./media/characters/chari-gal/back.svg",
  9551. extra: 762/666,
  9552. bottom: 31/793
  9553. },
  9554. form: "normal"
  9555. },
  9556. mouth: {
  9557. height: math.unit(1.35, "feet"),
  9558. name: "Mouth",
  9559. image: {
  9560. source: "./media/characters/chari-gal/mouth.svg"
  9561. },
  9562. form: "normal"
  9563. },
  9564. gigantamax: {
  9565. height: math.unit(6 * 16, "feet"),
  9566. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9567. name: "Gigantamax",
  9568. image: {
  9569. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9570. extra: 1507/1149,
  9571. bottom: 254/1761
  9572. },
  9573. form: "gigantamax",
  9574. default: true
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(5 + 7 / 12, "feet"),
  9581. form: "normal",
  9582. },
  9583. {
  9584. name: "Macro",
  9585. height: math.unit(200, "feet"),
  9586. default: true,
  9587. form: "normal"
  9588. },
  9589. {
  9590. name: "Normal",
  9591. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9592. form: "gigantamax",
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(16 * 200, "feet"),
  9597. default: true,
  9598. form: "gigantamax"
  9599. },
  9600. ],
  9601. {
  9602. "normal": {
  9603. name: "Normal",
  9604. default: true
  9605. },
  9606. "gigantamax": {
  9607. name: "Gigantamax",
  9608. },
  9609. }
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(6, "feet"),
  9616. weight: math.unit(150, "lbs"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/nova/front.svg",
  9620. extra: 5000 / 4722,
  9621. bottom: 0.02
  9622. }
  9623. }
  9624. },
  9625. [
  9626. {
  9627. name: "Micro-",
  9628. height: math.unit(0.8, "inches")
  9629. },
  9630. {
  9631. name: "Micro",
  9632. height: math.unit(2, "inches"),
  9633. default: true
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9639. {
  9640. koboldFront: {
  9641. height: math.unit(3 + 1 / 12, "feet"),
  9642. weight: math.unit(21.7, "lbs"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/argent/kobold-front.svg",
  9646. extra: 1471 / 1331,
  9647. bottom: 100.8 / 1575.5
  9648. },
  9649. form: "kobold",
  9650. default: true
  9651. },
  9652. dragonFront: {
  9653. height: math.unit(75, "inches"),
  9654. name: "Front",
  9655. image: {
  9656. source: "./media/characters/argent/dragon-front.svg",
  9657. extra: 1389/1248,
  9658. bottom: 54/1443
  9659. },
  9660. form: "dragon",
  9661. },
  9662. dragonBack: {
  9663. height: math.unit(75, "inches"),
  9664. name: "Back",
  9665. image: {
  9666. source: "./media/characters/argent/dragon-back.svg",
  9667. extra: 1399/1271,
  9668. bottom: 23/1422
  9669. },
  9670. form: "dragon",
  9671. },
  9672. dragonDressed: {
  9673. height: math.unit(75, "inches"),
  9674. name: "Dressed",
  9675. image: {
  9676. source: "./media/characters/argent/dragon-dressed.svg",
  9677. extra: 1350/1215,
  9678. bottom: 26/1376
  9679. },
  9680. form: "dragon"
  9681. },
  9682. dragonHead: {
  9683. height: math.unit(23.5, "inches"),
  9684. name: "Head",
  9685. image: {
  9686. source: "./media/characters/argent/dragon-head.svg"
  9687. },
  9688. form: "dragon",
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Micro",
  9694. height: math.unit(2, "inches"),
  9695. form: "kobold",
  9696. },
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(3 + 1 / 12, "feet"),
  9700. form: "kobold",
  9701. default: true
  9702. },
  9703. {
  9704. name: "Macro",
  9705. height: math.unit(120, "feet"),
  9706. form: "kobold",
  9707. },
  9708. {
  9709. name: "Speck",
  9710. height: math.unit(1, "mm"),
  9711. form: "dragon",
  9712. },
  9713. {
  9714. name: "Tiny",
  9715. height: math.unit(1, "cm"),
  9716. form: "dragon",
  9717. },
  9718. {
  9719. name: "Micro",
  9720. height: math.unit(5, "cm"),
  9721. form: "dragon",
  9722. },
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(75, "inches"),
  9726. form: "dragon",
  9727. default: true
  9728. },
  9729. {
  9730. name: "Extra Tall",
  9731. height: math.unit(9, "feet"),
  9732. form: "dragon",
  9733. },
  9734. {
  9735. name: "Inconvenient",
  9736. height: math.unit(5, "meters"),
  9737. form: "dragon",
  9738. },
  9739. {
  9740. name: "Macro",
  9741. height: math.unit(70, "meters"),
  9742. form: "dragon",
  9743. },
  9744. {
  9745. name: "Macro+",
  9746. height: math.unit(250, "meters"),
  9747. form: "dragon",
  9748. },
  9749. {
  9750. name: "Megamacro",
  9751. height: math.unit(20, "km"),
  9752. form: "dragon",
  9753. },
  9754. {
  9755. name: "Mountainous",
  9756. height: math.unit(100, "km"),
  9757. form: "dragon",
  9758. },
  9759. {
  9760. name: "Continental",
  9761. height: math.unit(2, "megameters"),
  9762. form: "dragon",
  9763. },
  9764. {
  9765. name: "Too Big",
  9766. height: math.unit(900, "megameters"),
  9767. form: "dragon",
  9768. },
  9769. ],
  9770. {
  9771. "kobold": {
  9772. name: "Kobold",
  9773. default: true
  9774. },
  9775. "dragon": {
  9776. name: "Dragon",
  9777. },
  9778. }
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9782. {
  9783. lamp: {
  9784. height: math.unit(7 * 1559 / 989, "feet"),
  9785. name: "Magic Lamp",
  9786. image: {
  9787. source: "./media/characters/mira-al-cul/lamp.svg",
  9788. extra: 1617 / 1559
  9789. }
  9790. },
  9791. front: {
  9792. height: math.unit(7, "feet"),
  9793. name: "Front",
  9794. image: {
  9795. source: "./media/characters/mira-al-cul/front.svg",
  9796. extra: 1044 / 990
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Heavily Restricted",
  9803. height: math.unit(7 * 1559 / 989, "feet")
  9804. },
  9805. {
  9806. name: "Freshly Freed",
  9807. height: math.unit(50 * 1559 / 989, "feet")
  9808. },
  9809. {
  9810. name: "World Encompassing",
  9811. height: math.unit(10000 * 1559 / 989, "miles")
  9812. },
  9813. {
  9814. name: "Galactic",
  9815. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9816. },
  9817. {
  9818. name: "Palmed Universe",
  9819. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9820. default: true
  9821. },
  9822. {
  9823. name: "Multiversal Matriarch",
  9824. height: math.unit(8.87e10, "yottameters")
  9825. },
  9826. {
  9827. name: "Void Mother",
  9828. height: math.unit(3.14e110, "yottaparsecs")
  9829. },
  9830. {
  9831. name: "Toying with Transcendence",
  9832. height: math.unit(1e307, "meters")
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9838. {
  9839. front: {
  9840. height: math.unit(17 + 1 / 12, "feet"),
  9841. weight: math.unit(476.2 * 5, "lbs"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/kuro-shi-uchū/front.svg",
  9845. extra: 2329 / 1835,
  9846. bottom: 0.02
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Micro",
  9853. height: math.unit(2, "inches")
  9854. },
  9855. {
  9856. name: "Normal",
  9857. height: math.unit(12, "meters")
  9858. },
  9859. {
  9860. name: "Planetary",
  9861. height: math.unit(0.00929, "AU"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Universal",
  9866. height: math.unit(20, "gigaparsecs")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(5 + 2 / 12, "feet"),
  9875. weight: math.unit(120, "lbs"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/katherine/front.svg",
  9879. extra: 2075 / 1969
  9880. }
  9881. },
  9882. dress: {
  9883. height: math.unit(5 + 2 / 12, "feet"),
  9884. weight: math.unit(120, "lbs"),
  9885. name: "Dress",
  9886. image: {
  9887. source: "./media/characters/katherine/dress.svg",
  9888. extra: 2258 / 2064
  9889. }
  9890. },
  9891. },
  9892. [
  9893. {
  9894. name: "Micro",
  9895. height: math.unit(1, "inches"),
  9896. default: true
  9897. },
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(5 + 2 / 12, "feet")
  9901. },
  9902. {
  9903. name: "Macro",
  9904. height: math.unit(100, "meters")
  9905. },
  9906. {
  9907. name: "Megamacro",
  9908. height: math.unit(80, "miles")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(7 + 8 / 12, "feet"),
  9917. weight: math.unit(250, "lbs"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/yevis/front.svg",
  9921. extra: 1938 / 1755
  9922. }
  9923. }
  9924. },
  9925. [
  9926. {
  9927. name: "Mortal",
  9928. height: math.unit(7 + 8 / 12, "feet")
  9929. },
  9930. {
  9931. name: "Battle",
  9932. height: math.unit(25 + 11 / 12, "feet")
  9933. },
  9934. {
  9935. name: "Wrath",
  9936. height: math.unit(1654 + 11 / 12, "feet")
  9937. },
  9938. {
  9939. name: "Planet Destroyer",
  9940. height: math.unit(12000, "miles")
  9941. },
  9942. {
  9943. name: "Galaxy Conqueror",
  9944. height: math.unit(1.45, "zettameters"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Universal War",
  9949. height: math.unit(184, "gigaparsecs")
  9950. },
  9951. {
  9952. name: "Eternity War",
  9953. height: math.unit(1.98e55, "yottaparsecs")
  9954. },
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(5 + 8 / 12, "feet"),
  9962. weight: math.unit(63, "kg"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/xavier/front.svg",
  9966. extra: 944 / 883
  9967. }
  9968. },
  9969. frontStretch: {
  9970. height: math.unit(5 + 8 / 12, "feet"),
  9971. weight: math.unit(63, "kg"),
  9972. name: "Stretching",
  9973. image: {
  9974. source: "./media/characters/xavier/front-stretch.svg",
  9975. extra: 962 / 820
  9976. }
  9977. },
  9978. },
  9979. [
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(5 + 8 / 12, "feet")
  9983. },
  9984. {
  9985. name: "Macro",
  9986. height: math.unit(100, "meters"),
  9987. default: true
  9988. },
  9989. {
  9990. name: "McLargeHuge",
  9991. height: math.unit(10, "miles")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(5 + 5 / 12, "feet"),
  10000. weight: math.unit(150, "lb"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/joshii/front.svg",
  10004. extra: 765 / 653,
  10005. bottom: 51 / 816
  10006. }
  10007. },
  10008. foot: {
  10009. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10010. name: "Foot",
  10011. image: {
  10012. source: "./media/characters/joshii/foot.svg"
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Micro",
  10019. height: math.unit(2, "inches")
  10020. },
  10021. {
  10022. name: "Normal",
  10023. height: math.unit(5 + 5 / 12, "feet")
  10024. },
  10025. {
  10026. name: "Macro",
  10027. height: math.unit(785, "feet"),
  10028. default: true
  10029. },
  10030. {
  10031. name: "Megamacro",
  10032. height: math.unit(24.5, "miles")
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10038. {
  10039. front: {
  10040. height: math.unit(6, "feet"),
  10041. weight: math.unit(150, "lb"),
  10042. name: "Front",
  10043. image: {
  10044. source: "./media/characters/goddess-elizabeth/front.svg",
  10045. extra: 1800 / 1525,
  10046. bottom: 0.005
  10047. }
  10048. },
  10049. foot: {
  10050. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10051. name: "Foot",
  10052. image: {
  10053. source: "./media/characters/goddess-elizabeth/foot.svg"
  10054. }
  10055. },
  10056. mouth: {
  10057. height: math.unit(6, "feet"),
  10058. name: "Mouth",
  10059. image: {
  10060. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Micro",
  10067. height: math.unit(12, "feet")
  10068. },
  10069. {
  10070. name: "Normal",
  10071. height: math.unit(80, "miles"),
  10072. default: true
  10073. },
  10074. {
  10075. name: "Macro",
  10076. height: math.unit(15000, "parsecs")
  10077. },
  10078. ]
  10079. ))
  10080. characterMakers.push(() => makeCharacter(
  10081. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10082. {
  10083. front: {
  10084. height: math.unit(5 + 9 / 12, "feet"),
  10085. weight: math.unit(144, "lb"),
  10086. name: "Front",
  10087. image: {
  10088. source: "./media/characters/kara/front.svg"
  10089. }
  10090. },
  10091. feet: {
  10092. height: math.unit(6 / 6.765, "feet"),
  10093. name: "Kara's Feet",
  10094. rename: true,
  10095. image: {
  10096. source: "./media/characters/kara/feet.svg"
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(5 + 9 / 12, "feet")
  10104. },
  10105. {
  10106. name: "Macro",
  10107. height: math.unit(174, "feet"),
  10108. default: true
  10109. },
  10110. ]
  10111. ))
  10112. characterMakers.push(() => makeCharacter(
  10113. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10114. {
  10115. front: {
  10116. height: math.unit(18, "feet"),
  10117. weight: math.unit(4050, "lb"),
  10118. name: "Front",
  10119. image: {
  10120. source: "./media/characters/tyrone/front.svg",
  10121. extra: 2405 / 2270,
  10122. bottom: 182 / 2587
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(18, "feet"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Macro",
  10134. height: math.unit(300, "feet")
  10135. },
  10136. {
  10137. name: "Megamacro",
  10138. height: math.unit(15, "km")
  10139. },
  10140. {
  10141. name: "Gigamacro",
  10142. height: math.unit(500, "km")
  10143. },
  10144. {
  10145. name: "Teramacro",
  10146. height: math.unit(0.5, "gigameters")
  10147. },
  10148. {
  10149. name: "Omnimacro",
  10150. height: math.unit(1e252, "yottauniverse")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(7 + 8 / 12, "feet"),
  10159. weight: math.unit(120, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/danny/front.svg",
  10163. extra: 1490 / 1350
  10164. }
  10165. },
  10166. back: {
  10167. height: math.unit(7 + 8 / 12, "feet"),
  10168. weight: math.unit(120, "lb"),
  10169. name: "Back",
  10170. image: {
  10171. source: "./media/characters/danny/back.svg",
  10172. extra: 1490 / 1350
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(7 + 8 / 12, "feet"),
  10180. default: true
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(3.5, "inches"),
  10189. weight: math.unit(19, "grams"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/mallow/front.svg",
  10193. extra: 471 / 431
  10194. }
  10195. },
  10196. back: {
  10197. height: math.unit(3.5, "inches"),
  10198. weight: math.unit(19, "grams"),
  10199. name: "Back",
  10200. image: {
  10201. source: "./media/characters/mallow/back.svg",
  10202. extra: 471 / 431
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(3.5, "inches"),
  10210. default: true
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(9, "feet"),
  10219. weight: math.unit(230, "kg"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/starry-aqua/front.svg"
  10223. }
  10224. },
  10225. back: {
  10226. height: math.unit(9, "feet"),
  10227. weight: math.unit(230, "kg"),
  10228. name: "Back",
  10229. image: {
  10230. source: "./media/characters/starry-aqua/back.svg"
  10231. }
  10232. },
  10233. hand: {
  10234. height: math.unit(9 * 0.1168, "feet"),
  10235. name: "Hand",
  10236. image: {
  10237. source: "./media/characters/starry-aqua/hand.svg"
  10238. }
  10239. },
  10240. foot: {
  10241. height: math.unit(9 * 0.18, "feet"),
  10242. name: "Foot",
  10243. image: {
  10244. source: "./media/characters/starry-aqua/foot.svg"
  10245. }
  10246. }
  10247. },
  10248. [
  10249. {
  10250. name: "Micro",
  10251. height: math.unit(3, "inches")
  10252. },
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(9, "feet")
  10256. },
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(300, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Megamacro",
  10264. height: math.unit(3200, "feet")
  10265. }
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(15, "feet"),
  10273. weight: math.unit(5026, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/luka-towers/front.svg",
  10277. extra: 1269/1133,
  10278. bottom: 51/1320
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(15, "feet"),
  10286. default: true
  10287. },
  10288. {
  10289. name: "Minimacro",
  10290. height: math.unit(25, "feet")
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(320, "feet")
  10295. },
  10296. {
  10297. name: "Megamacro",
  10298. height: math.unit(35000, "feet")
  10299. },
  10300. {
  10301. name: "Gigamacro",
  10302. height: math.unit(4000, "miles")
  10303. },
  10304. {
  10305. name: "Teramacro",
  10306. height: math.unit(15000, "miles")
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(6, "feet"),
  10315. weight: math.unit(150, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/natalie-nightring/front.svg",
  10319. extra: 1,
  10320. bottom: 0.06
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Uh Oh",
  10327. height: math.unit(0.1, "mm")
  10328. },
  10329. {
  10330. name: "Small",
  10331. height: math.unit(3, "inches")
  10332. },
  10333. {
  10334. name: "Human Scale",
  10335. height: math.unit(6, "feet")
  10336. },
  10337. {
  10338. name: "Librarian",
  10339. height: math.unit(50, "feet"),
  10340. default: true
  10341. },
  10342. {
  10343. name: "Immense",
  10344. height: math.unit(200, "miles")
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(180, "lbs"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/danni-rosie/front.svg",
  10357. extra: 1260 / 1128,
  10358. bottom: 0.022
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Micro",
  10365. height: math.unit(2, "inches"),
  10366. default: true
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(5 + 9 / 12, "feet"),
  10375. weight: math.unit(220, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/samantha-kruse/front.svg",
  10379. extra: (985 / 935),
  10380. bottom: 0.03
  10381. }
  10382. },
  10383. frontUndressed: {
  10384. height: math.unit(5 + 9 / 12, "feet"),
  10385. weight: math.unit(220, "lb"),
  10386. name: "Front (Undressed)",
  10387. image: {
  10388. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10389. extra: (973 / 923),
  10390. bottom: 0.025
  10391. }
  10392. },
  10393. fat: {
  10394. height: math.unit(5 + 9 / 12, "feet"),
  10395. weight: math.unit(900, "lb"),
  10396. name: "Front (Fat)",
  10397. image: {
  10398. source: "./media/characters/samantha-kruse/fat.svg",
  10399. extra: 2688 / 2561
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(5 + 9 / 12, "feet"),
  10407. default: true
  10408. }
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10413. {
  10414. back: {
  10415. height: math.unit(5 + 4 / 12, "feet"),
  10416. weight: math.unit(4963, "lb"),
  10417. name: "Back",
  10418. image: {
  10419. source: "./media/characters/amelia-rosie/back.svg",
  10420. extra: 1113 / 963,
  10421. bottom: 0.01
  10422. }
  10423. },
  10424. },
  10425. [
  10426. {
  10427. name: "Level 0",
  10428. height: math.unit(5 + 4 / 12, "feet")
  10429. },
  10430. {
  10431. name: "Level 1",
  10432. height: math.unit(164597, "feet"),
  10433. default: true
  10434. },
  10435. {
  10436. name: "Level 2",
  10437. height: math.unit(956243, "miles")
  10438. },
  10439. {
  10440. name: "Level 3",
  10441. height: math.unit(29421709423, "miles")
  10442. },
  10443. {
  10444. name: "Level 4",
  10445. height: math.unit(154, "lightyears")
  10446. },
  10447. {
  10448. name: "Level 5",
  10449. height: math.unit(4738272, "lightyears")
  10450. },
  10451. {
  10452. name: "Level 6",
  10453. height: math.unit(145787152896, "lightyears")
  10454. },
  10455. ]
  10456. ))
  10457. characterMakers.push(() => makeCharacter(
  10458. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10459. {
  10460. front: {
  10461. height: math.unit(5 + 11 / 12, "feet"),
  10462. weight: math.unit(65, "kg"),
  10463. name: "Front",
  10464. image: {
  10465. source: "./media/characters/rook-kitara/front.svg",
  10466. extra: 1347 / 1274,
  10467. bottom: 0.005
  10468. }
  10469. },
  10470. },
  10471. [
  10472. {
  10473. name: "Totally Unfair",
  10474. height: math.unit(1.8, "mm")
  10475. },
  10476. {
  10477. name: "Lap Rookie",
  10478. height: math.unit(1.4, "feet")
  10479. },
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(5 + 11 / 12, "feet"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "How Did This Happen",
  10487. height: math.unit(80, "miles")
  10488. }
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10493. {
  10494. front: {
  10495. height: math.unit(7, "feet"),
  10496. weight: math.unit(300, "lb"),
  10497. name: "Front",
  10498. image: {
  10499. source: "./media/characters/pisces/front.svg",
  10500. extra: 2255 / 2115,
  10501. bottom: 0.03
  10502. }
  10503. },
  10504. back: {
  10505. height: math.unit(7, "feet"),
  10506. weight: math.unit(300, "lb"),
  10507. name: "Back",
  10508. image: {
  10509. source: "./media/characters/pisces/back.svg",
  10510. extra: 2146 / 2055,
  10511. bottom: 0.04
  10512. }
  10513. },
  10514. },
  10515. [
  10516. {
  10517. name: "Normal",
  10518. height: math.unit(7, "feet"),
  10519. default: true
  10520. },
  10521. {
  10522. name: "Swimming Pool",
  10523. height: math.unit(12.2, "meters")
  10524. },
  10525. {
  10526. name: "Olympic Swimming Pool",
  10527. height: math.unit(56.3, "meters")
  10528. },
  10529. {
  10530. name: "Lake Superior",
  10531. height: math.unit(93900, "meters")
  10532. },
  10533. {
  10534. name: "Mediterranean Sea",
  10535. height: math.unit(644457, "meters")
  10536. },
  10537. {
  10538. name: "World's Oceans",
  10539. height: math.unit(4567491, "meters")
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(2.3, "meters"),
  10548. weight: math.unit(120, "kg"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/zelas/front.svg"
  10552. }
  10553. },
  10554. side: {
  10555. height: math.unit(2.3, "meters"),
  10556. weight: math.unit(120, "kg"),
  10557. name: "Side",
  10558. image: {
  10559. source: "./media/characters/zelas/side.svg"
  10560. }
  10561. },
  10562. back: {
  10563. height: math.unit(2.3, "meters"),
  10564. weight: math.unit(120, "kg"),
  10565. name: "Back",
  10566. image: {
  10567. source: "./media/characters/zelas/back.svg"
  10568. }
  10569. },
  10570. foot: {
  10571. height: math.unit(1.116, "feet"),
  10572. name: "Foot",
  10573. image: {
  10574. source: "./media/characters/zelas/foot.svg"
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(2.3, "meters")
  10582. },
  10583. {
  10584. name: "Macro",
  10585. height: math.unit(30, "meters"),
  10586. default: true
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(1, "inch"),
  10595. weight: math.unit(0.21, "grams"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/talbot/front.svg",
  10599. extra: 594 / 544
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Micro",
  10606. height: math.unit(1, "inch"),
  10607. default: true
  10608. },
  10609. ]
  10610. ))
  10611. characterMakers.push(() => makeCharacter(
  10612. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10613. {
  10614. front: {
  10615. height: math.unit(3 + 3 / 12, "feet"),
  10616. weight: math.unit(51.8, "lb"),
  10617. name: "Front",
  10618. image: {
  10619. source: "./media/characters/fliss/front.svg",
  10620. extra: 840 / 640
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Teeny Tiny",
  10627. height: math.unit(1, "mm")
  10628. },
  10629. {
  10630. name: "Small",
  10631. height: math.unit(1, "inch"),
  10632. default: true
  10633. },
  10634. {
  10635. name: "Standard Sylveon",
  10636. height: math.unit(3 + 3 / 12, "feet")
  10637. },
  10638. {
  10639. name: "Large Nuisance",
  10640. height: math.unit(33, "feet")
  10641. },
  10642. {
  10643. name: "City Filler",
  10644. height: math.unit(3000, "feet")
  10645. },
  10646. {
  10647. name: "New Horizon",
  10648. height: math.unit(6000, "miles")
  10649. },
  10650. ]
  10651. ))
  10652. characterMakers.push(() => makeCharacter(
  10653. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10654. {
  10655. front: {
  10656. height: math.unit(5, "cm"),
  10657. weight: math.unit(1.94, "g"),
  10658. name: "Front",
  10659. image: {
  10660. source: "./media/characters/fleta/front.svg",
  10661. extra: 835 / 803
  10662. }
  10663. },
  10664. back: {
  10665. height: math.unit(5, "cm"),
  10666. weight: math.unit(1.94, "g"),
  10667. name: "Back",
  10668. image: {
  10669. source: "./media/characters/fleta/back.svg",
  10670. extra: 835 / 803
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Micro",
  10677. height: math.unit(5, "cm"),
  10678. default: true
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10684. {
  10685. front: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(225, "lb"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/dominic/front.svg",
  10691. extra: 1770 / 1620,
  10692. bottom: 0.025
  10693. }
  10694. },
  10695. back: {
  10696. height: math.unit(6, "feet"),
  10697. weight: math.unit(225, "lb"),
  10698. name: "Back",
  10699. image: {
  10700. source: "./media/characters/dominic/back.svg",
  10701. extra: 1745 / 1620,
  10702. bottom: 0.065
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Nano",
  10709. height: math.unit(0.1, "mm")
  10710. },
  10711. {
  10712. name: "Micro-",
  10713. height: math.unit(1, "mm")
  10714. },
  10715. {
  10716. name: "Micro",
  10717. height: math.unit(4, "inches")
  10718. },
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(6 + 4 / 12, "feet"),
  10722. default: true
  10723. },
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(115, "feet")
  10727. },
  10728. {
  10729. name: "Macro+",
  10730. height: math.unit(955, "feet")
  10731. },
  10732. {
  10733. name: "Megamacro",
  10734. height: math.unit(8990, "feet")
  10735. },
  10736. {
  10737. name: "Gigmacro",
  10738. height: math.unit(9310, "miles")
  10739. },
  10740. {
  10741. name: "Teramacro",
  10742. height: math.unit(1567005010, "miles")
  10743. },
  10744. {
  10745. name: "Examacro",
  10746. height: math.unit(1425, "parsecs")
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(400, "feet"),
  10755. weight: math.unit(44444444, "lb"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/major-colonel/front.svg"
  10759. }
  10760. },
  10761. back: {
  10762. height: math.unit(400, "feet"),
  10763. weight: math.unit(44444444, "lb"),
  10764. name: "Back",
  10765. image: {
  10766. source: "./media/characters/major-colonel/back.svg"
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Macro",
  10773. height: math.unit(400, "feet"),
  10774. default: true
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10780. {
  10781. catFront: {
  10782. height: math.unit(6, "feet"),
  10783. weight: math.unit(120, "lb"),
  10784. name: "Front (Cat Side)",
  10785. image: {
  10786. source: "./media/characters/axel-lycan/cat-front.svg",
  10787. extra: 430 / 402,
  10788. bottom: 43 / 472.35
  10789. }
  10790. },
  10791. catBack: {
  10792. height: math.unit(6, "feet"),
  10793. weight: math.unit(120, "lb"),
  10794. name: "Back (Cat Side)",
  10795. image: {
  10796. source: "./media/characters/axel-lycan/cat-back.svg",
  10797. extra: 447 / 419,
  10798. bottom: 23.3 / 469
  10799. }
  10800. },
  10801. wolfFront: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(120, "lb"),
  10804. name: "Front (Wolf Side)",
  10805. image: {
  10806. source: "./media/characters/axel-lycan/wolf-front.svg",
  10807. extra: 485 / 456,
  10808. bottom: 19 / 504
  10809. }
  10810. },
  10811. wolfBack: {
  10812. height: math.unit(6, "feet"),
  10813. weight: math.unit(120, "lb"),
  10814. name: "Back (Wolf Side)",
  10815. image: {
  10816. source: "./media/characters/axel-lycan/wolf-back.svg",
  10817. extra: 475 / 438,
  10818. bottom: 39.2 / 514
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(1, "km"),
  10826. default: true
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(5 + 9 / 12, "feet"),
  10835. weight: math.unit(175, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/vanrel-hyena/front.svg",
  10839. extra: 1086 / 1010,
  10840. bottom: 0.04
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(5 + 9 / 12, "feet"),
  10848. default: true
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(103, "lb"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/abbott-absol/front.svg",
  10861. extra: 2010 / 1842
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Megamicro",
  10868. height: math.unit(0.1, "mm")
  10869. },
  10870. {
  10871. name: "Micro",
  10872. height: math.unit(1, "inch")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(6, "feet"),
  10877. default: true
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(6, "feet"),
  10886. weight: math.unit(264, "lb"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/hector/front.svg",
  10890. extra: 2280 / 2130,
  10891. bottom: 0.07
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(12.25, "foot"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Macro",
  10903. height: math.unit(160, "feet")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(6, "feet"),
  10912. weight: math.unit(150, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/sal/front.svg",
  10916. extra: 1846 / 1699,
  10917. bottom: 0.04
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Megamacro",
  10924. height: math.unit(10, "miles"),
  10925. default: true
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10931. {
  10932. front: {
  10933. height: math.unit(3, "meters"),
  10934. weight: math.unit(450, "kg"),
  10935. name: "front",
  10936. image: {
  10937. source: "./media/characters/ranger/front.svg",
  10938. extra: 2401 / 2243,
  10939. bottom: 0.05
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(3, "meters"),
  10947. default: true
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10953. {
  10954. front: {
  10955. height: math.unit(14, "feet"),
  10956. weight: math.unit(800, "kg"),
  10957. name: "Front",
  10958. image: {
  10959. source: "./media/characters/theresa/front.svg",
  10960. extra: 3575 / 3346,
  10961. bottom: 0.03
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Normal",
  10968. height: math.unit(14, "feet"),
  10969. default: true
  10970. },
  10971. ]
  10972. ))
  10973. characterMakers.push(() => makeCharacter(
  10974. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10975. {
  10976. front: {
  10977. height: math.unit(6, "feet"),
  10978. weight: math.unit(3, "kg"),
  10979. name: "Front",
  10980. image: {
  10981. source: "./media/characters/ine/front.svg",
  10982. extra: 678 / 539,
  10983. bottom: 0.023
  10984. }
  10985. },
  10986. },
  10987. [
  10988. {
  10989. name: "Normal",
  10990. height: math.unit(2.265, "feet"),
  10991. default: true
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10997. {
  10998. front: {
  10999. height: math.unit(5, "feet"),
  11000. weight: math.unit(30, "kg"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/vial/front.svg",
  11004. extra: 1365 / 1277,
  11005. bottom: 0.04
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(5, "feet"),
  11013. default: true
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11019. {
  11020. side: {
  11021. height: math.unit(3.4, "meters"),
  11022. weight: math.unit(1000, "lb"),
  11023. name: "Side",
  11024. image: {
  11025. source: "./media/characters/rovoska/side.svg",
  11026. extra: 4403 / 1515
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(3.4, "meters"),
  11034. default: true
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(8, "feet"),
  11043. weight: math.unit(315, "lb"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/gunner-rotthbauer/front.svg"
  11047. }
  11048. },
  11049. back: {
  11050. height: math.unit(8, "feet"),
  11051. weight: math.unit(315, "lb"),
  11052. name: "Back",
  11053. image: {
  11054. source: "./media/characters/gunner-rotthbauer/back.svg"
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Micro",
  11061. height: math.unit(3.5, "inches")
  11062. },
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(8, "feet"),
  11066. default: true
  11067. },
  11068. {
  11069. name: "Macro",
  11070. height: math.unit(250, "feet")
  11071. },
  11072. {
  11073. name: "Megamacro",
  11074. height: math.unit(1, "AU")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(5 + 5 / 12, "feet"),
  11083. weight: math.unit(140, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/allatia/front.svg",
  11087. extra: 1227 / 1180,
  11088. bottom: 0.027
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(5 + 5 / 12, "feet")
  11096. },
  11097. {
  11098. name: "Macro",
  11099. height: math.unit(250, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(8, "miles")
  11105. }
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(120, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/tene/front.svg",
  11117. extra: 814/750,
  11118. bottom: 36/850
  11119. }
  11120. },
  11121. stomping: {
  11122. height: math.unit(2.025, "meters"),
  11123. weight: math.unit(120, "lb"),
  11124. name: "Stomping",
  11125. image: {
  11126. source: "./media/characters/tene/stomping.svg",
  11127. extra: 885/821,
  11128. bottom: 15/900
  11129. }
  11130. },
  11131. sitting: {
  11132. height: math.unit(1, "meter"),
  11133. weight: math.unit(120, "lb"),
  11134. name: "Sitting",
  11135. image: {
  11136. source: "./media/characters/tene/sitting.svg",
  11137. extra: 396/366,
  11138. bottom: 79/475
  11139. }
  11140. },
  11141. smiling: {
  11142. height: math.unit(1.2, "feet"),
  11143. name: "Smiling",
  11144. image: {
  11145. source: "./media/characters/tene/smiling.svg",
  11146. extra: 1364/1071,
  11147. bottom: 0/1364
  11148. }
  11149. },
  11150. smug: {
  11151. height: math.unit(1.3, "feet"),
  11152. name: "Smug",
  11153. image: {
  11154. source: "./media/characters/tene/smug.svg",
  11155. extra: 1323/1082,
  11156. bottom: 0/1323
  11157. }
  11158. },
  11159. feral: {
  11160. height: math.unit(3.9, "feet"),
  11161. weight: math.unit(250, "lb"),
  11162. name: "Feral",
  11163. image: {
  11164. source: "./media/characters/tene/feral.svg",
  11165. extra: 717 / 458,
  11166. bottom: 0.179
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(6, "feet")
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(300, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(5, "miles")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11188. {
  11189. side: {
  11190. height: math.unit(6, "feet"),
  11191. name: "Side",
  11192. image: {
  11193. source: "./media/characters/evander/side.svg",
  11194. extra: 877 / 477
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(0.83, "meters"),
  11202. default: true
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11208. {
  11209. front: {
  11210. height: math.unit(12, "feet"),
  11211. weight: math.unit(1000, "lb"),
  11212. name: "Front",
  11213. image: {
  11214. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11215. extra: 1762 / 1611
  11216. }
  11217. },
  11218. back: {
  11219. height: math.unit(12, "feet"),
  11220. weight: math.unit(1000, "lb"),
  11221. name: "Back",
  11222. image: {
  11223. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11224. extra: 1762 / 1611
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(12, "feet"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Kaiju",
  11236. height: math.unit(150, "feet")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(6, "feet"),
  11245. weight: math.unit(150, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/zero-alurus/front.svg"
  11249. }
  11250. },
  11251. back: {
  11252. height: math.unit(6, "feet"),
  11253. weight: math.unit(150, "lb"),
  11254. name: "Back",
  11255. image: {
  11256. source: "./media/characters/zero-alurus/back.svg"
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Normal",
  11263. height: math.unit(5 + 10 / 12, "feet")
  11264. },
  11265. {
  11266. name: "Macro",
  11267. height: math.unit(60, "feet"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Macro+",
  11272. height: math.unit(450, "feet")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(200, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/mega-shi/front.svg",
  11285. extra: 1279 / 1250,
  11286. bottom: 0.02
  11287. }
  11288. },
  11289. back: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(200, "lb"),
  11292. name: "Back",
  11293. image: {
  11294. source: "./media/characters/mega-shi/back.svg",
  11295. extra: 1279 / 1250,
  11296. bottom: 0.02
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Micro",
  11303. height: math.unit(16 + 6 / 12, "feet")
  11304. },
  11305. {
  11306. name: "Third Dimension",
  11307. height: math.unit(40, "meters")
  11308. },
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(660, "feet"),
  11312. default: true
  11313. },
  11314. {
  11315. name: "Megamacro",
  11316. height: math.unit(10, "miles")
  11317. },
  11318. {
  11319. name: "Planetary Launch",
  11320. height: math.unit(500, "miles")
  11321. },
  11322. {
  11323. name: "Interstellar",
  11324. height: math.unit(1e9, "miles")
  11325. },
  11326. {
  11327. name: "Leaving the Universe",
  11328. height: math.unit(1, "gigaparsec")
  11329. },
  11330. {
  11331. name: "Travelling Universes",
  11332. height: math.unit(30e15, "parsecs")
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(5 + 4/12, "feet"),
  11341. weight: math.unit(120, "lb"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/odyssey/front.svg",
  11345. extra: 1747/1571,
  11346. bottom: 47/1794
  11347. }
  11348. },
  11349. side: {
  11350. height: math.unit(5.1, "feet"),
  11351. weight: math.unit(120, "lb"),
  11352. name: "Side",
  11353. image: {
  11354. source: "./media/characters/odyssey/side.svg",
  11355. extra: 1847/1619,
  11356. bottom: 47/1894
  11357. }
  11358. },
  11359. lounging: {
  11360. height: math.unit(1.464, "feet"),
  11361. weight: math.unit(120, "lb"),
  11362. name: "Lounging",
  11363. image: {
  11364. source: "./media/characters/odyssey/lounging.svg",
  11365. extra: 1235/837,
  11366. bottom: 551/1786
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(5 + 4 / 12, "feet")
  11374. },
  11375. {
  11376. name: "Macro",
  11377. height: math.unit(1, "km")
  11378. },
  11379. {
  11380. name: "Megamacro",
  11381. height: math.unit(3000, "km")
  11382. },
  11383. {
  11384. name: "Gigamacro",
  11385. height: math.unit(1, "AU"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Omniversal",
  11390. height: math.unit(100e14, "lightyears")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(5 + 10/12, "feet"),
  11399. name: "Front",
  11400. image: {
  11401. source: "./media/characters/mekuto/front.svg",
  11402. extra: 875/835,
  11403. bottom: 46/921
  11404. }
  11405. },
  11406. },
  11407. [
  11408. {
  11409. name: "Minimicro",
  11410. height: math.unit(0.2, "inches")
  11411. },
  11412. {
  11413. name: "Micro",
  11414. height: math.unit(1.5, "inches")
  11415. },
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(5 + 10 / 12, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Minimacro",
  11423. height: math.unit(17 + 9 / 12, "feet")
  11424. },
  11425. {
  11426. name: "Macro",
  11427. height: math.unit(177.5, "feet")
  11428. },
  11429. {
  11430. name: "Megamacro",
  11431. height: math.unit(152, "miles")
  11432. },
  11433. ]
  11434. ))
  11435. characterMakers.push(() => makeCharacter(
  11436. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11437. {
  11438. front: {
  11439. height: math.unit(6.5, "inches"),
  11440. weight: math.unit(13, "oz"),
  11441. name: "Front",
  11442. image: {
  11443. source: "./media/characters/dafydd-tomos/front.svg",
  11444. extra: 2990 / 2603,
  11445. bottom: 0.03
  11446. }
  11447. },
  11448. },
  11449. [
  11450. {
  11451. name: "Micro",
  11452. height: math.unit(6.5, "inches"),
  11453. default: true
  11454. },
  11455. ]
  11456. ))
  11457. characterMakers.push(() => makeCharacter(
  11458. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11459. {
  11460. front: {
  11461. height: math.unit(6, "feet"),
  11462. weight: math.unit(150, "lb"),
  11463. name: "Front",
  11464. image: {
  11465. source: "./media/characters/splinter/front.svg",
  11466. extra: 2990 / 2882,
  11467. bottom: 0.04
  11468. }
  11469. },
  11470. back: {
  11471. height: math.unit(6, "feet"),
  11472. weight: math.unit(150, "lb"),
  11473. name: "Back",
  11474. image: {
  11475. source: "./media/characters/splinter/back.svg",
  11476. extra: 2990 / 2882,
  11477. bottom: 0.04
  11478. }
  11479. },
  11480. },
  11481. [
  11482. {
  11483. name: "Normal",
  11484. height: math.unit(6, "feet")
  11485. },
  11486. {
  11487. name: "Macro",
  11488. height: math.unit(230, "meters"),
  11489. default: true
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(4 + 10 / 12, "feet"),
  11498. weight: math.unit(480, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/snow-gabumon/front.svg",
  11502. extra: 1140 / 963,
  11503. bottom: 0.058
  11504. }
  11505. },
  11506. back: {
  11507. height: math.unit(4 + 10 / 12, "feet"),
  11508. weight: math.unit(480, "lb"),
  11509. name: "Back",
  11510. image: {
  11511. source: "./media/characters/snow-gabumon/back.svg",
  11512. extra: 1115 / 962,
  11513. bottom: 0.041
  11514. }
  11515. },
  11516. frontUndresed: {
  11517. height: math.unit(4 + 10 / 12, "feet"),
  11518. weight: math.unit(480, "lb"),
  11519. name: "Front (Undressed)",
  11520. image: {
  11521. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11522. extra: 1061 / 960,
  11523. bottom: 0.045
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Micro",
  11530. height: math.unit(1, "inch")
  11531. },
  11532. {
  11533. name: "Normal",
  11534. height: math.unit(4 + 10 / 12, "feet"),
  11535. default: true
  11536. },
  11537. {
  11538. name: "Macro",
  11539. height: math.unit(200, "feet")
  11540. },
  11541. {
  11542. name: "Megamacro",
  11543. height: math.unit(120, "miles")
  11544. },
  11545. {
  11546. name: "Gigamacro",
  11547. height: math.unit(9800, "miles")
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(1.7, "meters"),
  11556. weight: math.unit(140, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/moody/front.svg",
  11560. extra: 3226 / 3007,
  11561. bottom: 0.087
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Micro",
  11568. height: math.unit(1, "mm")
  11569. },
  11570. {
  11571. name: "Normal",
  11572. height: math.unit(1.7, "meters"),
  11573. default: true
  11574. },
  11575. {
  11576. name: "Macro",
  11577. height: math.unit(80, "meters")
  11578. },
  11579. {
  11580. name: "Macro+",
  11581. height: math.unit(500, "meters")
  11582. },
  11583. ]
  11584. ))
  11585. characterMakers.push(() => makeCharacter(
  11586. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11587. {
  11588. front: {
  11589. height: math.unit(6, "feet"),
  11590. weight: math.unit(150, "lb"),
  11591. name: "Front",
  11592. image: {
  11593. source: "./media/characters/zyas/front.svg",
  11594. extra: 1180 / 1120,
  11595. bottom: 0.045
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(10, "feet"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Macro",
  11607. height: math.unit(500, "feet")
  11608. },
  11609. {
  11610. name: "Megamacro",
  11611. height: math.unit(5, "miles")
  11612. },
  11613. {
  11614. name: "Teramacro",
  11615. height: math.unit(150000, "miles")
  11616. },
  11617. ]
  11618. ))
  11619. characterMakers.push(() => makeCharacter(
  11620. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11621. {
  11622. front: {
  11623. height: math.unit(6, "feet"),
  11624. weight: math.unit(150, "lb"),
  11625. name: "Front",
  11626. image: {
  11627. source: "./media/characters/cuon/front.svg",
  11628. extra: 1390 / 1320,
  11629. bottom: 0.008
  11630. }
  11631. },
  11632. },
  11633. [
  11634. {
  11635. name: "Micro",
  11636. height: math.unit(3, "inches")
  11637. },
  11638. {
  11639. name: "Normal",
  11640. height: math.unit(18 + 9 / 12, "feet"),
  11641. default: true
  11642. },
  11643. {
  11644. name: "Macro",
  11645. height: math.unit(360, "feet")
  11646. },
  11647. {
  11648. name: "Megamacro",
  11649. height: math.unit(360, "miles")
  11650. },
  11651. ]
  11652. ))
  11653. characterMakers.push(() => makeCharacter(
  11654. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11655. {
  11656. front: {
  11657. height: math.unit(2.4, "meters"),
  11658. weight: math.unit(70, "kg"),
  11659. name: "Front",
  11660. image: {
  11661. source: "./media/characters/nyanuxk/front.svg",
  11662. extra: 1172 / 1084,
  11663. bottom: 0.065
  11664. }
  11665. },
  11666. side: {
  11667. height: math.unit(2.4, "meters"),
  11668. weight: math.unit(70, "kg"),
  11669. name: "Side",
  11670. image: {
  11671. source: "./media/characters/nyanuxk/side.svg",
  11672. extra: 1190 / 1132,
  11673. bottom: 0.007
  11674. }
  11675. },
  11676. back: {
  11677. height: math.unit(2.4, "meters"),
  11678. weight: math.unit(70, "kg"),
  11679. name: "Back",
  11680. image: {
  11681. source: "./media/characters/nyanuxk/back.svg",
  11682. extra: 1200 / 1141,
  11683. bottom: 0.015
  11684. }
  11685. },
  11686. foot: {
  11687. height: math.unit(0.52, "meters"),
  11688. name: "Foot",
  11689. image: {
  11690. source: "./media/characters/nyanuxk/foot.svg"
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Micro",
  11697. height: math.unit(2, "cm")
  11698. },
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(2.4, "meters"),
  11702. default: true
  11703. },
  11704. {
  11705. name: "Smaller Macro",
  11706. height: math.unit(120, "meters")
  11707. },
  11708. {
  11709. name: "Bigger Macro",
  11710. height: math.unit(1.2, "km")
  11711. },
  11712. {
  11713. name: "Megamacro",
  11714. height: math.unit(15, "kilometers")
  11715. },
  11716. {
  11717. name: "Gigamacro",
  11718. height: math.unit(2000, "km")
  11719. },
  11720. {
  11721. name: "Teramacro",
  11722. height: math.unit(500000, "km")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11728. {
  11729. side: {
  11730. height: math.unit(6, "feet"),
  11731. name: "Side",
  11732. image: {
  11733. source: "./media/characters/ailbhe/side.svg",
  11734. extra: 757 / 464,
  11735. bottom: 0.041
  11736. }
  11737. },
  11738. },
  11739. [
  11740. {
  11741. name: "Normal",
  11742. height: math.unit(1.07, "meters"),
  11743. default: true
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11749. {
  11750. front: {
  11751. height: math.unit(6, "feet"),
  11752. weight: math.unit(120, "kg"),
  11753. name: "Front",
  11754. image: {
  11755. source: "./media/characters/zevulfius/front.svg",
  11756. extra: 965 / 903
  11757. }
  11758. },
  11759. side: {
  11760. height: math.unit(6, "feet"),
  11761. weight: math.unit(120, "kg"),
  11762. name: "Side",
  11763. image: {
  11764. source: "./media/characters/zevulfius/side.svg",
  11765. extra: 939 / 900
  11766. }
  11767. },
  11768. back: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(120, "kg"),
  11771. name: "Back",
  11772. image: {
  11773. source: "./media/characters/zevulfius/back.svg",
  11774. extra: 918 / 854,
  11775. bottom: 0.005
  11776. }
  11777. },
  11778. foot: {
  11779. height: math.unit(6 / 3.72, "feet"),
  11780. name: "Foot",
  11781. image: {
  11782. source: "./media/characters/zevulfius/foot.svg"
  11783. }
  11784. },
  11785. },
  11786. [
  11787. {
  11788. name: "Macro",
  11789. height: math.unit(750, "meters")
  11790. },
  11791. {
  11792. name: "Megamacro",
  11793. height: math.unit(20, "km"),
  11794. default: true
  11795. },
  11796. {
  11797. name: "Gigamacro",
  11798. height: math.unit(2000, "km")
  11799. },
  11800. {
  11801. name: "Teramacro",
  11802. height: math.unit(250000, "km")
  11803. },
  11804. ]
  11805. ))
  11806. characterMakers.push(() => makeCharacter(
  11807. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11808. {
  11809. front: {
  11810. height: math.unit(100, "feet"),
  11811. weight: math.unit(350, "kg"),
  11812. name: "Front",
  11813. image: {
  11814. source: "./media/characters/rikes/front.svg",
  11815. extra: 1565 / 1483,
  11816. bottom: 0.017
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(100, "feet"),
  11824. default: true
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(8, "feet"),
  11833. weight: math.unit(356, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/adam-silver-mane/front.svg",
  11837. extra: 1036/937,
  11838. bottom: 63/1099
  11839. }
  11840. },
  11841. side: {
  11842. height: math.unit(8, "feet"),
  11843. weight: math.unit(356, "lb"),
  11844. name: "Side",
  11845. image: {
  11846. source: "./media/characters/adam-silver-mane/side.svg",
  11847. extra: 997/901,
  11848. bottom: 59/1056
  11849. }
  11850. },
  11851. frontNsfw: {
  11852. height: math.unit(8, "feet"),
  11853. weight: math.unit(356, "lb"),
  11854. name: "Front (NSFW)",
  11855. image: {
  11856. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11857. extra: 1036/937,
  11858. bottom: 63/1099
  11859. }
  11860. },
  11861. sideNsfw: {
  11862. height: math.unit(8, "feet"),
  11863. weight: math.unit(356, "lb"),
  11864. name: "Side (NSFW)",
  11865. image: {
  11866. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11867. extra: 997/901,
  11868. bottom: 59/1056
  11869. }
  11870. },
  11871. dick: {
  11872. height: math.unit(2.1, "feet"),
  11873. name: "Dick",
  11874. image: {
  11875. source: "./media/characters/adam-silver-mane/dick.svg"
  11876. }
  11877. },
  11878. taur: {
  11879. height: math.unit(16, "feet"),
  11880. weight: math.unit(1500, "kg"),
  11881. name: "Taur",
  11882. image: {
  11883. source: "./media/characters/adam-silver-mane/taur.svg",
  11884. extra: 1713 / 1571,
  11885. bottom: 0.01
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(8, "feet")
  11893. },
  11894. {
  11895. name: "Minimacro",
  11896. height: math.unit(80, "feet")
  11897. },
  11898. {
  11899. name: "MDA",
  11900. height: math.unit(80, "meters")
  11901. },
  11902. {
  11903. name: "Macro",
  11904. height: math.unit(800, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Megamacro",
  11909. height: math.unit(8000, "feet")
  11910. },
  11911. {
  11912. name: "Gigamacro",
  11913. height: math.unit(800, "miles")
  11914. },
  11915. {
  11916. name: "Teramacro",
  11917. height: math.unit(80000, "miles")
  11918. },
  11919. {
  11920. name: "Celestial",
  11921. height: math.unit(8e6, "miles")
  11922. },
  11923. {
  11924. name: "Star Dragon",
  11925. height: math.unit(800000, "parsecs")
  11926. },
  11927. {
  11928. name: "Godly",
  11929. height: math.unit(800, "teraparsecs")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6, "feet"),
  11938. weight: math.unit(150, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/ky'owin/front.svg",
  11942. extra: 3862/3053,
  11943. bottom: 74/3936
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(6 + 8 / 12, "feet")
  11951. },
  11952. {
  11953. name: "Large",
  11954. height: math.unit(68, "feet")
  11955. },
  11956. {
  11957. name: "Macro",
  11958. height: math.unit(132, "feet")
  11959. },
  11960. {
  11961. name: "Macro+",
  11962. height: math.unit(340, "feet")
  11963. },
  11964. {
  11965. name: "Macro++",
  11966. height: math.unit(680, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Megamacro",
  11971. height: math.unit(1, "mile")
  11972. },
  11973. {
  11974. name: "Megamacro+",
  11975. height: math.unit(10, "miles")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(4, "feet"),
  11984. weight: math.unit(50, "lb"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/mal/front.svg",
  11988. extra: 785 / 724,
  11989. bottom: 0.07
  11990. }
  11991. },
  11992. },
  11993. [
  11994. {
  11995. name: "Micro",
  11996. height: math.unit(4, "inches")
  11997. },
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(4, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Macro",
  12005. height: math.unit(200, "feet")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/jordan-deware/front.svg",
  12018. extra: 1191 / 1012
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Nano",
  12025. height: math.unit(0.01, "mm")
  12026. },
  12027. {
  12028. name: "Minimicro",
  12029. height: math.unit(1, "mm")
  12030. },
  12031. {
  12032. name: "Micro",
  12033. height: math.unit(0.5, "inches")
  12034. },
  12035. {
  12036. name: "Normal",
  12037. height: math.unit(4, "feet"),
  12038. default: true
  12039. },
  12040. {
  12041. name: "Minimacro",
  12042. height: math.unit(40, "meters")
  12043. },
  12044. {
  12045. name: "Small Macro",
  12046. height: math.unit(400, "meters")
  12047. },
  12048. {
  12049. name: "Macro",
  12050. height: math.unit(4, "miles")
  12051. },
  12052. {
  12053. name: "Megamacro",
  12054. height: math.unit(40, "miles")
  12055. },
  12056. {
  12057. name: "Megamacro+",
  12058. height: math.unit(400, "miles")
  12059. },
  12060. {
  12061. name: "Gigamacro",
  12062. height: math.unit(400000, "miles")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12068. {
  12069. side: {
  12070. height: math.unit(6, "feet"),
  12071. weight: math.unit(150, "lb"),
  12072. name: "Side",
  12073. image: {
  12074. source: "./media/characters/kimiko/side.svg",
  12075. extra: 600 / 358
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(15, "feet"),
  12083. default: true
  12084. },
  12085. {
  12086. name: "Macro",
  12087. height: math.unit(220, "feet")
  12088. },
  12089. {
  12090. name: "Macro+",
  12091. height: math.unit(1450, "feet")
  12092. },
  12093. {
  12094. name: "Megamacro",
  12095. height: math.unit(11500, "feet")
  12096. },
  12097. {
  12098. name: "Gigamacro",
  12099. height: math.unit(9500, "miles")
  12100. },
  12101. {
  12102. name: "Teramacro",
  12103. height: math.unit(2208005005, "miles")
  12104. },
  12105. {
  12106. name: "Examacro",
  12107. height: math.unit(2750, "parsecs")
  12108. },
  12109. {
  12110. name: "Zettamacro",
  12111. height: math.unit(101500, "parsecs")
  12112. },
  12113. ]
  12114. ))
  12115. characterMakers.push(() => makeCharacter(
  12116. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12117. {
  12118. front: {
  12119. height: math.unit(6, "feet"),
  12120. weight: math.unit(70, "kg"),
  12121. name: "Front",
  12122. image: {
  12123. source: "./media/characters/andrew-sleepy/front.svg"
  12124. }
  12125. },
  12126. side: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(70, "kg"),
  12129. name: "Side",
  12130. image: {
  12131. source: "./media/characters/andrew-sleepy/side.svg"
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Micro",
  12138. height: math.unit(1, "mm"),
  12139. default: true
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12145. {
  12146. front: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(150, "lb"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/judio/front.svg",
  12152. extra: 1258 / 1110
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Normal",
  12159. height: math.unit(5 + 6 / 12, "feet")
  12160. },
  12161. {
  12162. name: "Macro",
  12163. height: math.unit(1000, "feet"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(10, "miles")
  12169. },
  12170. ]
  12171. ))
  12172. characterMakers.push(() => makeCharacter(
  12173. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12174. {
  12175. frontDressed: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(68, "kg"),
  12178. name: "Front (Dressed)",
  12179. image: {
  12180. source: "./media/characters/nomaxice/front-dressed.svg",
  12181. extra: 1137/824,
  12182. bottom: 74/1211
  12183. }
  12184. },
  12185. frontShorts: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(68, "kg"),
  12188. name: "Front (Shorts)",
  12189. image: {
  12190. source: "./media/characters/nomaxice/front-shorts.svg",
  12191. extra: 1137/824,
  12192. bottom: 74/1211
  12193. }
  12194. },
  12195. back: {
  12196. height: math.unit(6, "feet"),
  12197. weight: math.unit(68, "kg"),
  12198. name: "Back",
  12199. image: {
  12200. source: "./media/characters/nomaxice/back.svg",
  12201. extra: 822/786,
  12202. bottom: 39/861
  12203. }
  12204. },
  12205. hand: {
  12206. height: math.unit(0.565, "feet"),
  12207. name: "Hand",
  12208. image: {
  12209. source: "./media/characters/nomaxice/hand.svg"
  12210. }
  12211. },
  12212. foot: {
  12213. height: math.unit(1, "feet"),
  12214. name: "Foot",
  12215. image: {
  12216. source: "./media/characters/nomaxice/foot.svg"
  12217. }
  12218. },
  12219. },
  12220. [
  12221. {
  12222. name: "Micro",
  12223. height: math.unit(8, "cm")
  12224. },
  12225. {
  12226. name: "Norm",
  12227. height: math.unit(1.82, "m")
  12228. },
  12229. {
  12230. name: "Norm+",
  12231. height: math.unit(8.8, "feet"),
  12232. default: true
  12233. },
  12234. {
  12235. name: "Big",
  12236. height: math.unit(8, "meters")
  12237. },
  12238. {
  12239. name: "Macro",
  12240. height: math.unit(18, "meters")
  12241. },
  12242. {
  12243. name: "Macro+",
  12244. height: math.unit(88, "meters")
  12245. },
  12246. ]
  12247. ))
  12248. characterMakers.push(() => makeCharacter(
  12249. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12250. {
  12251. front: {
  12252. height: math.unit(12, "feet"),
  12253. weight: math.unit(1.5, "tons"),
  12254. name: "Front",
  12255. image: {
  12256. source: "./media/characters/dydros/front.svg",
  12257. extra: 863 / 800,
  12258. bottom: 0.015
  12259. }
  12260. },
  12261. back: {
  12262. height: math.unit(12, "feet"),
  12263. weight: math.unit(1.5, "tons"),
  12264. name: "Back",
  12265. image: {
  12266. source: "./media/characters/dydros/back.svg",
  12267. extra: 900 / 843,
  12268. bottom: 0.005
  12269. }
  12270. },
  12271. },
  12272. [
  12273. {
  12274. name: "Normal",
  12275. height: math.unit(12, "feet"),
  12276. default: true
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(6, "feet"),
  12285. weight: math.unit(100, "kg"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/riggi/front.svg",
  12289. extra: 5787 / 5303
  12290. }
  12291. },
  12292. hyper: {
  12293. height: math.unit(6 * 5 / 3, "feet"),
  12294. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12295. name: "Hyper",
  12296. image: {
  12297. source: "./media/characters/riggi/hyper.svg",
  12298. extra: 3595 / 3485
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Small Macro",
  12305. height: math.unit(50, "feet")
  12306. },
  12307. {
  12308. name: "Default",
  12309. height: math.unit(200, "feet"),
  12310. default: true
  12311. },
  12312. {
  12313. name: "Loom",
  12314. height: math.unit(10000, "feet")
  12315. },
  12316. {
  12317. name: "Cruising Altitude",
  12318. height: math.unit(30000, "feet")
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(100, "miles")
  12323. },
  12324. {
  12325. name: "Continent Sized",
  12326. height: math.unit(2800, "miles")
  12327. },
  12328. {
  12329. name: "Earth Sized",
  12330. height: math.unit(8000, "miles")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(6, "feet"),
  12339. weight: math.unit(250, "lb"),
  12340. name: "Front",
  12341. image: {
  12342. source: "./media/characters/alexi/front.svg",
  12343. extra: 3483 / 3291,
  12344. bottom: 0.04
  12345. }
  12346. },
  12347. back: {
  12348. height: math.unit(6, "feet"),
  12349. weight: math.unit(250, "lb"),
  12350. name: "Back",
  12351. image: {
  12352. source: "./media/characters/alexi/back.svg",
  12353. extra: 3533 / 3356,
  12354. bottom: 0.021
  12355. }
  12356. },
  12357. frontTransforming: {
  12358. height: math.unit(8.58, "feet"),
  12359. weight: math.unit(1300, "lb"),
  12360. name: "Transforming",
  12361. image: {
  12362. source: "./media/characters/alexi/front-transforming.svg",
  12363. extra: 437 / 409,
  12364. bottom: 19 / 458.66
  12365. }
  12366. },
  12367. frontTransformed: {
  12368. height: math.unit(12.5, "feet"),
  12369. weight: math.unit(4000, "lb"),
  12370. name: "Transformed",
  12371. image: {
  12372. source: "./media/characters/alexi/front-transformed.svg",
  12373. extra: 639 / 614,
  12374. bottom: 30.55 / 671
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Normal",
  12381. height: math.unit(14, "feet"),
  12382. default: true
  12383. },
  12384. {
  12385. name: "Minimacro",
  12386. height: math.unit(30, "meters")
  12387. },
  12388. {
  12389. name: "Macro",
  12390. height: math.unit(500, "meters")
  12391. },
  12392. {
  12393. name: "Megamacro",
  12394. height: math.unit(9000, "km")
  12395. },
  12396. {
  12397. name: "Teramacro",
  12398. height: math.unit(384000, "km")
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12404. {
  12405. front: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Front",
  12409. image: {
  12410. source: "./media/characters/kayroo/front.svg",
  12411. extra: 1153 / 1038,
  12412. bottom: 0.06
  12413. }
  12414. },
  12415. foot: {
  12416. height: math.unit(6, "feet"),
  12417. weight: math.unit(150, "lb"),
  12418. name: "Foot",
  12419. image: {
  12420. source: "./media/characters/kayroo/foot.svg"
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(8, "feet"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Minimacro",
  12432. height: math.unit(250, "feet")
  12433. },
  12434. {
  12435. name: "Macro",
  12436. height: math.unit(2800, "feet")
  12437. },
  12438. {
  12439. name: "Megamacro",
  12440. height: math.unit(5200, "feet")
  12441. },
  12442. {
  12443. name: "Gigamacro",
  12444. height: math.unit(27000, "feet")
  12445. },
  12446. {
  12447. name: "Omega",
  12448. height: math.unit(45000, "feet")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(18, "feet"),
  12457. weight: math.unit(5800, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/rhys/front.svg",
  12461. extra: 3386 / 3090,
  12462. bottom: 0.07
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(18, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Working Size",
  12474. height: math.unit(200, "feet")
  12475. },
  12476. {
  12477. name: "Demolition Size",
  12478. height: math.unit(2000, "feet")
  12479. },
  12480. {
  12481. name: "Maximum Licensed Size",
  12482. height: math.unit(5, "miles")
  12483. },
  12484. {
  12485. name: "Maximum Observed Size",
  12486. height: math.unit(10, "yottameters")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(6, "feet"),
  12495. weight: math.unit(250, "lb"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/toto/front.svg",
  12499. extra: 527 / 479,
  12500. bottom: 0.05
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Micro",
  12507. height: math.unit(3, "feet")
  12508. },
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(10, "feet")
  12512. },
  12513. {
  12514. name: "Macro",
  12515. height: math.unit(150, "feet"),
  12516. default: true
  12517. },
  12518. {
  12519. name: "Megamacro",
  12520. height: math.unit(1200, "feet")
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "King", species: ["lion"], tags: ["anthro"] },
  12526. {
  12527. back: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(150, "lb"),
  12530. name: "Back",
  12531. image: {
  12532. source: "./media/characters/king/back.svg"
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Micro",
  12539. height: math.unit(2, "inches")
  12540. },
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(8, "feet")
  12544. },
  12545. {
  12546. name: "Macro",
  12547. height: math.unit(200, "feet"),
  12548. default: true
  12549. },
  12550. {
  12551. name: "Megamacro",
  12552. height: math.unit(50, "miles")
  12553. },
  12554. ]
  12555. ))
  12556. characterMakers.push(() => makeCharacter(
  12557. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12558. {
  12559. front: {
  12560. height: math.unit(11, "feet"),
  12561. weight: math.unit(1400, "lb"),
  12562. name: "Front",
  12563. image: {
  12564. source: "./media/characters/cordite/front.svg",
  12565. extra: 1919/1827,
  12566. bottom: 40/1959
  12567. }
  12568. },
  12569. side: {
  12570. height: math.unit(11, "feet"),
  12571. weight: math.unit(1400, "lb"),
  12572. name: "Side",
  12573. image: {
  12574. source: "./media/characters/cordite/side.svg",
  12575. extra: 1908/1793,
  12576. bottom: 38/1946
  12577. }
  12578. },
  12579. back: {
  12580. height: math.unit(11, "feet"),
  12581. weight: math.unit(1400, "lb"),
  12582. name: "Back",
  12583. image: {
  12584. source: "./media/characters/cordite/back.svg",
  12585. extra: 1938/1837,
  12586. bottom: 10/1948
  12587. }
  12588. },
  12589. feral: {
  12590. height: math.unit(2, "feet"),
  12591. weight: math.unit(90, "lb"),
  12592. name: "Feral",
  12593. image: {
  12594. source: "./media/characters/cordite/feral.svg",
  12595. extra: 1260 / 755,
  12596. bottom: 0.05
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(11, "feet"),
  12604. default: true
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(6, "feet"),
  12613. weight: math.unit(150, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/pianostrong/front.svg",
  12617. extra: 6577 / 6254,
  12618. bottom: 0.02
  12619. }
  12620. },
  12621. side: {
  12622. height: math.unit(6, "feet"),
  12623. weight: math.unit(150, "lb"),
  12624. name: "Side",
  12625. image: {
  12626. source: "./media/characters/pianostrong/side.svg",
  12627. extra: 6106 / 5730
  12628. }
  12629. },
  12630. back: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Back",
  12634. image: {
  12635. source: "./media/characters/pianostrong/back.svg",
  12636. extra: 6085 / 5733,
  12637. bottom: 0.01
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Macro",
  12644. height: math.unit(100, "feet")
  12645. },
  12646. {
  12647. name: "Macro+",
  12648. height: math.unit(300, "feet"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Macro++",
  12653. height: math.unit(1000, "feet")
  12654. },
  12655. ]
  12656. ))
  12657. characterMakers.push(() => makeCharacter(
  12658. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12659. {
  12660. front: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(150, "lb"),
  12663. name: "Front",
  12664. image: {
  12665. source: "./media/characters/kona/front.svg",
  12666. extra: 2960 / 2629,
  12667. bottom: 0.005
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Normal",
  12674. height: math.unit(11 + 8 / 12, "feet")
  12675. },
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(850, "feet"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Macro+",
  12683. height: math.unit(1.5, "km"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Megamacro",
  12688. height: math.unit(80, "miles")
  12689. },
  12690. {
  12691. name: "Gigamacro",
  12692. height: math.unit(3500, "miles")
  12693. },
  12694. ]
  12695. ))
  12696. characterMakers.push(() => makeCharacter(
  12697. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12698. {
  12699. side: {
  12700. height: math.unit(1.9, "meters"),
  12701. weight: math.unit(326, "kg"),
  12702. name: "Side",
  12703. image: {
  12704. source: "./media/characters/levi/side.svg",
  12705. extra: 1704 / 1334,
  12706. bottom: 0.02
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(1.9, "meters"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Macro",
  12718. height: math.unit(20, "meters")
  12719. },
  12720. {
  12721. name: "Macro+",
  12722. height: math.unit(200, "meters")
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(2, "km")
  12727. },
  12728. {
  12729. name: "Megamacro+",
  12730. height: math.unit(20, "km")
  12731. },
  12732. {
  12733. name: "Gigamacro",
  12734. height: math.unit(2500, "km")
  12735. },
  12736. {
  12737. name: "Gigamacro+",
  12738. height: math.unit(120000, "km")
  12739. },
  12740. {
  12741. name: "Teramacro",
  12742. height: math.unit(7.77e6, "km")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12748. {
  12749. front: {
  12750. height: math.unit(6 + 4/12, "feet"),
  12751. weight: math.unit(190, "lb"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/bmc/front.svg",
  12755. extra: 1626/1472,
  12756. bottom: 79/1705
  12757. }
  12758. },
  12759. back: {
  12760. height: math.unit(6 + 4/12, "feet"),
  12761. weight: math.unit(190, "lb"),
  12762. name: "Back",
  12763. image: {
  12764. source: "./media/characters/bmc/back.svg",
  12765. extra: 1640/1479,
  12766. bottom: 45/1685
  12767. }
  12768. },
  12769. frontArmor: {
  12770. height: math.unit(6 + 4/12, "feet"),
  12771. weight: math.unit(190, "lb"),
  12772. name: "Front-armor",
  12773. image: {
  12774. source: "./media/characters/bmc/front-armor.svg",
  12775. extra: 1538/1468,
  12776. bottom: 79/1617
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Human-sized",
  12783. height: math.unit(6 + 4 / 12, "feet")
  12784. },
  12785. {
  12786. name: "Interactive Size",
  12787. height: math.unit(25, "feet")
  12788. },
  12789. {
  12790. name: "Small",
  12791. height: math.unit(250, "feet")
  12792. },
  12793. {
  12794. name: "Normal",
  12795. height: math.unit(1250, "feet"),
  12796. default: true
  12797. },
  12798. {
  12799. name: "Good Day",
  12800. height: math.unit(88, "miles")
  12801. },
  12802. {
  12803. name: "Largest Measured Size",
  12804. height: math.unit(105.960, "galaxies")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(20, "feet"),
  12813. weight: math.unit(2016, "kg"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/sven-the-kaiju/front.svg",
  12817. extra: 1277/1250,
  12818. bottom: 35/1312
  12819. }
  12820. },
  12821. mouth: {
  12822. height: math.unit(1.85, "feet"),
  12823. name: "Mouth",
  12824. image: {
  12825. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Fairy",
  12832. height: math.unit(6, "inches")
  12833. },
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(20, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Rampage",
  12841. height: math.unit(200, "feet")
  12842. },
  12843. {
  12844. name: "Archfey Forest Guardian",
  12845. height: math.unit(1, "mile")
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(4, "meters"),
  12854. weight: math.unit(2, "tons"),
  12855. name: "Front",
  12856. image: {
  12857. source: "./media/characters/marik/front.svg",
  12858. extra: 1057 / 1003,
  12859. bottom: 0.08
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(4, "meters"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(20, "meters")
  12872. },
  12873. {
  12874. name: "Megamacro",
  12875. height: math.unit(50, "km")
  12876. },
  12877. {
  12878. name: "Gigamacro",
  12879. height: math.unit(100, "km")
  12880. },
  12881. {
  12882. name: "Alpha Macro",
  12883. height: math.unit(7.88e7, "yottameters")
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12889. {
  12890. front: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(110, "lb"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/mel/front.svg",
  12896. extra: 736 / 617,
  12897. bottom: 0.017
  12898. }
  12899. },
  12900. },
  12901. [
  12902. {
  12903. name: "Pico",
  12904. height: math.unit(3, "pm")
  12905. },
  12906. {
  12907. name: "Nano",
  12908. height: math.unit(3, "nm")
  12909. },
  12910. {
  12911. name: "Micro",
  12912. height: math.unit(0.3, "mm"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Micro+",
  12917. height: math.unit(3, "mm")
  12918. },
  12919. {
  12920. name: "Normal",
  12921. height: math.unit(5 + 10.5 / 12, "feet")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12927. {
  12928. kaiju: {
  12929. height: math.unit(1.75, "meters"),
  12930. weight: math.unit(55, "kg"),
  12931. name: "Kaiju",
  12932. image: {
  12933. source: "./media/characters/lykonous/kaiju.svg",
  12934. extra: 1055 / 946,
  12935. bottom: 0.135
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(2.5, "meters"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Kaiju Dragon",
  12947. height: math.unit(60, "meters")
  12948. },
  12949. {
  12950. name: "Mega Kaiju",
  12951. height: math.unit(120, "km")
  12952. },
  12953. {
  12954. name: "Giga Kaiju",
  12955. height: math.unit(200, "megameters")
  12956. },
  12957. {
  12958. name: "Terra Kaiju",
  12959. height: math.unit(400, "gigameters")
  12960. },
  12961. {
  12962. name: "Kaiju Dragon God",
  12963. height: math.unit(13000, "exaparsecs")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/blü/front.svg",
  12976. extra: 1883 / 1564,
  12977. bottom: 0.031
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Normal",
  12984. height: math.unit(13, "feet"),
  12985. default: true
  12986. },
  12987. {
  12988. name: "Big Boi",
  12989. height: math.unit(150, "meters")
  12990. },
  12991. {
  12992. name: "Mini Stomper",
  12993. height: math.unit(300, "meters")
  12994. },
  12995. {
  12996. name: "Macro",
  12997. height: math.unit(1000, "meters")
  12998. },
  12999. {
  13000. name: "Megamacro",
  13001. height: math.unit(11000, "meters")
  13002. },
  13003. {
  13004. name: "Gigamacro",
  13005. height: math.unit(11000, "km")
  13006. },
  13007. {
  13008. name: "Teramacro",
  13009. height: math.unit(420000, "km")
  13010. },
  13011. {
  13012. name: "Examacro",
  13013. height: math.unit(120, "parsecs")
  13014. },
  13015. {
  13016. name: "God Tho",
  13017. height: math.unit(98000000000, "parsecs")
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13023. {
  13024. taurFront: {
  13025. height: math.unit(6, "feet"),
  13026. weight: math.unit(200, "lb"),
  13027. name: "Taur (Front)",
  13028. image: {
  13029. source: "./media/characters/scales/taur-front.svg",
  13030. extra: 1,
  13031. bottom: 0.05
  13032. }
  13033. },
  13034. taurBack: {
  13035. height: math.unit(6, "feet"),
  13036. weight: math.unit(200, "lb"),
  13037. name: "Taur (Back)",
  13038. image: {
  13039. source: "./media/characters/scales/taur-back.svg",
  13040. extra: 1,
  13041. bottom: 0.08
  13042. }
  13043. },
  13044. anthro: {
  13045. height: math.unit(6 * 7 / 12, "feet"),
  13046. weight: math.unit(100, "lb"),
  13047. name: "Anthro",
  13048. image: {
  13049. source: "./media/characters/scales/anthro.svg",
  13050. extra: 1,
  13051. bottom: 0.06
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Normal",
  13058. height: math.unit(12, "feet"),
  13059. default: true
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/koragos/front.svg",
  13072. extra: 841 / 794,
  13073. bottom: 0.035
  13074. }
  13075. },
  13076. back: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(150, "lb"),
  13079. name: "Back",
  13080. image: {
  13081. source: "./media/characters/koragos/back.svg",
  13082. extra: 841 / 810,
  13083. bottom: 0.022
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(6 + 11 / 12, "feet"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Macro",
  13095. height: math.unit(490, "feet")
  13096. },
  13097. {
  13098. name: "Megamacro",
  13099. height: math.unit(10, "miles")
  13100. },
  13101. {
  13102. name: "Gigamacro",
  13103. height: math.unit(50, "miles")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(250, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/xylrem/front.svg",
  13116. extra: 3323 / 3050,
  13117. bottom: 0.065
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Micro",
  13124. height: math.unit(4, "feet")
  13125. },
  13126. {
  13127. name: "Normal",
  13128. height: math.unit(16, "feet"),
  13129. default: true
  13130. },
  13131. {
  13132. name: "Macro",
  13133. height: math.unit(2720, "feet")
  13134. },
  13135. {
  13136. name: "Megamacro",
  13137. height: math.unit(25000, "miles")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(8, "feet"),
  13146. weight: math.unit(250, "kg"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/ikideru/front.svg",
  13150. extra: 930 / 870,
  13151. bottom: 0.087
  13152. }
  13153. },
  13154. back: {
  13155. height: math.unit(8, "feet"),
  13156. weight: math.unit(250, "kg"),
  13157. name: "Back",
  13158. image: {
  13159. source: "./media/characters/ikideru/back.svg",
  13160. extra: 919 / 852,
  13161. bottom: 0.055
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Rare",
  13168. height: math.unit(8, "feet"),
  13169. default: true
  13170. },
  13171. {
  13172. name: "Playful Loom",
  13173. height: math.unit(80, "feet")
  13174. },
  13175. {
  13176. name: "City Leaner",
  13177. height: math.unit(230, "feet")
  13178. },
  13179. {
  13180. name: "Megamacro",
  13181. height: math.unit(2500, "feet")
  13182. },
  13183. {
  13184. name: "Gigamacro",
  13185. height: math.unit(26400, "feet")
  13186. },
  13187. {
  13188. name: "Tectonic Shifter",
  13189. height: math.unit(1.7, "megameters")
  13190. },
  13191. {
  13192. name: "Planet Carer",
  13193. height: math.unit(21, "megameters")
  13194. },
  13195. {
  13196. name: "God",
  13197. height: math.unit(11157.22, "parsecs")
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(120, "lb"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/neo/front.svg"
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Micro",
  13216. height: math.unit(2, "inches"),
  13217. default: true
  13218. },
  13219. {
  13220. name: "Human Size",
  13221. height: math.unit(5 + 8 / 12, "feet")
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(13 + 10 / 12, "feet"),
  13230. weight: math.unit(5320, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/chauncey-chantz/front.svg",
  13234. extra: 1587 / 1435,
  13235. bottom: 0.02
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(13 + 10 / 12, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(45, "feet")
  13248. },
  13249. {
  13250. name: "Megamacro",
  13251. height: math.unit(250, "miles")
  13252. },
  13253. {
  13254. name: "Planetary",
  13255. height: math.unit(10000, "miles")
  13256. },
  13257. {
  13258. name: "Galactic",
  13259. height: math.unit(40000, "parsecs")
  13260. },
  13261. {
  13262. name: "Universal",
  13263. height: math.unit(1, "yottameter")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13269. {
  13270. front: {
  13271. height: math.unit(6, "feet"),
  13272. weight: math.unit(150, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/epifox/front.svg",
  13276. extra: 1,
  13277. bottom: 0.075
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Micro",
  13284. height: math.unit(6, "inches")
  13285. },
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(12, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(3810, "feet")
  13294. },
  13295. {
  13296. name: "Megamacro",
  13297. height: math.unit(500, "miles")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(1.8796, "m"),
  13306. weight: math.unit(230, "lb"),
  13307. name: "Front",
  13308. image: {
  13309. source: "./media/characters/colin-t/front.svg",
  13310. extra: 1272 / 1193,
  13311. bottom: 0.07
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Micro",
  13318. height: math.unit(0.571, "meters")
  13319. },
  13320. {
  13321. name: "Normal",
  13322. height: math.unit(1.8796, "meters"),
  13323. default: true
  13324. },
  13325. {
  13326. name: "Tall",
  13327. height: math.unit(4, "meters")
  13328. },
  13329. {
  13330. name: "Macro",
  13331. height: math.unit(67.241, "meters")
  13332. },
  13333. {
  13334. name: "Megamacro",
  13335. height: math.unit(371.856, "meters")
  13336. },
  13337. {
  13338. name: "Planetary",
  13339. height: math.unit(12631.5689, "km")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(1.85, "meters"),
  13348. weight: math.unit(80, "kg"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/matvei/front.svg",
  13352. extra: 456/447,
  13353. bottom: 8/464
  13354. }
  13355. },
  13356. back: {
  13357. height: math.unit(1.85, "meters"),
  13358. weight: math.unit(80, "kg"),
  13359. name: "Back",
  13360. image: {
  13361. source: "./media/characters/matvei/back.svg",
  13362. extra: 434/427,
  13363. bottom: 11/445
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(1.85, "meters"),
  13371. default: true
  13372. },
  13373. ]
  13374. ))
  13375. characterMakers.push(() => makeCharacter(
  13376. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13377. {
  13378. front: {
  13379. height: math.unit(5 + 9 / 12, "feet"),
  13380. weight: math.unit(70, "lb"),
  13381. name: "Front",
  13382. image: {
  13383. source: "./media/characters/quincy/front.svg",
  13384. extra: 3041 / 2751
  13385. }
  13386. },
  13387. back: {
  13388. height: math.unit(5 + 9 / 12, "feet"),
  13389. weight: math.unit(70, "lb"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/quincy/back.svg",
  13393. extra: 3041 / 2751
  13394. }
  13395. },
  13396. flying: {
  13397. height: math.unit(5 + 4 / 12, "feet"),
  13398. weight: math.unit(70, "lb"),
  13399. name: "Flying",
  13400. image: {
  13401. source: "./media/characters/quincy/flying.svg",
  13402. extra: 1044 / 930
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Micro",
  13409. height: math.unit(3, "cm")
  13410. },
  13411. {
  13412. name: "Normal",
  13413. height: math.unit(5 + 9 / 12, "feet")
  13414. },
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(200, "meters"),
  13418. default: true
  13419. },
  13420. {
  13421. name: "Megamacro",
  13422. height: math.unit(1000, "meters")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(3 + 11/12, "feet"),
  13431. weight: math.unit(50, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/vanrel/front.svg",
  13435. extra: 1104/949,
  13436. bottom: 52/1156
  13437. }
  13438. },
  13439. back: {
  13440. height: math.unit(3 + 11/12, "feet"),
  13441. weight: math.unit(50, "lb"),
  13442. name: "Back",
  13443. image: {
  13444. source: "./media/characters/vanrel/back.svg",
  13445. extra: 1119/976,
  13446. bottom: 37/1156
  13447. }
  13448. },
  13449. tome: {
  13450. height: math.unit(1.35, "feet"),
  13451. weight: math.unit(10, "lb"),
  13452. name: "Vanrel's Tome",
  13453. rename: true,
  13454. image: {
  13455. source: "./media/characters/vanrel/tome.svg"
  13456. }
  13457. },
  13458. beans: {
  13459. height: math.unit(0.89, "feet"),
  13460. name: "Beans",
  13461. image: {
  13462. source: "./media/characters/vanrel/beans.svg"
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(3 + 11/12, "feet"),
  13470. default: true
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(7 + 5 / 12, "feet"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/kuiper-vanrel/front.svg",
  13482. extra: 1219/1169,
  13483. bottom: 69/1288
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(7 + 5 / 12, "feet"),
  13488. name: "Back",
  13489. image: {
  13490. source: "./media/characters/kuiper-vanrel/back.svg",
  13491. extra: 1236/1193,
  13492. bottom: 27/1263
  13493. }
  13494. },
  13495. foot: {
  13496. height: math.unit(0.55, "meters"),
  13497. name: "Foot",
  13498. image: {
  13499. source: "./media/characters/kuiper-vanrel/foot.svg",
  13500. }
  13501. },
  13502. battle: {
  13503. height: math.unit(6.824, "feet"),
  13504. name: "Battle",
  13505. image: {
  13506. source: "./media/characters/kuiper-vanrel/battle.svg",
  13507. extra: 1466 / 1327,
  13508. bottom: 29 / 1492.5
  13509. }
  13510. },
  13511. meerkui: {
  13512. height: math.unit(18, "inches"),
  13513. name: "Meerkui",
  13514. image: {
  13515. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13516. extra: 1354/1289,
  13517. bottom: 69/1423
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(7 + 5 / 12, "feet"),
  13525. default: true
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(8 + 5 / 12, "feet"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/keset-vanrel/front.svg",
  13537. extra: 1231/1148,
  13538. bottom: 82/1313
  13539. }
  13540. },
  13541. back: {
  13542. height: math.unit(8 + 5 / 12, "feet"),
  13543. name: "Back",
  13544. image: {
  13545. source: "./media/characters/keset-vanrel/back.svg",
  13546. extra: 1240/1174,
  13547. bottom: 33/1273
  13548. }
  13549. },
  13550. hand: {
  13551. height: math.unit(0.6, "meters"),
  13552. name: "Hand",
  13553. image: {
  13554. source: "./media/characters/keset-vanrel/hand.svg"
  13555. }
  13556. },
  13557. foot: {
  13558. height: math.unit(0.94978, "meters"),
  13559. name: "Foot",
  13560. image: {
  13561. source: "./media/characters/keset-vanrel/foot.svg"
  13562. }
  13563. },
  13564. battle: {
  13565. height: math.unit(7.408, "feet"),
  13566. name: "Battle",
  13567. image: {
  13568. source: "./media/characters/keset-vanrel/battle.svg",
  13569. extra: 1890 / 1386,
  13570. bottom: 73.28 / 1970
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Normal",
  13577. height: math.unit(8 + 5 / 12, "feet"),
  13578. default: true
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/neos/front.svg",
  13591. extra: 1696 / 992,
  13592. bottom: 0.14
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Normal",
  13599. height: math.unit(54, "cm"),
  13600. default: true
  13601. },
  13602. {
  13603. name: "Macro",
  13604. height: math.unit(100, "m")
  13605. },
  13606. {
  13607. name: "Megamacro",
  13608. height: math.unit(10, "km")
  13609. },
  13610. {
  13611. name: "Megamacro+",
  13612. height: math.unit(100, "km")
  13613. },
  13614. {
  13615. name: "Gigamacro",
  13616. height: math.unit(100, "Mm")
  13617. },
  13618. {
  13619. name: "Teramacro",
  13620. height: math.unit(100, "Gm")
  13621. },
  13622. {
  13623. name: "Examacro",
  13624. height: math.unit(100, "Em")
  13625. },
  13626. {
  13627. name: "Godly",
  13628. height: math.unit(10000, "Ym")
  13629. },
  13630. {
  13631. name: "Beyond Godly",
  13632. height: math.unit(25, "multiverses")
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13638. {
  13639. feminine: {
  13640. height: math.unit(5, "feet"),
  13641. weight: math.unit(100, "lb"),
  13642. name: "Feminine",
  13643. image: {
  13644. source: "./media/characters/sammy-mouse/feminine.svg",
  13645. extra: 2526 / 2425,
  13646. bottom: 0.123
  13647. }
  13648. },
  13649. masculine: {
  13650. height: math.unit(5, "feet"),
  13651. weight: math.unit(100, "lb"),
  13652. name: "Masculine",
  13653. image: {
  13654. source: "./media/characters/sammy-mouse/masculine.svg",
  13655. extra: 2526 / 2425,
  13656. bottom: 0.123
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Micro",
  13663. height: math.unit(5, "inches")
  13664. },
  13665. {
  13666. name: "Normal",
  13667. height: math.unit(5, "feet"),
  13668. default: true
  13669. },
  13670. {
  13671. name: "Macro",
  13672. height: math.unit(60, "feet")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(4, "feet"),
  13681. weight: math.unit(50, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/kole/front.svg",
  13685. extra: 1423 / 1303,
  13686. bottom: 0.025
  13687. }
  13688. },
  13689. back: {
  13690. height: math.unit(4, "feet"),
  13691. weight: math.unit(50, "lb"),
  13692. name: "Back",
  13693. image: {
  13694. source: "./media/characters/kole/back.svg",
  13695. extra: 1426 / 1280,
  13696. bottom: 0.02
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Normal",
  13703. height: math.unit(4, "feet"),
  13704. default: true
  13705. },
  13706. ]
  13707. ))
  13708. characterMakers.push(() => makeCharacter(
  13709. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13710. {
  13711. front: {
  13712. height: math.unit(2.5, "feet"),
  13713. weight: math.unit(32, "lb"),
  13714. name: "Front",
  13715. image: {
  13716. source: "./media/characters/rufran/front.svg",
  13717. extra: 1313/885,
  13718. bottom: 94/1407
  13719. }
  13720. },
  13721. side: {
  13722. height: math.unit(2.5, "feet"),
  13723. weight: math.unit(32, "lb"),
  13724. name: "Side",
  13725. image: {
  13726. source: "./media/characters/rufran/side.svg",
  13727. extra: 1109/852,
  13728. bottom: 118/1227
  13729. }
  13730. },
  13731. back: {
  13732. height: math.unit(2.5, "feet"),
  13733. weight: math.unit(32, "lb"),
  13734. name: "Back",
  13735. image: {
  13736. source: "./media/characters/rufran/back.svg",
  13737. extra: 1280/878,
  13738. bottom: 131/1411
  13739. }
  13740. },
  13741. mouth: {
  13742. height: math.unit(1.13, "feet"),
  13743. name: "Mouth",
  13744. image: {
  13745. source: "./media/characters/rufran/mouth.svg"
  13746. }
  13747. },
  13748. foot: {
  13749. height: math.unit(1.33, "feet"),
  13750. name: "Foot",
  13751. image: {
  13752. source: "./media/characters/rufran/foot.svg"
  13753. }
  13754. },
  13755. koboldFront: {
  13756. height: math.unit(2 + 6 / 12, "feet"),
  13757. weight: math.unit(20, "lb"),
  13758. name: "Front (Kobold)",
  13759. image: {
  13760. source: "./media/characters/rufran/kobold-front.svg",
  13761. extra: 2041 / 1839,
  13762. bottom: 0.055
  13763. }
  13764. },
  13765. koboldBack: {
  13766. height: math.unit(2 + 6 / 12, "feet"),
  13767. weight: math.unit(20, "lb"),
  13768. name: "Back (Kobold)",
  13769. image: {
  13770. source: "./media/characters/rufran/kobold-back.svg",
  13771. extra: 2054 / 1839,
  13772. bottom: 0.01
  13773. }
  13774. },
  13775. koboldHand: {
  13776. height: math.unit(0.2166, "meters"),
  13777. name: "Hand (Kobold)",
  13778. image: {
  13779. source: "./media/characters/rufran/kobold-hand.svg"
  13780. }
  13781. },
  13782. koboldFoot: {
  13783. height: math.unit(0.185, "meters"),
  13784. name: "Foot (Kobold)",
  13785. image: {
  13786. source: "./media/characters/rufran/kobold-foot.svg"
  13787. }
  13788. },
  13789. },
  13790. [
  13791. {
  13792. name: "Micro",
  13793. height: math.unit(1, "inch")
  13794. },
  13795. {
  13796. name: "Normal",
  13797. height: math.unit(2 + 6 / 12, "feet"),
  13798. default: true
  13799. },
  13800. {
  13801. name: "Big",
  13802. height: math.unit(60, "feet")
  13803. },
  13804. {
  13805. name: "Macro",
  13806. height: math.unit(325, "feet")
  13807. },
  13808. ]
  13809. ))
  13810. characterMakers.push(() => makeCharacter(
  13811. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13812. {
  13813. front: {
  13814. height: math.unit(0.3, "meters"),
  13815. weight: math.unit(3.5, "kg"),
  13816. name: "Front",
  13817. image: {
  13818. source: "./media/characters/chip/front.svg",
  13819. extra: 748 / 674
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Micro",
  13826. height: math.unit(1, "inch"),
  13827. default: true
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13833. {
  13834. side: {
  13835. height: math.unit(2.3, "meters"),
  13836. weight: math.unit(3500, "lb"),
  13837. name: "Side",
  13838. image: {
  13839. source: "./media/characters/torvid/side.svg",
  13840. extra: 1972 / 722,
  13841. bottom: 0.035
  13842. }
  13843. },
  13844. },
  13845. [
  13846. {
  13847. name: "Normal",
  13848. height: math.unit(2.3, "meters"),
  13849. default: true
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13855. {
  13856. front: {
  13857. height: math.unit(2, "meters"),
  13858. weight: math.unit(150.5, "kg"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/susan/front.svg",
  13862. extra: 693 / 635,
  13863. bottom: 0.05
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Megamacro",
  13870. height: math.unit(505, "miles"),
  13871. default: true
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(6, "feet"),
  13880. weight: math.unit(150, "lb"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/raindrops/front.svg",
  13884. extra: 2655 / 2461,
  13885. bottom: 49 / 2705
  13886. }
  13887. },
  13888. back: {
  13889. height: math.unit(6, "feet"),
  13890. weight: math.unit(150, "lb"),
  13891. name: "Back",
  13892. image: {
  13893. source: "./media/characters/raindrops/back.svg",
  13894. extra: 2574 / 2400,
  13895. bottom: 65 / 2634
  13896. }
  13897. },
  13898. },
  13899. [
  13900. {
  13901. name: "Micro",
  13902. height: math.unit(6, "inches")
  13903. },
  13904. {
  13905. name: "Normal",
  13906. height: math.unit(6 + 2 / 12, "feet")
  13907. },
  13908. {
  13909. name: "Macro",
  13910. height: math.unit(131, "feet"),
  13911. default: true
  13912. },
  13913. {
  13914. name: "Megamacro",
  13915. height: math.unit(15, "miles")
  13916. },
  13917. {
  13918. name: "Gigamacro",
  13919. height: math.unit(4000, "miles")
  13920. },
  13921. {
  13922. name: "Teramacro",
  13923. height: math.unit(315000, "miles")
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(2.794, "meters"),
  13932. weight: math.unit(325, "kg"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/tezwa/front.svg",
  13936. extra: 2083 / 1906,
  13937. bottom: 0.031
  13938. }
  13939. },
  13940. foot: {
  13941. height: math.unit(0.687, "meters"),
  13942. name: "Foot",
  13943. image: {
  13944. source: "./media/characters/tezwa/foot.svg"
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Normal",
  13951. height: math.unit(9 + 2 / 12, "feet"),
  13952. default: true
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(58, "feet"),
  13961. weight: math.unit(89000, "lb"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/typhus/front.svg",
  13965. extra: 816 / 800,
  13966. bottom: 0.065
  13967. }
  13968. },
  13969. },
  13970. [
  13971. {
  13972. name: "Macro",
  13973. height: math.unit(58, "feet"),
  13974. default: true
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(12, "feet"),
  13983. weight: math.unit(6, "tonnes"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/lyra-von-wulf/front.svg",
  13987. extra: 1,
  13988. bottom: 0.10
  13989. }
  13990. },
  13991. frontMecha: {
  13992. height: math.unit(12, "feet"),
  13993. weight: math.unit(12, "tonnes"),
  13994. name: "Front (Mecha)",
  13995. image: {
  13996. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13997. extra: 1,
  13998. bottom: 0.042
  13999. }
  14000. },
  14001. maw: {
  14002. height: math.unit(2.2, "feet"),
  14003. name: "Maw",
  14004. image: {
  14005. source: "./media/characters/lyra-von-wulf/maw.svg"
  14006. }
  14007. },
  14008. },
  14009. [
  14010. {
  14011. name: "Normal",
  14012. height: math.unit(12, "feet"),
  14013. default: true
  14014. },
  14015. {
  14016. name: "Classic",
  14017. height: math.unit(50, "feet")
  14018. },
  14019. {
  14020. name: "Macro",
  14021. height: math.unit(500, "feet")
  14022. },
  14023. {
  14024. name: "Megamacro",
  14025. height: math.unit(1, "mile")
  14026. },
  14027. {
  14028. name: "Gigamacro",
  14029. height: math.unit(400, "miles")
  14030. },
  14031. {
  14032. name: "Teramacro",
  14033. height: math.unit(22000, "miles")
  14034. },
  14035. {
  14036. name: "Solarmacro",
  14037. height: math.unit(8600000, "miles")
  14038. },
  14039. {
  14040. name: "Galactic",
  14041. height: math.unit(1057000, "lightyears")
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(6 + 10 / 12, "feet"),
  14050. weight: math.unit(150, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/dixon/front.svg",
  14054. extra: 3361 / 3209,
  14055. bottom: 0.01
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Normal",
  14062. height: math.unit(6 + 10 / 12, "feet"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Big",
  14067. height: math.unit(12, "meters")
  14068. },
  14069. {
  14070. name: "Macro",
  14071. height: math.unit(500, "meters")
  14072. },
  14073. {
  14074. name: "Megamacro",
  14075. height: math.unit(2, "km")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(185, "cm"),
  14084. weight: math.unit(68, "kg"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/kauko/front.svg",
  14088. extra: 1455 / 1421,
  14089. bottom: 0.03
  14090. }
  14091. },
  14092. back: {
  14093. height: math.unit(185, "cm"),
  14094. weight: math.unit(68, "kg"),
  14095. name: "Back",
  14096. image: {
  14097. source: "./media/characters/kauko/back.svg",
  14098. extra: 1455 / 1421,
  14099. bottom: 0.004
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(185, "cm"),
  14107. default: true
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14113. {
  14114. frontSfw: {
  14115. height: math.unit(5, "meters"),
  14116. weight: math.unit(4250, "lb"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/varg/front-sfw.svg",
  14120. extra: 1103/1010,
  14121. bottom: 50/1153
  14122. },
  14123. form: "anthro",
  14124. default: true
  14125. },
  14126. backSfw: {
  14127. height: math.unit(5, "meters"),
  14128. weight: math.unit(4250, "lb"),
  14129. name: "Back",
  14130. image: {
  14131. source: "./media/characters/varg/back-sfw.svg",
  14132. extra: 1038/1022,
  14133. bottom: 36/1074
  14134. },
  14135. form: "anthro"
  14136. },
  14137. frontNsfw: {
  14138. height: math.unit(5, "meters"),
  14139. weight: math.unit(4250, "lb"),
  14140. name: "Front (NSFW)",
  14141. image: {
  14142. source: "./media/characters/varg/front-nsfw.svg",
  14143. extra: 1103/1010,
  14144. bottom: 50/1153
  14145. },
  14146. form: "anthro"
  14147. },
  14148. sheath: {
  14149. height: math.unit(3.8, "feet"),
  14150. weight: math.unit(90, "kilograms"),
  14151. name: "Sheath",
  14152. image: {
  14153. source: "./media/characters/varg/sheath.svg"
  14154. },
  14155. form: "anthro"
  14156. },
  14157. dick: {
  14158. height: math.unit(4.6, "feet"),
  14159. weight: math.unit(451, "kilograms"),
  14160. name: "Dick",
  14161. image: {
  14162. source: "./media/characters/varg/dick.svg"
  14163. },
  14164. form: "anthro"
  14165. },
  14166. feralSfw: {
  14167. height: math.unit(5, "meters"),
  14168. weight: math.unit(100000, "lb"),
  14169. name: "Side",
  14170. image: {
  14171. source: "./media/characters/varg/feral-sfw.svg",
  14172. extra: 1065/511,
  14173. bottom: 211/1276
  14174. },
  14175. form: "feral",
  14176. default: true
  14177. },
  14178. feralNsfw: {
  14179. height: math.unit(5, "meters"),
  14180. weight: math.unit(100000, "lb"),
  14181. name: "Side (NSFW)",
  14182. image: {
  14183. source: "./media/characters/varg/feral-nsfw.svg",
  14184. extra: 1065/511,
  14185. bottom: 211/1276
  14186. },
  14187. form: "feral",
  14188. },
  14189. feralSheath: {
  14190. height: math.unit(9.8, "feet"),
  14191. weight: math.unit(2000, "kilograms"),
  14192. name: "Sheath",
  14193. image: {
  14194. source: "./media/characters/varg/sheath.svg"
  14195. },
  14196. form: "feral"
  14197. },
  14198. feralDick: {
  14199. height: math.unit(13.11, "feet"),
  14200. weight: math.unit(10440, "kilograms"),
  14201. name: "Dick",
  14202. image: {
  14203. source: "./media/characters/varg/dick.svg"
  14204. },
  14205. form: "feral"
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Normal",
  14211. height: math.unit(5, "meters"),
  14212. form: "anthro"
  14213. },
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(200, "meters"),
  14217. form: "anthro"
  14218. },
  14219. {
  14220. name: "Megamacro",
  14221. height: math.unit(20, "kilometers"),
  14222. form: "anthro"
  14223. },
  14224. {
  14225. name: "True Size",
  14226. height: math.unit(211, "km"),
  14227. form: "anthro",
  14228. default: true
  14229. },
  14230. {
  14231. name: "Gigamacro",
  14232. height: math.unit(1000, "km"),
  14233. form: "anthro"
  14234. },
  14235. {
  14236. name: "Gigamacro+",
  14237. height: math.unit(8000, "km"),
  14238. form: "anthro"
  14239. },
  14240. {
  14241. name: "Teramacro",
  14242. height: math.unit(1000000, "km"),
  14243. form: "anthro"
  14244. },
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(5, "meters"),
  14248. form: "feral"
  14249. },
  14250. {
  14251. name: "Macro",
  14252. height: math.unit(200, "meters"),
  14253. form: "feral"
  14254. },
  14255. {
  14256. name: "Megamacro",
  14257. height: math.unit(20, "kilometers"),
  14258. form: "feral"
  14259. },
  14260. {
  14261. name: "True Size",
  14262. height: math.unit(211, "km"),
  14263. form: "feral",
  14264. default: true
  14265. },
  14266. {
  14267. name: "Gigamacro",
  14268. height: math.unit(1000, "km"),
  14269. form: "feral"
  14270. },
  14271. {
  14272. name: "Gigamacro+",
  14273. height: math.unit(8000, "km"),
  14274. form: "feral"
  14275. },
  14276. {
  14277. name: "Teramacro",
  14278. height: math.unit(1000000, "km"),
  14279. form: "feral"
  14280. },
  14281. ],
  14282. {
  14283. "anthro": {
  14284. name: "Anthro",
  14285. default: true
  14286. },
  14287. "feral": {
  14288. name: "Feral",
  14289. },
  14290. }
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(7 + 7 / 12, "feet"),
  14297. weight: math.unit(267, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/dayza/front.svg",
  14301. extra: 1262 / 1200,
  14302. bottom: 0.035
  14303. }
  14304. },
  14305. side: {
  14306. height: math.unit(7 + 7 / 12, "feet"),
  14307. weight: math.unit(267, "lb"),
  14308. name: "Side",
  14309. image: {
  14310. source: "./media/characters/dayza/side.svg",
  14311. extra: 1295 / 1245,
  14312. bottom: 0.05
  14313. }
  14314. },
  14315. back: {
  14316. height: math.unit(7 + 7 / 12, "feet"),
  14317. weight: math.unit(267, "lb"),
  14318. name: "Back",
  14319. image: {
  14320. source: "./media/characters/dayza/back.svg",
  14321. extra: 1241 / 1170
  14322. }
  14323. },
  14324. },
  14325. [
  14326. {
  14327. name: "Normal",
  14328. height: math.unit(7 + 7 / 12, "feet"),
  14329. default: true
  14330. },
  14331. {
  14332. name: "Macro",
  14333. height: math.unit(155, "feet")
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14339. {
  14340. front: {
  14341. height: math.unit(6 + 5 / 12, "feet"),
  14342. weight: math.unit(160, "lb"),
  14343. name: "Front",
  14344. image: {
  14345. source: "./media/characters/xanthos/front.svg",
  14346. extra: 1,
  14347. bottom: 0.04
  14348. }
  14349. },
  14350. back: {
  14351. height: math.unit(6 + 5 / 12, "feet"),
  14352. weight: math.unit(160, "lb"),
  14353. name: "Back",
  14354. image: {
  14355. source: "./media/characters/xanthos/back.svg",
  14356. extra: 1,
  14357. bottom: 0.03
  14358. }
  14359. },
  14360. hand: {
  14361. height: math.unit(0.928, "feet"),
  14362. name: "Hand",
  14363. image: {
  14364. source: "./media/characters/xanthos/hand.svg"
  14365. }
  14366. },
  14367. foot: {
  14368. height: math.unit(1.286, "feet"),
  14369. name: "Foot",
  14370. image: {
  14371. source: "./media/characters/xanthos/foot.svg"
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(6 + 5 / 12, "feet"),
  14379. default: true
  14380. },
  14381. {
  14382. name: "Normal+",
  14383. height: math.unit(6, "meters")
  14384. },
  14385. {
  14386. name: "Macro",
  14387. height: math.unit(40, "feet")
  14388. },
  14389. {
  14390. name: "Macro+",
  14391. height: math.unit(200, "meters")
  14392. },
  14393. {
  14394. name: "Megamacro",
  14395. height: math.unit(20, "km")
  14396. },
  14397. {
  14398. name: "Megamacro+",
  14399. height: math.unit(100, "km")
  14400. },
  14401. {
  14402. name: "Gigamacro",
  14403. height: math.unit(200, "megameters")
  14404. },
  14405. {
  14406. name: "Gigamacro+",
  14407. height: math.unit(1.5, "gigameters")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(6 + 3 / 12, "feet"),
  14416. weight: math.unit(215, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/grynn/front.svg",
  14420. extra: 4627 / 4209,
  14421. bottom: 0.047
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Micro",
  14428. height: math.unit(6, "inches")
  14429. },
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(6 + 3 / 12, "feet"),
  14433. default: true
  14434. },
  14435. {
  14436. name: "Big",
  14437. height: math.unit(104, "feet")
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(944, "feet")
  14442. },
  14443. {
  14444. name: "Macro+",
  14445. height: math.unit(9480, "feet")
  14446. },
  14447. {
  14448. name: "Megamacro",
  14449. height: math.unit(78752, "feet")
  14450. },
  14451. {
  14452. name: "Megamacro+",
  14453. height: math.unit(630128, "feet")
  14454. },
  14455. {
  14456. name: "Megamacro++",
  14457. height: math.unit(3150695, "feet")
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(7 + 5 / 12, "feet"),
  14466. weight: math.unit(450, "lb"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/mocha-aura/front.svg",
  14470. extra: 1907 / 1817,
  14471. bottom: 0.04
  14472. }
  14473. },
  14474. back: {
  14475. height: math.unit(7 + 5 / 12, "feet"),
  14476. weight: math.unit(450, "lb"),
  14477. name: "Back",
  14478. image: {
  14479. source: "./media/characters/mocha-aura/back.svg",
  14480. extra: 1900 / 1825,
  14481. bottom: 0.045
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Nano",
  14488. height: math.unit(1, "nm")
  14489. },
  14490. {
  14491. name: "Megamicro",
  14492. height: math.unit(1, "mm")
  14493. },
  14494. {
  14495. name: "Micro",
  14496. height: math.unit(3, "inches")
  14497. },
  14498. {
  14499. name: "Normal",
  14500. height: math.unit(7 + 5 / 12, "feet"),
  14501. default: true
  14502. },
  14503. {
  14504. name: "Macro",
  14505. height: math.unit(30, "feet")
  14506. },
  14507. {
  14508. name: "Megamacro",
  14509. height: math.unit(3500, "feet")
  14510. },
  14511. {
  14512. name: "Teramacro",
  14513. height: math.unit(500000, "miles")
  14514. },
  14515. {
  14516. name: "Petamacro",
  14517. height: math.unit(50000000000000000, "parsecs")
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14523. {
  14524. front: {
  14525. height: math.unit(6, "feet"),
  14526. weight: math.unit(150, "lb"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/ilisha-devya/front.svg",
  14530. extra: 1053/1049,
  14531. bottom: 270/1323
  14532. }
  14533. },
  14534. back: {
  14535. height: math.unit(6, "feet"),
  14536. weight: math.unit(150, "lb"),
  14537. name: "Back",
  14538. image: {
  14539. source: "./media/characters/ilisha-devya/back.svg",
  14540. extra: 1131/1128,
  14541. bottom: 39/1170
  14542. }
  14543. },
  14544. },
  14545. [
  14546. {
  14547. name: "Macro",
  14548. height: math.unit(500, "feet"),
  14549. default: true
  14550. },
  14551. {
  14552. name: "Megamacro",
  14553. height: math.unit(10, "miles")
  14554. },
  14555. {
  14556. name: "Gigamacro",
  14557. height: math.unit(100000, "miles")
  14558. },
  14559. {
  14560. name: "Examacro",
  14561. height: math.unit(1e9, "lightyears")
  14562. },
  14563. {
  14564. name: "Omniversal",
  14565. height: math.unit(1e33, "lightyears")
  14566. },
  14567. {
  14568. name: "Beyond Infinite",
  14569. height: math.unit(1e100, "lightyears")
  14570. },
  14571. ]
  14572. ))
  14573. characterMakers.push(() => makeCharacter(
  14574. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14575. {
  14576. Side: {
  14577. height: math.unit(6, "feet"),
  14578. weight: math.unit(150, "lb"),
  14579. name: "Side",
  14580. image: {
  14581. source: "./media/characters/mira/side.svg",
  14582. extra: 900 / 799,
  14583. bottom: 0.02
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Human Size",
  14590. height: math.unit(6, "feet")
  14591. },
  14592. {
  14593. name: "Macro",
  14594. height: math.unit(100, "feet"),
  14595. default: true
  14596. },
  14597. {
  14598. name: "Megamacro",
  14599. height: math.unit(10, "miles")
  14600. },
  14601. {
  14602. name: "Gigamacro",
  14603. height: math.unit(25000, "miles")
  14604. },
  14605. {
  14606. name: "Teramacro",
  14607. height: math.unit(300, "AU")
  14608. },
  14609. {
  14610. name: "Full Size",
  14611. height: math.unit(4.5e10, "lightyears")
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14617. {
  14618. front: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Front",
  14622. image: {
  14623. source: "./media/characters/holly/front.svg",
  14624. extra: 639 / 606
  14625. }
  14626. },
  14627. back: {
  14628. height: math.unit(6, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Back",
  14631. image: {
  14632. source: "./media/characters/holly/back.svg",
  14633. extra: 623 / 598
  14634. }
  14635. },
  14636. frontWorking: {
  14637. height: math.unit(6, "feet"),
  14638. weight: math.unit(150, "lb"),
  14639. name: "Front (Working)",
  14640. image: {
  14641. source: "./media/characters/holly/front-working.svg",
  14642. extra: 607 / 577,
  14643. bottom: 0.048
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(12 + 3 / 12, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(6, "feet"),
  14660. weight: math.unit(150, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/porter/front.svg",
  14664. extra: 1,
  14665. bottom: 0.01
  14666. }
  14667. },
  14668. frontRobes: {
  14669. height: math.unit(6, "feet"),
  14670. weight: math.unit(150, "lb"),
  14671. name: "Front (Robes)",
  14672. image: {
  14673. source: "./media/characters/porter/front-robes.svg",
  14674. extra: 1.01,
  14675. bottom: 0.01
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Normal",
  14682. height: math.unit(11 + 9 / 12, "feet"),
  14683. default: true
  14684. },
  14685. ]
  14686. ))
  14687. characterMakers.push(() => makeCharacter(
  14688. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14689. {
  14690. legendary: {
  14691. height: math.unit(6, "feet"),
  14692. weight: math.unit(150, "lb"),
  14693. name: "Legendary",
  14694. image: {
  14695. source: "./media/characters/lucy/legendary.svg",
  14696. extra: 1355 / 1100,
  14697. bottom: 0.045
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Legendary",
  14704. height: math.unit(86882 * 2, "miles"),
  14705. default: true
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14711. {
  14712. front: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(150, "lb"),
  14715. name: "Front",
  14716. image: {
  14717. source: "./media/characters/drusilla/front.svg",
  14718. extra: 678 / 635,
  14719. bottom: 0.03
  14720. }
  14721. },
  14722. back: {
  14723. height: math.unit(6, "feet"),
  14724. weight: math.unit(150, "lb"),
  14725. name: "Back",
  14726. image: {
  14727. source: "./media/characters/drusilla/back.svg",
  14728. extra: 678 / 635,
  14729. bottom: 0.005
  14730. }
  14731. },
  14732. },
  14733. [
  14734. {
  14735. name: "Macro",
  14736. height: math.unit(100, "feet")
  14737. },
  14738. {
  14739. name: "Canon Height",
  14740. height: math.unit(2000, "feet"),
  14741. default: true
  14742. },
  14743. ]
  14744. ))
  14745. characterMakers.push(() => makeCharacter(
  14746. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14747. {
  14748. front: {
  14749. height: math.unit(6, "feet"),
  14750. weight: math.unit(180, "lb"),
  14751. name: "Front",
  14752. image: {
  14753. source: "./media/characters/renard-thatch/front.svg",
  14754. extra: 2411 / 2275,
  14755. bottom: 0.01
  14756. }
  14757. },
  14758. frontPosing: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(180, "lb"),
  14761. name: "Front (Posing)",
  14762. image: {
  14763. source: "./media/characters/renard-thatch/front-posing.svg",
  14764. extra: 2381 / 2261,
  14765. bottom: 0.01
  14766. }
  14767. },
  14768. back: {
  14769. height: math.unit(6, "feet"),
  14770. weight: math.unit(180, "lb"),
  14771. name: "Back",
  14772. image: {
  14773. source: "./media/characters/renard-thatch/back.svg",
  14774. extra: 2428 / 2288
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Micro",
  14781. height: math.unit(3, "inches")
  14782. },
  14783. {
  14784. name: "Default",
  14785. height: math.unit(6, "feet"),
  14786. default: true
  14787. },
  14788. {
  14789. name: "Macro",
  14790. height: math.unit(75, "feet")
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(1450, "feet"),
  14799. weight: math.unit(1.21e6, "tons"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/sekvra/front.svg",
  14803. extra: 1193/1190,
  14804. bottom: 78/1271
  14805. }
  14806. },
  14807. side: {
  14808. height: math.unit(1450, "feet"),
  14809. weight: math.unit(1.21e6, "tons"),
  14810. name: "Side",
  14811. image: {
  14812. source: "./media/characters/sekvra/side.svg",
  14813. extra: 1193/1190,
  14814. bottom: 52/1245
  14815. }
  14816. },
  14817. back: {
  14818. height: math.unit(1450, "feet"),
  14819. weight: math.unit(1.21e6, "tons"),
  14820. name: "Back",
  14821. image: {
  14822. source: "./media/characters/sekvra/back.svg",
  14823. extra: 1219/1216,
  14824. bottom: 21/1240
  14825. }
  14826. },
  14827. frontClothed: {
  14828. height: math.unit(1450, "feet"),
  14829. weight: math.unit(1.21e6, "tons"),
  14830. name: "Front (Clothed)",
  14831. image: {
  14832. source: "./media/characters/sekvra/front-clothed.svg",
  14833. extra: 1192/1189,
  14834. bottom: 79/1271
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Macro",
  14841. height: math.unit(1450, "feet"),
  14842. default: true
  14843. },
  14844. {
  14845. name: "Megamacro",
  14846. height: math.unit(15000, "feet")
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14852. {
  14853. front: {
  14854. height: math.unit(6, "feet"),
  14855. weight: math.unit(150, "lb"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/carmine/front.svg",
  14859. extra: 1557/1538,
  14860. bottom: 68/1625
  14861. }
  14862. },
  14863. frontArmor: {
  14864. height: math.unit(6, "feet"),
  14865. weight: math.unit(150, "lb"),
  14866. name: "Front (Armor)",
  14867. image: {
  14868. source: "./media/characters/carmine/front-armor.svg",
  14869. extra: 1549/1530,
  14870. bottom: 82/1631
  14871. }
  14872. },
  14873. mouth: {
  14874. height: math.unit(0.55, "feet"),
  14875. name: "Mouth",
  14876. image: {
  14877. source: "./media/characters/carmine/mouth.svg"
  14878. }
  14879. },
  14880. hand: {
  14881. height: math.unit(1.05, "feet"),
  14882. name: "Hand",
  14883. image: {
  14884. source: "./media/characters/carmine/hand.svg"
  14885. }
  14886. },
  14887. foot: {
  14888. height: math.unit(0.6, "feet"),
  14889. name: "Foot",
  14890. image: {
  14891. source: "./media/characters/carmine/foot.svg"
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Large",
  14898. height: math.unit(1, "mile")
  14899. },
  14900. {
  14901. name: "Huge",
  14902. height: math.unit(40, "miles"),
  14903. default: true
  14904. },
  14905. {
  14906. name: "Colossal",
  14907. height: math.unit(2500, "miles")
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/elyssia/front.svg",
  14920. extra: 2201 / 2035,
  14921. bottom: 0.05
  14922. }
  14923. },
  14924. frontClothed: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Front (Clothed)",
  14928. image: {
  14929. source: "./media/characters/elyssia/front-clothed.svg",
  14930. extra: 2201 / 2035,
  14931. bottom: 0.05
  14932. }
  14933. },
  14934. back: {
  14935. height: math.unit(6, "feet"),
  14936. weight: math.unit(150, "lb"),
  14937. name: "Back",
  14938. image: {
  14939. source: "./media/characters/elyssia/back.svg",
  14940. extra: 2201 / 2035,
  14941. bottom: 0.013
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Smaller",
  14948. height: math.unit(150, "feet")
  14949. },
  14950. {
  14951. name: "Standard",
  14952. height: math.unit(1400, "feet"),
  14953. default: true
  14954. },
  14955. {
  14956. name: "Distracted",
  14957. height: math.unit(15000, "feet")
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14963. {
  14964. front: {
  14965. height: math.unit(7 + 4/12, "feet"),
  14966. weight: math.unit(690, "lb"),
  14967. name: "Front",
  14968. image: {
  14969. source: "./media/characters/geno-maxwell/front.svg",
  14970. extra: 984/856,
  14971. bottom: 87/1071
  14972. }
  14973. },
  14974. back: {
  14975. height: math.unit(7 + 4/12, "feet"),
  14976. weight: math.unit(690, "lb"),
  14977. name: "Back",
  14978. image: {
  14979. source: "./media/characters/geno-maxwell/back.svg",
  14980. extra: 981/854,
  14981. bottom: 57/1038
  14982. }
  14983. },
  14984. frontCostume: {
  14985. height: math.unit(7 + 4/12, "feet"),
  14986. weight: math.unit(690, "lb"),
  14987. name: "Front (Costume)",
  14988. image: {
  14989. source: "./media/characters/geno-maxwell/front-costume.svg",
  14990. extra: 984/856,
  14991. bottom: 87/1071
  14992. }
  14993. },
  14994. backcostume: {
  14995. height: math.unit(7 + 4/12, "feet"),
  14996. weight: math.unit(690, "lb"),
  14997. name: "Back (Costume)",
  14998. image: {
  14999. source: "./media/characters/geno-maxwell/back-costume.svg",
  15000. extra: 981/854,
  15001. bottom: 57/1038
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Micro",
  15008. height: math.unit(3, "inches")
  15009. },
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(7 + 4 / 12, "feet"),
  15013. default: true
  15014. },
  15015. {
  15016. name: "Macro",
  15017. height: math.unit(220, "feet")
  15018. },
  15019. {
  15020. name: "Megamacro",
  15021. height: math.unit(11, "miles")
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(7 + 4/12, "feet"),
  15030. weight: math.unit(750, "lb"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/regena-maxwell/front.svg",
  15034. extra: 984/856,
  15035. bottom: 87/1071
  15036. }
  15037. },
  15038. back: {
  15039. height: math.unit(7 + 4/12, "feet"),
  15040. weight: math.unit(750, "lb"),
  15041. name: "Back",
  15042. image: {
  15043. source: "./media/characters/regena-maxwell/back.svg",
  15044. extra: 981/854,
  15045. bottom: 57/1038
  15046. }
  15047. },
  15048. frontCostume: {
  15049. height: math.unit(7 + 4/12, "feet"),
  15050. weight: math.unit(750, "lb"),
  15051. name: "Front (Costume)",
  15052. image: {
  15053. source: "./media/characters/regena-maxwell/front-costume.svg",
  15054. extra: 984/856,
  15055. bottom: 87/1071
  15056. }
  15057. },
  15058. backcostume: {
  15059. height: math.unit(7 + 4/12, "feet"),
  15060. weight: math.unit(750, "lb"),
  15061. name: "Back (Costume)",
  15062. image: {
  15063. source: "./media/characters/regena-maxwell/back-costume.svg",
  15064. extra: 981/854,
  15065. bottom: 57/1038
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(7 + 4 / 12, "feet"),
  15073. default: true
  15074. },
  15075. {
  15076. name: "Macro",
  15077. height: math.unit(220, "feet")
  15078. },
  15079. {
  15080. name: "Megamacro",
  15081. height: math.unit(11, "miles")
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15087. {
  15088. front: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(150, "lb"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15094. extra: 860 / 690,
  15095. bottom: 0.03
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(1.7, "meters"),
  15103. default: true
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(6, "feet"),
  15112. weight: math.unit(150, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/quilly/front.svg",
  15116. extra: 890 / 776
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Gigamacro",
  15123. height: math.unit(404090, "miles"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(7 + 8 / 12, "feet"),
  15133. weight: math.unit(350, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/tempest/front.svg",
  15137. extra: 1175 / 1086,
  15138. bottom: 0.02
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(7 + 8 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15152. {
  15153. side: {
  15154. height: math.unit(4 + 5 / 12, "feet"),
  15155. weight: math.unit(80, "lb"),
  15156. name: "Side",
  15157. image: {
  15158. source: "./media/characters/rodger/side.svg",
  15159. extra: 1235 / 1118
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Micro",
  15166. height: math.unit(1, "inch")
  15167. },
  15168. {
  15169. name: "Normal",
  15170. height: math.unit(4 + 5 / 12, "feet"),
  15171. default: true
  15172. },
  15173. {
  15174. name: "Macro",
  15175. height: math.unit(120, "feet")
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(6, "feet"),
  15184. weight: math.unit(150, "lb"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/danyel/front.svg",
  15188. extra: 1185 / 1123,
  15189. bottom: 0.05
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Shrunken",
  15196. height: math.unit(0.5, "mm")
  15197. },
  15198. {
  15199. name: "Micro",
  15200. height: math.unit(1, "mm"),
  15201. default: true
  15202. },
  15203. {
  15204. name: "Upsized",
  15205. height: math.unit(5 + 5 / 12, "feet")
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(5 + 6 / 12, "feet"),
  15214. weight: math.unit(200, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/vivian-bijoux/front.svg",
  15218. extra: 1217/1209,
  15219. bottom: 76/1293
  15220. }
  15221. },
  15222. back: {
  15223. height: math.unit(5 + 6 / 12, "feet"),
  15224. weight: math.unit(200, "lb"),
  15225. name: "Back",
  15226. image: {
  15227. source: "./media/characters/vivian-bijoux/back.svg",
  15228. extra: 1214/1208,
  15229. bottom: 51/1265
  15230. }
  15231. },
  15232. dressed: {
  15233. height: math.unit(5 + 6 / 12, "feet"),
  15234. weight: math.unit(200, "lb"),
  15235. name: "Dressed",
  15236. image: {
  15237. source: "./media/characters/vivian-bijoux/dressed.svg",
  15238. extra: 1217/1209,
  15239. bottom: 76/1293
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(5 + 6 / 12, "feet"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Bad Dream",
  15251. height: math.unit(500, "feet")
  15252. },
  15253. {
  15254. name: "Nightmare",
  15255. height: math.unit(500, "miles")
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(6 + 1 / 12, "feet"),
  15264. weight: math.unit(260, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/zeta/front.svg",
  15268. extra: 1968 / 1889,
  15269. bottom: 0.06
  15270. }
  15271. },
  15272. back: {
  15273. height: math.unit(6 + 1 / 12, "feet"),
  15274. weight: math.unit(260, "lb"),
  15275. name: "Back",
  15276. image: {
  15277. source: "./media/characters/zeta/back.svg",
  15278. extra: 1944 / 1858,
  15279. bottom: 0.03
  15280. }
  15281. },
  15282. hand: {
  15283. height: math.unit(1.112, "feet"),
  15284. name: "Hand",
  15285. image: {
  15286. source: "./media/characters/zeta/hand.svg"
  15287. }
  15288. },
  15289. foot: {
  15290. height: math.unit(1.48, "feet"),
  15291. name: "Foot",
  15292. image: {
  15293. source: "./media/characters/zeta/foot.svg"
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Micro",
  15300. height: math.unit(6, "inches")
  15301. },
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(6 + 1 / 12, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(20, "feet")
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(6, "feet"),
  15318. weight: math.unit(150, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/jamie-larsen/front.svg",
  15322. extra: 962 / 933,
  15323. bottom: 0.02
  15324. }
  15325. },
  15326. back: {
  15327. height: math.unit(6, "feet"),
  15328. weight: math.unit(150, "lb"),
  15329. name: "Back",
  15330. image: {
  15331. source: "./media/characters/jamie-larsen/back.svg",
  15332. extra: 997 / 946
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Macro",
  15339. height: math.unit(28 + 7 / 12, "feet"),
  15340. default: true
  15341. },
  15342. {
  15343. name: "Macro+",
  15344. height: math.unit(180, "feet")
  15345. },
  15346. {
  15347. name: "Megamacro",
  15348. height: math.unit(10, "miles")
  15349. },
  15350. {
  15351. name: "Gigamacro",
  15352. height: math.unit(200000, "miles")
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15358. {
  15359. front: {
  15360. height: math.unit(6, "feet"),
  15361. weight: math.unit(120, "lb"),
  15362. name: "Front",
  15363. image: {
  15364. source: "./media/characters/vance/front.svg",
  15365. extra: 1980 / 1890,
  15366. bottom: 0.09
  15367. }
  15368. },
  15369. back: {
  15370. height: math.unit(6, "feet"),
  15371. weight: math.unit(120, "lb"),
  15372. name: "Back",
  15373. image: {
  15374. source: "./media/characters/vance/back.svg",
  15375. extra: 2081 / 1994,
  15376. bottom: 0.014
  15377. }
  15378. },
  15379. hand: {
  15380. height: math.unit(0.88, "feet"),
  15381. name: "Hand",
  15382. image: {
  15383. source: "./media/characters/vance/hand.svg"
  15384. }
  15385. },
  15386. foot: {
  15387. height: math.unit(0.64, "feet"),
  15388. name: "Foot",
  15389. image: {
  15390. source: "./media/characters/vance/foot.svg"
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Small",
  15397. height: math.unit(90, "feet"),
  15398. default: true
  15399. },
  15400. {
  15401. name: "Macro",
  15402. height: math.unit(100, "meters")
  15403. },
  15404. {
  15405. name: "Megamacro",
  15406. height: math.unit(15, "miles")
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(6, "feet"),
  15415. weight: math.unit(180, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/xochitl/front.svg",
  15419. extra: 2297 / 2261,
  15420. bottom: 0.065
  15421. }
  15422. },
  15423. back: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(180, "lb"),
  15426. name: "Back",
  15427. image: {
  15428. source: "./media/characters/xochitl/back.svg",
  15429. extra: 2386 / 2354,
  15430. bottom: 0.01
  15431. }
  15432. },
  15433. foot: {
  15434. height: math.unit(6 / 5 * 1.15, "feet"),
  15435. weight: math.unit(150, "lb"),
  15436. name: "Foot",
  15437. image: {
  15438. source: "./media/characters/xochitl/foot.svg"
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Macro",
  15445. height: math.unit(80, "feet")
  15446. },
  15447. {
  15448. name: "Macro+",
  15449. height: math.unit(400, "feet"),
  15450. default: true
  15451. },
  15452. {
  15453. name: "Gigamacro",
  15454. height: math.unit(80000, "miles")
  15455. },
  15456. {
  15457. name: "Gigamacro+",
  15458. height: math.unit(400000, "miles")
  15459. },
  15460. {
  15461. name: "Teramacro",
  15462. height: math.unit(300, "AU")
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15468. {
  15469. front: {
  15470. height: math.unit(6, "feet"),
  15471. weight: math.unit(150, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/vincent/front.svg",
  15475. extra: 1130 / 1080,
  15476. bottom: 0.055
  15477. }
  15478. },
  15479. beak: {
  15480. height: math.unit(6 * 0.1, "feet"),
  15481. name: "Beak",
  15482. image: {
  15483. source: "./media/characters/vincent/beak.svg"
  15484. }
  15485. },
  15486. hand: {
  15487. height: math.unit(6 * 0.85, "feet"),
  15488. weight: math.unit(150, "lb"),
  15489. name: "Hand",
  15490. image: {
  15491. source: "./media/characters/vincent/hand.svg"
  15492. }
  15493. },
  15494. foot: {
  15495. height: math.unit(6 * 0.19, "feet"),
  15496. weight: math.unit(150, "lb"),
  15497. name: "Foot",
  15498. image: {
  15499. source: "./media/characters/vincent/foot.svg"
  15500. }
  15501. },
  15502. },
  15503. [
  15504. {
  15505. name: "Base",
  15506. height: math.unit(6 + 5 / 12, "feet"),
  15507. default: true
  15508. },
  15509. {
  15510. name: "Macro",
  15511. height: math.unit(300, "feet")
  15512. },
  15513. {
  15514. name: "Megamacro",
  15515. height: math.unit(2, "miles")
  15516. },
  15517. {
  15518. name: "Gigamacro",
  15519. height: math.unit(1000, "miles")
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15525. {
  15526. front: {
  15527. height: math.unit(2, "meters"),
  15528. weight: math.unit(500, "kg"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/coatl/front.svg",
  15532. extra: 3948 / 3500,
  15533. bottom: 0.082
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Normal",
  15540. height: math.unit(4, "meters")
  15541. },
  15542. {
  15543. name: "Macro",
  15544. height: math.unit(100, "meters"),
  15545. default: true
  15546. },
  15547. {
  15548. name: "Macro+",
  15549. height: math.unit(300, "meters")
  15550. },
  15551. {
  15552. name: "Megamacro",
  15553. height: math.unit(3, "gigameters")
  15554. },
  15555. {
  15556. name: "Megamacro+",
  15557. height: math.unit(300, "terameters")
  15558. },
  15559. {
  15560. name: "Megamacro++",
  15561. height: math.unit(3, "lightyears")
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(6, "feet"),
  15570. weight: math.unit(50, "kg"),
  15571. name: "front",
  15572. image: {
  15573. source: "./media/characters/shiroryu/front.svg",
  15574. extra: 1990 / 1935
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Mortal Mingling",
  15581. height: math.unit(3, "meters")
  15582. },
  15583. {
  15584. name: "Kaiju-ish",
  15585. height: math.unit(250, "meters")
  15586. },
  15587. {
  15588. name: "Somewhat Godly",
  15589. height: math.unit(400, "km"),
  15590. default: true
  15591. },
  15592. {
  15593. name: "Planetary",
  15594. height: math.unit(300, "megameters")
  15595. },
  15596. {
  15597. name: "Galaxy-dwarfing",
  15598. height: math.unit(450, "kiloparsecs")
  15599. },
  15600. {
  15601. name: "Universe Eater",
  15602. height: math.unit(150, "gigaparsecs")
  15603. },
  15604. {
  15605. name: "Almost Immeasurable",
  15606. height: math.unit(1.3e266, "yottaparsecs")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/umeko/front.svg",
  15619. extra: 1,
  15620. bottom: 0.019
  15621. }
  15622. },
  15623. frontArmored: {
  15624. height: math.unit(6, "feet"),
  15625. weight: math.unit(150, "lb"),
  15626. name: "Front (Armored)",
  15627. image: {
  15628. source: "./media/characters/umeko/front-armored.svg",
  15629. extra: 1,
  15630. bottom: 0.021
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Macro",
  15637. height: math.unit(220, "feet"),
  15638. default: true
  15639. },
  15640. {
  15641. name: "Guardian Dragon",
  15642. height: math.unit(50, "miles")
  15643. },
  15644. {
  15645. name: "Cosmic",
  15646. height: math.unit(800000, "miles")
  15647. },
  15648. ]
  15649. ))
  15650. characterMakers.push(() => makeCharacter(
  15651. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15652. {
  15653. front: {
  15654. height: math.unit(6, "feet"),
  15655. weight: math.unit(150, "lb"),
  15656. name: "Front",
  15657. image: {
  15658. source: "./media/characters/cassidy/front.svg",
  15659. extra: 810/808,
  15660. bottom: 41/851
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Canon Height",
  15667. height: math.unit(120, "feet"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Macro+",
  15672. height: math.unit(400, "feet")
  15673. },
  15674. {
  15675. name: "Macro++",
  15676. height: math.unit(4000, "feet")
  15677. },
  15678. {
  15679. name: "Megamacro",
  15680. height: math.unit(3, "miles")
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6, "feet"),
  15689. weight: math.unit(150, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/isaac/front.svg",
  15693. extra: 896 / 815,
  15694. bottom: 0.11
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Human Size",
  15701. height: math.unit(8, "feet"),
  15702. default: true
  15703. },
  15704. {
  15705. name: "Macro",
  15706. height: math.unit(400, "feet")
  15707. },
  15708. {
  15709. name: "Megamacro",
  15710. height: math.unit(50, "miles")
  15711. },
  15712. {
  15713. name: "Canon Height",
  15714. height: math.unit(200, "AU")
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(6, "feet"),
  15723. weight: math.unit(72, "kg"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/sleekit/front.svg",
  15727. extra: 4693 / 4487,
  15728. bottom: 0.012
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Minimum Height",
  15735. height: math.unit(10, "meters")
  15736. },
  15737. {
  15738. name: "Smaller",
  15739. height: math.unit(25, "meters")
  15740. },
  15741. {
  15742. name: "Larger",
  15743. height: math.unit(38, "meters"),
  15744. default: true
  15745. },
  15746. {
  15747. name: "Maximum height",
  15748. height: math.unit(100, "meters")
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(6, "feet"),
  15757. weight: math.unit(150, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/nillia/front.svg",
  15761. extra: 719/665,
  15762. bottom: 6/725
  15763. }
  15764. },
  15765. back: {
  15766. height: math.unit(6, "feet"),
  15767. weight: math.unit(150, "lb"),
  15768. name: "Back",
  15769. image: {
  15770. source: "./media/characters/nillia/back.svg",
  15771. extra: 705/651,
  15772. bottom: 5/710
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Canon Height",
  15779. height: math.unit(489, "feet"),
  15780. default: true
  15781. }
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(150, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/mesmyriza/front.svg",
  15793. extra: 2067 / 1784,
  15794. bottom: 0.035
  15795. }
  15796. },
  15797. foot: {
  15798. height: math.unit(6 / (250 / 35), "feet"),
  15799. name: "Foot",
  15800. image: {
  15801. source: "./media/characters/mesmyriza/foot.svg"
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Macro",
  15808. height: math.unit(457, "meters"),
  15809. default: true
  15810. },
  15811. {
  15812. name: "Megamacro",
  15813. height: math.unit(8, "megameters")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(250, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/saudade/front.svg",
  15826. extra: 1172 / 1139,
  15827. bottom: 0.035
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Micro",
  15834. height: math.unit(3, "inches")
  15835. },
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(6, "feet"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Macro",
  15843. height: math.unit(50, "feet")
  15844. },
  15845. {
  15846. name: "Megamacro",
  15847. height: math.unit(2800, "feet")
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(5 + 4 / 12, "feet"),
  15856. weight: math.unit(100, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/keireer/front.svg",
  15860. extra: 716 / 666,
  15861. bottom: 0.05
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(5 + 4 / 12, "feet"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15875. {
  15876. front: {
  15877. height: math.unit(5.5, "feet"),
  15878. weight: math.unit(90, "kg"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/mirja/front.svg",
  15882. extra: 1452/1262,
  15883. bottom: 67/1519
  15884. }
  15885. },
  15886. frontDressed: {
  15887. height: math.unit(5.5, "feet"),
  15888. weight: math.unit(90, "lb"),
  15889. name: "Front (Dressed)",
  15890. image: {
  15891. source: "./media/characters/mirja/dressed.svg",
  15892. extra: 1452/1262,
  15893. bottom: 67/1519
  15894. }
  15895. },
  15896. back: {
  15897. height: math.unit(6, "feet"),
  15898. weight: math.unit(90, "lb"),
  15899. name: "Back",
  15900. image: {
  15901. source: "./media/characters/mirja/back.svg",
  15902. extra: 1892/1795,
  15903. bottom: 48/1940
  15904. }
  15905. },
  15906. maw: {
  15907. height: math.unit(1.312, "feet"),
  15908. name: "Maw",
  15909. image: {
  15910. source: "./media/characters/mirja/maw.svg"
  15911. }
  15912. },
  15913. paw: {
  15914. height: math.unit(1.15, "feet"),
  15915. name: "Paw",
  15916. image: {
  15917. source: "./media/characters/mirja/paw.svg"
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "\"Incognito\"",
  15924. height: math.unit(3, "meters")
  15925. },
  15926. {
  15927. name: "Strolling Size",
  15928. height: math.unit(15, "km")
  15929. },
  15930. {
  15931. name: "Larger Strolling Size",
  15932. height: math.unit(400, "km")
  15933. },
  15934. {
  15935. name: "Preferred Size",
  15936. height: math.unit(5000, "km"),
  15937. default: true
  15938. },
  15939. {
  15940. name: "True Size",
  15941. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15947. {
  15948. front: {
  15949. height: math.unit(15, "feet"),
  15950. weight: math.unit(880, "kg"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/nightraver/front.svg",
  15954. extra: 2444 / 2160,
  15955. bottom: 0.027
  15956. }
  15957. },
  15958. back: {
  15959. height: math.unit(15, "feet"),
  15960. weight: math.unit(880, "kg"),
  15961. name: "Back",
  15962. image: {
  15963. source: "./media/characters/nightraver/back.svg",
  15964. extra: 2309 / 2180,
  15965. bottom: 0.005
  15966. }
  15967. },
  15968. sole: {
  15969. height: math.unit(2.878, "feet"),
  15970. name: "Sole",
  15971. image: {
  15972. source: "./media/characters/nightraver/sole.svg"
  15973. }
  15974. },
  15975. foot: {
  15976. height: math.unit(2.285, "feet"),
  15977. name: "Foot",
  15978. image: {
  15979. source: "./media/characters/nightraver/foot.svg"
  15980. }
  15981. },
  15982. maw: {
  15983. height: math.unit(2.67, "feet"),
  15984. name: "Maw",
  15985. image: {
  15986. source: "./media/characters/nightraver/maw.svg"
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Micro",
  15993. height: math.unit(1, "cm")
  15994. },
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(15, "feet"),
  15998. default: true
  15999. },
  16000. {
  16001. name: "Macro",
  16002. height: math.unit(300, "feet")
  16003. },
  16004. {
  16005. name: "Megamacro",
  16006. height: math.unit(300, "miles")
  16007. },
  16008. {
  16009. name: "Gigamacro",
  16010. height: math.unit(10000, "miles")
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16016. {
  16017. side: {
  16018. height: math.unit(2, "inches"),
  16019. weight: math.unit(5, "grams"),
  16020. name: "Side",
  16021. image: {
  16022. source: "./media/characters/arc/side.svg"
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Micro",
  16029. height: math.unit(2, "inches"),
  16030. default: true
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(1.1938, "meters"),
  16039. weight: math.unit(54, "kg"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/nebula-shahar/front.svg",
  16043. extra: 1642 / 1436,
  16044. bottom: 0.06
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Megamicro",
  16051. height: math.unit(0.3, "mm")
  16052. },
  16053. {
  16054. name: "Micro",
  16055. height: math.unit(3, "cm")
  16056. },
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(138, "cm"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "Macro",
  16064. height: math.unit(30, "m")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(5.24, "feet"),
  16073. weight: math.unit(150, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/shayla/front.svg",
  16077. extra: 1512 / 1414,
  16078. bottom: 0.01
  16079. }
  16080. },
  16081. back: {
  16082. height: math.unit(5.24, "feet"),
  16083. weight: math.unit(150, "lb"),
  16084. name: "Back",
  16085. image: {
  16086. source: "./media/characters/shayla/back.svg",
  16087. extra: 1512 / 1414
  16088. }
  16089. },
  16090. hand: {
  16091. height: math.unit(0.7781496062992126, "feet"),
  16092. name: "Hand",
  16093. image: {
  16094. source: "./media/characters/shayla/hand.svg"
  16095. }
  16096. },
  16097. foot: {
  16098. height: math.unit(1.4206036745406823, "feet"),
  16099. name: "Foot",
  16100. image: {
  16101. source: "./media/characters/shayla/foot.svg"
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Micro",
  16108. height: math.unit(0.32, "feet")
  16109. },
  16110. {
  16111. name: "Normal",
  16112. height: math.unit(5.24, "feet"),
  16113. default: true
  16114. },
  16115. {
  16116. name: "Macro",
  16117. height: math.unit(492.12, "feet")
  16118. },
  16119. {
  16120. name: "Megamacro",
  16121. height: math.unit(186.41, "miles")
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(2.2, "m"),
  16130. weight: math.unit(120, "kg"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/pia-jr/front.svg",
  16134. extra: 1000 / 970,
  16135. bottom: 0.035
  16136. }
  16137. },
  16138. hand: {
  16139. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16140. name: "Hand",
  16141. image: {
  16142. source: "./media/characters/pia-jr/hand.svg"
  16143. }
  16144. },
  16145. paw: {
  16146. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16147. name: "Paw",
  16148. image: {
  16149. source: "./media/characters/pia-jr/paw.svg"
  16150. }
  16151. },
  16152. },
  16153. [
  16154. {
  16155. name: "Micro",
  16156. height: math.unit(1.2, "cm")
  16157. },
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(2.2, "m"),
  16161. default: true
  16162. },
  16163. {
  16164. name: "Macro",
  16165. height: math.unit(180, "m")
  16166. },
  16167. {
  16168. name: "Megamacro",
  16169. height: math.unit(420, "km")
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(2, "m"),
  16178. weight: math.unit(115, "kg"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/pia-sr/front.svg",
  16182. extra: 760 / 730,
  16183. bottom: 0.015
  16184. }
  16185. },
  16186. back: {
  16187. height: math.unit(2, "m"),
  16188. weight: math.unit(115, "kg"),
  16189. name: "Back",
  16190. image: {
  16191. source: "./media/characters/pia-sr/back.svg",
  16192. extra: 760 / 730,
  16193. bottom: 0.01
  16194. }
  16195. },
  16196. hand: {
  16197. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16198. name: "Hand",
  16199. image: {
  16200. source: "./media/characters/pia-sr/hand.svg"
  16201. }
  16202. },
  16203. foot: {
  16204. height: math.unit(1.83, "feet"),
  16205. name: "Foot",
  16206. image: {
  16207. source: "./media/characters/pia-sr/foot.svg"
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Micro",
  16214. height: math.unit(88, "mm")
  16215. },
  16216. {
  16217. name: "Normal",
  16218. height: math.unit(2, "m"),
  16219. default: true
  16220. },
  16221. {
  16222. name: "Macro",
  16223. height: math.unit(200, "m")
  16224. },
  16225. {
  16226. name: "Megamacro",
  16227. height: math.unit(420, "km")
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(8 + 2 / 12, "feet"),
  16236. weight: math.unit(300, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/kibibyte/front.svg",
  16240. extra: 2221 / 2098,
  16241. bottom: 0.04
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(8 + 2 / 12, "feet"),
  16249. default: true
  16250. },
  16251. {
  16252. name: "Socialable Macro",
  16253. height: math.unit(50, "feet")
  16254. },
  16255. {
  16256. name: "Macro",
  16257. height: math.unit(300, "feet")
  16258. },
  16259. {
  16260. name: "Megamacro",
  16261. height: math.unit(500, "miles")
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(6, "feet"),
  16270. weight: math.unit(150, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/felix/front.svg",
  16274. extra: 762 / 722,
  16275. bottom: 0.02
  16276. }
  16277. },
  16278. frontClothed: {
  16279. height: math.unit(6, "feet"),
  16280. weight: math.unit(150, "lb"),
  16281. name: "Front (Clothed)",
  16282. image: {
  16283. source: "./media/characters/felix/front-clothed.svg",
  16284. extra: 762 / 722,
  16285. bottom: 0.02
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(6 + 8 / 12, "feet"),
  16293. default: true
  16294. },
  16295. {
  16296. name: "Macro",
  16297. height: math.unit(2600, "feet")
  16298. },
  16299. {
  16300. name: "Megamacro",
  16301. height: math.unit(450, "miles")
  16302. },
  16303. ]
  16304. ))
  16305. characterMakers.push(() => makeCharacter(
  16306. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16307. {
  16308. front: {
  16309. height: math.unit(6 + 1 / 12, "feet"),
  16310. weight: math.unit(250, "lb"),
  16311. name: "Front",
  16312. image: {
  16313. source: "./media/characters/tobo/front.svg",
  16314. extra: 608 / 586,
  16315. bottom: 0.023
  16316. }
  16317. },
  16318. back: {
  16319. height: math.unit(6 + 1 / 12, "feet"),
  16320. weight: math.unit(250, "lb"),
  16321. name: "Back",
  16322. image: {
  16323. source: "./media/characters/tobo/back.svg",
  16324. extra: 608 / 586
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Nano",
  16331. height: math.unit(2, "nm")
  16332. },
  16333. {
  16334. name: "Megamicro",
  16335. height: math.unit(0.1, "mm")
  16336. },
  16337. {
  16338. name: "Micro",
  16339. height: math.unit(1, "inch"),
  16340. default: true
  16341. },
  16342. {
  16343. name: "Human-sized",
  16344. height: math.unit(6 + 1 / 12, "feet")
  16345. },
  16346. {
  16347. name: "Macro",
  16348. height: math.unit(250, "feet")
  16349. },
  16350. {
  16351. name: "Megamacro",
  16352. height: math.unit(75, "miles")
  16353. },
  16354. {
  16355. name: "Texas-sized",
  16356. height: math.unit(750, "miles")
  16357. },
  16358. {
  16359. name: "Teramacro",
  16360. height: math.unit(50000, "miles")
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(6, "feet"),
  16369. weight: math.unit(269, "lb"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/danny-kapowsky/front.svg",
  16373. extra: 766 / 736,
  16374. bottom: 0.044
  16375. }
  16376. },
  16377. back: {
  16378. height: math.unit(6, "feet"),
  16379. weight: math.unit(269, "lb"),
  16380. name: "Back",
  16381. image: {
  16382. source: "./media/characters/danny-kapowsky/back.svg",
  16383. extra: 797 / 760,
  16384. bottom: 0.025
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Macro",
  16391. height: math.unit(150, "feet"),
  16392. default: true
  16393. },
  16394. {
  16395. name: "Macro+",
  16396. height: math.unit(200, "feet")
  16397. },
  16398. {
  16399. name: "Macro++",
  16400. height: math.unit(300, "feet")
  16401. },
  16402. {
  16403. name: "Macro+++",
  16404. height: math.unit(400, "feet")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16410. {
  16411. side: {
  16412. height: math.unit(6, "feet"),
  16413. weight: math.unit(170, "lb"),
  16414. name: "Side",
  16415. image: {
  16416. source: "./media/characters/finn/side.svg",
  16417. extra: 1953 / 1807,
  16418. bottom: 0.057
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Megamacro",
  16425. height: math.unit(14445, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16432. {
  16433. front: {
  16434. height: math.unit(5 + 6 / 12, "feet"),
  16435. weight: math.unit(125, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/roy/front.svg",
  16439. extra: 1,
  16440. bottom: 0.11
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Micro",
  16447. height: math.unit(3, "inches"),
  16448. default: true
  16449. },
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(5 + 6 / 12, "feet")
  16453. },
  16454. {
  16455. name: "Lesser Macro",
  16456. height: math.unit(60, "feet")
  16457. },
  16458. {
  16459. name: "Greater Macro",
  16460. height: math.unit(120, "feet")
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(6, "feet"),
  16469. weight: math.unit(100, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/aevsivs/front.svg",
  16473. extra: 1,
  16474. bottom: 0.03
  16475. }
  16476. },
  16477. back: {
  16478. height: math.unit(6, "feet"),
  16479. weight: math.unit(100, "lb"),
  16480. name: "Back",
  16481. image: {
  16482. source: "./media/characters/aevsivs/back.svg"
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Micro",
  16489. height: math.unit(2, "inches"),
  16490. default: true
  16491. },
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(5, "feet")
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16500. {
  16501. front: {
  16502. height: math.unit(5 + 7 / 12, "feet"),
  16503. weight: math.unit(159, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/hildegard/front.svg",
  16507. extra: 289 / 269,
  16508. bottom: 7.63 / 297.8
  16509. }
  16510. },
  16511. back: {
  16512. height: math.unit(5 + 7 / 12, "feet"),
  16513. weight: math.unit(159, "lb"),
  16514. name: "Back",
  16515. image: {
  16516. source: "./media/characters/hildegard/back.svg",
  16517. extra: 280 / 260,
  16518. bottom: 2.3 / 282
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(5 + 7 / 12, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16532. {
  16533. bernard: {
  16534. height: math.unit(2 + 7 / 12, "feet"),
  16535. weight: math.unit(66, "lb"),
  16536. name: "Bernard",
  16537. rename: true,
  16538. image: {
  16539. source: "./media/characters/bernard-wilder/bernard.svg",
  16540. extra: 192 / 128,
  16541. bottom: 0.05
  16542. }
  16543. },
  16544. wilder: {
  16545. height: math.unit(5 + 8 / 12, "feet"),
  16546. weight: math.unit(143, "lb"),
  16547. name: "Wilder",
  16548. rename: true,
  16549. image: {
  16550. source: "./media/characters/bernard-wilder/wilder.svg",
  16551. extra: 361 / 312,
  16552. bottom: 0.02
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(2 + 7 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16566. {
  16567. anthro: {
  16568. height: math.unit(6 + 1 / 12, "feet"),
  16569. weight: math.unit(155, "lb"),
  16570. name: "Anthro",
  16571. image: {
  16572. source: "./media/characters/hearth/anthro.svg",
  16573. extra: 1178/1136,
  16574. bottom: 28/1206
  16575. }
  16576. },
  16577. feral: {
  16578. height: math.unit(3.78, "feet"),
  16579. weight: math.unit(35, "kg"),
  16580. name: "Feral",
  16581. image: {
  16582. source: "./media/characters/hearth/feral.svg",
  16583. extra: 153 / 135,
  16584. bottom: 0.03
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(6 + 1 / 12, "feet"),
  16592. default: true
  16593. },
  16594. ]
  16595. ))
  16596. characterMakers.push(() => makeCharacter(
  16597. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16598. {
  16599. front: {
  16600. height: math.unit(6, "feet"),
  16601. weight: math.unit(182, "lb"),
  16602. name: "Front",
  16603. image: {
  16604. source: "./media/characters/ingrid/front.svg",
  16605. extra: 294 / 268,
  16606. bottom: 0.027
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(6, "feet"),
  16614. default: true
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16620. {
  16621. eevee: {
  16622. height: math.unit(2 + 10 / 12, "feet"),
  16623. weight: math.unit(86, "lb"),
  16624. name: "Malgam",
  16625. image: {
  16626. source: "./media/characters/malgam/eevee.svg",
  16627. extra: 952/784,
  16628. bottom: 38/990
  16629. }
  16630. },
  16631. sylveon: {
  16632. height: math.unit(4, "feet"),
  16633. weight: math.unit(101, "lb"),
  16634. name: "Future Malgam",
  16635. rename: true,
  16636. image: {
  16637. source: "./media/characters/malgam/sylveon.svg",
  16638. extra: 371 / 325,
  16639. bottom: 0.015
  16640. }
  16641. },
  16642. gigantamax: {
  16643. height: math.unit(50, "feet"),
  16644. name: "Gigantamax Malgam",
  16645. rename: true,
  16646. image: {
  16647. source: "./media/characters/malgam/gigantamax.svg"
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(2 + 10 / 12, "feet"),
  16655. default: true
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(5 + 11 / 12, "feet"),
  16664. weight: math.unit(188, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/fleur/front.svg",
  16668. extra: 309 / 283,
  16669. bottom: 0.007
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(5 + 11 / 12, "feet"),
  16677. default: true
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(5 + 4 / 12, "feet"),
  16686. weight: math.unit(122, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/jude/front.svg",
  16690. extra: 288 / 273,
  16691. bottom: 0.03
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(5 + 4 / 12, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(5 + 11 / 12, "feet"),
  16708. weight: math.unit(190, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/seara/front.svg",
  16712. extra: 1,
  16713. bottom: 0.05
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(5 + 11 / 12, "feet"),
  16721. default: true
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16727. {
  16728. front: {
  16729. height: math.unit(16 + 5 / 12, "feet"),
  16730. weight: math.unit(524, "lb"),
  16731. name: "Front",
  16732. image: {
  16733. source: "./media/characters/caspian-lugia/front.svg",
  16734. extra: 1,
  16735. bottom: 0.04
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(16 + 5 / 12, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(5 + 7 / 12, "feet"),
  16752. weight: math.unit(170, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/mika/front.svg",
  16756. extra: 1,
  16757. bottom: 0.016
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(5 + 7 / 12, "feet"),
  16765. default: true
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16771. {
  16772. front: {
  16773. height: math.unit(6 + 2 / 12, "feet"),
  16774. weight: math.unit(268, "lb"),
  16775. name: "Front",
  16776. image: {
  16777. source: "./media/characters/sol/front.svg",
  16778. extra: 247 / 231,
  16779. bottom: 0.05
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(6 + 2 / 12, "feet"),
  16787. default: true
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16793. {
  16794. buizel: {
  16795. height: math.unit(2 + 5 / 12, "feet"),
  16796. weight: math.unit(87, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/umiko/buizel.svg",
  16800. extra: 172 / 157,
  16801. bottom: 0.01
  16802. },
  16803. form: "buizel",
  16804. default: true
  16805. },
  16806. floatzel: {
  16807. height: math.unit(5 + 9 / 12, "feet"),
  16808. weight: math.unit(250, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/umiko/floatzel.svg",
  16812. extra: 1076/1006,
  16813. bottom: 15/1091
  16814. },
  16815. form: "floatzel",
  16816. default: true
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(2 + 5 / 12, "feet"),
  16823. form: "buizel",
  16824. default: true
  16825. },
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(5 + 9 / 12, "feet"),
  16829. form: "floatzel",
  16830. default: true
  16831. },
  16832. ],
  16833. {
  16834. "buizel": {
  16835. name: "Buizel"
  16836. },
  16837. "floatzel": {
  16838. name: "Floatzel",
  16839. default: true
  16840. }
  16841. }
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(6 + 2 / 12, "feet"),
  16848. weight: math.unit(146, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/iliac/front.svg",
  16852. extra: 389 / 365,
  16853. bottom: 0.035
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(6 + 2 / 12, "feet"),
  16861. default: true
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(6, "feet"),
  16870. weight: math.unit(170, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/topaz/front.svg",
  16874. extra: 317 / 303,
  16875. bottom: 0.055
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(6, "feet"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(5 + 11 / 12, "feet"),
  16892. weight: math.unit(144, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/gabriel/front.svg",
  16896. extra: 285 / 262,
  16897. bottom: 0.004
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(5 + 11 / 12, "feet"),
  16905. default: true
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16911. {
  16912. side: {
  16913. height: math.unit(6 + 5 / 12, "feet"),
  16914. weight: math.unit(300, "lb"),
  16915. name: "Side",
  16916. image: {
  16917. source: "./media/characters/tempest-suicune/side.svg",
  16918. extra: 195 / 154,
  16919. bottom: 0.04
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(6 + 5 / 12, "feet"),
  16927. default: true
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16933. {
  16934. front: {
  16935. height: math.unit(7 + 2 / 12, "feet"),
  16936. weight: math.unit(322, "lb"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/vulcan/front.svg",
  16940. extra: 154 / 147,
  16941. bottom: 0.04
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(7 + 2 / 12, "feet"),
  16949. default: true
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(5 + 10 / 12, "feet"),
  16958. weight: math.unit(264, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/gault/front.svg",
  16962. extra: 161 / 140,
  16963. bottom: 0.028
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(5 + 10 / 12, "feet"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16977. {
  16978. front: {
  16979. height: math.unit(6, "feet"),
  16980. weight: math.unit(150, "lb"),
  16981. name: "Front",
  16982. image: {
  16983. source: "./media/characters/shard/front.svg",
  16984. extra: 273 / 238,
  16985. bottom: 0.02
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(3 + 6 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(5 + 11 / 12, "feet"),
  17002. weight: math.unit(146, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/ashe/front.svg",
  17006. extra: 400 / 373,
  17007. bottom: 0.01
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(5 + 11 / 12, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17021. {
  17022. front: {
  17023. height: math.unit(5 + 5 / 12, "feet"),
  17024. weight: math.unit(135, "lb"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/beatrix/front.svg",
  17028. extra: 392 / 379,
  17029. bottom: 0.01
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(6, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17043. {
  17044. front: {
  17045. height: math.unit(6 + 2/12, "feet"),
  17046. weight: math.unit(135, "lb"),
  17047. name: "Front",
  17048. image: {
  17049. source: "./media/characters/ignatius/front.svg",
  17050. extra: 1380/1259,
  17051. bottom: 27/1407
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(6 + 2/12, "feet"),
  17059. default: true
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(6 + 2 / 12, "feet"),
  17068. weight: math.unit(138, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/mei-li/front.svg",
  17072. extra: 237 / 229,
  17073. bottom: 0.03
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(6 + 2 / 12, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17087. {
  17088. front: {
  17089. height: math.unit(2 + 4 / 12, "feet"),
  17090. weight: math.unit(62, "lb"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/puru/front.svg",
  17094. extra: 206 / 149,
  17095. bottom: 0.06
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(2 + 4 / 12, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17109. {
  17110. anthro: {
  17111. height: math.unit(5 + 8/12, "feet"),
  17112. weight: math.unit(200, "lb"),
  17113. energyNeed: math.unit(2000, "kcal"),
  17114. name: "Anthro",
  17115. image: {
  17116. source: "./media/characters/kee/anthro.svg",
  17117. extra: 3251/3184,
  17118. bottom: 250/3501
  17119. }
  17120. },
  17121. taur: {
  17122. height: math.unit(11, "feet"),
  17123. weight: math.unit(500, "lb"),
  17124. energyNeed: math.unit(5000, "kcal"),
  17125. name: "Taur",
  17126. image: {
  17127. source: "./media/characters/kee/taur.svg",
  17128. extra: 1362/1320,
  17129. bottom: 83/1445
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(5 + 8/12, "feet"),
  17137. default: true
  17138. },
  17139. {
  17140. name: "Macro",
  17141. height: math.unit(35, "feet")
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17147. {
  17148. anthro: {
  17149. height: math.unit(7, "feet"),
  17150. weight: math.unit(190, "lb"),
  17151. name: "Anthro",
  17152. image: {
  17153. source: "./media/characters/cobalt-dracha/anthro.svg",
  17154. extra: 231 / 225,
  17155. bottom: 0.04
  17156. }
  17157. },
  17158. feral: {
  17159. height: math.unit(9 + 7 / 12, "feet"),
  17160. weight: math.unit(294, "lb"),
  17161. name: "Feral",
  17162. image: {
  17163. source: "./media/characters/cobalt-dracha/feral.svg",
  17164. extra: 692 / 633,
  17165. bottom: 0.05
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(7, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17179. {
  17180. fallen: {
  17181. height: math.unit(11 + 8 / 12, "feet"),
  17182. weight: math.unit(485, "lb"),
  17183. name: "Java (Fallen)",
  17184. rename: true,
  17185. image: {
  17186. source: "./media/characters/java/fallen.svg",
  17187. extra: 226 / 208,
  17188. bottom: 0.005
  17189. }
  17190. },
  17191. godkin: {
  17192. height: math.unit(10 + 6 / 12, "feet"),
  17193. weight: math.unit(328, "lb"),
  17194. name: "Java (Godkin)",
  17195. rename: true,
  17196. image: {
  17197. source: "./media/characters/java/godkin.svg",
  17198. extra: 1104/1068,
  17199. bottom: 36/1140
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(11 + 8 / 12, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17213. {
  17214. front: {
  17215. height: math.unit(5 + 9 / 12, "feet"),
  17216. weight: math.unit(170, "lb"),
  17217. name: "Front",
  17218. image: {
  17219. source: "./media/characters/purna/front.svg",
  17220. extra: 239 / 229,
  17221. bottom: 0.01
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(5 + 9 / 12, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(5 + 9 / 12, "feet"),
  17238. weight: math.unit(142, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/kuva/front.svg",
  17242. extra: 281 / 271,
  17243. bottom: 0.006
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(5 + 9 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17257. {
  17258. anthro: {
  17259. height: math.unit(9 + 2 / 12, "feet"),
  17260. weight: math.unit(270, "lb"),
  17261. name: "Anthro",
  17262. image: {
  17263. source: "./media/characters/embra/anthro.svg",
  17264. extra: 200 / 187,
  17265. bottom: 0.02
  17266. }
  17267. },
  17268. feral: {
  17269. height: math.unit(18 + 8 / 12, "feet"),
  17270. weight: math.unit(576, "lb"),
  17271. name: "Feral",
  17272. image: {
  17273. source: "./media/characters/embra/feral.svg",
  17274. extra: 152 / 137,
  17275. bottom: 0.037
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(9 + 2 / 12, "feet"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17289. {
  17290. anthro: {
  17291. height: math.unit(10 + 9 / 12, "feet"),
  17292. weight: math.unit(224, "lb"),
  17293. name: "Anthro",
  17294. image: {
  17295. source: "./media/characters/grottos/anthro.svg",
  17296. extra: 350 / 332,
  17297. bottom: 0.045
  17298. }
  17299. },
  17300. feral: {
  17301. height: math.unit(20 + 7 / 12, "feet"),
  17302. weight: math.unit(629, "lb"),
  17303. name: "Feral",
  17304. image: {
  17305. source: "./media/characters/grottos/feral.svg",
  17306. extra: 207 / 190,
  17307. bottom: 0.05
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(10 + 9 / 12, "feet"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17321. {
  17322. anthro: {
  17323. height: math.unit(9 + 6 / 12, "feet"),
  17324. weight: math.unit(298, "lb"),
  17325. name: "Anthro",
  17326. image: {
  17327. source: "./media/characters/frifna/anthro.svg",
  17328. extra: 282 / 269,
  17329. bottom: 0.015
  17330. }
  17331. },
  17332. feral: {
  17333. height: math.unit(16 + 2 / 12, "feet"),
  17334. weight: math.unit(624, "lb"),
  17335. name: "Feral",
  17336. image: {
  17337. source: "./media/characters/frifna/feral.svg"
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(9 + 6 / 12, "feet"),
  17345. default: true
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(6 + 2 / 12, "feet"),
  17354. weight: math.unit(168, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/elise/front.svg",
  17358. extra: 276 / 271
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(6 + 2 / 12, "feet"),
  17366. default: true
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17372. {
  17373. front: {
  17374. height: math.unit(5 + 10 / 12, "feet"),
  17375. weight: math.unit(210, "lb"),
  17376. name: "Front",
  17377. image: {
  17378. source: "./media/characters/glade/front.svg",
  17379. extra: 258 / 247,
  17380. bottom: 0.008
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(5 + 10 / 12, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(5 + 10 / 12, "feet"),
  17397. weight: math.unit(129, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/rina/front.svg",
  17401. extra: 266 / 255,
  17402. bottom: 0.005
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(5 + 10 / 12, "feet"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(6 + 1 / 12, "feet"),
  17419. weight: math.unit(192, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/veronica/front.svg",
  17423. extra: 319 / 309,
  17424. bottom: 0.005
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(6 + 1 / 12, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(9 + 3 / 12, "feet"),
  17441. weight: math.unit(1100, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/braxton/front.svg",
  17445. extra: 1057 / 984,
  17446. bottom: 0.05
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(9 + 3 / 12, "feet")
  17454. },
  17455. {
  17456. name: "Giant",
  17457. height: math.unit(300, "feet"),
  17458. default: true
  17459. },
  17460. {
  17461. name: "Macro",
  17462. height: math.unit(700, "feet")
  17463. },
  17464. {
  17465. name: "Megamacro",
  17466. height: math.unit(6000, "feet")
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(6 + 7 / 12, "feet"),
  17475. weight: math.unit(150, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/blue-feyonics/front.svg",
  17479. extra: 1403 / 1306,
  17480. bottom: 0.047
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(6 + 7 / 12, "feet"),
  17488. default: true
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(1.8, "meters"),
  17497. weight: math.unit(60, "kg"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/maxwell/front.svg",
  17501. extra: 2060 / 1873
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Micro",
  17508. height: math.unit(1, "mm")
  17509. },
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(1.8, "meter"),
  17513. default: true
  17514. },
  17515. {
  17516. name: "Macro",
  17517. height: math.unit(30, "meters")
  17518. },
  17519. {
  17520. name: "Megamacro",
  17521. height: math.unit(10, "km")
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(6, "feet"),
  17530. weight: math.unit(150, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/jack/front.svg",
  17534. extra: 1754 / 1640,
  17535. bottom: 0.01
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(80000, "feet"),
  17543. default: true
  17544. },
  17545. {
  17546. name: "Max size",
  17547. height: math.unit(10, "lightyears")
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17553. {
  17554. urban: {
  17555. height: math.unit(5, "feet"),
  17556. weight: math.unit(240, "lb"),
  17557. name: "Urban",
  17558. image: {
  17559. source: "./media/characters/cafat/urban.svg",
  17560. extra: 1223/1126,
  17561. bottom: 205/1428
  17562. }
  17563. },
  17564. summer: {
  17565. height: math.unit(5, "feet"),
  17566. weight: math.unit(240, "lb"),
  17567. name: "Summer",
  17568. image: {
  17569. source: "./media/characters/cafat/summer.svg",
  17570. extra: 1223/1126,
  17571. bottom: 205/1428
  17572. }
  17573. },
  17574. winter: {
  17575. height: math.unit(5, "feet"),
  17576. weight: math.unit(240, "lb"),
  17577. name: "Winter",
  17578. image: {
  17579. source: "./media/characters/cafat/winter.svg",
  17580. extra: 1223/1126,
  17581. bottom: 205/1428
  17582. }
  17583. },
  17584. lingerie: {
  17585. height: math.unit(5, "feet"),
  17586. weight: math.unit(240, "lb"),
  17587. name: "Lingerie",
  17588. image: {
  17589. source: "./media/characters/cafat/lingerie.svg",
  17590. extra: 1223/1126,
  17591. bottom: 205/1428
  17592. }
  17593. },
  17594. upright: {
  17595. height: math.unit(6.3, "feet"),
  17596. weight: math.unit(240, "lb"),
  17597. name: "Upright",
  17598. image: {
  17599. source: "./media/characters/cafat/upright.svg",
  17600. bottom: 0.01
  17601. }
  17602. },
  17603. uprightFull: {
  17604. height: math.unit(6.3, "feet"),
  17605. weight: math.unit(240, "lb"),
  17606. name: "Upright (Full)",
  17607. image: {
  17608. source: "./media/characters/cafat/upright-full.svg",
  17609. bottom: 0.01
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Small",
  17616. height: math.unit(5, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Large",
  17621. height: math.unit(13, "feet")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(6, "feet"),
  17630. weight: math.unit(150, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/verin-raharra/front.svg",
  17634. extra: 5019 / 4835,
  17635. bottom: 0.023
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(7 + 5 / 12, "feet"),
  17643. default: true
  17644. },
  17645. {
  17646. name: "Upsized",
  17647. height: math.unit(20, "feet")
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17653. {
  17654. front: {
  17655. height: math.unit(7, "feet"),
  17656. weight: math.unit(230, "lb"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/nakata/front.svg",
  17660. extra: 1.005,
  17661. bottom: 0.01
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(7, "feet"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Big",
  17673. height: math.unit(14, "feet")
  17674. },
  17675. {
  17676. name: "Macro",
  17677. height: math.unit(400, "feet")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(4.91, "feet"),
  17686. weight: math.unit(100, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/lily/front.svg",
  17690. extra: 1585 / 1415,
  17691. bottom: 0.02
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(4.91, "feet"),
  17699. default: true
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17705. {
  17706. laying: {
  17707. height: math.unit(4 + 4 / 12, "feet"),
  17708. weight: math.unit(600, "lb"),
  17709. name: "Laying",
  17710. image: {
  17711. source: "./media/characters/sheila/laying.svg",
  17712. extra: 1333 / 1265,
  17713. bottom: 0.16
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(4 + 4 / 12, "feet"),
  17721. default: true
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(6, "feet"),
  17730. weight: math.unit(190, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/sax/front.svg",
  17734. extra: 1187 / 973,
  17735. bottom: 0.042
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Micro",
  17742. height: math.unit(4, "inches"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(6, "feet"),
  17752. weight: math.unit(150, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/pandora/front.svg",
  17756. extra: 2720 / 2556,
  17757. bottom: 0.015
  17758. }
  17759. },
  17760. back: {
  17761. height: math.unit(6, "feet"),
  17762. weight: math.unit(150, "lb"),
  17763. name: "Back",
  17764. image: {
  17765. source: "./media/characters/pandora/back.svg",
  17766. extra: 2720 / 2556,
  17767. bottom: 0.01
  17768. }
  17769. },
  17770. beans: {
  17771. height: math.unit(6 / 8, "feet"),
  17772. name: "Beans",
  17773. image: {
  17774. source: "./media/characters/pandora/beans.svg"
  17775. }
  17776. },
  17777. collar: {
  17778. height: math.unit(0.31, "feet"),
  17779. name: "Collar",
  17780. image: {
  17781. source: "./media/characters/pandora/collar.svg"
  17782. }
  17783. },
  17784. skirt: {
  17785. height: math.unit(6, "feet"),
  17786. weight: math.unit(150, "lb"),
  17787. name: "Skirt",
  17788. image: {
  17789. source: "./media/characters/pandora/skirt.svg",
  17790. extra: 1622 / 1525,
  17791. bottom: 0.015
  17792. }
  17793. },
  17794. hoodie: {
  17795. height: math.unit(6, "feet"),
  17796. weight: math.unit(150, "lb"),
  17797. name: "Hoodie",
  17798. image: {
  17799. source: "./media/characters/pandora/hoodie.svg",
  17800. extra: 1622 / 1525,
  17801. bottom: 0.015
  17802. }
  17803. },
  17804. casual: {
  17805. height: math.unit(6, "feet"),
  17806. weight: math.unit(150, "lb"),
  17807. name: "Casual",
  17808. image: {
  17809. source: "./media/characters/pandora/casual.svg",
  17810. extra: 1622 / 1525,
  17811. bottom: 0.015
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(6, "feet")
  17819. },
  17820. {
  17821. name: "Big Steppy",
  17822. height: math.unit(1, "km"),
  17823. default: true
  17824. },
  17825. {
  17826. name: "Galactic Steppy",
  17827. height: math.unit(2, "gigameters")
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17833. {
  17834. side: {
  17835. height: math.unit(10, "feet"),
  17836. weight: math.unit(800, "kg"),
  17837. name: "Side",
  17838. image: {
  17839. source: "./media/characters/venio-darcony/side.svg",
  17840. extra: 1373 / 1003,
  17841. bottom: 0.037
  17842. }
  17843. },
  17844. front: {
  17845. height: math.unit(19, "feet"),
  17846. weight: math.unit(800, "kg"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/venio-darcony/front.svg"
  17850. }
  17851. },
  17852. back: {
  17853. height: math.unit(19, "feet"),
  17854. weight: math.unit(800, "kg"),
  17855. name: "Back",
  17856. image: {
  17857. source: "./media/characters/venio-darcony/back.svg"
  17858. }
  17859. },
  17860. sideNsfw: {
  17861. height: math.unit(10, "feet"),
  17862. weight: math.unit(800, "kg"),
  17863. name: "Side (NSFW)",
  17864. image: {
  17865. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17866. extra: 1373 / 1003,
  17867. bottom: 0.037
  17868. }
  17869. },
  17870. frontNsfw: {
  17871. height: math.unit(19, "feet"),
  17872. weight: math.unit(800, "kg"),
  17873. name: "Front (NSFW)",
  17874. image: {
  17875. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17876. }
  17877. },
  17878. backNsfw: {
  17879. height: math.unit(19, "feet"),
  17880. weight: math.unit(800, "kg"),
  17881. name: "Back (NSFW)",
  17882. image: {
  17883. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17884. }
  17885. },
  17886. sideArmored: {
  17887. height: math.unit(10, "feet"),
  17888. weight: math.unit(800, "kg"),
  17889. name: "Side (Armored)",
  17890. image: {
  17891. source: "./media/characters/venio-darcony/side-armored.svg",
  17892. extra: 1373 / 1003,
  17893. bottom: 0.037
  17894. }
  17895. },
  17896. frontArmored: {
  17897. height: math.unit(19, "feet"),
  17898. weight: math.unit(900, "kg"),
  17899. name: "Front (Armored)",
  17900. image: {
  17901. source: "./media/characters/venio-darcony/front-armored.svg"
  17902. }
  17903. },
  17904. backArmored: {
  17905. height: math.unit(19, "feet"),
  17906. weight: math.unit(900, "kg"),
  17907. name: "Back (Armored)",
  17908. image: {
  17909. source: "./media/characters/venio-darcony/back-armored.svg"
  17910. }
  17911. },
  17912. sword: {
  17913. height: math.unit(10, "feet"),
  17914. weight: math.unit(50, "lb"),
  17915. name: "Sword",
  17916. image: {
  17917. source: "./media/characters/venio-darcony/sword.svg"
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(10, "feet")
  17925. },
  17926. {
  17927. name: "Macro",
  17928. height: math.unit(130, "feet"),
  17929. default: true
  17930. },
  17931. {
  17932. name: "Macro+",
  17933. height: math.unit(240, "feet")
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17939. {
  17940. front: {
  17941. height: math.unit(6, "feet"),
  17942. weight: math.unit(150, "lb"),
  17943. name: "Front",
  17944. image: {
  17945. source: "./media/characters/veski/front.svg",
  17946. extra: 1299 / 1225,
  17947. bottom: 0.04
  17948. }
  17949. },
  17950. back: {
  17951. height: math.unit(6, "feet"),
  17952. weight: math.unit(150, "lb"),
  17953. name: "Back",
  17954. image: {
  17955. source: "./media/characters/veski/back.svg",
  17956. extra: 1299 / 1225,
  17957. bottom: 0.008
  17958. }
  17959. },
  17960. maw: {
  17961. height: math.unit(1.5 * 1.21, "feet"),
  17962. name: "Maw",
  17963. image: {
  17964. source: "./media/characters/veski/maw.svg"
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Macro",
  17971. height: math.unit(2, "km"),
  17972. default: true
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(5 + 7 / 12, "feet"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/isabelle/front.svg",
  17984. extra: 2130 / 1976,
  17985. bottom: 0.05
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Supermicro",
  17992. height: math.unit(10, "micrometers")
  17993. },
  17994. {
  17995. name: "Micro",
  17996. height: math.unit(1, "inch")
  17997. },
  17998. {
  17999. name: "Tiny",
  18000. height: math.unit(5, "inches")
  18001. },
  18002. {
  18003. name: "Standard",
  18004. height: math.unit(5 + 7 / 12, "inches")
  18005. },
  18006. {
  18007. name: "Macro",
  18008. height: math.unit(80, "meters"),
  18009. default: true
  18010. },
  18011. {
  18012. name: "Megamacro",
  18013. height: math.unit(250, "meters")
  18014. },
  18015. {
  18016. name: "Gigamacro",
  18017. height: math.unit(5, "km")
  18018. },
  18019. {
  18020. name: "Cosmic",
  18021. height: math.unit(2.5e6, "miles")
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(6, "feet"),
  18030. weight: math.unit(150, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/hanzo/front.svg",
  18034. extra: 374 / 344,
  18035. bottom: 0.02
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(8, "feet"),
  18043. default: true
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(7, "feet"),
  18052. weight: math.unit(130, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/anna/front.svg",
  18056. extra: 169 / 145,
  18057. bottom: 0.06
  18058. }
  18059. },
  18060. full: {
  18061. height: math.unit(4.96, "feet"),
  18062. weight: math.unit(220, "lb"),
  18063. name: "Full",
  18064. image: {
  18065. source: "./media/characters/anna/full.svg",
  18066. extra: 138 / 114,
  18067. bottom: 0.15
  18068. }
  18069. },
  18070. tongue: {
  18071. height: math.unit(2.53, "feet"),
  18072. name: "Tongue",
  18073. image: {
  18074. source: "./media/characters/anna/tongue.svg"
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(7, "feet"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(7, "feet"),
  18091. weight: math.unit(150, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/ian-corvid/front.svg",
  18095. extra: 150 / 142,
  18096. bottom: 0.02
  18097. }
  18098. },
  18099. back: {
  18100. height: math.unit(7, "feet"),
  18101. weight: math.unit(150, "lb"),
  18102. name: "Back",
  18103. image: {
  18104. source: "./media/characters/ian-corvid/back.svg",
  18105. extra: 150 / 143,
  18106. bottom: 0.01
  18107. }
  18108. },
  18109. stomping: {
  18110. height: math.unit(7, "feet"),
  18111. weight: math.unit(150, "lb"),
  18112. name: "Stomping",
  18113. image: {
  18114. source: "./media/characters/ian-corvid/stomping.svg",
  18115. extra: 76 / 72
  18116. }
  18117. },
  18118. sitting: {
  18119. height: math.unit(7 / 1.8, "feet"),
  18120. weight: math.unit(150, "lb"),
  18121. name: "Sitting",
  18122. image: {
  18123. source: "./media/characters/ian-corvid/sitting.svg",
  18124. extra: 1400 / 1269,
  18125. bottom: 0.15
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Tiny Microw",
  18132. height: math.unit(1, "inch")
  18133. },
  18134. {
  18135. name: "Microw",
  18136. height: math.unit(6, "inches")
  18137. },
  18138. {
  18139. name: "Crow",
  18140. height: math.unit(7 + 1 / 12, "feet"),
  18141. default: true
  18142. },
  18143. {
  18144. name: "Macrow",
  18145. height: math.unit(176, "feet")
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18151. {
  18152. front: {
  18153. height: math.unit(5 + 7 / 12, "feet"),
  18154. weight: math.unit(147, "lb"),
  18155. name: "Front",
  18156. image: {
  18157. source: "./media/characters/natalie-kellon/front.svg",
  18158. extra: 1214 / 1141,
  18159. bottom: 0.02
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Micro",
  18166. height: math.unit(1 / 16, "inch")
  18167. },
  18168. {
  18169. name: "Tiny",
  18170. height: math.unit(4, "inches")
  18171. },
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(5 + 7 / 12, "feet"),
  18175. default: true
  18176. },
  18177. {
  18178. name: "Amazon",
  18179. height: math.unit(12, "feet")
  18180. },
  18181. {
  18182. name: "Giantess",
  18183. height: math.unit(160, "meters")
  18184. },
  18185. {
  18186. name: "Titaness",
  18187. height: math.unit(800, "meters")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(6, "feet"),
  18196. weight: math.unit(150, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/alluria/front.svg",
  18200. extra: 806 / 738,
  18201. bottom: 0.01
  18202. }
  18203. },
  18204. side: {
  18205. height: math.unit(6, "feet"),
  18206. weight: math.unit(150, "lb"),
  18207. name: "Side",
  18208. image: {
  18209. source: "./media/characters/alluria/side.svg",
  18210. extra: 800 / 750,
  18211. }
  18212. },
  18213. back: {
  18214. height: math.unit(6, "feet"),
  18215. weight: math.unit(150, "lb"),
  18216. name: "Back",
  18217. image: {
  18218. source: "./media/characters/alluria/back.svg",
  18219. extra: 806 / 738,
  18220. }
  18221. },
  18222. frontMaid: {
  18223. height: math.unit(6, "feet"),
  18224. weight: math.unit(150, "lb"),
  18225. name: "Front (Maid)",
  18226. image: {
  18227. source: "./media/characters/alluria/front-maid.svg",
  18228. extra: 806 / 738,
  18229. bottom: 0.01
  18230. }
  18231. },
  18232. sideMaid: {
  18233. height: math.unit(6, "feet"),
  18234. weight: math.unit(150, "lb"),
  18235. name: "Side (Maid)",
  18236. image: {
  18237. source: "./media/characters/alluria/side-maid.svg",
  18238. extra: 800 / 750,
  18239. bottom: 0.005
  18240. }
  18241. },
  18242. backMaid: {
  18243. height: math.unit(6, "feet"),
  18244. weight: math.unit(150, "lb"),
  18245. name: "Back (Maid)",
  18246. image: {
  18247. source: "./media/characters/alluria/back-maid.svg",
  18248. extra: 806 / 738,
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Micro",
  18255. height: math.unit(6, "inches"),
  18256. default: true
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(6, "feet"),
  18265. weight: math.unit(150, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/kyle/front.svg",
  18269. extra: 1069 / 962,
  18270. bottom: 77.228 / 1727.45
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Macro",
  18277. height: math.unit(150, "feet"),
  18278. default: true
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(300, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/duncan/front.svg",
  18291. extra: 1650 / 1482,
  18292. bottom: 0.05
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Macro",
  18299. height: math.unit(100, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(5 + 4 / 12, "feet"),
  18309. weight: math.unit(220, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/memory/front.svg",
  18313. extra: 3641 / 3545,
  18314. bottom: 0.03
  18315. }
  18316. },
  18317. back: {
  18318. height: math.unit(5 + 4 / 12, "feet"),
  18319. weight: math.unit(220, "lb"),
  18320. name: "Back",
  18321. image: {
  18322. source: "./media/characters/memory/back.svg",
  18323. extra: 3641 / 3545,
  18324. bottom: 0.025
  18325. }
  18326. },
  18327. frontSkirt: {
  18328. height: math.unit(5 + 4 / 12, "feet"),
  18329. weight: math.unit(220, "lb"),
  18330. name: "Front (Skirt)",
  18331. image: {
  18332. source: "./media/characters/memory/front-skirt.svg",
  18333. extra: 3641 / 3545,
  18334. bottom: 0.03
  18335. }
  18336. },
  18337. frontDress: {
  18338. height: math.unit(5 + 4 / 12, "feet"),
  18339. weight: math.unit(220, "lb"),
  18340. name: "Front (Dress)",
  18341. image: {
  18342. source: "./media/characters/memory/front-dress.svg",
  18343. extra: 3641 / 3545,
  18344. bottom: 0.03
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Micro",
  18351. height: math.unit(6, "inches"),
  18352. default: true
  18353. },
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(5 + 4 / 12, "feet")
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(4 + 11 / 12, "feet"),
  18365. weight: math.unit(100, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/luno/front.svg",
  18369. extra: 1535 / 1487,
  18370. bottom: 0.03
  18371. }
  18372. },
  18373. },
  18374. [
  18375. {
  18376. name: "Micro",
  18377. height: math.unit(3, "inches")
  18378. },
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(4 + 11 / 12, "feet"),
  18382. default: true
  18383. },
  18384. {
  18385. name: "Macro",
  18386. height: math.unit(300, "feet")
  18387. },
  18388. {
  18389. name: "Megamacro",
  18390. height: math.unit(700, "miles")
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18396. {
  18397. front: {
  18398. height: math.unit(6 + 2 / 12, "feet"),
  18399. weight: math.unit(170, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/jamesy/front.svg",
  18403. extra: 440 / 382,
  18404. bottom: 0.005
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Micro",
  18411. height: math.unit(3, "inches")
  18412. },
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(6 + 2 / 12, "feet"),
  18416. default: true
  18417. },
  18418. {
  18419. name: "Macro",
  18420. height: math.unit(300, "feet")
  18421. },
  18422. {
  18423. name: "Megamacro",
  18424. height: math.unit(700, "miles")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18430. {
  18431. front: {
  18432. height: math.unit(6, "feet"),
  18433. weight: math.unit(160, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/mark/front.svg",
  18437. extra: 3300 / 3100,
  18438. bottom: 136.42 / 3440.47
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Macro",
  18445. height: math.unit(120, "meters")
  18446. },
  18447. {
  18448. name: "Bigger Macro",
  18449. height: math.unit(350, "meters")
  18450. },
  18451. {
  18452. name: "Megamacro",
  18453. height: math.unit(8, "km"),
  18454. default: true
  18455. },
  18456. {
  18457. name: "Continental",
  18458. height: math.unit(4550, "km")
  18459. },
  18460. {
  18461. name: "Planetary",
  18462. height: math.unit(65000, "km")
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18468. {
  18469. front: {
  18470. height: math.unit(6, "feet"),
  18471. weight: math.unit(400, "lb"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/mac/front.svg",
  18475. extra: 1048 / 987.7,
  18476. bottom: 60 / 1107.6,
  18477. }
  18478. },
  18479. },
  18480. [
  18481. {
  18482. name: "Macro",
  18483. height: math.unit(500, "feet"),
  18484. default: true
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(5 + 2 / 12, "feet"),
  18493. weight: math.unit(190, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/bari/front.svg",
  18497. extra: 3156 / 2880,
  18498. bottom: 0.03
  18499. }
  18500. },
  18501. back: {
  18502. height: math.unit(5 + 2 / 12, "feet"),
  18503. weight: math.unit(190, "lb"),
  18504. name: "Back",
  18505. image: {
  18506. source: "./media/characters/bari/back.svg",
  18507. extra: 3260 / 2834,
  18508. bottom: 0.025
  18509. }
  18510. },
  18511. frontPlush: {
  18512. height: math.unit(5 + 2 / 12, "feet"),
  18513. weight: math.unit(190, "lb"),
  18514. name: "Front (Plush)",
  18515. image: {
  18516. source: "./media/characters/bari/front-plush.svg",
  18517. extra: 1112 / 1061,
  18518. bottom: 0.002
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Micro",
  18525. height: math.unit(3, "inches")
  18526. },
  18527. {
  18528. name: "Normal",
  18529. height: math.unit(5 + 2 / 12, "feet"),
  18530. default: true
  18531. },
  18532. {
  18533. name: "Macro",
  18534. height: math.unit(20, "feet")
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18540. {
  18541. front: {
  18542. height: math.unit(6 + 1 / 12, "feet"),
  18543. weight: math.unit(275, "lb"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/hunter-misha-raven/front.svg"
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Mortal",
  18553. height: math.unit(6 + 1 / 12, "feet")
  18554. },
  18555. {
  18556. name: "Divine",
  18557. height: math.unit(1.12134e34, "parsecs"),
  18558. default: true
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(6 + 3 / 12, "feet"),
  18567. weight: math.unit(220, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/max-calore/front.svg",
  18571. extra: 1700 / 1648,
  18572. bottom: 0.01
  18573. }
  18574. },
  18575. back: {
  18576. height: math.unit(6 + 3 / 12, "feet"),
  18577. weight: math.unit(220, "lb"),
  18578. name: "Back",
  18579. image: {
  18580. source: "./media/characters/max-calore/back.svg",
  18581. extra: 1700 / 1648,
  18582. bottom: 0.01
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Normal",
  18589. height: math.unit(6 + 3 / 12, "feet"),
  18590. default: true
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18596. {
  18597. side: {
  18598. height: math.unit(2 + 8 / 12, "feet"),
  18599. weight: math.unit(99, "lb"),
  18600. name: "Side",
  18601. image: {
  18602. source: "./media/characters/aspen/side.svg",
  18603. extra: 152 / 138,
  18604. bottom: 0.032
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(2 + 8 / 12, "feet"),
  18612. default: true
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18618. {
  18619. side: {
  18620. height: math.unit(3 + 2 / 12, "feet"),
  18621. weight: math.unit(224, "lb"),
  18622. name: "Side",
  18623. image: {
  18624. source: "./media/characters/sheila-feral-wolf/side.svg",
  18625. extra: 179 / 166,
  18626. bottom: 0.03
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(3 + 2 / 12, "feet"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18640. {
  18641. side: {
  18642. height: math.unit(1 + 9 / 12, "feet"),
  18643. weight: math.unit(38, "lb"),
  18644. name: "Side",
  18645. image: {
  18646. source: "./media/characters/michelle/side.svg",
  18647. extra: 147 / 136.7,
  18648. bottom: 0.03
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(1 + 9 / 12, "feet"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(1.54, "feet"),
  18665. weight: math.unit(50, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/nino/front.svg"
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(1.54, "feet"),
  18676. default: true
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(1.49, "feet"),
  18685. weight: math.unit(45, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/viola/front.svg"
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Normal",
  18695. height: math.unit(1.49, "feet"),
  18696. default: true
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18702. {
  18703. front: {
  18704. height: math.unit(6 + 5 / 12, "feet"),
  18705. weight: math.unit(580, "lb"),
  18706. name: "Front",
  18707. image: {
  18708. source: "./media/characters/atlas/front.svg",
  18709. extra: 298.5 / 290,
  18710. bottom: 0.015
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(6 + 5 / 12, "feet"),
  18718. default: true
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18724. {
  18725. side: {
  18726. height: math.unit(15.6, "inches"),
  18727. weight: math.unit(10, "lb"),
  18728. name: "Side",
  18729. image: {
  18730. source: "./media/characters/davy/side.svg",
  18731. extra: 200 / 170,
  18732. bottom: 0.01
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(15.6, "inches"),
  18740. default: true
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18746. {
  18747. side: {
  18748. height: math.unit(4 + 8 / 12, "feet"),
  18749. weight: math.unit(166, "lb"),
  18750. name: "Side",
  18751. image: {
  18752. source: "./media/characters/fiona/side.svg",
  18753. extra: 232 / 220,
  18754. bottom: 0.03
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Normal",
  18761. height: math.unit(4 + 8 / 12, "feet"),
  18762. default: true
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18768. {
  18769. front: {
  18770. height: math.unit(26, "inches"),
  18771. weight: math.unit(35, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/lyla/front.svg",
  18775. bottom: 0.1
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(3, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18789. {
  18790. side: {
  18791. height: math.unit(1.8, "feet"),
  18792. weight: math.unit(44, "lb"),
  18793. name: "Side",
  18794. image: {
  18795. source: "./media/characters/perseus/side.svg",
  18796. bottom: 0.21
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(1.8, "feet"),
  18804. default: true
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18810. {
  18811. side: {
  18812. height: math.unit(4 + 2 / 12, "feet"),
  18813. weight: math.unit(20, "lb"),
  18814. name: "Side",
  18815. image: {
  18816. source: "./media/characters/remus/side.svg"
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(4 + 2 / 12, "feet"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(4 + 11 / 12, "feet"),
  18833. weight: math.unit(114, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/raf/front.svg",
  18837. extra: 1504/1339,
  18838. bottom: 26/1530
  18839. }
  18840. },
  18841. side: {
  18842. height: math.unit(4 + 11 / 12, "feet"),
  18843. weight: math.unit(114, "lb"),
  18844. name: "Side",
  18845. image: {
  18846. source: "./media/characters/raf/side.svg",
  18847. extra: 1466/1316,
  18848. bottom: 29/1495
  18849. }
  18850. },
  18851. paw: {
  18852. height: math.unit(1.45, "feet"),
  18853. name: "Paw",
  18854. image: {
  18855. source: "./media/characters/raf/paw.svg"
  18856. },
  18857. extraAttributes: {
  18858. "toeSize": {
  18859. name: "Toe Size",
  18860. power: 2,
  18861. type: "area",
  18862. base: math.unit(0.004, "m^2")
  18863. },
  18864. "padSize": {
  18865. name: "Pad Size",
  18866. power: 2,
  18867. type: "area",
  18868. base: math.unit(0.04, "m^2")
  18869. },
  18870. "footSize": {
  18871. name: "Foot Size",
  18872. power: 2,
  18873. type: "area",
  18874. base: math.unit(0.08, "m^2")
  18875. },
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Micro",
  18882. height: math.unit(2, "inches")
  18883. },
  18884. {
  18885. name: "Normal",
  18886. height: math.unit(4 + 11 / 12, "feet"),
  18887. default: true
  18888. },
  18889. {
  18890. name: "Macro",
  18891. height: math.unit(70, "feet")
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18897. {
  18898. front: {
  18899. height: math.unit(1.5, "meters"),
  18900. weight: math.unit(68, "kg"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/liam-einarr/front.svg",
  18904. extra: 2822 / 2666
  18905. }
  18906. },
  18907. back: {
  18908. height: math.unit(1.5, "meters"),
  18909. weight: math.unit(68, "kg"),
  18910. name: "Back",
  18911. image: {
  18912. source: "./media/characters/liam-einarr/back.svg",
  18913. extra: 2822 / 2666,
  18914. bottom: 0.015
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(1.5, "meters"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Macro",
  18926. height: math.unit(150, "meters")
  18927. },
  18928. {
  18929. name: "Megamacro",
  18930. height: math.unit(35, "km")
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(6, "feet"),
  18939. weight: math.unit(75, "kg"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/linda/front.svg",
  18943. extra: 930 / 874,
  18944. bottom: 0.004
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(6, "feet"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(6 + 8 / 12, "feet"),
  18961. weight: math.unit(220, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/caylex/front.svg",
  18965. extra: 821 / 772,
  18966. bottom: 0.07
  18967. }
  18968. },
  18969. back: {
  18970. height: math.unit(6 + 8 / 12, "feet"),
  18971. weight: math.unit(220, "lb"),
  18972. name: "Back",
  18973. image: {
  18974. source: "./media/characters/caylex/back.svg",
  18975. extra: 821 / 772,
  18976. bottom: 0.022
  18977. }
  18978. },
  18979. hand: {
  18980. height: math.unit(1.25, "feet"),
  18981. name: "Hand",
  18982. image: {
  18983. source: "./media/characters/caylex/hand.svg"
  18984. }
  18985. },
  18986. foot: {
  18987. height: math.unit(1.6, "feet"),
  18988. name: "Foot",
  18989. image: {
  18990. source: "./media/characters/caylex/foot.svg"
  18991. }
  18992. },
  18993. armored: {
  18994. height: math.unit(6 + 8 / 12, "feet"),
  18995. weight: math.unit(250, "lb"),
  18996. name: "Armored",
  18997. image: {
  18998. source: "./media/characters/caylex/armored.svg",
  18999. extra: 1420 / 1310,
  19000. bottom: 0.045
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(6 + 8 / 12, "feet"),
  19008. default: true
  19009. },
  19010. {
  19011. name: "Normal+",
  19012. height: math.unit(12, "feet")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(7 + 6 / 12, "feet"),
  19021. weight: math.unit(288, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/alana/front.svg",
  19025. extra: 679 / 653,
  19026. bottom: 22.5 / 701
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(7 + 6 / 12, "feet")
  19034. },
  19035. {
  19036. name: "Large",
  19037. height: math.unit(50, "feet")
  19038. },
  19039. {
  19040. name: "Macro",
  19041. height: math.unit(100, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Macro+",
  19046. height: math.unit(200, "feet")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(6 + 1 / 12, "feet"),
  19055. weight: math.unit(210, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/hasani/front.svg",
  19059. extra: 244 / 232,
  19060. bottom: 0.01
  19061. }
  19062. },
  19063. back: {
  19064. height: math.unit(6 + 1 / 12, "feet"),
  19065. weight: math.unit(210, "lb"),
  19066. name: "Back",
  19067. image: {
  19068. source: "./media/characters/hasani/back.svg",
  19069. extra: 244 / 232,
  19070. bottom: 0.01
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(6 + 1 / 12, "feet")
  19078. },
  19079. {
  19080. name: "Macro",
  19081. height: math.unit(175, "feet"),
  19082. default: true
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19088. {
  19089. front: {
  19090. height: math.unit(1.82, "meters"),
  19091. weight: math.unit(140, "lb"),
  19092. name: "Front",
  19093. image: {
  19094. source: "./media/characters/nita/front.svg",
  19095. extra: 2473 / 2363,
  19096. bottom: 0.01
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(1.82, "m")
  19104. },
  19105. {
  19106. name: "Macro",
  19107. height: math.unit(300, "m")
  19108. },
  19109. {
  19110. name: "Mistake Canon",
  19111. height: math.unit(0.5, "miles"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Big Mistake",
  19116. height: math.unit(13, "miles")
  19117. },
  19118. {
  19119. name: "Playing God",
  19120. height: math.unit(2450, "miles")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(4, "feet"),
  19129. weight: math.unit(120, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/shiriko/front.svg",
  19133. extra: 970/934,
  19134. bottom: 5/975
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(4, "feet"),
  19142. default: true
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19148. {
  19149. front: {
  19150. height: math.unit(6, "feet"),
  19151. name: "front",
  19152. image: {
  19153. source: "./media/characters/deja/front.svg",
  19154. extra: 926 / 840,
  19155. bottom: 0.07
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Planck Length",
  19162. height: math.unit(1.6e-35, "meters")
  19163. },
  19164. {
  19165. name: "Normal",
  19166. height: math.unit(30.48, "meters"),
  19167. default: true
  19168. },
  19169. {
  19170. name: "Universal",
  19171. height: math.unit(8.8e26, "meters")
  19172. },
  19173. ]
  19174. ))
  19175. characterMakers.push(() => makeCharacter(
  19176. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19177. {
  19178. side: {
  19179. height: math.unit(8, "feet"),
  19180. weight: math.unit(6300, "lb"),
  19181. name: "Side",
  19182. image: {
  19183. source: "./media/characters/anima/side.svg",
  19184. bottom: 0.035
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(8, "feet"),
  19192. default: true
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(8, "feet"),
  19201. weight: math.unit(350, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/bianca/front.svg",
  19205. extra: 234 / 225,
  19206. bottom: 0.03
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(8, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(11 + 5/12, "feet"),
  19223. weight: math.unit(1200, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/adinia/front.svg",
  19227. extra: 1767/1641,
  19228. bottom: 44/1811
  19229. },
  19230. extraAttributes: {
  19231. "energyIntake": {
  19232. name: "Energy Intake",
  19233. power: 3,
  19234. type: "energy",
  19235. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19236. },
  19237. }
  19238. },
  19239. back: {
  19240. height: math.unit(11 + 5/12, "feet"),
  19241. weight: math.unit(1200, "lb"),
  19242. name: "Back",
  19243. image: {
  19244. source: "./media/characters/adinia/back.svg",
  19245. extra: 1834/1684,
  19246. bottom: 14/1848
  19247. },
  19248. extraAttributes: {
  19249. "energyIntake": {
  19250. name: "Energy Intake",
  19251. power: 3,
  19252. type: "energy",
  19253. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19254. },
  19255. }
  19256. },
  19257. maw: {
  19258. height: math.unit(3.79, "feet"),
  19259. name: "Maw",
  19260. image: {
  19261. source: "./media/characters/adinia/maw.svg"
  19262. }
  19263. },
  19264. rump: {
  19265. height: math.unit(4.6, "feet"),
  19266. name: "Rump",
  19267. image: {
  19268. source: "./media/characters/adinia/rump.svg"
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(11 + 5 / 12, "feet"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19282. {
  19283. front: {
  19284. height: math.unit(3, "meters"),
  19285. weight: math.unit(200, "kg"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/lykasa/front.svg",
  19289. extra: 1076 / 976,
  19290. bottom: 0.06
  19291. }
  19292. },
  19293. },
  19294. [
  19295. {
  19296. name: "Normal",
  19297. height: math.unit(3, "meters")
  19298. },
  19299. {
  19300. name: "Kaiju",
  19301. height: math.unit(120, "meters"),
  19302. default: true
  19303. },
  19304. {
  19305. name: "Mega Kaiju",
  19306. height: math.unit(240, "km")
  19307. },
  19308. {
  19309. name: "Giga Kaiju",
  19310. height: math.unit(400, "megameters")
  19311. },
  19312. {
  19313. name: "Tera Kaiju",
  19314. height: math.unit(800, "gigameters")
  19315. },
  19316. {
  19317. name: "Kaiju Dragon Goddess",
  19318. height: math.unit(26, "zettaparsecs")
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19324. {
  19325. side: {
  19326. height: math.unit(283 / 124 * 6, "feet"),
  19327. weight: math.unit(35000, "lb"),
  19328. name: "Side",
  19329. image: {
  19330. source: "./media/characters/malfaren/side.svg",
  19331. extra: 1310/529,
  19332. bottom: 24/1334
  19333. }
  19334. },
  19335. front: {
  19336. height: math.unit(22.36, "feet"),
  19337. weight: math.unit(35000, "lb"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/malfaren/front.svg",
  19341. extra: 1237/1115,
  19342. bottom: 32/1269
  19343. }
  19344. },
  19345. maw: {
  19346. height: math.unit(6.9, "feet"),
  19347. name: "Maw",
  19348. image: {
  19349. source: "./media/characters/malfaren/maw.svg"
  19350. }
  19351. },
  19352. dick: {
  19353. height: math.unit(6.19, "feet"),
  19354. name: "Dick",
  19355. image: {
  19356. source: "./media/characters/malfaren/dick.svg"
  19357. }
  19358. },
  19359. eye: {
  19360. height: math.unit(0.69, "feet"),
  19361. name: "Eye",
  19362. image: {
  19363. source: "./media/characters/malfaren/eye.svg"
  19364. }
  19365. },
  19366. },
  19367. [
  19368. {
  19369. name: "Big",
  19370. height: math.unit(283 / 162 * 6, "feet"),
  19371. },
  19372. {
  19373. name: "Bigger",
  19374. height: math.unit(283 / 124 * 6, "feet")
  19375. },
  19376. {
  19377. name: "Massive",
  19378. height: math.unit(283 / 92 * 6, "feet"),
  19379. default: true
  19380. },
  19381. {
  19382. name: "👀💦",
  19383. height: math.unit(283 / 73 * 6, "feet"),
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19389. {
  19390. front: {
  19391. height: math.unit(1.7, "m"),
  19392. weight: math.unit(70, "kg"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/kernel/front.svg",
  19396. extra: 222 / 210,
  19397. bottom: 0.007
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Nano",
  19404. height: math.unit(17, "micrometers")
  19405. },
  19406. {
  19407. name: "Micro",
  19408. height: math.unit(1.7, "mm")
  19409. },
  19410. {
  19411. name: "Small",
  19412. height: math.unit(1.7, "cm")
  19413. },
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(1.7, "m"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(1.75, "meters"),
  19426. weight: math.unit(65, "kg"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/jayne-folest/front.svg",
  19430. extra: 2115 / 2007,
  19431. bottom: 0.02
  19432. }
  19433. },
  19434. back: {
  19435. height: math.unit(1.75, "meters"),
  19436. weight: math.unit(65, "kg"),
  19437. name: "Back",
  19438. image: {
  19439. source: "./media/characters/jayne-folest/back.svg",
  19440. extra: 2115 / 2007,
  19441. bottom: 0.005
  19442. }
  19443. },
  19444. frontClothed: {
  19445. height: math.unit(1.75, "meters"),
  19446. weight: math.unit(65, "kg"),
  19447. name: "Front (Clothed)",
  19448. image: {
  19449. source: "./media/characters/jayne-folest/front-clothed.svg",
  19450. extra: 2115 / 2007,
  19451. bottom: 0.035
  19452. }
  19453. },
  19454. hand: {
  19455. height: math.unit(1 / 1.260, "feet"),
  19456. name: "Hand",
  19457. image: {
  19458. source: "./media/characters/jayne-folest/hand.svg"
  19459. }
  19460. },
  19461. foot: {
  19462. height: math.unit(1 / 0.918, "feet"),
  19463. name: "Foot",
  19464. image: {
  19465. source: "./media/characters/jayne-folest/foot.svg"
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Micro",
  19472. height: math.unit(4, "cm")
  19473. },
  19474. {
  19475. name: "Normal",
  19476. height: math.unit(1.75, "meters")
  19477. },
  19478. {
  19479. name: "Macro",
  19480. height: math.unit(47.5, "meters"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(180, "cm"),
  19490. weight: math.unit(70, "kg"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/algier/front.svg",
  19494. extra: 596 / 572,
  19495. bottom: 0.04
  19496. }
  19497. },
  19498. back: {
  19499. height: math.unit(180, "cm"),
  19500. weight: math.unit(70, "kg"),
  19501. name: "Back",
  19502. image: {
  19503. source: "./media/characters/algier/back.svg",
  19504. extra: 596 / 572,
  19505. bottom: 0.025
  19506. }
  19507. },
  19508. frontdressed: {
  19509. height: math.unit(180, "cm"),
  19510. weight: math.unit(150, "kg"),
  19511. name: "Front-dressed",
  19512. image: {
  19513. source: "./media/characters/algier/front-dressed.svg",
  19514. extra: 596 / 572,
  19515. bottom: 0.038
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Micro",
  19522. height: math.unit(5, "cm")
  19523. },
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(180, "cm"),
  19527. default: true
  19528. },
  19529. {
  19530. name: "Macro",
  19531. height: math.unit(64, "m")
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19537. {
  19538. upright: {
  19539. height: math.unit(7, "feet"),
  19540. weight: math.unit(300, "lb"),
  19541. name: "Upright",
  19542. image: {
  19543. source: "./media/characters/pretzel/upright.svg",
  19544. extra: 534 / 522,
  19545. bottom: 0.065
  19546. }
  19547. },
  19548. sprawling: {
  19549. height: math.unit(3.75, "feet"),
  19550. weight: math.unit(300, "lb"),
  19551. name: "Sprawling",
  19552. image: {
  19553. source: "./media/characters/pretzel/sprawling.svg",
  19554. extra: 314 / 281,
  19555. bottom: 0.1
  19556. }
  19557. },
  19558. tongue: {
  19559. height: math.unit(2, "feet"),
  19560. name: "Tongue",
  19561. image: {
  19562. source: "./media/characters/pretzel/tongue.svg"
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(7, "feet"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Oversized",
  19574. height: math.unit(15, "feet")
  19575. },
  19576. {
  19577. name: "Huge",
  19578. height: math.unit(30, "feet")
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(250, "feet")
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19588. {
  19589. sideFront: {
  19590. height: math.unit(5 + 2 / 12, "feet"),
  19591. weight: math.unit(120, "lb"),
  19592. name: "Front Side",
  19593. image: {
  19594. source: "./media/characters/roxi/side-front.svg",
  19595. extra: 2924 / 2717,
  19596. bottom: 0.08
  19597. }
  19598. },
  19599. sideBack: {
  19600. height: math.unit(5 + 2 / 12, "feet"),
  19601. weight: math.unit(120, "lb"),
  19602. name: "Back Side",
  19603. image: {
  19604. source: "./media/characters/roxi/side-back.svg",
  19605. extra: 2904 / 2693,
  19606. bottom: 0.06
  19607. }
  19608. },
  19609. front: {
  19610. height: math.unit(5 + 2 / 12, "feet"),
  19611. weight: math.unit(120, "lb"),
  19612. name: "Front",
  19613. image: {
  19614. source: "./media/characters/roxi/front.svg",
  19615. extra: 2028 / 1907,
  19616. bottom: 0.01
  19617. }
  19618. },
  19619. frontAlt: {
  19620. height: math.unit(5 + 2 / 12, "feet"),
  19621. weight: math.unit(120, "lb"),
  19622. name: "Front (Alt)",
  19623. image: {
  19624. source: "./media/characters/roxi/front-alt.svg",
  19625. extra: 1828 / 1798,
  19626. bottom: 0.01
  19627. }
  19628. },
  19629. sitting: {
  19630. height: math.unit(2.8, "feet"),
  19631. weight: math.unit(120, "lb"),
  19632. name: "Sitting",
  19633. image: {
  19634. source: "./media/characters/roxi/sitting.svg",
  19635. extra: 2660 / 2462,
  19636. bottom: 0.1
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(5 + 2 / 12, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19650. {
  19651. side: {
  19652. height: math.unit(55, "feet"),
  19653. weight: math.unit(153, "tons"),
  19654. name: "Side",
  19655. image: {
  19656. source: "./media/characters/shadow/side.svg",
  19657. extra: 701 / 628,
  19658. bottom: 0.02
  19659. }
  19660. },
  19661. flying: {
  19662. height: math.unit(145, "feet"),
  19663. weight: math.unit(153, "tons"),
  19664. name: "Flying",
  19665. image: {
  19666. source: "./media/characters/shadow/flying.svg"
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Normal",
  19673. height: math.unit(55, "feet"),
  19674. default: true
  19675. },
  19676. ]
  19677. ))
  19678. characterMakers.push(() => makeCharacter(
  19679. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19680. {
  19681. front: {
  19682. height: math.unit(6, "feet"),
  19683. weight: math.unit(200, "lb"),
  19684. name: "Front",
  19685. image: {
  19686. source: "./media/characters/marcie/front.svg",
  19687. extra: 960 / 876,
  19688. bottom: 58 / 1017.87
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Macro",
  19695. height: math.unit(1, "mile"),
  19696. default: true
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19702. {
  19703. front: {
  19704. height: math.unit(7, "feet"),
  19705. weight: math.unit(200, "lb"),
  19706. name: "Front",
  19707. image: {
  19708. source: "./media/characters/kachina/front.svg",
  19709. extra: 1290.68 / 1119,
  19710. bottom: 36.5 / 1327.18
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(7, "feet"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19724. {
  19725. looking: {
  19726. height: math.unit(2, "meters"),
  19727. weight: math.unit(300, "kg"),
  19728. name: "Looking",
  19729. image: {
  19730. source: "./media/characters/kash/looking.svg",
  19731. extra: 474 / 344,
  19732. bottom: 0.03
  19733. }
  19734. },
  19735. side: {
  19736. height: math.unit(2, "meters"),
  19737. weight: math.unit(300, "kg"),
  19738. name: "Side",
  19739. image: {
  19740. source: "./media/characters/kash/side.svg",
  19741. extra: 302 / 251,
  19742. bottom: 0.03
  19743. }
  19744. },
  19745. front: {
  19746. height: math.unit(2, "meters"),
  19747. weight: math.unit(300, "kg"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/kash/front.svg",
  19751. extra: 495 / 360,
  19752. bottom: 0.015
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(2, "meters"),
  19760. default: true
  19761. },
  19762. {
  19763. name: "Big",
  19764. height: math.unit(3, "meters")
  19765. },
  19766. {
  19767. name: "Large",
  19768. height: math.unit(5, "meters")
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19774. {
  19775. feeding: {
  19776. height: math.unit(6.7, "feet"),
  19777. weight: math.unit(350, "lb"),
  19778. name: "Feeding",
  19779. image: {
  19780. source: "./media/characters/lalim/feeding.svg",
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Normal",
  19787. height: math.unit(6.7, "feet"),
  19788. default: true
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19794. {
  19795. front: {
  19796. height: math.unit(9.5, "feet"),
  19797. weight: math.unit(600, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/de'vout/front.svg",
  19801. extra: 1443 / 1328,
  19802. bottom: 0.025
  19803. }
  19804. },
  19805. back: {
  19806. height: math.unit(9.5, "feet"),
  19807. weight: math.unit(600, "lb"),
  19808. name: "Back",
  19809. image: {
  19810. source: "./media/characters/de'vout/back.svg",
  19811. extra: 1443 / 1328
  19812. }
  19813. },
  19814. frontDressed: {
  19815. height: math.unit(9.5, "feet"),
  19816. weight: math.unit(600, "lb"),
  19817. name: "Front (Dressed",
  19818. image: {
  19819. source: "./media/characters/de'vout/front-dressed.svg",
  19820. extra: 1443 / 1328,
  19821. bottom: 0.025
  19822. }
  19823. },
  19824. backDressed: {
  19825. height: math.unit(9.5, "feet"),
  19826. weight: math.unit(600, "lb"),
  19827. name: "Back (Dressed",
  19828. image: {
  19829. source: "./media/characters/de'vout/back-dressed.svg",
  19830. extra: 1443 / 1328
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(9.5, "feet"),
  19838. default: true
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19844. {
  19845. front: {
  19846. height: math.unit(8, "feet"),
  19847. weight: math.unit(225, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/talana/front.svg",
  19851. extra: 1410 / 1300,
  19852. bottom: 0.015
  19853. }
  19854. },
  19855. frontDressed: {
  19856. height: math.unit(8, "feet"),
  19857. weight: math.unit(225, "lb"),
  19858. name: "Front (Dressed",
  19859. image: {
  19860. source: "./media/characters/talana/front-dressed.svg",
  19861. extra: 1410 / 1300,
  19862. bottom: 0.015
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(8, "feet"),
  19870. default: true
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19876. {
  19877. side: {
  19878. height: math.unit(7.2, "feet"),
  19879. weight: math.unit(150, "lb"),
  19880. name: "Side",
  19881. image: {
  19882. source: "./media/characters/xeauvok/side.svg",
  19883. extra: 1975 / 1523,
  19884. bottom: 0.07
  19885. }
  19886. },
  19887. },
  19888. [
  19889. {
  19890. name: "Normal",
  19891. height: math.unit(7.2, "feet"),
  19892. default: true
  19893. },
  19894. ]
  19895. ))
  19896. characterMakers.push(() => makeCharacter(
  19897. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19898. {
  19899. side: {
  19900. height: math.unit(4, "meters"),
  19901. weight: math.unit(2200, "kg"),
  19902. name: "Side",
  19903. image: {
  19904. source: "./media/characters/zara/side.svg",
  19905. extra: 765/744,
  19906. bottom: 156/921
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(4, "meters"),
  19914. default: true
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19920. {
  19921. side: {
  19922. height: math.unit(6, "feet"),
  19923. weight: math.unit(150, "lb"),
  19924. name: "Side",
  19925. image: {
  19926. source: "./media/characters/richard-dragon/side.svg",
  19927. extra: 845 / 340,
  19928. bottom: 0.017
  19929. }
  19930. },
  19931. maw: {
  19932. height: math.unit(2.97, "feet"),
  19933. name: "Maw",
  19934. image: {
  19935. source: "./media/characters/richard-dragon/maw.svg"
  19936. }
  19937. },
  19938. },
  19939. [
  19940. ]
  19941. ))
  19942. characterMakers.push(() => makeCharacter(
  19943. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19944. {
  19945. front: {
  19946. height: math.unit(4, "feet"),
  19947. weight: math.unit(100, "lb"),
  19948. name: "Front",
  19949. image: {
  19950. source: "./media/characters/richard-smeargle/front.svg",
  19951. extra: 2952 / 2820,
  19952. bottom: 0.028
  19953. }
  19954. },
  19955. },
  19956. [
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(4, "feet"),
  19960. default: true
  19961. },
  19962. {
  19963. name: "Dynamax",
  19964. height: math.unit(20, "meters")
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(6, "feet"),
  19973. weight: math.unit(110, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/klay/front.svg",
  19977. extra: 962 / 883,
  19978. bottom: 0.04
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(6, "feet"),
  19983. weight: math.unit(110, "lb"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/klay/back.svg",
  19987. extra: 962 / 883
  19988. }
  19989. },
  19990. beans: {
  19991. height: math.unit(1.15, "feet"),
  19992. name: "Beans",
  19993. image: {
  19994. source: "./media/characters/klay/beans.svg"
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Micro",
  20001. height: math.unit(6, "inches")
  20002. },
  20003. {
  20004. name: "Mini",
  20005. height: math.unit(3, "feet")
  20006. },
  20007. {
  20008. name: "Normal",
  20009. height: math.unit(6, "feet"),
  20010. default: true
  20011. },
  20012. {
  20013. name: "Big",
  20014. height: math.unit(25, "feet")
  20015. },
  20016. {
  20017. name: "Macro",
  20018. height: math.unit(100, "feet")
  20019. },
  20020. {
  20021. name: "Megamacro",
  20022. height: math.unit(400, "feet")
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20028. {
  20029. front: {
  20030. height: math.unit(6, "feet"),
  20031. weight: math.unit(160, "lb"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/marcus/front.svg",
  20035. extra: 734 / 676,
  20036. bottom: 0.03
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Little",
  20043. height: math.unit(6, "feet")
  20044. },
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(110, "feet"),
  20048. default: true
  20049. },
  20050. {
  20051. name: "Macro",
  20052. height: math.unit(250, "feet")
  20053. },
  20054. {
  20055. name: "Megamacro",
  20056. height: math.unit(1000, "feet")
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20062. {
  20063. front: {
  20064. height: math.unit(7, "feet"),
  20065. weight: math.unit(275, "lb"),
  20066. name: "Front",
  20067. image: {
  20068. source: "./media/characters/claude-delroute/front.svg",
  20069. extra: 902/827,
  20070. bottom: 26/928
  20071. }
  20072. },
  20073. side: {
  20074. height: math.unit(7, "feet"),
  20075. weight: math.unit(275, "lb"),
  20076. name: "Side",
  20077. image: {
  20078. source: "./media/characters/claude-delroute/side.svg",
  20079. extra: 908/853,
  20080. bottom: 16/924
  20081. }
  20082. },
  20083. back: {
  20084. height: math.unit(7, "feet"),
  20085. weight: math.unit(275, "lb"),
  20086. name: "Back",
  20087. image: {
  20088. source: "./media/characters/claude-delroute/back.svg",
  20089. extra: 911/829,
  20090. bottom: 18/929
  20091. }
  20092. },
  20093. maw: {
  20094. height: math.unit(0.6407, "meters"),
  20095. name: "Maw",
  20096. image: {
  20097. source: "./media/characters/claude-delroute/maw.svg"
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(7, "feet"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Lorge",
  20109. height: math.unit(20, "feet")
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(8 + 4 / 12, "feet"),
  20118. weight: math.unit(600, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/dragonien/front.svg",
  20122. extra: 100 / 94,
  20123. bottom: 3.3 / 103.3445
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(8 + 4 / 12, "feet"),
  20128. weight: math.unit(600, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/dragonien/back.svg",
  20132. extra: 776 / 746,
  20133. bottom: 6.4 / 782.0616
  20134. }
  20135. },
  20136. foot: {
  20137. height: math.unit(1.54, "feet"),
  20138. name: "Foot",
  20139. image: {
  20140. source: "./media/characters/dragonien/foot.svg",
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(8 + 4 / 12, "feet"),
  20148. default: true
  20149. },
  20150. {
  20151. name: "Macro",
  20152. height: math.unit(200, "feet")
  20153. },
  20154. {
  20155. name: "Megamacro",
  20156. height: math.unit(1, "mile")
  20157. },
  20158. {
  20159. name: "Gigamacro",
  20160. height: math.unit(1000, "miles")
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(5 + 2 / 12, "feet"),
  20169. weight: math.unit(110, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/desta/front.svg",
  20173. extra: 767 / 726,
  20174. bottom: 11.7 / 779
  20175. }
  20176. },
  20177. back: {
  20178. height: math.unit(5 + 2 / 12, "feet"),
  20179. weight: math.unit(110, "lb"),
  20180. name: "Back",
  20181. image: {
  20182. source: "./media/characters/desta/back.svg",
  20183. extra: 777 / 728,
  20184. bottom: 6 / 784
  20185. }
  20186. },
  20187. frontAlt: {
  20188. height: math.unit(5 + 2 / 12, "feet"),
  20189. weight: math.unit(110, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/desta/front-alt.svg",
  20193. extra: 1482 / 1417
  20194. }
  20195. },
  20196. side: {
  20197. height: math.unit(5 + 2 / 12, "feet"),
  20198. weight: math.unit(110, "lb"),
  20199. name: "Side",
  20200. image: {
  20201. source: "./media/characters/desta/side.svg",
  20202. extra: 2579 / 2491,
  20203. bottom: 0.053
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Micro",
  20210. height: math.unit(6, "inches")
  20211. },
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(5 + 2 / 12, "feet"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Macro",
  20219. height: math.unit(62, "feet")
  20220. },
  20221. {
  20222. name: "Megamacro",
  20223. height: math.unit(1800, "feet")
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20229. {
  20230. front: {
  20231. height: math.unit(10, "feet"),
  20232. weight: math.unit(700, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/storm-alystar/front.svg",
  20236. extra: 2112 / 1898,
  20237. bottom: 0.034
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Micro",
  20244. height: math.unit(3.5, "inches")
  20245. },
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(10, "feet"),
  20249. default: true
  20250. },
  20251. {
  20252. name: "Macro",
  20253. height: math.unit(400, "feet")
  20254. },
  20255. {
  20256. name: "Deific",
  20257. height: math.unit(60, "miles")
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(2.35, "meters"),
  20266. weight: math.unit(119, "kg"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/ilia/front.svg",
  20270. extra: 1285 / 1255,
  20271. bottom: 0.06
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Normal",
  20278. height: math.unit(2.35, "meters")
  20279. },
  20280. {
  20281. name: "Macro",
  20282. height: math.unit(140, "meters"),
  20283. default: true
  20284. },
  20285. {
  20286. name: "Megamacro",
  20287. height: math.unit(100, "miles")
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20293. {
  20294. front: {
  20295. height: math.unit(6 + 5 / 12, "feet"),
  20296. weight: math.unit(190, "lb"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/kingdead/front.svg",
  20300. extra: 1228 / 1177
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Micro",
  20307. height: math.unit(7, "inches")
  20308. },
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(6 + 5 / 12, "feet")
  20312. },
  20313. {
  20314. name: "Macro",
  20315. height: math.unit(150, "feet"),
  20316. default: true
  20317. },
  20318. {
  20319. name: "Megamacro",
  20320. height: math.unit(200, "miles")
  20321. },
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20326. {
  20327. front: {
  20328. height: math.unit(8, "feet"),
  20329. weight: math.unit(600, "lb"),
  20330. name: "Front",
  20331. image: {
  20332. source: "./media/characters/kyrehx/front.svg",
  20333. extra: 1195 / 1095,
  20334. bottom: 0.034
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Micro",
  20341. height: math.unit(2, "inches")
  20342. },
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(8, "feet"),
  20346. default: true
  20347. },
  20348. {
  20349. name: "Macro",
  20350. height: math.unit(255, "feet")
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20356. {
  20357. front: {
  20358. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20359. weight: math.unit(184, "lb"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/xang/front.svg",
  20363. extra: 845 / 755
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20371. default: true
  20372. },
  20373. {
  20374. name: "Macro",
  20375. height: math.unit(0.935 * 146, "feet")
  20376. },
  20377. {
  20378. name: "Megamacro",
  20379. height: math.unit(0.935 * 3, "miles")
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20385. {
  20386. frontDressed: {
  20387. height: math.unit(5 + 7 / 12, "feet"),
  20388. weight: math.unit(140, "lb"),
  20389. name: "Front (Dressed)",
  20390. image: {
  20391. source: "./media/characters/doc-weardno/front-dressed.svg",
  20392. extra: 263 / 234
  20393. }
  20394. },
  20395. backDressed: {
  20396. height: math.unit(5 + 7 / 12, "feet"),
  20397. weight: math.unit(140, "lb"),
  20398. name: "Back (Dressed)",
  20399. image: {
  20400. source: "./media/characters/doc-weardno/back-dressed.svg",
  20401. extra: 266 / 238
  20402. }
  20403. },
  20404. front: {
  20405. height: math.unit(5 + 7 / 12, "feet"),
  20406. weight: math.unit(140, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/doc-weardno/front.svg",
  20410. extra: 254 / 233
  20411. }
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Micro",
  20417. height: math.unit(3, "inches")
  20418. },
  20419. {
  20420. name: "Normal",
  20421. height: math.unit(5 + 7 / 12, "feet"),
  20422. default: true
  20423. },
  20424. {
  20425. name: "Macro",
  20426. height: math.unit(25, "feet")
  20427. },
  20428. {
  20429. name: "Megamacro",
  20430. height: math.unit(2, "miles")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(6 + 2 / 12, "feet"),
  20439. weight: math.unit(153, "lb"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/seth-whilst/front.svg",
  20443. bottom: 0.07
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Micro",
  20450. height: math.unit(5, "inches")
  20451. },
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(6 + 2 / 12, "feet"),
  20455. default: true
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20461. {
  20462. front: {
  20463. height: math.unit(3, "inches"),
  20464. weight: math.unit(8, "grams"),
  20465. name: "Front",
  20466. image: {
  20467. source: "./media/characters/pocket-jabari/front.svg",
  20468. extra: 1024 / 974,
  20469. bottom: 0.039
  20470. }
  20471. },
  20472. },
  20473. [
  20474. {
  20475. name: "Minimicro",
  20476. height: math.unit(8, "mm")
  20477. },
  20478. {
  20479. name: "Micro",
  20480. height: math.unit(3, "inches"),
  20481. default: true
  20482. },
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(3, "feet")
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20491. {
  20492. frontDressed: {
  20493. height: math.unit(15, "feet"),
  20494. weight: math.unit(3280, "lb"),
  20495. name: "Front (Dressed)",
  20496. image: {
  20497. source: "./media/characters/sapphy/front-dressed.svg",
  20498. extra: 1951/1654,
  20499. bottom: 194/2145
  20500. },
  20501. form: "anthro",
  20502. default: true
  20503. },
  20504. backDressed: {
  20505. height: math.unit(15, "feet"),
  20506. weight: math.unit(3280, "lb"),
  20507. name: "Back (Dressed)",
  20508. image: {
  20509. source: "./media/characters/sapphy/back-dressed.svg",
  20510. extra: 2058/1918,
  20511. bottom: 125/2183
  20512. },
  20513. form: "anthro"
  20514. },
  20515. frontNude: {
  20516. height: math.unit(15, "feet"),
  20517. weight: math.unit(3280, "lb"),
  20518. name: "Front (Nude)",
  20519. image: {
  20520. source: "./media/characters/sapphy/front-nude.svg",
  20521. extra: 1951/1654,
  20522. bottom: 194/2145
  20523. },
  20524. form: "anthro"
  20525. },
  20526. backNude: {
  20527. height: math.unit(15, "feet"),
  20528. weight: math.unit(3280, "lb"),
  20529. name: "Back (Nude)",
  20530. image: {
  20531. source: "./media/characters/sapphy/back-nude.svg",
  20532. extra: 2058/1918,
  20533. bottom: 125/2183
  20534. },
  20535. form: "anthro"
  20536. },
  20537. full: {
  20538. height: math.unit(15, "feet"),
  20539. weight: math.unit(3280, "lb"),
  20540. name: "Full",
  20541. image: {
  20542. source: "./media/characters/sapphy/full.svg",
  20543. extra: 1396/1317,
  20544. bottom: 44/1440
  20545. },
  20546. form: "anthro"
  20547. },
  20548. dick: {
  20549. height: math.unit(3.8, "feet"),
  20550. name: "Dick",
  20551. image: {
  20552. source: "./media/characters/sapphy/dick.svg"
  20553. },
  20554. form: "anthro"
  20555. },
  20556. feral: {
  20557. height: math.unit(35, "feet"),
  20558. weight: math.unit(160, "tons"),
  20559. name: "Feral",
  20560. image: {
  20561. source: "./media/characters/sapphy/feral.svg",
  20562. extra: 1050/573,
  20563. bottom: 60/1110
  20564. },
  20565. form: "feral",
  20566. default: true
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(15, "feet"),
  20573. form: "anthro"
  20574. },
  20575. {
  20576. name: "Casual Macro",
  20577. height: math.unit(120, "feet"),
  20578. form: "anthro"
  20579. },
  20580. {
  20581. name: "Macro",
  20582. height: math.unit(2150, "feet"),
  20583. default: true,
  20584. form: "anthro"
  20585. },
  20586. {
  20587. name: "Megamacro",
  20588. height: math.unit(8, "miles"),
  20589. form: "anthro"
  20590. },
  20591. {
  20592. name: "Galaxy Mom",
  20593. height: math.unit(6, "megalightyears"),
  20594. form: "anthro"
  20595. },
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(35, "feet"),
  20599. form: "feral",
  20600. default: true
  20601. },
  20602. {
  20603. name: "Macro",
  20604. height: math.unit(300, "feet"),
  20605. form: "feral"
  20606. },
  20607. {
  20608. name: "Galaxy Mom",
  20609. height: math.unit(10, "megalightyears"),
  20610. form: "feral"
  20611. },
  20612. ],
  20613. {
  20614. "anthro": {
  20615. name: "Anthro",
  20616. default: true
  20617. },
  20618. "feral": {
  20619. name: "Feral"
  20620. }
  20621. }
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20625. {
  20626. hyenaFront: {
  20627. height: math.unit(6, "feet"),
  20628. weight: math.unit(190, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/kiro/hyena-front.svg",
  20632. extra: 927/839,
  20633. bottom: 91/1018
  20634. },
  20635. form: "hyena",
  20636. default: true
  20637. },
  20638. front: {
  20639. height: math.unit(6, "feet"),
  20640. weight: math.unit(170, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/kiro/front.svg",
  20644. extra: 1064 / 1012,
  20645. bottom: 0.052
  20646. },
  20647. form: "folf",
  20648. default: true
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Micro",
  20654. height: math.unit(6, "inches"),
  20655. form: "folf"
  20656. },
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(6, "feet"),
  20660. form: "folf",
  20661. default: true
  20662. },
  20663. {
  20664. name: "Macro",
  20665. height: math.unit(72, "feet"),
  20666. form: "folf"
  20667. },
  20668. {
  20669. name: "Micro",
  20670. height: math.unit(6, "inches"),
  20671. form: "hyena"
  20672. },
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(6, "feet"),
  20676. form: "hyena",
  20677. default: true
  20678. },
  20679. {
  20680. name: "Macro",
  20681. height: math.unit(72, "feet"),
  20682. form: "hyena"
  20683. },
  20684. ],
  20685. {
  20686. "hyena": {
  20687. name: "Hyena",
  20688. default: true
  20689. },
  20690. "folf": {
  20691. name: "Folf",
  20692. },
  20693. }
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(5 + 9 / 12, "feet"),
  20700. weight: math.unit(175, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/irishfox/front.svg",
  20704. extra: 1912 / 1680,
  20705. bottom: 0.02
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Nano",
  20712. height: math.unit(1, "mm")
  20713. },
  20714. {
  20715. name: "Micro",
  20716. height: math.unit(2, "inches")
  20717. },
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(5 + 9 / 12, "feet"),
  20721. default: true
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(45, "feet")
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(6 + 1 / 12, "feet"),
  20734. weight: math.unit(75, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/aronai-sieyes/front.svg",
  20738. extra: 1532/1450,
  20739. bottom: 42/1574
  20740. }
  20741. },
  20742. side: {
  20743. height: math.unit(6 + 1 / 12, "feet"),
  20744. weight: math.unit(75, "lb"),
  20745. name: "Side",
  20746. image: {
  20747. source: "./media/characters/aronai-sieyes/side.svg",
  20748. extra: 1422/1365,
  20749. bottom: 148/1570
  20750. }
  20751. },
  20752. back: {
  20753. height: math.unit(6 + 1 / 12, "feet"),
  20754. weight: math.unit(75, "lb"),
  20755. name: "Back",
  20756. image: {
  20757. source: "./media/characters/aronai-sieyes/back.svg",
  20758. extra: 1526/1464,
  20759. bottom: 51/1577
  20760. }
  20761. },
  20762. dressed: {
  20763. height: math.unit(6 + 1 / 12, "feet"),
  20764. weight: math.unit(75, "lb"),
  20765. name: "Dressed",
  20766. image: {
  20767. source: "./media/characters/aronai-sieyes/dressed.svg",
  20768. extra: 1559/1483,
  20769. bottom: 39/1598
  20770. }
  20771. },
  20772. slit: {
  20773. height: math.unit(1.3, "feet"),
  20774. name: "Slit",
  20775. image: {
  20776. source: "./media/characters/aronai-sieyes/slit.svg"
  20777. }
  20778. },
  20779. slitSpread: {
  20780. height: math.unit(0.9, "feet"),
  20781. name: "Slit (Spread)",
  20782. image: {
  20783. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20784. }
  20785. },
  20786. rump: {
  20787. height: math.unit(1.3, "feet"),
  20788. name: "Rump",
  20789. image: {
  20790. source: "./media/characters/aronai-sieyes/rump.svg"
  20791. }
  20792. },
  20793. maw: {
  20794. height: math.unit(1.25, "feet"),
  20795. name: "Maw",
  20796. image: {
  20797. source: "./media/characters/aronai-sieyes/maw.svg"
  20798. }
  20799. },
  20800. feral: {
  20801. height: math.unit(18, "feet"),
  20802. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20803. name: "Feral",
  20804. image: {
  20805. source: "./media/characters/aronai-sieyes/feral.svg",
  20806. extra: 1530 / 1240,
  20807. bottom: 0.035
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Micro",
  20814. height: math.unit(2, "inches")
  20815. },
  20816. {
  20817. name: "Normal",
  20818. height: math.unit(6 + 1 / 12, "feet"),
  20819. default: true
  20820. }
  20821. ]
  20822. ))
  20823. characterMakers.push(() => makeCharacter(
  20824. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20825. {
  20826. front: {
  20827. height: math.unit(12, "feet"),
  20828. weight: math.unit(410, "kg"),
  20829. name: "Front",
  20830. image: {
  20831. source: "./media/characters/xuna/front.svg",
  20832. extra: 2184 / 1980
  20833. }
  20834. },
  20835. side: {
  20836. height: math.unit(12, "feet"),
  20837. weight: math.unit(410, "kg"),
  20838. name: "Side",
  20839. image: {
  20840. source: "./media/characters/xuna/side.svg",
  20841. extra: 2184 / 1980
  20842. }
  20843. },
  20844. back: {
  20845. height: math.unit(12, "feet"),
  20846. weight: math.unit(410, "kg"),
  20847. name: "Back",
  20848. image: {
  20849. source: "./media/characters/xuna/back.svg",
  20850. extra: 2184 / 1980
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Nano glow",
  20857. height: math.unit(10, "nm")
  20858. },
  20859. {
  20860. name: "Micro floof",
  20861. height: math.unit(0.3, "m")
  20862. },
  20863. {
  20864. name: "Huggable softy boi",
  20865. height: math.unit(3.6576, "m"),
  20866. default: true
  20867. },
  20868. {
  20869. name: "Admirable floof",
  20870. height: math.unit(80, "meters")
  20871. },
  20872. {
  20873. name: "Gentle macro",
  20874. height: math.unit(300, "meters")
  20875. },
  20876. {
  20877. name: "Very careful floof",
  20878. height: math.unit(3200, "meters")
  20879. },
  20880. {
  20881. name: "The mega floof",
  20882. height: math.unit(36000, "meters")
  20883. },
  20884. {
  20885. name: "Giga-fur-Wicker",
  20886. height: math.unit(4800000, "meters")
  20887. },
  20888. {
  20889. name: "Licky world",
  20890. height: math.unit(20000000, "meters")
  20891. },
  20892. {
  20893. name: "Floofy cyan sun",
  20894. height: math.unit(1500000000, "meters")
  20895. },
  20896. {
  20897. name: "Milky Wicker",
  20898. height: math.unit(1000000000000000000000, "meters")
  20899. },
  20900. {
  20901. name: "The observing Wicker",
  20902. height: math.unit(999999999999999999999999999, "meters")
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20908. {
  20909. front: {
  20910. height: math.unit(5 + 9 / 12, "feet"),
  20911. weight: math.unit(150, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/arokha-sieyes/front.svg",
  20915. extra: 1425 / 1284,
  20916. bottom: 0.05
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(5 + 9 / 12, "feet")
  20924. },
  20925. {
  20926. name: "Macro",
  20927. height: math.unit(30, "meters"),
  20928. default: true
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(6, "feet"),
  20937. weight: math.unit(180, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/arokh-sieyes/front.svg",
  20941. extra: 1830 / 1769,
  20942. bottom: 0.01
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(6, "feet")
  20950. },
  20951. {
  20952. name: "Macro",
  20953. height: math.unit(30, "meters"),
  20954. default: true
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20960. {
  20961. side: {
  20962. height: math.unit(13 + 1 / 12, "feet"),
  20963. weight: math.unit(8.5, "tonnes"),
  20964. preyCapacity: math.unit(36, "people"),
  20965. name: "Side",
  20966. image: {
  20967. source: "./media/characters/goldeneye/side.svg",
  20968. extra: 1139/741,
  20969. bottom: 98/1237
  20970. }
  20971. },
  20972. front: {
  20973. height: math.unit(5.1, "feet"),
  20974. weight: math.unit(8.5, "tonnes"),
  20975. preyCapacity: math.unit(36, "people"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/goldeneye/front.svg",
  20979. extra: 635/365,
  20980. bottom: 598/1233
  20981. }
  20982. },
  20983. maw: {
  20984. height: math.unit(6.6, "feet"),
  20985. name: "Maw",
  20986. image: {
  20987. source: "./media/characters/goldeneye/maw.svg"
  20988. }
  20989. },
  20990. headFront: {
  20991. height: math.unit(8, "feet"),
  20992. name: "Head (Front)",
  20993. image: {
  20994. source: "./media/characters/goldeneye/head-front.svg"
  20995. }
  20996. },
  20997. headSide: {
  20998. height: math.unit(6, "feet"),
  20999. name: "Head (Side)",
  21000. image: {
  21001. source: "./media/characters/goldeneye/head-side.svg"
  21002. }
  21003. },
  21004. headBack: {
  21005. height: math.unit(8, "feet"),
  21006. name: "Head (Back)",
  21007. image: {
  21008. source: "./media/characters/goldeneye/head-back.svg"
  21009. }
  21010. },
  21011. paw: {
  21012. height: math.unit(3.4, "feet"),
  21013. name: "Paw",
  21014. image: {
  21015. source: "./media/characters/goldeneye/paw.svg"
  21016. }
  21017. },
  21018. toering: {
  21019. height: math.unit(0.45, "feet"),
  21020. name: "Toering",
  21021. image: {
  21022. source: "./media/characters/goldeneye/toering.svg"
  21023. }
  21024. },
  21025. eyes: {
  21026. height: math.unit(0.5, "feet"),
  21027. name: "Eyes",
  21028. image: {
  21029. source: "./media/characters/goldeneye/eyes.svg"
  21030. }
  21031. },
  21032. },
  21033. [
  21034. {
  21035. name: "Normal",
  21036. height: math.unit(13 + 1 / 12, "feet"),
  21037. default: true
  21038. },
  21039. ]
  21040. ))
  21041. characterMakers.push(() => makeCharacter(
  21042. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21043. {
  21044. front: {
  21045. height: math.unit(6 + 1 / 12, "feet"),
  21046. weight: math.unit(210, "lb"),
  21047. name: "Front",
  21048. image: {
  21049. source: "./media/characters/leonardo-lycheborne/front.svg",
  21050. extra: 776/723,
  21051. bottom: 34/810
  21052. }
  21053. },
  21054. side: {
  21055. height: math.unit(6 + 1 / 12, "feet"),
  21056. weight: math.unit(210, "lb"),
  21057. name: "Side",
  21058. image: {
  21059. source: "./media/characters/leonardo-lycheborne/side.svg",
  21060. extra: 780/728,
  21061. bottom: 12/792
  21062. }
  21063. },
  21064. back: {
  21065. height: math.unit(6 + 1 / 12, "feet"),
  21066. weight: math.unit(210, "lb"),
  21067. name: "Back",
  21068. image: {
  21069. source: "./media/characters/leonardo-lycheborne/back.svg",
  21070. extra: 775/721,
  21071. bottom: 17/792
  21072. }
  21073. },
  21074. hand: {
  21075. height: math.unit(1.08, "feet"),
  21076. name: "Hand",
  21077. image: {
  21078. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21079. }
  21080. },
  21081. foot: {
  21082. height: math.unit(1.32, "feet"),
  21083. name: "Foot",
  21084. image: {
  21085. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21086. }
  21087. },
  21088. maw: {
  21089. height: math.unit(1, "feet"),
  21090. name: "Maw",
  21091. image: {
  21092. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21093. }
  21094. },
  21095. were: {
  21096. height: math.unit(20, "feet"),
  21097. weight: math.unit(7800, "lb"),
  21098. name: "Were",
  21099. image: {
  21100. source: "./media/characters/leonardo-lycheborne/were.svg",
  21101. extra: 1224/1165,
  21102. bottom: 72/1296
  21103. }
  21104. },
  21105. feral: {
  21106. height: math.unit(7.5, "feet"),
  21107. weight: math.unit(600, "lb"),
  21108. name: "Feral",
  21109. image: {
  21110. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21111. extra: 797/702,
  21112. bottom: 139/936
  21113. }
  21114. },
  21115. taur: {
  21116. height: math.unit(11, "feet"),
  21117. weight: math.unit(3300, "lb"),
  21118. name: "Taur",
  21119. image: {
  21120. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21121. extra: 1271/1197,
  21122. bottom: 47/1318
  21123. }
  21124. },
  21125. barghest: {
  21126. height: math.unit(11, "feet"),
  21127. weight: math.unit(1300, "lb"),
  21128. name: "Barghest",
  21129. image: {
  21130. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21131. extra: 1291/1204,
  21132. bottom: 37/1328
  21133. }
  21134. },
  21135. dick: {
  21136. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21137. name: "Dick",
  21138. image: {
  21139. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21140. }
  21141. },
  21142. dickWere: {
  21143. height: math.unit((20) / 3.8, "feet"),
  21144. name: "Dick (Were)",
  21145. image: {
  21146. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Normal",
  21153. height: math.unit(6 + 1 / 12, "feet"),
  21154. default: true
  21155. },
  21156. ]
  21157. ))
  21158. characterMakers.push(() => makeCharacter(
  21159. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21160. {
  21161. front: {
  21162. height: math.unit(10, "feet"),
  21163. weight: math.unit(350, "lb"),
  21164. name: "Front",
  21165. image: {
  21166. source: "./media/characters/jet/front.svg",
  21167. extra: 2050 / 1980,
  21168. bottom: 0.013
  21169. }
  21170. },
  21171. back: {
  21172. height: math.unit(10, "feet"),
  21173. weight: math.unit(350, "lb"),
  21174. name: "Back",
  21175. image: {
  21176. source: "./media/characters/jet/back.svg",
  21177. extra: 2050 / 1980,
  21178. bottom: 0.013
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Micro",
  21185. height: math.unit(6, "inches")
  21186. },
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(10, "feet"),
  21190. default: true
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(100, "feet")
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(15, "feet"),
  21203. weight: math.unit(2800, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/tanarath/front.svg",
  21207. extra: 2392 / 2220,
  21208. bottom: 0.03
  21209. }
  21210. },
  21211. back: {
  21212. height: math.unit(15, "feet"),
  21213. weight: math.unit(2800, "lb"),
  21214. name: "Back",
  21215. image: {
  21216. source: "./media/characters/tanarath/back.svg",
  21217. extra: 2392 / 2220,
  21218. bottom: 0.03
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(15, "feet"),
  21226. default: true
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21232. {
  21233. front: {
  21234. height: math.unit(7 + 1 / 12, "feet"),
  21235. weight: math.unit(175, "lb"),
  21236. name: "Front",
  21237. image: {
  21238. source: "./media/characters/patty-cattybatty/front.svg",
  21239. extra: 908 / 874,
  21240. bottom: 0.025
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Micro",
  21247. height: math.unit(1, "inch")
  21248. },
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(7 + 1 / 12, "feet")
  21252. },
  21253. {
  21254. name: "Mini Macro",
  21255. height: math.unit(155, "feet")
  21256. },
  21257. {
  21258. name: "Macro",
  21259. height: math.unit(1077, "feet")
  21260. },
  21261. {
  21262. name: "Mega Macro",
  21263. height: math.unit(47650, "feet"),
  21264. default: true
  21265. },
  21266. {
  21267. name: "Giga Macro",
  21268. height: math.unit(440, "miles")
  21269. },
  21270. {
  21271. name: "Tera Macro",
  21272. height: math.unit(8700, "miles")
  21273. },
  21274. {
  21275. name: "Planetary Macro",
  21276. height: math.unit(32700, "miles")
  21277. },
  21278. {
  21279. name: "Solar Macro",
  21280. height: math.unit(550000, "miles")
  21281. },
  21282. {
  21283. name: "Celestial Macro",
  21284. height: math.unit(2.5, "AU")
  21285. },
  21286. ]
  21287. ))
  21288. characterMakers.push(() => makeCharacter(
  21289. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21290. {
  21291. front: {
  21292. height: math.unit(4 + 5 / 12, "feet"),
  21293. weight: math.unit(90, "lb"),
  21294. name: "Front",
  21295. image: {
  21296. source: "./media/characters/cappu/front.svg",
  21297. extra: 1247 / 1152,
  21298. bottom: 0.012
  21299. }
  21300. },
  21301. },
  21302. [
  21303. {
  21304. name: "Normal",
  21305. height: math.unit(4 + 5 / 12, "feet"),
  21306. default: true
  21307. },
  21308. ]
  21309. ))
  21310. characterMakers.push(() => makeCharacter(
  21311. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21312. {
  21313. frontDressed: {
  21314. height: math.unit(70, "cm"),
  21315. weight: math.unit(6, "kg"),
  21316. name: "Front (Dressed)",
  21317. image: {
  21318. source: "./media/characters/sebi/front-dressed.svg",
  21319. extra: 713.5 / 686.5,
  21320. bottom: 0.003
  21321. }
  21322. },
  21323. front: {
  21324. height: math.unit(70, "cm"),
  21325. weight: math.unit(5, "kg"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/sebi/front.svg",
  21329. extra: 713.5 / 686.5,
  21330. bottom: 0.003
  21331. }
  21332. }
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(70, "cm"),
  21338. default: true
  21339. },
  21340. {
  21341. name: "Macro",
  21342. height: math.unit(8, "meters")
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(6, "feet"),
  21351. weight: math.unit(150, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/typhek/front.svg",
  21355. extra: 1948 / 1929,
  21356. bottom: 0.025
  21357. }
  21358. },
  21359. side: {
  21360. height: math.unit(6, "feet"),
  21361. weight: math.unit(150, "lb"),
  21362. name: "Side",
  21363. image: {
  21364. source: "./media/characters/typhek/side.svg",
  21365. extra: 2034 / 2010,
  21366. bottom: 0.003
  21367. }
  21368. },
  21369. back: {
  21370. height: math.unit(6, "feet"),
  21371. weight: math.unit(150, "lb"),
  21372. name: "Back",
  21373. image: {
  21374. source: "./media/characters/typhek/back.svg",
  21375. extra: 2005 / 1978,
  21376. bottom: 0.004
  21377. }
  21378. },
  21379. palm: {
  21380. height: math.unit(1.2, "feet"),
  21381. name: "Palm",
  21382. image: {
  21383. source: "./media/characters/typhek/palm.svg"
  21384. }
  21385. },
  21386. fist: {
  21387. height: math.unit(1.1, "feet"),
  21388. name: "Fist",
  21389. image: {
  21390. source: "./media/characters/typhek/fist.svg"
  21391. }
  21392. },
  21393. foot: {
  21394. height: math.unit(1.57, "feet"),
  21395. name: "Foot",
  21396. image: {
  21397. source: "./media/characters/typhek/foot.svg"
  21398. }
  21399. },
  21400. sole: {
  21401. height: math.unit(2.05, "feet"),
  21402. name: "Sole",
  21403. image: {
  21404. source: "./media/characters/typhek/sole.svg"
  21405. }
  21406. },
  21407. },
  21408. [
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(40, "stories"),
  21412. default: true
  21413. },
  21414. {
  21415. name: "Megamacro",
  21416. height: math.unit(1, "mile")
  21417. },
  21418. {
  21419. name: "Gigamacro",
  21420. height: math.unit(4000, "solarradii")
  21421. },
  21422. {
  21423. name: "Universal",
  21424. height: math.unit(1.1, "universes")
  21425. }
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21430. {
  21431. side: {
  21432. height: math.unit(5 + 7 / 12, "feet"),
  21433. weight: math.unit(150, "lb"),
  21434. name: "Side",
  21435. image: {
  21436. source: "./media/characters/kassy/side.svg",
  21437. extra: 1280 / 1225,
  21438. bottom: 0.002
  21439. }
  21440. },
  21441. front: {
  21442. height: math.unit(5 + 7 / 12, "feet"),
  21443. weight: math.unit(150, "lb"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/kassy/front.svg",
  21447. extra: 1280 / 1225,
  21448. bottom: 0.025
  21449. }
  21450. },
  21451. back: {
  21452. height: math.unit(5 + 7 / 12, "feet"),
  21453. weight: math.unit(150, "lb"),
  21454. name: "Back",
  21455. image: {
  21456. source: "./media/characters/kassy/back.svg",
  21457. extra: 1280 / 1225,
  21458. bottom: 0.002
  21459. }
  21460. },
  21461. foot: {
  21462. height: math.unit(1.266, "feet"),
  21463. name: "Foot",
  21464. image: {
  21465. source: "./media/characters/kassy/foot.svg"
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(5 + 7 / 12, "feet")
  21473. },
  21474. {
  21475. name: "Macro",
  21476. height: math.unit(137, "feet"),
  21477. default: true
  21478. },
  21479. {
  21480. name: "Megamacro",
  21481. height: math.unit(1, "mile")
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21487. {
  21488. front: {
  21489. height: math.unit(6 + 1 / 12, "feet"),
  21490. weight: math.unit(200, "lb"),
  21491. name: "Front",
  21492. image: {
  21493. source: "./media/characters/neil/front.svg",
  21494. extra: 1326 / 1250,
  21495. bottom: 0.023
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(6 + 1 / 12, "feet"),
  21503. default: true
  21504. },
  21505. {
  21506. name: "Macro",
  21507. height: math.unit(200, "feet")
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(5 + 9 / 12, "feet"),
  21516. weight: math.unit(190, "lb"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/atticus/front.svg",
  21520. extra: 2934 / 2785,
  21521. bottom: 0.025
  21522. }
  21523. },
  21524. },
  21525. [
  21526. {
  21527. name: "Normal",
  21528. height: math.unit(5 + 9 / 12, "feet"),
  21529. default: true
  21530. },
  21531. {
  21532. name: "Macro",
  21533. height: math.unit(180, "feet")
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21539. {
  21540. side: {
  21541. height: math.unit(9, "feet"),
  21542. weight: math.unit(650, "lb"),
  21543. name: "Side",
  21544. image: {
  21545. source: "./media/characters/milo/side.svg",
  21546. extra: 2644 / 2310,
  21547. bottom: 0.032
  21548. }
  21549. },
  21550. },
  21551. [
  21552. {
  21553. name: "Normal",
  21554. height: math.unit(9, "feet"),
  21555. default: true
  21556. },
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(300, "feet")
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21565. {
  21566. side: {
  21567. height: math.unit(8, "meters"),
  21568. weight: math.unit(90000, "kg"),
  21569. name: "Side",
  21570. image: {
  21571. source: "./media/characters/ijzer/side.svg",
  21572. extra: 2756 / 1600,
  21573. bottom: 0.01
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Small",
  21580. height: math.unit(3, "meters")
  21581. },
  21582. {
  21583. name: "Normal",
  21584. height: math.unit(8, "meters"),
  21585. default: true
  21586. },
  21587. {
  21588. name: "Normal+",
  21589. height: math.unit(10, "meters")
  21590. },
  21591. {
  21592. name: "Bigger",
  21593. height: math.unit(24, "meters")
  21594. },
  21595. {
  21596. name: "Huge",
  21597. height: math.unit(80, "meters")
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21603. {
  21604. front: {
  21605. height: math.unit(6 + 2 / 12, "feet"),
  21606. weight: math.unit(153, "lb"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/luca-cervicum/front.svg",
  21610. extra: 370 / 327,
  21611. bottom: 0.015
  21612. }
  21613. },
  21614. back: {
  21615. height: math.unit(6 + 2 / 12, "feet"),
  21616. weight: math.unit(153, "lb"),
  21617. name: "Back",
  21618. image: {
  21619. source: "./media/characters/luca-cervicum/back.svg",
  21620. extra: 367 / 333,
  21621. bottom: 0.005
  21622. }
  21623. },
  21624. frontGear: {
  21625. height: math.unit(6 + 2 / 12, "feet"),
  21626. weight: math.unit(173, "lb"),
  21627. name: "Front (Gear)",
  21628. image: {
  21629. source: "./media/characters/luca-cervicum/front-gear.svg",
  21630. extra: 377 / 333,
  21631. bottom: 0.006
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Normal",
  21638. height: math.unit(6 + 2 / 12, "feet"),
  21639. default: true
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21645. {
  21646. front: {
  21647. height: math.unit(6 + 1 / 12, "feet"),
  21648. weight: math.unit(304, "lb"),
  21649. name: "Front",
  21650. image: {
  21651. source: "./media/characters/oliver/front.svg",
  21652. extra: 157 / 143,
  21653. bottom: 0.08
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(6 + 1 / 12, "feet"),
  21661. default: true
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21667. {
  21668. front: {
  21669. height: math.unit(5 + 7 / 12, "feet"),
  21670. weight: math.unit(140, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/shane/front.svg",
  21674. extra: 304 / 289,
  21675. bottom: 0.005
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(5 + 7 / 12, "feet"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(5 + 9 / 12, "feet"),
  21692. weight: math.unit(178, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/shin/front.svg",
  21696. extra: 159 / 151,
  21697. bottom: 0.015
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(5 + 9 / 12, "feet"),
  21705. default: true
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(5 + 10 / 12, "feet"),
  21714. weight: math.unit(168, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/xerxes/front.svg",
  21718. extra: 282 / 260,
  21719. bottom: 0.045
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(5 + 10 / 12, "feet"),
  21727. default: true
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21733. {
  21734. front: {
  21735. height: math.unit(6 + 7 / 12, "feet"),
  21736. weight: math.unit(208, "lb"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/chaska/front.svg",
  21740. extra: 332 / 319,
  21741. bottom: 0.015
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Normal",
  21748. height: math.unit(6 + 7 / 12, "feet"),
  21749. default: true
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21755. {
  21756. front: {
  21757. height: math.unit(5 + 8 / 12, "feet"),
  21758. weight: math.unit(208, "lb"),
  21759. name: "Front",
  21760. image: {
  21761. source: "./media/characters/enuk/front.svg",
  21762. extra: 437 / 406,
  21763. bottom: 0.02
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(5 + 8 / 12, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(5 + 10 / 12, "feet"),
  21780. weight: math.unit(252, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/bruun/front.svg",
  21784. extra: 197 / 187,
  21785. bottom: 0.012
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(5 + 10 / 12, "feet"),
  21793. default: true
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(6 + 10 / 12, "feet"),
  21802. weight: math.unit(255, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/alexeev/front.svg",
  21806. extra: 213 / 200,
  21807. bottom: 0.05
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(6 + 10 / 12, "feet"),
  21815. default: true
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(2 + 8 / 12, "feet"),
  21824. weight: math.unit(22, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/evelyn/front.svg",
  21828. extra: 208 / 180
  21829. }
  21830. },
  21831. },
  21832. [
  21833. {
  21834. name: "Normal",
  21835. height: math.unit(2 + 8 / 12, "feet"),
  21836. default: true
  21837. },
  21838. ]
  21839. ))
  21840. characterMakers.push(() => makeCharacter(
  21841. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21842. {
  21843. front: {
  21844. height: math.unit(5 + 9 / 12, "feet"),
  21845. weight: math.unit(139, "lb"),
  21846. name: "Front",
  21847. image: {
  21848. source: "./media/characters/inca/front.svg",
  21849. extra: 294 / 291,
  21850. bottom: 0.03
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(5 + 9 / 12, "feet"),
  21858. default: true
  21859. },
  21860. ]
  21861. ))
  21862. characterMakers.push(() => makeCharacter(
  21863. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21864. {
  21865. front: {
  21866. height: math.unit(6 + 3 / 12, "feet"),
  21867. weight: math.unit(185, "lb"),
  21868. name: "Front",
  21869. image: {
  21870. source: "./media/characters/mera/front.svg",
  21871. extra: 291 / 277,
  21872. bottom: 0.03
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(6 + 3 / 12, "feet"),
  21880. default: true
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(6 + 7 / 12, "feet"),
  21889. weight: math.unit(160, "lb"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/ceres/front.svg",
  21893. extra: 1023 / 950,
  21894. bottom: 0.027
  21895. }
  21896. },
  21897. back: {
  21898. height: math.unit(6 + 7 / 12, "feet"),
  21899. weight: math.unit(160, "lb"),
  21900. name: "Back",
  21901. image: {
  21902. source: "./media/characters/ceres/back.svg",
  21903. extra: 1023 / 950
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(6 + 7 / 12, "feet"),
  21911. default: true
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(5 + 10 / 12, "feet"),
  21920. weight: math.unit(150, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/kris/front.svg",
  21924. extra: 885 / 803,
  21925. bottom: 0.03
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(5 + 10 / 12, "feet"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(7, "feet"),
  21942. weight: math.unit(120, "kg"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/taluthus/front.svg",
  21946. extra: 903 / 833,
  21947. bottom: 0.015
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(7, "feet"),
  21955. default: true
  21956. },
  21957. {
  21958. name: "Macro",
  21959. height: math.unit(300, "feet")
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(5 + 9 / 12, "feet"),
  21968. weight: math.unit(145, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/dawn/front.svg",
  21972. extra: 2094 / 2016,
  21973. bottom: 0.025
  21974. }
  21975. },
  21976. back: {
  21977. height: math.unit(5 + 9 / 12, "feet"),
  21978. weight: math.unit(160, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/dawn/back.svg",
  21982. extra: 2112 / 2080,
  21983. bottom: 0.005
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(6 + 7 / 12, "feet"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21997. {
  21998. anthro: {
  21999. height: math.unit(8 + 3 / 12, "feet"),
  22000. weight: math.unit(450, "lb"),
  22001. name: "Anthro",
  22002. image: {
  22003. source: "./media/characters/arador/anthro.svg",
  22004. extra: 1835 / 1718,
  22005. bottom: 0.025
  22006. }
  22007. },
  22008. feral: {
  22009. height: math.unit(4, "feet"),
  22010. weight: math.unit(200, "lb"),
  22011. name: "Feral",
  22012. image: {
  22013. source: "./media/characters/arador/feral.svg",
  22014. extra: 1683 / 1514,
  22015. bottom: 0.07
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(8 + 3 / 12, "feet")
  22023. },
  22024. {
  22025. name: "Macro",
  22026. height: math.unit(82.5, "feet"),
  22027. default: true
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22033. {
  22034. front: {
  22035. height: math.unit(5 + 10 / 12, "feet"),
  22036. weight: math.unit(125, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/dharsi/front.svg",
  22040. extra: 716 / 630,
  22041. bottom: 0.035
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Nano",
  22048. height: math.unit(100, "nm")
  22049. },
  22050. {
  22051. name: "Micro",
  22052. height: math.unit(2, "inches")
  22053. },
  22054. {
  22055. name: "Normal",
  22056. height: math.unit(5 + 10 / 12, "feet"),
  22057. default: true
  22058. },
  22059. {
  22060. name: "Macro",
  22061. height: math.unit(1000, "feet")
  22062. },
  22063. {
  22064. name: "Megamacro",
  22065. height: math.unit(10, "miles")
  22066. },
  22067. {
  22068. name: "Gigamacro",
  22069. height: math.unit(3000, "miles")
  22070. },
  22071. {
  22072. name: "Teramacro",
  22073. height: math.unit(500000, "miles")
  22074. },
  22075. {
  22076. name: "Teramacro+",
  22077. height: math.unit(30, "galaxies")
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22083. {
  22084. front: {
  22085. height: math.unit(6, "feet"),
  22086. weight: math.unit(150, "lb"),
  22087. name: "Front",
  22088. image: {
  22089. source: "./media/characters/deathy/front.svg",
  22090. extra: 1552 / 1463,
  22091. bottom: 0.025
  22092. }
  22093. },
  22094. side: {
  22095. height: math.unit(6, "feet"),
  22096. weight: math.unit(150, "lb"),
  22097. name: "Side",
  22098. image: {
  22099. source: "./media/characters/deathy/side.svg",
  22100. extra: 1604 / 1455,
  22101. bottom: 0.025
  22102. }
  22103. },
  22104. back: {
  22105. height: math.unit(6, "feet"),
  22106. weight: math.unit(150, "lb"),
  22107. name: "Back",
  22108. image: {
  22109. source: "./media/characters/deathy/back.svg",
  22110. extra: 1580 / 1463,
  22111. bottom: 0.005
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Micro",
  22118. height: math.unit(5, "millimeters")
  22119. },
  22120. {
  22121. name: "Normal",
  22122. height: math.unit(6 + 5 / 12, "feet"),
  22123. default: true
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22129. {
  22130. front: {
  22131. height: math.unit(16, "feet"),
  22132. weight: math.unit(4000, "lb"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/juniper/front.svg",
  22136. bottom: 0.04
  22137. }
  22138. },
  22139. },
  22140. [
  22141. {
  22142. name: "Normal",
  22143. height: math.unit(16, "feet"),
  22144. default: true
  22145. },
  22146. ]
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22150. {
  22151. front: {
  22152. height: math.unit(6, "feet"),
  22153. weight: math.unit(150, "lb"),
  22154. name: "Front",
  22155. image: {
  22156. source: "./media/characters/hipster/front.svg",
  22157. extra: 1312 / 1209,
  22158. bottom: 0.025
  22159. }
  22160. },
  22161. back: {
  22162. height: math.unit(6, "feet"),
  22163. weight: math.unit(150, "lb"),
  22164. name: "Back",
  22165. image: {
  22166. source: "./media/characters/hipster/back.svg",
  22167. extra: 1281 / 1196,
  22168. bottom: 0.01
  22169. }
  22170. },
  22171. },
  22172. [
  22173. {
  22174. name: "Micro",
  22175. height: math.unit(1, "mm")
  22176. },
  22177. {
  22178. name: "Normal",
  22179. height: math.unit(4, "inches"),
  22180. default: true
  22181. },
  22182. {
  22183. name: "Macro",
  22184. height: math.unit(500, "feet")
  22185. },
  22186. {
  22187. name: "Megamacro",
  22188. height: math.unit(1000, "miles")
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22194. {
  22195. front: {
  22196. height: math.unit(6, "feet"),
  22197. weight: math.unit(150, "lb"),
  22198. name: "Front",
  22199. image: {
  22200. source: "./media/characters/tendirmuldr/front.svg",
  22201. extra: 1878 / 1772,
  22202. bottom: 0.015
  22203. }
  22204. },
  22205. },
  22206. [
  22207. {
  22208. name: "Megamacro",
  22209. height: math.unit(1500, "miles"),
  22210. default: true
  22211. },
  22212. ]
  22213. ))
  22214. characterMakers.push(() => makeCharacter(
  22215. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22216. {
  22217. front: {
  22218. height: math.unit(14, "feet"),
  22219. weight: math.unit(12000, "lb"),
  22220. name: "Front",
  22221. image: {
  22222. source: "./media/characters/mort/front.svg",
  22223. extra: 365 / 318,
  22224. bottom: 0.01
  22225. }
  22226. },
  22227. side: {
  22228. height: math.unit(14, "feet"),
  22229. weight: math.unit(12000, "lb"),
  22230. name: "Side",
  22231. image: {
  22232. source: "./media/characters/mort/side.svg",
  22233. extra: 365 / 318,
  22234. bottom: 0.052
  22235. },
  22236. default: true
  22237. },
  22238. back: {
  22239. height: math.unit(14, "feet"),
  22240. weight: math.unit(12000, "lb"),
  22241. name: "Back",
  22242. image: {
  22243. source: "./media/characters/mort/back.svg",
  22244. extra: 371 / 332,
  22245. bottom: 0.18
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(14, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22259. {
  22260. front: {
  22261. height: math.unit(8, "feet"),
  22262. weight: math.unit(1, "ton"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/lycoa/front.svg",
  22266. extra: 1836/1728,
  22267. bottom: 81/1917
  22268. }
  22269. },
  22270. back: {
  22271. height: math.unit(8, "feet"),
  22272. weight: math.unit(1, "ton"),
  22273. name: "Back",
  22274. image: {
  22275. source: "./media/characters/lycoa/back.svg",
  22276. extra: 1785/1720,
  22277. bottom: 91/1876
  22278. }
  22279. },
  22280. head: {
  22281. height: math.unit(1.6243, "feet"),
  22282. name: "Head",
  22283. image: {
  22284. source: "./media/characters/lycoa/head.svg",
  22285. extra: 1011/782,
  22286. bottom: 0/1011
  22287. }
  22288. },
  22289. tailmaw: {
  22290. height: math.unit(1.9, "feet"),
  22291. name: "Tailmaw",
  22292. image: {
  22293. source: "./media/characters/lycoa/tailmaw.svg"
  22294. }
  22295. },
  22296. tentacles: {
  22297. height: math.unit(2.1, "feet"),
  22298. name: "Tentacles",
  22299. image: {
  22300. source: "./media/characters/lycoa/tentacles.svg"
  22301. }
  22302. },
  22303. dick: {
  22304. height: math.unit(1.73, "feet"),
  22305. name: "Dick",
  22306. image: {
  22307. source: "./media/characters/lycoa/dick.svg"
  22308. }
  22309. },
  22310. },
  22311. [
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(8, "feet"),
  22315. default: true
  22316. },
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(30, "feet")
  22320. },
  22321. ]
  22322. ))
  22323. characterMakers.push(() => makeCharacter(
  22324. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22325. {
  22326. front: {
  22327. height: math.unit(4 + 2 / 12, "feet"),
  22328. weight: math.unit(70, "lb"),
  22329. name: "Front",
  22330. image: {
  22331. source: "./media/characters/naldara/front.svg",
  22332. extra: 1664/1387,
  22333. bottom: 81/1745
  22334. },
  22335. form: "anthro",
  22336. default: true
  22337. },
  22338. naga: {
  22339. height: math.unit(20, "feet"),
  22340. weight: math.unit(15000, "kg"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/naldara/naga.svg",
  22344. extra: 1590/1396,
  22345. bottom: 285/1875
  22346. },
  22347. form: "naga",
  22348. default: true
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(4 + 2 / 12, "feet"),
  22355. form: "anthro",
  22356. default: true
  22357. },
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(20, "feet"),
  22361. form: "naga",
  22362. default: true
  22363. },
  22364. ],
  22365. {
  22366. "anthro": {
  22367. name: "Anthro",
  22368. default: true
  22369. },
  22370. "naga": {
  22371. name: "Naga"
  22372. }
  22373. }
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(13 + 7 / 12, "feet"),
  22380. weight: math.unit(1500, "lb"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/briar/front.svg",
  22384. extra: 1223/1157,
  22385. bottom: 123/1346
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Normal",
  22392. height: math.unit(13 + 7 / 12, "feet"),
  22393. default: true
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22399. {
  22400. side: {
  22401. height: math.unit(16, "feet"),
  22402. weight: math.unit(500, "lb"),
  22403. name: "Side",
  22404. image: {
  22405. source: "./media/characters/vanguard/side.svg",
  22406. extra: 1022/914,
  22407. bottom: 30/1052
  22408. }
  22409. },
  22410. sideAlt: {
  22411. height: math.unit(10, "feet"),
  22412. weight: math.unit(500, "lb"),
  22413. name: "Side (Alt)",
  22414. image: {
  22415. source: "./media/characters/vanguard/side-alt.svg",
  22416. extra: 502 / 425,
  22417. bottom: 0.087
  22418. }
  22419. },
  22420. },
  22421. [
  22422. {
  22423. name: "Normal",
  22424. height: math.unit(17.71, "feet"),
  22425. default: true
  22426. },
  22427. ]
  22428. ))
  22429. characterMakers.push(() => makeCharacter(
  22430. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22431. {
  22432. front: {
  22433. height: math.unit(7.5, "feet"),
  22434. weight: math.unit(2, "lb"),
  22435. name: "Front",
  22436. image: {
  22437. source: "./media/characters/artemis/work-safe-front.svg",
  22438. extra: 1192 / 1075,
  22439. bottom: 0.07
  22440. },
  22441. form: "work-safe",
  22442. default: true
  22443. },
  22444. frontNsfw: {
  22445. height: math.unit(7.5, "feet"),
  22446. weight: math.unit(2, "lb"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/artemis/calibrating-front.svg",
  22450. extra: 1192 / 1075,
  22451. bottom: 0.07
  22452. },
  22453. form: "calibrating",
  22454. default: true
  22455. },
  22456. frontNsfwer: {
  22457. height: math.unit(7.5, "feet"),
  22458. weight: math.unit(2, "lb"),
  22459. name: "Front",
  22460. image: {
  22461. source: "./media/characters/artemis/oversize-load-front.svg",
  22462. extra: 1192 / 1075,
  22463. bottom: 0.07
  22464. },
  22465. form: "oversize-load",
  22466. default: true
  22467. },
  22468. side: {
  22469. height: math.unit(7.5, "feet"),
  22470. weight: math.unit(2, "lb"),
  22471. name: "Side",
  22472. image: {
  22473. source: "./media/characters/artemis/work-safe-side.svg",
  22474. extra: 1192 / 1075,
  22475. bottom: 0.07
  22476. },
  22477. form: "work-safe"
  22478. },
  22479. sideNsfw: {
  22480. height: math.unit(7.5, "feet"),
  22481. weight: math.unit(2, "lb"),
  22482. name: "Side",
  22483. image: {
  22484. source: "./media/characters/artemis/calibrating-side.svg",
  22485. extra: 1192 / 1075,
  22486. bottom: 0.07
  22487. },
  22488. form: "calibrating"
  22489. },
  22490. sideNsfwer: {
  22491. height: math.unit(7.5, "feet"),
  22492. weight: math.unit(2, "lb"),
  22493. name: "Side",
  22494. image: {
  22495. source: "./media/characters/artemis/oversize-load-side.svg",
  22496. extra: 1192 / 1075,
  22497. bottom: 0.07
  22498. },
  22499. form: "oversize-load"
  22500. },
  22501. maw: {
  22502. height: math.unit(1.1, "feet"),
  22503. name: "Maw",
  22504. image: {
  22505. source: "./media/characters/artemis/maw.svg"
  22506. },
  22507. form: "work-safe"
  22508. },
  22509. stomach: {
  22510. height: math.unit(0.95, "feet"),
  22511. name: "Stomach",
  22512. image: {
  22513. source: "./media/characters/artemis/stomach.svg"
  22514. },
  22515. form: "work-safe"
  22516. },
  22517. dickCanine: {
  22518. height: math.unit(1, "feet"),
  22519. name: "Dick (Canine)",
  22520. image: {
  22521. source: "./media/characters/artemis/dick-canine.svg"
  22522. },
  22523. form: "calibrating"
  22524. },
  22525. dickEquine: {
  22526. height: math.unit(0.85, "feet"),
  22527. name: "Dick (Equine)",
  22528. image: {
  22529. source: "./media/characters/artemis/dick-equine.svg"
  22530. },
  22531. form: "calibrating"
  22532. },
  22533. dickExotic: {
  22534. height: math.unit(0.85, "feet"),
  22535. name: "Dick (Exotic)",
  22536. image: {
  22537. source: "./media/characters/artemis/dick-exotic.svg"
  22538. },
  22539. form: "calibrating"
  22540. },
  22541. dickCanineBigger: {
  22542. height: math.unit(1 * 1.33, "feet"),
  22543. name: "Dick (Canine)",
  22544. image: {
  22545. source: "./media/characters/artemis/dick-canine.svg"
  22546. },
  22547. form: "oversize-load"
  22548. },
  22549. dickEquineBigger: {
  22550. height: math.unit(0.85 * 1.33, "feet"),
  22551. name: "Dick (Equine)",
  22552. image: {
  22553. source: "./media/characters/artemis/dick-equine.svg"
  22554. },
  22555. form: "oversize-load"
  22556. },
  22557. dickExoticBigger: {
  22558. height: math.unit(0.85 * 1.33, "feet"),
  22559. name: "Dick (Exotic)",
  22560. image: {
  22561. source: "./media/characters/artemis/dick-exotic.svg"
  22562. },
  22563. form: "oversize-load"
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Normal",
  22569. height: math.unit(7.5, "feet"),
  22570. form: "work-safe",
  22571. default: true
  22572. },
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(7.5, "feet"),
  22576. form: "calibrating",
  22577. default: true
  22578. },
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(7.5, "feet"),
  22582. form: "oversize-load",
  22583. default: true
  22584. },
  22585. {
  22586. name: "Enlarged",
  22587. height: math.unit(12, "feet"),
  22588. form: "work-safe",
  22589. },
  22590. {
  22591. name: "Enlarged",
  22592. height: math.unit(12, "feet"),
  22593. form: "calibrating",
  22594. },
  22595. {
  22596. name: "Enlarged",
  22597. height: math.unit(12, "feet"),
  22598. form: "oversize-load",
  22599. },
  22600. ],
  22601. {
  22602. "work-safe": {
  22603. name: "Work-Safe",
  22604. default: true
  22605. },
  22606. "calibrating": {
  22607. name: "Calibrating"
  22608. },
  22609. "oversize-load": {
  22610. name: "Oversize Load"
  22611. }
  22612. }
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(5 + 3 / 12, "feet"),
  22619. weight: math.unit(160, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/kira/front.svg",
  22623. extra: 906 / 786,
  22624. bottom: 0.01
  22625. }
  22626. },
  22627. back: {
  22628. height: math.unit(5 + 3 / 12, "feet"),
  22629. weight: math.unit(160, "lb"),
  22630. name: "Back",
  22631. image: {
  22632. source: "./media/characters/kira/back.svg",
  22633. extra: 882 / 757,
  22634. bottom: 0.005
  22635. }
  22636. },
  22637. frontDressed: {
  22638. height: math.unit(5 + 3 / 12, "feet"),
  22639. weight: math.unit(160, "lb"),
  22640. name: "Front (Dressed)",
  22641. image: {
  22642. source: "./media/characters/kira/front-dressed.svg",
  22643. extra: 906 / 786,
  22644. bottom: 0.01
  22645. }
  22646. },
  22647. beans: {
  22648. height: math.unit(0.92, "feet"),
  22649. name: "Beans",
  22650. image: {
  22651. source: "./media/characters/kira/beans.svg"
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(5 + 3 / 12, "feet"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(5 + 4 / 12, "feet"),
  22668. weight: math.unit(145, "lb"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/scramble/front.svg",
  22672. extra: 763 / 727,
  22673. bottom: 0.05
  22674. }
  22675. },
  22676. back: {
  22677. height: math.unit(5 + 4 / 12, "feet"),
  22678. weight: math.unit(145, "lb"),
  22679. name: "Back",
  22680. image: {
  22681. source: "./media/characters/scramble/back.svg",
  22682. extra: 826 / 737,
  22683. bottom: 0.002
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Normal",
  22690. height: math.unit(5 + 4 / 12, "feet"),
  22691. default: true
  22692. },
  22693. ]
  22694. ))
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22697. {
  22698. side: {
  22699. height: math.unit(6 + 2 / 12, "feet"),
  22700. weight: math.unit(190, "lb"),
  22701. name: "Side",
  22702. image: {
  22703. source: "./media/characters/biscuit/side.svg",
  22704. extra: 858 / 791,
  22705. bottom: 0.044
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(6 + 2 / 12, "feet"),
  22713. default: true
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22719. {
  22720. front: {
  22721. height: math.unit(5 + 2 / 12, "feet"),
  22722. weight: math.unit(120, "lb"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/poffin/front.svg",
  22726. extra: 786 / 680,
  22727. bottom: 0.005
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(5 + 2 / 12, "feet"),
  22735. default: true
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(6 + 3 / 12, "feet"),
  22744. weight: math.unit(519, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/dhari/front.svg",
  22748. extra: 1048 / 946,
  22749. bottom: 0.015
  22750. }
  22751. },
  22752. back: {
  22753. height: math.unit(6 + 3 / 12, "feet"),
  22754. weight: math.unit(519, "lb"),
  22755. name: "Back",
  22756. image: {
  22757. source: "./media/characters/dhari/back.svg",
  22758. extra: 1048 / 931,
  22759. bottom: 0.005
  22760. }
  22761. },
  22762. frontDressed: {
  22763. height: math.unit(6 + 3 / 12, "feet"),
  22764. weight: math.unit(519, "lb"),
  22765. name: "Front (Dressed)",
  22766. image: {
  22767. source: "./media/characters/dhari/front-dressed.svg",
  22768. extra: 1713 / 1546,
  22769. bottom: 0.02
  22770. }
  22771. },
  22772. backDressed: {
  22773. height: math.unit(6 + 3 / 12, "feet"),
  22774. weight: math.unit(519, "lb"),
  22775. name: "Back (Dressed)",
  22776. image: {
  22777. source: "./media/characters/dhari/back-dressed.svg",
  22778. extra: 1699 / 1537,
  22779. bottom: 0.01
  22780. }
  22781. },
  22782. maw: {
  22783. height: math.unit(0.95, "feet"),
  22784. name: "Maw",
  22785. image: {
  22786. source: "./media/characters/dhari/maw.svg"
  22787. }
  22788. },
  22789. wereFront: {
  22790. height: math.unit(12 + 8 / 12, "feet"),
  22791. weight: math.unit(4000, "lb"),
  22792. name: "Front (Were)",
  22793. image: {
  22794. source: "./media/characters/dhari/were-front.svg",
  22795. extra: 1065 / 969,
  22796. bottom: 0.015
  22797. }
  22798. },
  22799. wereBack: {
  22800. height: math.unit(12 + 8 / 12, "feet"),
  22801. weight: math.unit(4000, "lb"),
  22802. name: "Back (Were)",
  22803. image: {
  22804. source: "./media/characters/dhari/were-back.svg",
  22805. extra: 1065 / 969,
  22806. bottom: 0.012
  22807. }
  22808. },
  22809. wereMaw: {
  22810. height: math.unit(0.625, "meters"),
  22811. name: "Maw (Were)",
  22812. image: {
  22813. source: "./media/characters/dhari/were-maw.svg"
  22814. }
  22815. },
  22816. },
  22817. [
  22818. {
  22819. name: "Normal",
  22820. height: math.unit(6 + 3 / 12, "feet"),
  22821. default: true
  22822. },
  22823. ]
  22824. ))
  22825. characterMakers.push(() => makeCharacter(
  22826. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22827. {
  22828. anthro: {
  22829. height: math.unit(5 + 7 / 12, "feet"),
  22830. weight: math.unit(175, "lb"),
  22831. name: "Anthro",
  22832. image: {
  22833. source: "./media/characters/rena-dyne/anthro.svg",
  22834. extra: 1849 / 1785,
  22835. bottom: 0.005
  22836. }
  22837. },
  22838. taur: {
  22839. height: math.unit(15 + 6 / 12, "feet"),
  22840. weight: math.unit(8000, "lb"),
  22841. name: "Taur",
  22842. image: {
  22843. source: "./media/characters/rena-dyne/taur.svg",
  22844. extra: 2315 / 2234,
  22845. bottom: 0.033
  22846. }
  22847. },
  22848. },
  22849. [
  22850. {
  22851. name: "Normal",
  22852. height: math.unit(5 + 7 / 12, "feet"),
  22853. default: true
  22854. },
  22855. ]
  22856. ))
  22857. characterMakers.push(() => makeCharacter(
  22858. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22859. {
  22860. front: {
  22861. height: math.unit(8, "feet"),
  22862. weight: math.unit(600, "lb"),
  22863. name: "Front",
  22864. image: {
  22865. source: "./media/characters/weremeep/front.svg",
  22866. extra: 970/849,
  22867. bottom: 7/977
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "Normal",
  22874. height: math.unit(8, "feet"),
  22875. default: true
  22876. },
  22877. {
  22878. name: "Lorg",
  22879. height: math.unit(12, "feet")
  22880. },
  22881. {
  22882. name: "Oh Lawd She Comin'",
  22883. height: math.unit(20, "feet")
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22889. {
  22890. front: {
  22891. height: math.unit(4, "feet"),
  22892. weight: math.unit(90, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/reza/front.svg",
  22896. extra: 1183 / 1111,
  22897. bottom: 0.017
  22898. }
  22899. },
  22900. back: {
  22901. height: math.unit(4, "feet"),
  22902. weight: math.unit(90, "lb"),
  22903. name: "Back",
  22904. image: {
  22905. source: "./media/characters/reza/back.svg",
  22906. extra: 1183 / 1111,
  22907. bottom: 0.01
  22908. }
  22909. },
  22910. drake: {
  22911. height: math.unit(30, "feet"),
  22912. weight: math.unit(246960, "lb"),
  22913. name: "Drake",
  22914. image: {
  22915. source: "./media/characters/reza/drake.svg",
  22916. extra: 2350 / 2024,
  22917. bottom: 60.7 / 2403
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(4, "feet"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22931. {
  22932. side: {
  22933. height: math.unit(15, "feet"),
  22934. weight: math.unit(14, "tons"),
  22935. name: "Side",
  22936. image: {
  22937. source: "./media/characters/athea/side.svg",
  22938. extra: 960 / 540,
  22939. bottom: 0.003
  22940. }
  22941. },
  22942. sitting: {
  22943. height: math.unit(6 * 2.85, "feet"),
  22944. weight: math.unit(14, "tons"),
  22945. name: "Sitting",
  22946. image: {
  22947. source: "./media/characters/athea/sitting.svg",
  22948. extra: 621 / 581,
  22949. bottom: 0.075
  22950. }
  22951. },
  22952. maw: {
  22953. height: math.unit(7.59498031496063, "feet"),
  22954. name: "Maw",
  22955. image: {
  22956. source: "./media/characters/athea/maw.svg"
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Lap Cat",
  22963. height: math.unit(2.5, "feet")
  22964. },
  22965. {
  22966. name: "Minimacro",
  22967. height: math.unit(15, "feet"),
  22968. default: true
  22969. },
  22970. {
  22971. name: "Macro",
  22972. height: math.unit(120, "feet")
  22973. },
  22974. {
  22975. name: "Macro+",
  22976. height: math.unit(640, "feet")
  22977. },
  22978. {
  22979. name: "Colossus",
  22980. height: math.unit(2.2, "miles")
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22986. {
  22987. front: {
  22988. height: math.unit(8 + 8 / 12, "feet"),
  22989. weight: math.unit(130, "kg"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/seroko/front.svg",
  22993. extra: 1385 / 1280,
  22994. bottom: 0.025
  22995. }
  22996. },
  22997. back: {
  22998. height: math.unit(8 + 8 / 12, "feet"),
  22999. weight: math.unit(130, "kg"),
  23000. name: "Back",
  23001. image: {
  23002. source: "./media/characters/seroko/back.svg",
  23003. extra: 1369 / 1238,
  23004. bottom: 0.018
  23005. }
  23006. },
  23007. frontDressed: {
  23008. height: math.unit(8 + 8 / 12, "feet"),
  23009. weight: math.unit(130, "kg"),
  23010. name: "Front (Dressed)",
  23011. image: {
  23012. source: "./media/characters/seroko/front-dressed.svg",
  23013. extra: 1366 / 1275,
  23014. bottom: 0.03
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(8 + 8 / 12, "feet"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23028. {
  23029. front: {
  23030. height: math.unit(5.5, "feet"),
  23031. weight: math.unit(160, "lb"),
  23032. name: "Front",
  23033. image: {
  23034. source: "./media/characters/quatzi/front.svg",
  23035. extra: 2346 / 2242,
  23036. bottom: 0.015
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Normal",
  23043. height: math.unit(5.5, "feet"),
  23044. default: true
  23045. },
  23046. {
  23047. name: "Big",
  23048. height: math.unit(7.7, "feet")
  23049. },
  23050. ]
  23051. ))
  23052. characterMakers.push(() => makeCharacter(
  23053. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23054. {
  23055. front: {
  23056. height: math.unit(5 + 11 / 12, "feet"),
  23057. weight: math.unit(180, "lb"),
  23058. name: "Front",
  23059. image: {
  23060. source: "./media/characters/sen/front.svg",
  23061. extra: 1321 / 1254,
  23062. bottom: 0.015
  23063. }
  23064. },
  23065. side: {
  23066. height: math.unit(5 + 11 / 12, "feet"),
  23067. weight: math.unit(180, "lb"),
  23068. name: "Side",
  23069. image: {
  23070. source: "./media/characters/sen/side.svg",
  23071. extra: 1321 / 1254,
  23072. bottom: 0.007
  23073. }
  23074. },
  23075. back: {
  23076. height: math.unit(5 + 11 / 12, "feet"),
  23077. weight: math.unit(180, "lb"),
  23078. name: "Back",
  23079. image: {
  23080. source: "./media/characters/sen/back.svg",
  23081. extra: 1321 / 1254
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Normal",
  23088. height: math.unit(5 + 11 / 12, "feet"),
  23089. default: true
  23090. },
  23091. ]
  23092. ))
  23093. characterMakers.push(() => makeCharacter(
  23094. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23095. {
  23096. front: {
  23097. height: math.unit(166.6, "cm"),
  23098. weight: math.unit(66.6, "kg"),
  23099. name: "Front",
  23100. image: {
  23101. source: "./media/characters/fruity/front.svg",
  23102. extra: 1510 / 1386,
  23103. bottom: 0.04
  23104. }
  23105. },
  23106. back: {
  23107. height: math.unit(166.6, "cm"),
  23108. weight: math.unit(66.6, "lb"),
  23109. name: "Back",
  23110. image: {
  23111. source: "./media/characters/fruity/back.svg",
  23112. extra: 1563 / 1435,
  23113. bottom: 0.005
  23114. }
  23115. },
  23116. },
  23117. [
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(166.6, "cm"),
  23121. default: true
  23122. },
  23123. {
  23124. name: "Demonic",
  23125. height: math.unit(166.6, "feet")
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23131. {
  23132. side: {
  23133. height: math.unit(10, "feet"),
  23134. weight: math.unit(500, "lb"),
  23135. name: "Side",
  23136. image: {
  23137. source: "./media/characters/zost/side.svg",
  23138. extra: 2870/2533,
  23139. bottom: 252/3122
  23140. }
  23141. },
  23142. mawFront: {
  23143. height: math.unit(1.08, "meters"),
  23144. name: "Maw (Front)",
  23145. image: {
  23146. source: "./media/characters/zost/maw-front.svg"
  23147. }
  23148. },
  23149. mawSide: {
  23150. height: math.unit(2.66, "feet"),
  23151. name: "Maw (Side)",
  23152. image: {
  23153. source: "./media/characters/zost/maw-side.svg"
  23154. }
  23155. },
  23156. wingspan: {
  23157. height: math.unit(7.4, "feet"),
  23158. name: "Wingspan",
  23159. image: {
  23160. source: "./media/characters/zost/wingspan.svg"
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Normal",
  23167. height: math.unit(10, "feet"),
  23168. default: true
  23169. },
  23170. ]
  23171. ))
  23172. characterMakers.push(() => makeCharacter(
  23173. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23174. {
  23175. front: {
  23176. height: math.unit(5 + 4 / 12, "feet"),
  23177. weight: math.unit(120, "lb"),
  23178. name: "Front",
  23179. image: {
  23180. source: "./media/characters/luci/front.svg",
  23181. extra: 1985 / 1884,
  23182. bottom: 0.04
  23183. }
  23184. },
  23185. back: {
  23186. height: math.unit(5 + 4 / 12, "feet"),
  23187. weight: math.unit(120, "lb"),
  23188. name: "Back",
  23189. image: {
  23190. source: "./media/characters/luci/back.svg",
  23191. extra: 1892 / 1791,
  23192. bottom: 0.002
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Normal",
  23199. height: math.unit(5 + 4 / 12, "feet"),
  23200. default: true
  23201. },
  23202. ]
  23203. ))
  23204. characterMakers.push(() => makeCharacter(
  23205. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23206. {
  23207. front: {
  23208. height: math.unit(1500, "feet"),
  23209. weight: math.unit(3.8e6, "tons"),
  23210. name: "Front",
  23211. image: {
  23212. source: "./media/characters/2th/front.svg",
  23213. extra: 3489 / 3350,
  23214. bottom: 0.1
  23215. }
  23216. },
  23217. foot: {
  23218. height: math.unit(461, "feet"),
  23219. name: "Foot",
  23220. image: {
  23221. source: "./media/characters/2th/foot.svg"
  23222. }
  23223. },
  23224. },
  23225. [
  23226. {
  23227. name: "\"Micro\"",
  23228. height: math.unit(15 + 7 / 12, "feet")
  23229. },
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(1500, "feet"),
  23233. default: true
  23234. },
  23235. {
  23236. name: "Macro",
  23237. height: math.unit(5000, "feet")
  23238. },
  23239. {
  23240. name: "Megamacro",
  23241. height: math.unit(15, "miles")
  23242. },
  23243. {
  23244. name: "Gigamacro",
  23245. height: math.unit(4000, "miles")
  23246. },
  23247. {
  23248. name: "Galactic",
  23249. height: math.unit(50, "AU")
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23255. {
  23256. front: {
  23257. height: math.unit(5 + 6 / 12, "feet"),
  23258. weight: math.unit(220, "lb"),
  23259. name: "Front",
  23260. image: {
  23261. source: "./media/characters/amethyst/front.svg",
  23262. extra: 2078 / 2040,
  23263. bottom: 0.045
  23264. }
  23265. },
  23266. back: {
  23267. height: math.unit(5 + 6 / 12, "feet"),
  23268. weight: math.unit(220, "lb"),
  23269. name: "Back",
  23270. image: {
  23271. source: "./media/characters/amethyst/back.svg",
  23272. extra: 2021 / 1989,
  23273. bottom: 0.02
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(5 + 6 / 12, "feet"),
  23281. default: true
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23287. {
  23288. front: {
  23289. height: math.unit(4 + 11 / 12, "feet"),
  23290. weight: math.unit(120, "lb"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/yumi-akiyama/front.svg",
  23294. extra: 1327 / 1235,
  23295. bottom: 0.02
  23296. }
  23297. },
  23298. back: {
  23299. height: math.unit(4 + 11 / 12, "feet"),
  23300. weight: math.unit(120, "lb"),
  23301. name: "Back",
  23302. image: {
  23303. source: "./media/characters/yumi-akiyama/back.svg",
  23304. extra: 1287 / 1245,
  23305. bottom: 0.002
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Galactic",
  23312. height: math.unit(50, "galaxies"),
  23313. default: true
  23314. },
  23315. {
  23316. name: "Universal",
  23317. height: math.unit(100, "universes")
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23323. {
  23324. front: {
  23325. height: math.unit(8, "feet"),
  23326. weight: math.unit(500, "lb"),
  23327. name: "Front",
  23328. image: {
  23329. source: "./media/characters/rifter-yrmori/front.svg",
  23330. extra: 1180 / 1125,
  23331. bottom: 0.02
  23332. }
  23333. },
  23334. back: {
  23335. height: math.unit(8, "feet"),
  23336. weight: math.unit(500, "lb"),
  23337. name: "Back",
  23338. image: {
  23339. source: "./media/characters/rifter-yrmori/back.svg",
  23340. extra: 1190 / 1145,
  23341. bottom: 0.001
  23342. }
  23343. },
  23344. wings: {
  23345. height: math.unit(7.75, "feet"),
  23346. weight: math.unit(500, "lb"),
  23347. name: "Wings",
  23348. image: {
  23349. source: "./media/characters/rifter-yrmori/wings.svg",
  23350. extra: 1357 / 1285
  23351. }
  23352. },
  23353. maw: {
  23354. height: math.unit(0.8, "feet"),
  23355. name: "Maw",
  23356. image: {
  23357. source: "./media/characters/rifter-yrmori/maw.svg"
  23358. }
  23359. },
  23360. mawfront: {
  23361. height: math.unit(1.45, "feet"),
  23362. name: "Maw (Front)",
  23363. image: {
  23364. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(8, "feet"),
  23372. default: true
  23373. },
  23374. {
  23375. name: "Macro",
  23376. height: math.unit(42, "meters")
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23382. {
  23383. were: {
  23384. height: math.unit(25 + 6 / 12, "feet"),
  23385. weight: math.unit(10000, "lb"),
  23386. name: "Were",
  23387. image: {
  23388. source: "./media/characters/tahajin/were.svg",
  23389. extra: 801 / 770,
  23390. bottom: 0.042
  23391. }
  23392. },
  23393. aquatic: {
  23394. height: math.unit(6 + 4 / 12, "feet"),
  23395. weight: math.unit(160, "lb"),
  23396. name: "Aquatic",
  23397. image: {
  23398. source: "./media/characters/tahajin/aquatic.svg",
  23399. extra: 572 / 542,
  23400. bottom: 0.04
  23401. }
  23402. },
  23403. chow: {
  23404. height: math.unit(8 + 11 / 12, "feet"),
  23405. weight: math.unit(450, "lb"),
  23406. name: "Chow",
  23407. image: {
  23408. source: "./media/characters/tahajin/chow.svg",
  23409. extra: 660 / 640,
  23410. bottom: 0.015
  23411. }
  23412. },
  23413. demiNaga: {
  23414. height: math.unit(6 + 8 / 12, "feet"),
  23415. weight: math.unit(300, "lb"),
  23416. name: "Demi Naga",
  23417. image: {
  23418. source: "./media/characters/tahajin/demi-naga.svg",
  23419. extra: 643 / 615,
  23420. bottom: 0.1
  23421. }
  23422. },
  23423. data: {
  23424. height: math.unit(5, "inches"),
  23425. weight: math.unit(0.1, "lb"),
  23426. name: "Data",
  23427. image: {
  23428. source: "./media/characters/tahajin/data.svg"
  23429. }
  23430. },
  23431. fluu: {
  23432. height: math.unit(5 + 7 / 12, "feet"),
  23433. weight: math.unit(140, "lb"),
  23434. name: "Fluu",
  23435. image: {
  23436. source: "./media/characters/tahajin/fluu.svg",
  23437. extra: 628 / 592,
  23438. bottom: 0.02
  23439. }
  23440. },
  23441. starWarrior: {
  23442. height: math.unit(4 + 5 / 12, "feet"),
  23443. weight: math.unit(50, "lb"),
  23444. name: "Star Warrior",
  23445. image: {
  23446. source: "./media/characters/tahajin/star-warrior.svg"
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Normal",
  23453. height: math.unit(25 + 6 / 12, "feet"),
  23454. default: true
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23460. {
  23461. front: {
  23462. height: math.unit(8, "feet"),
  23463. weight: math.unit(350, "lb"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/gabira/front.svg",
  23467. extra: 1261/1154,
  23468. bottom: 51/1312
  23469. }
  23470. },
  23471. back: {
  23472. height: math.unit(8, "feet"),
  23473. weight: math.unit(350, "lb"),
  23474. name: "Back",
  23475. image: {
  23476. source: "./media/characters/gabira/back.svg",
  23477. extra: 1265/1163,
  23478. bottom: 46/1311
  23479. }
  23480. },
  23481. head: {
  23482. height: math.unit(2.85, "feet"),
  23483. name: "Head",
  23484. image: {
  23485. source: "./media/characters/gabira/head.svg"
  23486. }
  23487. },
  23488. },
  23489. [
  23490. {
  23491. name: "Normal",
  23492. height: math.unit(8, "feet"),
  23493. default: true
  23494. },
  23495. ]
  23496. ))
  23497. characterMakers.push(() => makeCharacter(
  23498. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23499. {
  23500. front: {
  23501. height: math.unit(5 + 3 / 12, "feet"),
  23502. weight: math.unit(137, "lb"),
  23503. name: "Front",
  23504. image: {
  23505. source: "./media/characters/sasha-katraine/front.svg",
  23506. extra: 1745/1694,
  23507. bottom: 37/1782
  23508. }
  23509. },
  23510. back: {
  23511. height: math.unit(5 + 3 / 12, "feet"),
  23512. weight: math.unit(137, "lb"),
  23513. name: "Back",
  23514. image: {
  23515. source: "./media/characters/sasha-katraine/back.svg",
  23516. extra: 1776/1699,
  23517. bottom: 26/1802
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Micro",
  23524. height: math.unit(5, "inches")
  23525. },
  23526. {
  23527. name: "Normal",
  23528. height: math.unit(5 + 3 / 12, "feet"),
  23529. default: true
  23530. },
  23531. ]
  23532. ))
  23533. characterMakers.push(() => makeCharacter(
  23534. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23535. {
  23536. side: {
  23537. height: math.unit(4, "inches"),
  23538. weight: math.unit(200, "grams"),
  23539. name: "Side",
  23540. image: {
  23541. source: "./media/characters/der/side.svg",
  23542. extra: 719 / 400,
  23543. bottom: 30.6 / 749.9187
  23544. }
  23545. },
  23546. },
  23547. [
  23548. {
  23549. name: "Micro",
  23550. height: math.unit(4, "inches"),
  23551. default: true
  23552. },
  23553. ]
  23554. ))
  23555. characterMakers.push(() => makeCharacter(
  23556. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23557. {
  23558. side: {
  23559. height: math.unit(30, "meters"),
  23560. weight: math.unit(700, "tonnes"),
  23561. name: "Side",
  23562. image: {
  23563. source: "./media/characters/fixerdragon/side.svg",
  23564. extra: (1293.0514 - 116.03) / 1106.86,
  23565. bottom: 116.03 / 1293.0514
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Planck",
  23572. height: math.unit(1.6e-35, "meters")
  23573. },
  23574. {
  23575. name: "Micro",
  23576. height: math.unit(0.4, "meters")
  23577. },
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(30, "meters"),
  23581. default: true
  23582. },
  23583. {
  23584. name: "Megamacro",
  23585. height: math.unit(1.2, "megameters")
  23586. },
  23587. {
  23588. name: "Teramacro",
  23589. height: math.unit(130, "terameters")
  23590. },
  23591. {
  23592. name: "Yottamacro",
  23593. height: math.unit(6200, "yottameters")
  23594. },
  23595. ]
  23596. ));
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(8, "feet"),
  23602. weight: math.unit(250, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/kite/front.svg",
  23606. extra: 2796 / 2659,
  23607. bottom: 0.002
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(8, "feet"),
  23615. default: true
  23616. },
  23617. {
  23618. name: "Macro",
  23619. height: math.unit(360, "feet")
  23620. },
  23621. {
  23622. name: "Megamacro",
  23623. height: math.unit(1500, "feet")
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(5 + 11/12, "feet"),
  23632. weight: math.unit(170, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/poojawa-vynar/front.svg",
  23636. extra: 1735/1585,
  23637. bottom: 96/1831
  23638. }
  23639. },
  23640. back: {
  23641. height: math.unit(5 + 11/12, "feet"),
  23642. weight: math.unit(170, "lb"),
  23643. name: "Back",
  23644. image: {
  23645. source: "./media/characters/poojawa-vynar/back.svg",
  23646. extra: 1749/1607,
  23647. bottom: 28/1777
  23648. }
  23649. },
  23650. male: {
  23651. height: math.unit(5 + 11/12, "feet"),
  23652. weight: math.unit(170, "lb"),
  23653. name: "Male",
  23654. image: {
  23655. source: "./media/characters/poojawa-vynar/male.svg",
  23656. extra: 1855/1713,
  23657. bottom: 63/1918
  23658. }
  23659. },
  23660. taur: {
  23661. height: math.unit(5 + 11/12, "feet"),
  23662. weight: math.unit(170, "lb"),
  23663. name: "Taur",
  23664. image: {
  23665. source: "./media/characters/poojawa-vynar/taur.svg",
  23666. extra: 1151/1059,
  23667. bottom: 356/1507
  23668. }
  23669. },
  23670. frontDressed: {
  23671. height: math.unit(5 + 11/12, "feet"),
  23672. weight: math.unit(170, "lb"),
  23673. name: "Front (Dressed)",
  23674. image: {
  23675. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23676. extra: 1735/1585,
  23677. bottom: 96/1831
  23678. }
  23679. },
  23680. backDressed: {
  23681. height: math.unit(5 + 11/12, "feet"),
  23682. weight: math.unit(170, "lb"),
  23683. name: "Back (Dressed)",
  23684. image: {
  23685. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23686. extra: 1749/1607,
  23687. bottom: 28/1777
  23688. }
  23689. },
  23690. maleDressed: {
  23691. height: math.unit(5 + 11/12, "feet"),
  23692. weight: math.unit(170, "lb"),
  23693. name: "Male (Dressed)",
  23694. image: {
  23695. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23696. extra: 1855/1713,
  23697. bottom: 63/1918
  23698. }
  23699. },
  23700. taurDressed: {
  23701. height: math.unit(5 + 11/12, "feet"),
  23702. weight: math.unit(170, "lb"),
  23703. name: "Taur (Dressed)",
  23704. image: {
  23705. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23706. extra: 1151/1059,
  23707. bottom: 356/1507
  23708. }
  23709. },
  23710. maw: {
  23711. height: math.unit(1.46, "feet"),
  23712. name: "Maw",
  23713. image: {
  23714. source: "./media/characters/poojawa-vynar/maw.svg"
  23715. }
  23716. },
  23717. head: {
  23718. height: math.unit(2.34, "feet"),
  23719. name: "Head",
  23720. image: {
  23721. source: "./media/characters/poojawa-vynar/head.svg"
  23722. }
  23723. },
  23724. paw: {
  23725. height: math.unit(1.61, "feet"),
  23726. name: "Paw",
  23727. image: {
  23728. source: "./media/characters/poojawa-vynar/paw.svg"
  23729. }
  23730. },
  23731. pawToering: {
  23732. height: math.unit(1.72, "feet"),
  23733. name: "Paw (Toering)",
  23734. image: {
  23735. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23736. }
  23737. },
  23738. toering: {
  23739. height: math.unit(2.9, "inches"),
  23740. name: "Toering",
  23741. image: {
  23742. source: "./media/characters/poojawa-vynar/toering.svg"
  23743. }
  23744. },
  23745. shaft: {
  23746. height: math.unit(0.625, "feet"),
  23747. name: "Shaft",
  23748. image: {
  23749. source: "./media/characters/poojawa-vynar/shaft.svg"
  23750. }
  23751. },
  23752. spade: {
  23753. height: math.unit(0.42, "feet"),
  23754. name: "Spade",
  23755. image: {
  23756. source: "./media/characters/poojawa-vynar/spade.svg"
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Shortstack",
  23763. height: math.unit(4, "feet")
  23764. },
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(5 + 11 / 12, "feet"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Tauric",
  23772. height: math.unit(4, "meters")
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23778. {
  23779. front: {
  23780. height: math.unit(293, "meters"),
  23781. weight: math.unit(70400, "tons"),
  23782. name: "Front",
  23783. image: {
  23784. source: "./media/characters/violette/front.svg",
  23785. extra: 1227 / 1180,
  23786. bottom: 0.005
  23787. }
  23788. },
  23789. back: {
  23790. height: math.unit(293, "meters"),
  23791. weight: math.unit(70400, "tons"),
  23792. name: "Back",
  23793. image: {
  23794. source: "./media/characters/violette/back.svg",
  23795. extra: 1227 / 1180,
  23796. bottom: 0.005
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Macro",
  23803. height: math.unit(293, "meters"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23810. {
  23811. front: {
  23812. height: math.unit(1050, "feet"),
  23813. weight: math.unit(200000, "tons"),
  23814. name: "Front",
  23815. image: {
  23816. source: "./media/characters/alessandra/front.svg",
  23817. extra: 960 / 912,
  23818. bottom: 0.06
  23819. }
  23820. },
  23821. },
  23822. [
  23823. {
  23824. name: "Macro",
  23825. height: math.unit(1050, "feet")
  23826. },
  23827. {
  23828. name: "Macro+",
  23829. height: math.unit(900, "meters"),
  23830. default: true
  23831. },
  23832. ]
  23833. ))
  23834. characterMakers.push(() => makeCharacter(
  23835. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23836. {
  23837. front: {
  23838. height: math.unit(5, "feet"),
  23839. weight: math.unit(187, "lb"),
  23840. name: "Front",
  23841. image: {
  23842. source: "./media/characters/person/front.svg",
  23843. extra: 3087 / 2945,
  23844. bottom: 91 / 3181
  23845. }
  23846. },
  23847. },
  23848. [
  23849. {
  23850. name: "Micro",
  23851. height: math.unit(3, "inches")
  23852. },
  23853. {
  23854. name: "Normal",
  23855. height: math.unit(5, "feet"),
  23856. default: true
  23857. },
  23858. {
  23859. name: "Macro",
  23860. height: math.unit(90, "feet")
  23861. },
  23862. {
  23863. name: "Max Size",
  23864. height: math.unit(280, "feet")
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23870. {
  23871. front: {
  23872. height: math.unit(4.5, "meters"),
  23873. weight: math.unit(3200, "lb"),
  23874. name: "Front",
  23875. image: {
  23876. source: "./media/characters/ty/front.svg",
  23877. extra: 1038 / 960,
  23878. bottom: 31.156 / 1068
  23879. }
  23880. },
  23881. back: {
  23882. height: math.unit(4.5, "meters"),
  23883. weight: math.unit(3200, "lb"),
  23884. name: "Back",
  23885. image: {
  23886. source: "./media/characters/ty/back.svg",
  23887. extra: 1044 / 966,
  23888. bottom: 7.48 / 1049
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(4.5, "meters"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23902. {
  23903. front: {
  23904. height: math.unit(5 + 4 / 12, "feet"),
  23905. weight: math.unit(115, "lb"),
  23906. name: "Front",
  23907. image: {
  23908. source: "./media/characters/rocky/front.svg",
  23909. extra: 1012 / 975,
  23910. bottom: 54 / 1066
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(5 + 4 / 12, "feet"),
  23918. default: true
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23924. {
  23925. upright: {
  23926. height: math.unit(6, "meters"),
  23927. weight: math.unit(4000, "kg"),
  23928. name: "Upright",
  23929. image: {
  23930. source: "./media/characters/ruin/upright.svg",
  23931. extra: 668 / 661,
  23932. bottom: 42 / 799.8396
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(6, "meters"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(5, "feet"),
  23949. weight: math.unit(106, "lb"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/robin/front.svg",
  23953. extra: 862 / 799,
  23954. bottom: 42.4 / 914.8856
  23955. }
  23956. },
  23957. },
  23958. [
  23959. {
  23960. name: "Normal",
  23961. height: math.unit(5, "feet"),
  23962. default: true
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23968. {
  23969. side: {
  23970. height: math.unit(3, "feet"),
  23971. weight: math.unit(225, "lb"),
  23972. name: "Side",
  23973. image: {
  23974. source: "./media/characters/saian/side.svg",
  23975. extra: 566 / 356,
  23976. bottom: 79.7 / 643
  23977. }
  23978. },
  23979. maw: {
  23980. height: math.unit(2.85, "feet"),
  23981. name: "Maw",
  23982. image: {
  23983. source: "./media/characters/saian/maw.svg"
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Normal",
  23990. height: math.unit(3, "feet"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23997. {
  23998. side: {
  23999. height: math.unit(8, "feet"),
  24000. weight: math.unit(300, "lb"),
  24001. name: "Side",
  24002. image: {
  24003. source: "./media/characters/equus-silvermane/side.svg",
  24004. extra: 2176 / 2050,
  24005. bottom: 65.7 / 2245
  24006. }
  24007. },
  24008. front: {
  24009. height: math.unit(8, "feet"),
  24010. weight: math.unit(300, "lb"),
  24011. name: "Front",
  24012. image: {
  24013. source: "./media/characters/equus-silvermane/front.svg",
  24014. extra: 4633 / 4400,
  24015. bottom: 71.3 / 4706.915
  24016. }
  24017. },
  24018. sideStepping: {
  24019. height: math.unit(8, "feet"),
  24020. weight: math.unit(300, "lb"),
  24021. name: "Side (Stepping)",
  24022. image: {
  24023. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24024. extra: 1968 / 1860,
  24025. bottom: 16.4 / 1989
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(8, "feet")
  24033. },
  24034. {
  24035. name: "Minimacro",
  24036. height: math.unit(75, "feet"),
  24037. default: true
  24038. },
  24039. {
  24040. name: "Macro",
  24041. height: math.unit(150, "feet")
  24042. },
  24043. {
  24044. name: "Macro+",
  24045. height: math.unit(1000, "feet")
  24046. },
  24047. {
  24048. name: "Megamacro",
  24049. height: math.unit(1, "mile")
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24055. {
  24056. side: {
  24057. height: math.unit(20, "feet"),
  24058. weight: math.unit(30000, "kg"),
  24059. name: "Side",
  24060. image: {
  24061. source: "./media/characters/windar/side.svg",
  24062. extra: 1491 / 1248,
  24063. bottom: 82.56 / 1568
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(20, "feet"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24077. {
  24078. side: {
  24079. height: math.unit(15.66, "feet"),
  24080. weight: math.unit(150, "lb"),
  24081. name: "Side",
  24082. image: {
  24083. source: "./media/characters/melody/side.svg",
  24084. extra: 1097 / 944,
  24085. bottom: 11.8 / 1109
  24086. }
  24087. },
  24088. sideOutfit: {
  24089. height: math.unit(15.66, "feet"),
  24090. weight: math.unit(150, "lb"),
  24091. name: "Side (Outfit)",
  24092. image: {
  24093. source: "./media/characters/melody/side-outfit.svg",
  24094. extra: 1097 / 944,
  24095. bottom: 11.8 / 1109
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Normal",
  24102. height: math.unit(15.66, "feet"),
  24103. default: true
  24104. },
  24105. ]
  24106. ))
  24107. characterMakers.push(() => makeCharacter(
  24108. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24109. {
  24110. armoredFront: {
  24111. height: math.unit(8, "feet"),
  24112. weight: math.unit(325, "lb"),
  24113. name: "Front",
  24114. image: {
  24115. source: "./media/characters/windera/armored-front.svg",
  24116. extra: 1830/1598,
  24117. bottom: 151/1981
  24118. },
  24119. form: "armored",
  24120. default: true
  24121. },
  24122. macroFront: {
  24123. height: math.unit(70, "feet"),
  24124. weight: math.unit(315453, "lb"),
  24125. name: "Front",
  24126. image: {
  24127. source: "./media/characters/windera/macro-front.svg",
  24128. extra: 963/883,
  24129. bottom: 23/986
  24130. },
  24131. form: "macro",
  24132. default: true
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Normal",
  24138. height: math.unit(8, "feet"),
  24139. default: true,
  24140. form: "armored"
  24141. },
  24142. {
  24143. name: "Normal",
  24144. height: math.unit(70, "feet"),
  24145. default: true,
  24146. form: "macro"
  24147. },
  24148. ],
  24149. {
  24150. "armored": {
  24151. name: "Armored",
  24152. default: true
  24153. },
  24154. "macro": {
  24155. name: "Macro",
  24156. },
  24157. }
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24161. {
  24162. front: {
  24163. height: math.unit(28.75, "feet"),
  24164. weight: math.unit(2000, "kg"),
  24165. name: "Front",
  24166. image: {
  24167. source: "./media/characters/sonear/front.svg",
  24168. extra: 1041.1 / 964.9,
  24169. bottom: 53.7 / 1096.6
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(28.75, "feet"),
  24177. default: true
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24183. {
  24184. side: {
  24185. height: math.unit(25.5, "feet"),
  24186. weight: math.unit(23000, "kg"),
  24187. name: "Side",
  24188. image: {
  24189. source: "./media/characters/kanara/side.svg"
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Normal",
  24196. height: math.unit(25.5, "feet"),
  24197. default: true
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24203. {
  24204. side: {
  24205. height: math.unit(10, "feet"),
  24206. weight: math.unit(1000, "kg"),
  24207. name: "Side",
  24208. image: {
  24209. source: "./media/characters/ereus/side.svg",
  24210. extra: 1157 / 959,
  24211. bottom: 153 / 1312.5
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Normal",
  24218. height: math.unit(10, "feet"),
  24219. default: true
  24220. },
  24221. ]
  24222. ))
  24223. characterMakers.push(() => makeCharacter(
  24224. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24225. {
  24226. side: {
  24227. height: math.unit(4.5, "feet"),
  24228. weight: math.unit(500, "lb"),
  24229. name: "Side",
  24230. image: {
  24231. source: "./media/characters/e-ter/side.svg",
  24232. extra: 1550 / 1248,
  24233. bottom: 146 / 1694
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Normal",
  24240. height: math.unit(4.5, "feet"),
  24241. default: true
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24247. {
  24248. side: {
  24249. height: math.unit(9.7, "feet"),
  24250. weight: math.unit(4000, "kg"),
  24251. name: "Side",
  24252. image: {
  24253. source: "./media/characters/yamie/side.svg"
  24254. }
  24255. },
  24256. },
  24257. [
  24258. {
  24259. name: "Normal",
  24260. height: math.unit(9.7, "feet"),
  24261. default: true
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24267. {
  24268. front: {
  24269. height: math.unit(50, "feet"),
  24270. weight: math.unit(50000, "kg"),
  24271. name: "Front",
  24272. image: {
  24273. source: "./media/characters/anders/front.svg",
  24274. extra: 570 / 539,
  24275. bottom: 14.7 / 586.7
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Large",
  24282. height: math.unit(50, "feet")
  24283. },
  24284. {
  24285. name: "Macro",
  24286. height: math.unit(2000, "feet"),
  24287. default: true
  24288. },
  24289. {
  24290. name: "Megamacro",
  24291. height: math.unit(12, "miles")
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(7 + 2 / 12, "feet"),
  24300. weight: math.unit(300, "lb"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/reban/front.svg",
  24304. extra: 1287/1212,
  24305. bottom: 148/1435
  24306. }
  24307. },
  24308. head: {
  24309. height: math.unit(1.95, "feet"),
  24310. name: "Head",
  24311. image: {
  24312. source: "./media/characters/reban/head.svg"
  24313. }
  24314. },
  24315. maw: {
  24316. height: math.unit(0.95, "feet"),
  24317. name: "Maw",
  24318. image: {
  24319. source: "./media/characters/reban/maw.svg"
  24320. }
  24321. },
  24322. foot: {
  24323. height: math.unit(1.65, "feet"),
  24324. name: "Foot",
  24325. image: {
  24326. source: "./media/characters/reban/foot.svg"
  24327. }
  24328. },
  24329. dick: {
  24330. height: math.unit(7 / 5, "feet"),
  24331. name: "Dick",
  24332. image: {
  24333. source: "./media/characters/reban/dick.svg"
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Natural Height",
  24340. height: math.unit(7 + 2 / 12, "feet")
  24341. },
  24342. {
  24343. name: "Macro",
  24344. height: math.unit(500, "feet"),
  24345. default: true
  24346. },
  24347. {
  24348. name: "Canon Height",
  24349. height: math.unit(50, "AU")
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(6, "feet"),
  24358. weight: math.unit(150, "lb"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/terrance-keayes/front.svg",
  24362. extra: 1.005,
  24363. bottom: 151 / 1615
  24364. }
  24365. },
  24366. side: {
  24367. height: math.unit(6, "feet"),
  24368. weight: math.unit(150, "lb"),
  24369. name: "Side",
  24370. image: {
  24371. source: "./media/characters/terrance-keayes/side.svg",
  24372. extra: 1.005,
  24373. bottom: 129.4 / 1544
  24374. }
  24375. },
  24376. back: {
  24377. height: math.unit(6, "feet"),
  24378. weight: math.unit(150, "lb"),
  24379. name: "Back",
  24380. image: {
  24381. source: "./media/characters/terrance-keayes/back.svg",
  24382. extra: 1.005,
  24383. bottom: 58.4 / 1557.3
  24384. }
  24385. },
  24386. dick: {
  24387. height: math.unit(6 * 0.208, "feet"),
  24388. name: "Dick",
  24389. image: {
  24390. source: "./media/characters/terrance-keayes/dick.svg"
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Canon Height",
  24397. height: math.unit(35, "miles"),
  24398. default: true
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24404. {
  24405. front: {
  24406. height: math.unit(6, "feet"),
  24407. weight: math.unit(150, "lb"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/ofelia/front.svg",
  24411. extra: 1130/1117,
  24412. bottom: 91/1221
  24413. }
  24414. },
  24415. back: {
  24416. height: math.unit(6, "feet"),
  24417. weight: math.unit(150, "lb"),
  24418. name: "Back",
  24419. image: {
  24420. source: "./media/characters/ofelia/back.svg",
  24421. extra: 1172/1159,
  24422. bottom: 28/1200
  24423. }
  24424. },
  24425. maw: {
  24426. height: math.unit(1, "feet"),
  24427. name: "Maw",
  24428. image: {
  24429. source: "./media/characters/ofelia/maw.svg"
  24430. }
  24431. },
  24432. foot: {
  24433. height: math.unit(1.949, "feet"),
  24434. name: "Foot",
  24435. image: {
  24436. source: "./media/characters/ofelia/foot.svg"
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "Canon Height",
  24443. height: math.unit(2000, "miles"),
  24444. default: true
  24445. },
  24446. ]
  24447. ))
  24448. characterMakers.push(() => makeCharacter(
  24449. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24450. {
  24451. front: {
  24452. height: math.unit(6, "feet"),
  24453. weight: math.unit(150, "lb"),
  24454. name: "Front",
  24455. image: {
  24456. source: "./media/characters/samuel/front.svg",
  24457. extra: 265 / 258,
  24458. bottom: 2 / 266.1566
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(100, "feet"),
  24466. default: true
  24467. },
  24468. {
  24469. name: "Full Size",
  24470. height: math.unit(1000, "miles")
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(6, "feet"),
  24479. weight: math.unit(300, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/beishir-kiel/front.svg",
  24483. extra: 569 / 547,
  24484. bottom: 41.9 / 609
  24485. }
  24486. },
  24487. maw: {
  24488. height: math.unit(6 * 0.202, "feet"),
  24489. name: "Maw",
  24490. image: {
  24491. source: "./media/characters/beishir-kiel/maw.svg"
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Macro",
  24498. height: math.unit(300, "feet"),
  24499. default: true
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24505. {
  24506. front: {
  24507. height: math.unit(5 + 7/12, "feet"),
  24508. weight: math.unit(120, "lb"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/logan-grey/front.svg",
  24512. extra: 1836/1738,
  24513. bottom: 108/1944
  24514. }
  24515. },
  24516. back: {
  24517. height: math.unit(5 + 7/12, "feet"),
  24518. weight: math.unit(120, "lb"),
  24519. name: "Back",
  24520. image: {
  24521. source: "./media/characters/logan-grey/back.svg",
  24522. extra: 1880/1794,
  24523. bottom: 24/1904
  24524. }
  24525. },
  24526. frontSfw: {
  24527. height: math.unit(5 + 7/12, "feet"),
  24528. weight: math.unit(120, "lb"),
  24529. name: "Front (SFW)",
  24530. image: {
  24531. source: "./media/characters/logan-grey/front-sfw.svg",
  24532. extra: 1836/1738,
  24533. bottom: 108/1944
  24534. }
  24535. },
  24536. backSfw: {
  24537. height: math.unit(5 + 7/12, "feet"),
  24538. weight: math.unit(120, "lb"),
  24539. name: "Back (SFW)",
  24540. image: {
  24541. source: "./media/characters/logan-grey/back-sfw.svg",
  24542. extra: 1880/1794,
  24543. bottom: 24/1904
  24544. }
  24545. },
  24546. hands: {
  24547. height: math.unit(0.84, "feet"),
  24548. name: "Hands",
  24549. image: {
  24550. source: "./media/characters/logan-grey/hands.svg"
  24551. }
  24552. },
  24553. paws: {
  24554. height: math.unit(0.72, "feet"),
  24555. name: "Paws",
  24556. image: {
  24557. source: "./media/characters/logan-grey/paws.svg"
  24558. }
  24559. },
  24560. cock: {
  24561. height: math.unit(1.45, "feet"),
  24562. name: "Cock",
  24563. image: {
  24564. source: "./media/characters/logan-grey/cock.svg"
  24565. }
  24566. },
  24567. cockAlt: {
  24568. height: math.unit(1.437, "feet"),
  24569. name: "Cock (alt)",
  24570. image: {
  24571. source: "./media/characters/logan-grey/cock-alt.svg"
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Normal",
  24578. height: math.unit(5 + 8 / 12, "feet")
  24579. },
  24580. {
  24581. name: "The 500 Foot Femboy",
  24582. height: math.unit(500, "feet"),
  24583. default: true
  24584. },
  24585. {
  24586. name: "Megmacro",
  24587. height: math.unit(20, "miles")
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(8 + 2 / 12, "feet"),
  24596. weight: math.unit(275, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/draganta/front.svg",
  24600. extra: 1177 / 1135,
  24601. bottom: 33.46 / 1212.1
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(8 + 6 / 12, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "Macro",
  24613. height: math.unit(150, "feet")
  24614. },
  24615. {
  24616. name: "Megamacro",
  24617. height: math.unit(1000, "miles")
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(1.72, "m"),
  24626. weight: math.unit(80, "lb"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/voski/front.svg",
  24630. extra: 2076.22 / 2022.4,
  24631. bottom: 102.7 / 2177.3866
  24632. }
  24633. },
  24634. frontFlaccid: {
  24635. height: math.unit(1.72, "m"),
  24636. weight: math.unit(80, "lb"),
  24637. name: "Front (Flaccid)",
  24638. image: {
  24639. source: "./media/characters/voski/front-flaccid.svg",
  24640. extra: 2076.22 / 2022.4,
  24641. bottom: 102.7 / 2177.3866
  24642. }
  24643. },
  24644. frontErect: {
  24645. height: math.unit(1.72, "m"),
  24646. weight: math.unit(80, "lb"),
  24647. name: "Front (Erect)",
  24648. image: {
  24649. source: "./media/characters/voski/front-erect.svg",
  24650. extra: 2076.22 / 2022.4,
  24651. bottom: 102.7 / 2177.3866
  24652. }
  24653. },
  24654. back: {
  24655. height: math.unit(1.72, "m"),
  24656. weight: math.unit(80, "lb"),
  24657. name: "Back",
  24658. image: {
  24659. source: "./media/characters/voski/back.svg",
  24660. extra: 2104 / 2051,
  24661. bottom: 10.45 / 2113.63
  24662. }
  24663. },
  24664. },
  24665. [
  24666. {
  24667. name: "Normal",
  24668. height: math.unit(1.72, "m")
  24669. },
  24670. {
  24671. name: "Macro",
  24672. height: math.unit(55, "m"),
  24673. default: true
  24674. },
  24675. {
  24676. name: "Macro+",
  24677. height: math.unit(300, "m")
  24678. },
  24679. {
  24680. name: "Macro++",
  24681. height: math.unit(700, "m")
  24682. },
  24683. {
  24684. name: "Macro+++",
  24685. height: math.unit(4500, "m")
  24686. },
  24687. {
  24688. name: "Macro++++",
  24689. height: math.unit(45, "km")
  24690. },
  24691. {
  24692. name: "Macro+++++",
  24693. height: math.unit(1220, "km")
  24694. },
  24695. ]
  24696. ))
  24697. characterMakers.push(() => makeCharacter(
  24698. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24699. {
  24700. front: {
  24701. height: math.unit(2.3, "m"),
  24702. weight: math.unit(304, "kg"),
  24703. name: "Front",
  24704. image: {
  24705. source: "./media/characters/icowom-lee/front.svg",
  24706. extra: 985 / 955,
  24707. bottom: 25.4 / 1012
  24708. }
  24709. },
  24710. fronttentacles: {
  24711. height: math.unit(2.3, "m"),
  24712. weight: math.unit(304, "kg"),
  24713. name: "Front-tentacles",
  24714. image: {
  24715. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24716. extra: 985 / 955,
  24717. bottom: 25.4 / 1012
  24718. }
  24719. },
  24720. back: {
  24721. height: math.unit(2.3, "m"),
  24722. weight: math.unit(304, "kg"),
  24723. name: "Back",
  24724. image: {
  24725. source: "./media/characters/icowom-lee/back.svg",
  24726. extra: 975 / 954,
  24727. bottom: 9.5 / 985
  24728. }
  24729. },
  24730. backtentacles: {
  24731. height: math.unit(2.3, "m"),
  24732. weight: math.unit(304, "kg"),
  24733. name: "Back-tentacles",
  24734. image: {
  24735. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24736. extra: 975 / 954,
  24737. bottom: 9.5 / 985
  24738. }
  24739. },
  24740. frontDressed: {
  24741. height: math.unit(2.3, "m"),
  24742. weight: math.unit(304, "kg"),
  24743. name: "Front (Dressed)",
  24744. image: {
  24745. source: "./media/characters/icowom-lee/front-dressed.svg",
  24746. extra: 3076 / 2933,
  24747. bottom: 51.4 / 3125.1889
  24748. }
  24749. },
  24750. rump: {
  24751. height: math.unit(0.776, "meters"),
  24752. name: "Rump",
  24753. image: {
  24754. source: "./media/characters/icowom-lee/rump.svg"
  24755. }
  24756. },
  24757. genitals: {
  24758. height: math.unit(0.78, "meters"),
  24759. name: "Genitals",
  24760. image: {
  24761. source: "./media/characters/icowom-lee/genitals.svg"
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(2.3, "meters"),
  24769. default: true
  24770. },
  24771. {
  24772. name: "Macro",
  24773. height: math.unit(94, "meters"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(22, "meters"),
  24783. weight: math.unit(21000, "kg"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/shock-diamond/front.svg",
  24787. extra: 2204 / 2053,
  24788. bottom: 65 / 2239.47
  24789. }
  24790. },
  24791. frontNude: {
  24792. height: math.unit(22, "meters"),
  24793. weight: math.unit(21000, "kg"),
  24794. name: "Front (Nude)",
  24795. image: {
  24796. source: "./media/characters/shock-diamond/front-nude.svg",
  24797. extra: 2514 / 2285,
  24798. bottom: 13 / 2527.56
  24799. }
  24800. },
  24801. },
  24802. [
  24803. {
  24804. name: "Normal",
  24805. height: math.unit(3, "meters")
  24806. },
  24807. {
  24808. name: "Macro",
  24809. height: math.unit(22, "meters"),
  24810. default: true
  24811. },
  24812. ]
  24813. ))
  24814. characterMakers.push(() => makeCharacter(
  24815. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24816. {
  24817. front: {
  24818. height: math.unit(5 + 4/12, "feet"),
  24819. weight: math.unit(125, "lb"),
  24820. name: "Front",
  24821. image: {
  24822. source: "./media/characters/rory/front.svg",
  24823. extra: 1790/1681,
  24824. bottom: 66/1856
  24825. },
  24826. form: "normal",
  24827. default: true
  24828. },
  24829. back: {
  24830. height: math.unit(5 + 4/12, "feet"),
  24831. weight: math.unit(125, "lb"),
  24832. name: "Back",
  24833. image: {
  24834. source: "./media/characters/rory/back.svg",
  24835. extra: 1805/1690,
  24836. bottom: 56/1861
  24837. },
  24838. form: "normal"
  24839. },
  24840. frontDressed: {
  24841. height: math.unit(5 + 4/12, "feet"),
  24842. weight: math.unit(125, "lb"),
  24843. name: "Front (Dressed)",
  24844. image: {
  24845. source: "./media/characters/rory/front-dressed.svg",
  24846. extra: 1790/1681,
  24847. bottom: 66/1856
  24848. },
  24849. form: "normal"
  24850. },
  24851. backDressed: {
  24852. height: math.unit(5 + 4/12, "feet"),
  24853. weight: math.unit(125, "lb"),
  24854. name: "Back (Dressed)",
  24855. image: {
  24856. source: "./media/characters/rory/back-dressed.svg",
  24857. extra: 1805/1690,
  24858. bottom: 56/1861
  24859. },
  24860. form: "normal"
  24861. },
  24862. frontNsfw: {
  24863. height: math.unit(5 + 4/12, "feet"),
  24864. weight: math.unit(125, "lb"),
  24865. name: "Front (NSFW)",
  24866. image: {
  24867. source: "./media/characters/rory/front-nsfw.svg",
  24868. extra: 1790/1681,
  24869. bottom: 66/1856
  24870. },
  24871. form: "normal"
  24872. },
  24873. backNsfw: {
  24874. height: math.unit(5 + 4/12, "feet"),
  24875. weight: math.unit(125, "lb"),
  24876. name: "Back (NSFW)",
  24877. image: {
  24878. source: "./media/characters/rory/back-nsfw.svg",
  24879. extra: 1805/1690,
  24880. bottom: 56/1861
  24881. },
  24882. form: "normal"
  24883. },
  24884. dick: {
  24885. height: math.unit(0.8, "feet"),
  24886. name: "Dick",
  24887. image: {
  24888. source: "./media/characters/rory/dick.svg"
  24889. },
  24890. form: "normal"
  24891. },
  24892. thicc_front: {
  24893. height: math.unit(5 + 4/12, "feet"),
  24894. weight: math.unit(195, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/rory/thicc-front.svg",
  24898. extra: 1220/1100,
  24899. bottom: 103/1323
  24900. },
  24901. form: "thicc",
  24902. default: true
  24903. },
  24904. thicc_back: {
  24905. height: math.unit(5 + 4/12, "feet"),
  24906. weight: math.unit(195, "lb"),
  24907. name: "Back",
  24908. image: {
  24909. source: "./media/characters/rory/thicc-back.svg",
  24910. extra: 1166/1086,
  24911. bottom: 35/1201
  24912. },
  24913. form: "thicc"
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Micro",
  24919. height: math.unit(3, "inches"),
  24920. allForms: true
  24921. },
  24922. {
  24923. name: "Normal",
  24924. height: math.unit(5 + 4/12, "feet"),
  24925. allForms: true,
  24926. default: true
  24927. },
  24928. {
  24929. name: "Macro",
  24930. height: math.unit(90, "feet"),
  24931. allForms: true
  24932. },
  24933. {
  24934. name: "Supercharged",
  24935. height: math.unit(270, "feet"),
  24936. allForms: true
  24937. },
  24938. ],
  24939. {
  24940. "normal": {
  24941. name: "Normal",
  24942. default: true
  24943. },
  24944. "thicc": {
  24945. name: "Thicc",
  24946. },
  24947. }
  24948. ))
  24949. characterMakers.push(() => makeCharacter(
  24950. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24951. {
  24952. front: {
  24953. height: math.unit(5 + 9 / 12, "feet"),
  24954. weight: math.unit(190, "lb"),
  24955. name: "Front",
  24956. image: {
  24957. source: "./media/characters/sprisk/front.svg",
  24958. extra: 1225 / 1180,
  24959. bottom: 42.7 / 1266.4
  24960. }
  24961. },
  24962. frontNsfw: {
  24963. height: math.unit(5 + 9 / 12, "feet"),
  24964. weight: math.unit(190, "lb"),
  24965. name: "Front (NSFW)",
  24966. image: {
  24967. source: "./media/characters/sprisk/front-nsfw.svg",
  24968. extra: 1225 / 1180,
  24969. bottom: 42.7 / 1266.4
  24970. }
  24971. },
  24972. back: {
  24973. height: math.unit(5 + 9 / 12, "feet"),
  24974. weight: math.unit(190, "lb"),
  24975. name: "Back",
  24976. image: {
  24977. source: "./media/characters/sprisk/back.svg",
  24978. extra: 1247 / 1200,
  24979. bottom: 5.6 / 1253.04
  24980. }
  24981. },
  24982. },
  24983. [
  24984. {
  24985. name: "Tiny",
  24986. height: math.unit(2, "inches")
  24987. },
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(5 + 9 / 12, "feet"),
  24991. default: true
  24992. },
  24993. {
  24994. name: "Mini Macro",
  24995. height: math.unit(18, "feet")
  24996. },
  24997. {
  24998. name: "Macro",
  24999. height: math.unit(100, "feet")
  25000. },
  25001. {
  25002. name: "MACRO",
  25003. height: math.unit(50, "miles")
  25004. },
  25005. {
  25006. name: "M A C R O",
  25007. height: math.unit(300, "miles")
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25013. {
  25014. side: {
  25015. height: math.unit(15.6, "meters"),
  25016. weight: math.unit(700000, "kg"),
  25017. name: "Side",
  25018. image: {
  25019. source: "./media/characters/bunsen/side.svg",
  25020. extra: 1644 / 358
  25021. }
  25022. },
  25023. foot: {
  25024. height: math.unit(1.611 * 1644 / 358, "meter"),
  25025. name: "Foot",
  25026. image: {
  25027. source: "./media/characters/bunsen/foot.svg"
  25028. }
  25029. },
  25030. },
  25031. [
  25032. {
  25033. name: "Small",
  25034. height: math.unit(10, "feet")
  25035. },
  25036. {
  25037. name: "Normal",
  25038. height: math.unit(15.6, "meters"),
  25039. default: true
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(4 + 11 / 12, "feet"),
  25048. weight: math.unit(140, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/sesh/front.svg",
  25052. extra: 3420 / 3231,
  25053. bottom: 72 / 3949.5
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(4 + 11 / 12, "feet")
  25061. },
  25062. {
  25063. name: "Grown",
  25064. height: math.unit(15, "feet"),
  25065. default: true
  25066. },
  25067. {
  25068. name: "Macro",
  25069. height: math.unit(1500, "feet")
  25070. },
  25071. {
  25072. name: "Megamacro",
  25073. height: math.unit(30, "miles")
  25074. },
  25075. {
  25076. name: "Continental",
  25077. height: math.unit(3000, "miles")
  25078. },
  25079. {
  25080. name: "Gravity Mass",
  25081. height: math.unit(300000, "miles")
  25082. },
  25083. {
  25084. name: "Planet Buster",
  25085. height: math.unit(30000000, "miles")
  25086. },
  25087. {
  25088. name: "Big",
  25089. height: math.unit(3000000000, "miles")
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(9, "feet"),
  25098. weight: math.unit(350, "lb"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/pepper/front.svg",
  25102. extra: 1448 / 1312,
  25103. bottom: 9.4 / 1457.88
  25104. }
  25105. },
  25106. back: {
  25107. height: math.unit(9, "feet"),
  25108. weight: math.unit(350, "lb"),
  25109. name: "Back",
  25110. image: {
  25111. source: "./media/characters/pepper/back.svg",
  25112. extra: 1423 / 1300,
  25113. bottom: 4.6 / 1429
  25114. }
  25115. },
  25116. maw: {
  25117. height: math.unit(0.932, "feet"),
  25118. name: "Maw",
  25119. image: {
  25120. source: "./media/characters/pepper/maw.svg"
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(9, "feet"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(6, "feet"),
  25137. weight: math.unit(150, "lb"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/maelstrom/front.svg",
  25141. extra: 2100 / 1883,
  25142. bottom: 94 / 2196.7
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Less Kaiju",
  25149. height: math.unit(200, "feet")
  25150. },
  25151. {
  25152. name: "Kaiju",
  25153. height: math.unit(400, "feet"),
  25154. default: true
  25155. },
  25156. {
  25157. name: "Kaiju-er",
  25158. height: math.unit(600, "feet")
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(6 + 5 / 12, "feet"),
  25167. weight: math.unit(180, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/lexir/front.svg",
  25171. extra: 180 / 172,
  25172. bottom: 12 / 192
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(6 + 5 / 12, "feet"),
  25177. weight: math.unit(180, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/lexir/back.svg",
  25181. extra: 1273/1201,
  25182. bottom: 39/1312
  25183. }
  25184. },
  25185. },
  25186. [
  25187. {
  25188. name: "Very Smal",
  25189. height: math.unit(1, "nm")
  25190. },
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(6 + 5 / 12, "feet"),
  25194. default: true
  25195. },
  25196. {
  25197. name: "Macro",
  25198. height: math.unit(1, "mile")
  25199. },
  25200. {
  25201. name: "Megamacro",
  25202. height: math.unit(50, "miles")
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25208. {
  25209. front: {
  25210. height: math.unit(1.5, "meters"),
  25211. weight: math.unit(100, "lb"),
  25212. name: "Front",
  25213. image: {
  25214. source: "./media/characters/maksio/front.svg",
  25215. extra: 1549 / 1531,
  25216. bottom: 123.7 / 1674.5429
  25217. }
  25218. },
  25219. back: {
  25220. height: math.unit(1.5, "meters"),
  25221. weight: math.unit(100, "lb"),
  25222. name: "Back",
  25223. image: {
  25224. source: "./media/characters/maksio/back.svg",
  25225. extra: 1541 / 1509,
  25226. bottom: 97 / 1639
  25227. }
  25228. },
  25229. hand: {
  25230. height: math.unit(0.621, "feet"),
  25231. name: "Hand",
  25232. image: {
  25233. source: "./media/characters/maksio/hand.svg"
  25234. }
  25235. },
  25236. foot: {
  25237. height: math.unit(1.611, "feet"),
  25238. name: "Foot",
  25239. image: {
  25240. source: "./media/characters/maksio/foot.svg"
  25241. }
  25242. },
  25243. },
  25244. [
  25245. {
  25246. name: "Shrunken",
  25247. height: math.unit(10, "cm")
  25248. },
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(150, "cm"),
  25252. default: true
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25258. {
  25259. front: {
  25260. height: math.unit(100, "feet"),
  25261. name: "Front",
  25262. image: {
  25263. source: "./media/characters/erza-bear/front.svg",
  25264. extra: 2449 / 2390,
  25265. bottom: 46 / 2494
  25266. }
  25267. },
  25268. back: {
  25269. height: math.unit(100, "feet"),
  25270. name: "Back",
  25271. image: {
  25272. source: "./media/characters/erza-bear/back.svg",
  25273. extra: 2489 / 2430,
  25274. bottom: 85.4 / 2480
  25275. }
  25276. },
  25277. tail: {
  25278. height: math.unit(42, "feet"),
  25279. name: "Tail",
  25280. image: {
  25281. source: "./media/characters/erza-bear/tail.svg"
  25282. }
  25283. },
  25284. tongue: {
  25285. height: math.unit(8, "feet"),
  25286. name: "Tongue",
  25287. image: {
  25288. source: "./media/characters/erza-bear/tongue.svg"
  25289. }
  25290. },
  25291. dick: {
  25292. height: math.unit(10.5, "feet"),
  25293. name: "Dick",
  25294. image: {
  25295. source: "./media/characters/erza-bear/dick.svg"
  25296. }
  25297. },
  25298. dickVertical: {
  25299. height: math.unit(16.9, "feet"),
  25300. name: "Dick (Vertical)",
  25301. image: {
  25302. source: "./media/characters/erza-bear/dick-vertical.svg"
  25303. }
  25304. },
  25305. },
  25306. [
  25307. {
  25308. name: "Macro",
  25309. height: math.unit(100, "feet"),
  25310. default: true
  25311. },
  25312. ]
  25313. ))
  25314. characterMakers.push(() => makeCharacter(
  25315. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25316. {
  25317. front: {
  25318. height: math.unit(172, "cm"),
  25319. weight: math.unit(73, "kg"),
  25320. name: "Front",
  25321. image: {
  25322. source: "./media/characters/violet-flor/front.svg",
  25323. extra: 1530 / 1442,
  25324. bottom: 61.9 / 1588.8
  25325. }
  25326. },
  25327. back: {
  25328. height: math.unit(180, "cm"),
  25329. weight: math.unit(73, "kg"),
  25330. name: "Back",
  25331. image: {
  25332. source: "./media/characters/violet-flor/back.svg",
  25333. extra: 1692 / 1630,
  25334. bottom: 20 / 1712
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Normal",
  25341. height: math.unit(172, "cm"),
  25342. default: true
  25343. },
  25344. ]
  25345. ))
  25346. characterMakers.push(() => makeCharacter(
  25347. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25348. {
  25349. front: {
  25350. height: math.unit(6, "feet"),
  25351. weight: math.unit(220, "lb"),
  25352. name: "Front",
  25353. image: {
  25354. source: "./media/characters/lynn-rhea/front.svg",
  25355. extra: 310 / 273
  25356. }
  25357. },
  25358. back: {
  25359. height: math.unit(6, "feet"),
  25360. weight: math.unit(220, "lb"),
  25361. name: "Back",
  25362. image: {
  25363. source: "./media/characters/lynn-rhea/back.svg",
  25364. extra: 310 / 273
  25365. }
  25366. },
  25367. dicks: {
  25368. height: math.unit(0.9, "feet"),
  25369. name: "Dicks",
  25370. image: {
  25371. source: "./media/characters/lynn-rhea/dicks.svg"
  25372. }
  25373. },
  25374. slit: {
  25375. height: math.unit(0.4, "feet"),
  25376. name: "Slit",
  25377. image: {
  25378. source: "./media/characters/lynn-rhea/slit.svg"
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Micro",
  25385. height: math.unit(1, "inch")
  25386. },
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(60, "feet"),
  25390. default: true
  25391. },
  25392. {
  25393. name: "Megamacro",
  25394. height: math.unit(2, "miles")
  25395. },
  25396. {
  25397. name: "Gigamacro",
  25398. height: math.unit(3, "earths")
  25399. },
  25400. {
  25401. name: "Galactic",
  25402. height: math.unit(0.8, "galaxies")
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25408. {
  25409. front: {
  25410. height: math.unit(1600, "feet"),
  25411. weight: math.unit(85758785169, "kg"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/valathos/front.svg",
  25415. extra: 1451 / 1339
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(1600, "feet"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(7 + 5 / 12, "feet"),
  25432. weight: math.unit(300, "lb"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/azula/front.svg",
  25436. extra: 3208 / 2880,
  25437. bottom: 80.2 / 3277
  25438. }
  25439. },
  25440. back: {
  25441. height: math.unit(7 + 5 / 12, "feet"),
  25442. weight: math.unit(300, "lb"),
  25443. name: "Back",
  25444. image: {
  25445. source: "./media/characters/azula/back.svg",
  25446. extra: 3169 / 2822,
  25447. bottom: 150.6 / 3321
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Normal",
  25454. height: math.unit(7 + 5 / 12, "feet"),
  25455. default: true
  25456. },
  25457. {
  25458. name: "Big",
  25459. height: math.unit(20, "feet")
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25465. {
  25466. front: {
  25467. height: math.unit(5 + 1 / 12, "feet"),
  25468. weight: math.unit(110, "lb"),
  25469. name: "Front",
  25470. image: {
  25471. source: "./media/characters/rupert/front.svg",
  25472. extra: 1549 / 1495,
  25473. bottom: 54.2 / 1604.4
  25474. }
  25475. },
  25476. },
  25477. [
  25478. {
  25479. name: "Normal",
  25480. height: math.unit(5 + 1 / 12, "feet"),
  25481. default: true
  25482. },
  25483. ]
  25484. ))
  25485. characterMakers.push(() => makeCharacter(
  25486. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25487. {
  25488. front: {
  25489. height: math.unit(8 + 4 / 12, "feet"),
  25490. weight: math.unit(350, "lb"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/sheera-castellar/front.svg",
  25494. extra: 1957 / 1894,
  25495. bottom: 26.97 / 1975.017
  25496. }
  25497. },
  25498. side: {
  25499. height: math.unit(8 + 4 / 12, "feet"),
  25500. weight: math.unit(350, "lb"),
  25501. name: "Side",
  25502. image: {
  25503. source: "./media/characters/sheera-castellar/side.svg",
  25504. extra: 1957 / 1894
  25505. }
  25506. },
  25507. back: {
  25508. height: math.unit(8 + 4 / 12, "feet"),
  25509. weight: math.unit(350, "lb"),
  25510. name: "Back",
  25511. image: {
  25512. source: "./media/characters/sheera-castellar/back.svg",
  25513. extra: 1957 / 1894
  25514. }
  25515. },
  25516. angled: {
  25517. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25518. weight: math.unit(350, "lb"),
  25519. name: "Angled",
  25520. image: {
  25521. source: "./media/characters/sheera-castellar/angled.svg",
  25522. extra: 1807 / 1707,
  25523. bottom: 68 / 1875
  25524. }
  25525. },
  25526. genitals: {
  25527. height: math.unit(2.2, "feet"),
  25528. name: "Genitals",
  25529. image: {
  25530. source: "./media/characters/sheera-castellar/genitals.svg"
  25531. }
  25532. },
  25533. taur: {
  25534. height: math.unit(10 + 6/12, "feet"),
  25535. name: "Taur",
  25536. image: {
  25537. source: "./media/characters/sheera-castellar/taur.svg",
  25538. extra: 2017/1909,
  25539. bottom: 185/2202
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(8 + 4 / 12, "feet")
  25547. },
  25548. {
  25549. name: "Macro",
  25550. height: math.unit(150, "feet"),
  25551. default: true
  25552. },
  25553. {
  25554. name: "Macro+",
  25555. height: math.unit(800, "feet")
  25556. },
  25557. ]
  25558. ))
  25559. characterMakers.push(() => makeCharacter(
  25560. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25561. {
  25562. front: {
  25563. height: math.unit(6, "feet"),
  25564. weight: math.unit(150, "lb"),
  25565. name: "Front",
  25566. image: {
  25567. source: "./media/characters/jaipur/front.svg",
  25568. extra: 3860 / 3731,
  25569. bottom: 287 / 4140
  25570. }
  25571. },
  25572. back: {
  25573. height: math.unit(6, "feet"),
  25574. weight: math.unit(150, "lb"),
  25575. name: "Back",
  25576. image: {
  25577. source: "./media/characters/jaipur/back.svg",
  25578. extra: 1637/1561,
  25579. bottom: 154/1791
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(1.85, "meters"),
  25587. default: true
  25588. },
  25589. {
  25590. name: "Macro",
  25591. height: math.unit(150, "meters")
  25592. },
  25593. {
  25594. name: "Macro+",
  25595. height: math.unit(0.5, "miles")
  25596. },
  25597. {
  25598. name: "Macro++",
  25599. height: math.unit(2.5, "miles")
  25600. },
  25601. {
  25602. name: "Macro+++",
  25603. height: math.unit(12, "miles")
  25604. },
  25605. {
  25606. name: "Macro++++",
  25607. height: math.unit(120, "miles")
  25608. },
  25609. {
  25610. name: "Macro+++++",
  25611. height: math.unit(1200, "miles")
  25612. },
  25613. ]
  25614. ))
  25615. characterMakers.push(() => makeCharacter(
  25616. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25617. {
  25618. front: {
  25619. height: math.unit(6, "feet"),
  25620. weight: math.unit(150, "lb"),
  25621. name: "Front",
  25622. image: {
  25623. source: "./media/characters/sheila-wolf/front.svg",
  25624. extra: 1931 / 1808,
  25625. bottom: 29.5 / 1960
  25626. }
  25627. },
  25628. dick: {
  25629. height: math.unit(1.464, "feet"),
  25630. name: "Dick",
  25631. image: {
  25632. source: "./media/characters/sheila-wolf/dick.svg"
  25633. }
  25634. },
  25635. muzzle: {
  25636. height: math.unit(0.513, "feet"),
  25637. name: "Muzzle",
  25638. image: {
  25639. source: "./media/characters/sheila-wolf/muzzle.svg"
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Macro",
  25646. height: math.unit(70, "feet"),
  25647. default: true
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25653. {
  25654. front: {
  25655. height: math.unit(32, "meters"),
  25656. weight: math.unit(300000, "kg"),
  25657. name: "Front",
  25658. image: {
  25659. source: "./media/characters/almor/front.svg",
  25660. extra: 1408 / 1322,
  25661. bottom: 94.6 / 1506.5
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Macro",
  25668. height: math.unit(32, "meters"),
  25669. default: true
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25675. {
  25676. front: {
  25677. height: math.unit(7, "feet"),
  25678. weight: math.unit(200, "lb"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/silver/front.svg",
  25682. extra: 472.1 / 450.5,
  25683. bottom: 26.5 / 499.424
  25684. }
  25685. },
  25686. },
  25687. [
  25688. {
  25689. name: "Normal",
  25690. height: math.unit(7, "feet"),
  25691. default: true
  25692. },
  25693. {
  25694. name: "Macro",
  25695. height: math.unit(800, "feet")
  25696. },
  25697. {
  25698. name: "Megamacro",
  25699. height: math.unit(250, "miles")
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25705. {
  25706. front: {
  25707. height: math.unit(6, "feet"),
  25708. weight: math.unit(150, "lb"),
  25709. name: "Front",
  25710. image: {
  25711. source: "./media/characters/pliskin/front.svg",
  25712. extra: 1469 / 1359,
  25713. bottom: 70 / 1540
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Micro",
  25720. height: math.unit(3, "inches")
  25721. },
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(5 + 11 / 12, "feet"),
  25725. default: true
  25726. },
  25727. {
  25728. name: "Macro",
  25729. height: math.unit(120, "feet")
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25735. {
  25736. front: {
  25737. height: math.unit(6, "feet"),
  25738. weight: math.unit(150, "lb"),
  25739. name: "Front",
  25740. image: {
  25741. source: "./media/characters/sammy/front.svg",
  25742. extra: 1193 / 1089,
  25743. bottom: 30.5 / 1226
  25744. }
  25745. },
  25746. },
  25747. [
  25748. {
  25749. name: "Macro",
  25750. height: math.unit(1700, "feet"),
  25751. default: true
  25752. },
  25753. {
  25754. name: "Examacro",
  25755. height: math.unit(2.5e9, "lightyears")
  25756. },
  25757. ]
  25758. ))
  25759. characterMakers.push(() => makeCharacter(
  25760. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25761. {
  25762. front: {
  25763. height: math.unit(21, "meters"),
  25764. weight: math.unit(12, "tonnes"),
  25765. name: "Front",
  25766. image: {
  25767. source: "./media/characters/kuru/front.svg",
  25768. extra: 4301 / 3785,
  25769. bottom: 371.3 / 4691
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Macro",
  25776. height: math.unit(21, "meters"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(23, "meters"),
  25786. weight: math.unit(12.2, "tonnes"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/rakka/front.svg",
  25790. extra: 4670 / 4169,
  25791. bottom: 301 / 4968.7
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Macro",
  25798. height: math.unit(23, "meters"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(6, "feet"),
  25808. weight: math.unit(150, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/rhys-feline/front.svg",
  25812. extra: 2488 / 2308,
  25813. bottom: 35.67 / 2519.19
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Really Small",
  25820. height: math.unit(1, "nm")
  25821. },
  25822. {
  25823. name: "Micro",
  25824. height: math.unit(4, "inches")
  25825. },
  25826. {
  25827. name: "Normal",
  25828. height: math.unit(4 + 10 / 12, "feet"),
  25829. default: true
  25830. },
  25831. {
  25832. name: "Macro",
  25833. height: math.unit(100, "feet")
  25834. },
  25835. {
  25836. name: "Megamacto",
  25837. height: math.unit(50, "miles")
  25838. },
  25839. ]
  25840. ))
  25841. characterMakers.push(() => makeCharacter(
  25842. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25843. {
  25844. side: {
  25845. height: math.unit(30, "feet"),
  25846. weight: math.unit(35000, "kg"),
  25847. name: "Side",
  25848. image: {
  25849. source: "./media/characters/alydar/side.svg",
  25850. extra: 234 / 222,
  25851. bottom: 6.5 / 241
  25852. }
  25853. },
  25854. front: {
  25855. height: math.unit(30, "feet"),
  25856. weight: math.unit(35000, "kg"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/alydar/front.svg",
  25860. extra: 223.37 / 210.2,
  25861. bottom: 22.3 / 246.76
  25862. }
  25863. },
  25864. top: {
  25865. height: math.unit(64.54, "feet"),
  25866. weight: math.unit(35000, "kg"),
  25867. name: "Top",
  25868. image: {
  25869. source: "./media/characters/alydar/top.svg"
  25870. }
  25871. },
  25872. anthro: {
  25873. height: math.unit(30, "feet"),
  25874. weight: math.unit(9000, "kg"),
  25875. name: "Anthro",
  25876. image: {
  25877. source: "./media/characters/alydar/anthro.svg",
  25878. extra: 432 / 421,
  25879. bottom: 7.18 / 440
  25880. }
  25881. },
  25882. maw: {
  25883. height: math.unit(11.693, "feet"),
  25884. name: "Maw",
  25885. image: {
  25886. source: "./media/characters/alydar/maw.svg"
  25887. }
  25888. },
  25889. head: {
  25890. height: math.unit(11.693, "feet"),
  25891. name: "Head",
  25892. image: {
  25893. source: "./media/characters/alydar/head.svg"
  25894. }
  25895. },
  25896. headAlt: {
  25897. height: math.unit(12.861, "feet"),
  25898. name: "Head (Alt)",
  25899. image: {
  25900. source: "./media/characters/alydar/head-alt.svg"
  25901. }
  25902. },
  25903. wing: {
  25904. height: math.unit(20.712, "feet"),
  25905. name: "Wing",
  25906. image: {
  25907. source: "./media/characters/alydar/wing.svg"
  25908. }
  25909. },
  25910. wingFeather: {
  25911. height: math.unit(9.662, "feet"),
  25912. name: "Wing Feather",
  25913. image: {
  25914. source: "./media/characters/alydar/wing-feather.svg"
  25915. }
  25916. },
  25917. countourFeather: {
  25918. height: math.unit(4.154, "feet"),
  25919. name: "Contour Feather",
  25920. image: {
  25921. source: "./media/characters/alydar/contour-feather.svg"
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "Diplomatic",
  25928. height: math.unit(13, "feet"),
  25929. default: true
  25930. },
  25931. {
  25932. name: "Small",
  25933. height: math.unit(30, "feet")
  25934. },
  25935. {
  25936. name: "Normal",
  25937. height: math.unit(95, "feet"),
  25938. default: true
  25939. },
  25940. {
  25941. name: "Large",
  25942. height: math.unit(285, "feet")
  25943. },
  25944. {
  25945. name: "Incomprehensible",
  25946. height: math.unit(450, "megameters")
  25947. },
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25952. {
  25953. side: {
  25954. height: math.unit(11, "feet"),
  25955. weight: math.unit(1750, "kg"),
  25956. name: "Side",
  25957. image: {
  25958. source: "./media/characters/selicia/side.svg",
  25959. extra: 440 / 396,
  25960. bottom: 24.8 / 465.979
  25961. }
  25962. },
  25963. maw: {
  25964. height: math.unit(4.665, "feet"),
  25965. name: "Maw",
  25966. image: {
  25967. source: "./media/characters/selicia/maw.svg"
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(11, "feet"),
  25975. default: true
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25981. {
  25982. side: {
  25983. height: math.unit(2 + 6 / 12, "feet"),
  25984. weight: math.unit(30, "lb"),
  25985. name: "Side",
  25986. image: {
  25987. source: "./media/characters/layla/side.svg",
  25988. extra: 244 / 188,
  25989. bottom: 18.2 / 262.1
  25990. }
  25991. },
  25992. back: {
  25993. height: math.unit(2 + 6 / 12, "feet"),
  25994. weight: math.unit(30, "lb"),
  25995. name: "Back",
  25996. image: {
  25997. source: "./media/characters/layla/back.svg",
  25998. extra: 308 / 241.5,
  25999. bottom: 8.9 / 316.8
  26000. }
  26001. },
  26002. cumming: {
  26003. height: math.unit(2 + 6 / 12, "feet"),
  26004. weight: math.unit(30, "lb"),
  26005. name: "Cumming",
  26006. image: {
  26007. source: "./media/characters/layla/cumming.svg",
  26008. extra: 342 / 279,
  26009. bottom: 595 / 938
  26010. }
  26011. },
  26012. dickFlaccid: {
  26013. height: math.unit(2.595, "feet"),
  26014. name: "Flaccid Genitals",
  26015. image: {
  26016. source: "./media/characters/layla/dick-flaccid.svg"
  26017. }
  26018. },
  26019. dickErect: {
  26020. height: math.unit(2.359, "feet"),
  26021. name: "Erect Genitals",
  26022. image: {
  26023. source: "./media/characters/layla/dick-erect.svg"
  26024. }
  26025. },
  26026. dragon: {
  26027. height: math.unit(40, "feet"),
  26028. name: "Dragon",
  26029. image: {
  26030. source: "./media/characters/layla/dragon.svg",
  26031. extra: 610/535,
  26032. bottom: 367/977
  26033. }
  26034. },
  26035. taur: {
  26036. height: math.unit(30, "feet"),
  26037. name: "Taur",
  26038. image: {
  26039. source: "./media/characters/layla/taur.svg",
  26040. extra: 1268/1199,
  26041. bottom: 112/1380
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Micro",
  26048. height: math.unit(1, "inch")
  26049. },
  26050. {
  26051. name: "Small",
  26052. height: math.unit(1, "foot")
  26053. },
  26054. {
  26055. name: "Normal",
  26056. height: math.unit(2 + 6 / 12, "feet"),
  26057. default: true
  26058. },
  26059. {
  26060. name: "Macro",
  26061. height: math.unit(200, "feet")
  26062. },
  26063. {
  26064. name: "Megamacro",
  26065. height: math.unit(1000, "miles")
  26066. },
  26067. {
  26068. name: "Planetary",
  26069. height: math.unit(8000, "miles")
  26070. },
  26071. {
  26072. name: "True Layla",
  26073. height: math.unit(200000 * 7, "multiverses")
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26079. {
  26080. back: {
  26081. height: math.unit(10.5, "feet"),
  26082. weight: math.unit(800, "lb"),
  26083. name: "Back",
  26084. image: {
  26085. source: "./media/characters/knox/back.svg",
  26086. extra: 1486 / 1089,
  26087. bottom: 107 / 1601.4
  26088. }
  26089. },
  26090. side: {
  26091. height: math.unit(10.5, "feet"),
  26092. weight: math.unit(800, "lb"),
  26093. name: "Side",
  26094. image: {
  26095. source: "./media/characters/knox/side.svg",
  26096. extra: 244 / 218,
  26097. bottom: 14 / 260
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Compact",
  26104. height: math.unit(10.5, "feet"),
  26105. default: true
  26106. },
  26107. {
  26108. name: "Dynamax",
  26109. height: math.unit(210, "feet")
  26110. },
  26111. {
  26112. name: "Full Macro",
  26113. height: math.unit(850, "feet")
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(28, "feet"),
  26122. weight: math.unit(10500, "lb"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/kayda/front.svg",
  26126. extra: 1536 / 1428,
  26127. bottom: 68.7 / 1603
  26128. }
  26129. },
  26130. back: {
  26131. height: math.unit(28, "feet"),
  26132. weight: math.unit(10500, "lb"),
  26133. name: "Back",
  26134. image: {
  26135. source: "./media/characters/kayda/back.svg",
  26136. extra: 1557 / 1464,
  26137. bottom: 39.5 / 1597.49
  26138. }
  26139. },
  26140. dick: {
  26141. height: math.unit(3.858, "feet"),
  26142. name: "Dick",
  26143. image: {
  26144. source: "./media/characters/kayda/dick.svg"
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Macro",
  26151. height: math.unit(28, "feet"),
  26152. default: true
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26158. {
  26159. front: {
  26160. height: math.unit(10 + 11 / 12, "feet"),
  26161. weight: math.unit(1400, "lb"),
  26162. name: "Front",
  26163. image: {
  26164. source: "./media/characters/brian/front.svg",
  26165. extra: 737 / 692,
  26166. bottom: 55.4 / 785
  26167. }
  26168. },
  26169. },
  26170. [
  26171. {
  26172. name: "Normal",
  26173. height: math.unit(10 + 11 / 12, "feet"),
  26174. default: true
  26175. },
  26176. ]
  26177. ))
  26178. characterMakers.push(() => makeCharacter(
  26179. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26180. {
  26181. front: {
  26182. height: math.unit(5 + 8 / 12, "feet"),
  26183. weight: math.unit(140, "lb"),
  26184. name: "Front",
  26185. image: {
  26186. source: "./media/characters/khemri/front.svg",
  26187. extra: 4780 / 4059,
  26188. bottom: 80.1 / 4859.25
  26189. }
  26190. },
  26191. },
  26192. [
  26193. {
  26194. name: "Micro",
  26195. height: math.unit(6, "inches")
  26196. },
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(5 + 8 / 12, "feet"),
  26200. default: true
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26206. {
  26207. front: {
  26208. height: math.unit(13, "feet"),
  26209. weight: math.unit(1700, "lb"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/felix-braveheart/front.svg",
  26213. extra: 1222 / 1157,
  26214. bottom: 53.2 / 1280
  26215. }
  26216. },
  26217. back: {
  26218. height: math.unit(13, "feet"),
  26219. weight: math.unit(1700, "lb"),
  26220. name: "Back",
  26221. image: {
  26222. source: "./media/characters/felix-braveheart/back.svg",
  26223. extra: 1277 / 1203,
  26224. bottom: 50.2 / 1327
  26225. }
  26226. },
  26227. feral: {
  26228. height: math.unit(6, "feet"),
  26229. weight: math.unit(400, "lb"),
  26230. name: "Feral",
  26231. image: {
  26232. source: "./media/characters/felix-braveheart/feral.svg",
  26233. extra: 682 / 625,
  26234. bottom: 6.9 / 688
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(13, "feet"),
  26242. default: true
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26248. {
  26249. side: {
  26250. height: math.unit(5 + 11 / 12, "feet"),
  26251. weight: math.unit(1400, "lb"),
  26252. name: "Side",
  26253. image: {
  26254. source: "./media/characters/shadow-blade/side.svg",
  26255. extra: 1726 / 1267,
  26256. bottom: 58.4 / 1785
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Normal",
  26263. height: math.unit(5 + 11 / 12, "feet"),
  26264. default: true
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26270. {
  26271. front: {
  26272. height: math.unit(1 + 6 / 12, "feet"),
  26273. weight: math.unit(25, "lb"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/karla-halldor/front.svg",
  26277. extra: 1459 / 1383,
  26278. bottom: 12 / 1472
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(1 + 6 / 12, "feet"),
  26286. default: true
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(6 + 2 / 12, "feet"),
  26295. weight: math.unit(160, "lb"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/ariam/front.svg",
  26299. extra: 1073/976,
  26300. bottom: 52/1125
  26301. }
  26302. },
  26303. back: {
  26304. height: math.unit(6 + 2/12, "feet"),
  26305. weight: math.unit(160, "lb"),
  26306. name: "Back",
  26307. image: {
  26308. source: "./media/characters/ariam/back.svg",
  26309. extra: 1103/1023,
  26310. bottom: 9/1112
  26311. }
  26312. },
  26313. dressed: {
  26314. height: math.unit(6 + 2/12, "feet"),
  26315. weight: math.unit(160, "lb"),
  26316. name: "Dressed",
  26317. image: {
  26318. source: "./media/characters/ariam/dressed.svg",
  26319. extra: 1099/1009,
  26320. bottom: 25/1124
  26321. }
  26322. },
  26323. squatting: {
  26324. height: math.unit(4.1, "feet"),
  26325. weight: math.unit(160, "lb"),
  26326. name: "Squatting",
  26327. image: {
  26328. source: "./media/characters/ariam/squatting.svg",
  26329. extra: 2617 / 2112,
  26330. bottom: 61.2 / 2681,
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(6 + 2 / 12, "feet"),
  26338. default: true
  26339. },
  26340. {
  26341. name: "Normal+",
  26342. height: math.unit(4, "meters")
  26343. },
  26344. {
  26345. name: "Macro",
  26346. height: math.unit(50, "meters")
  26347. },
  26348. {
  26349. name: "Macro+",
  26350. height: math.unit(100, "meters")
  26351. },
  26352. {
  26353. name: "Megamacro",
  26354. height: math.unit(20, "km")
  26355. },
  26356. {
  26357. name: "Caretaker",
  26358. height: math.unit(444, "megameters")
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26364. {
  26365. front: {
  26366. height: math.unit(1.67, "meters"),
  26367. weight: math.unit(140, "lb"),
  26368. name: "Front",
  26369. image: {
  26370. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26371. extra: 438 / 410,
  26372. bottom: 0.75 / 439
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "Shrunken",
  26379. height: math.unit(7.6, "cm")
  26380. },
  26381. {
  26382. name: "Human Scale",
  26383. height: math.unit(1.67, "meters")
  26384. },
  26385. {
  26386. name: "Wolxi Scale",
  26387. height: math.unit(36.7, "meters"),
  26388. default: true
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26394. {
  26395. front: {
  26396. height: math.unit(1.73, "meters"),
  26397. weight: math.unit(240, "lb"),
  26398. name: "Front",
  26399. image: {
  26400. source: "./media/characters/izue-two-mothers/front.svg",
  26401. extra: 469 / 437,
  26402. bottom: 1.24 / 470.6
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Shrunken",
  26409. height: math.unit(7.86, "cm")
  26410. },
  26411. {
  26412. name: "Human Scale",
  26413. height: math.unit(1.73, "meters")
  26414. },
  26415. {
  26416. name: "Wolxi Scale",
  26417. height: math.unit(38, "meters"),
  26418. default: true
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(1.55, "meters"),
  26427. weight: math.unit(120, "lb"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/teeku-love-shack/front.svg",
  26431. extra: 387 / 362,
  26432. bottom: 1.51 / 388
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Shrunken",
  26439. height: math.unit(7, "cm")
  26440. },
  26441. {
  26442. name: "Human Scale",
  26443. height: math.unit(1.55, "meters")
  26444. },
  26445. {
  26446. name: "Wolxi Scale",
  26447. height: math.unit(34.1, "meters"),
  26448. default: true
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26454. {
  26455. front: {
  26456. height: math.unit(1.83, "meters"),
  26457. weight: math.unit(135, "lb"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/dejma-the-red/front.svg",
  26461. extra: 480 / 458,
  26462. bottom: 1.8 / 482
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Shrunken",
  26469. height: math.unit(8.3, "cm")
  26470. },
  26471. {
  26472. name: "Human Scale",
  26473. height: math.unit(1.83, "meters")
  26474. },
  26475. {
  26476. name: "Wolxi Scale",
  26477. height: math.unit(40, "meters"),
  26478. default: true
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26484. {
  26485. front: {
  26486. height: math.unit(1.78, "meters"),
  26487. weight: math.unit(65, "kg"),
  26488. name: "Front",
  26489. image: {
  26490. source: "./media/characters/aki/front.svg",
  26491. extra: 452 / 415
  26492. }
  26493. },
  26494. frontNsfw: {
  26495. height: math.unit(1.78, "meters"),
  26496. weight: math.unit(65, "kg"),
  26497. name: "Front (NSFW)",
  26498. image: {
  26499. source: "./media/characters/aki/front-nsfw.svg",
  26500. extra: 452 / 415
  26501. }
  26502. },
  26503. back: {
  26504. height: math.unit(1.78, "meters"),
  26505. weight: math.unit(65, "kg"),
  26506. name: "Back",
  26507. image: {
  26508. source: "./media/characters/aki/back.svg",
  26509. extra: 452 / 415
  26510. }
  26511. },
  26512. rump: {
  26513. height: math.unit(2.05, "feet"),
  26514. name: "Rump",
  26515. image: {
  26516. source: "./media/characters/aki/rump.svg"
  26517. }
  26518. },
  26519. dick: {
  26520. height: math.unit(0.95, "feet"),
  26521. name: "Dick",
  26522. image: {
  26523. source: "./media/characters/aki/dick.svg"
  26524. }
  26525. },
  26526. },
  26527. [
  26528. {
  26529. name: "Micro",
  26530. height: math.unit(15, "cm")
  26531. },
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(178, "cm"),
  26535. default: true
  26536. },
  26537. {
  26538. name: "Macro",
  26539. height: math.unit(214, "m")
  26540. },
  26541. {
  26542. name: "Macro+",
  26543. height: math.unit(534, "m")
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(5 + 5 / 12, "feet"),
  26552. weight: math.unit(120, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/ari/front.svg",
  26556. extra: 1550/1471,
  26557. bottom: 39/1589
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(5 + 5 / 12, "feet")
  26565. },
  26566. {
  26567. name: "Macro",
  26568. height: math.unit(100, "feet"),
  26569. default: true
  26570. },
  26571. {
  26572. name: "Megamacro",
  26573. height: math.unit(100, "miles")
  26574. },
  26575. {
  26576. name: "Gigamacro",
  26577. height: math.unit(80000, "miles")
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26583. {
  26584. side: {
  26585. height: math.unit(9, "feet"),
  26586. weight: math.unit(400, "kg"),
  26587. name: "Side",
  26588. image: {
  26589. source: "./media/characters/bolt/side.svg",
  26590. extra: 1126 / 896,
  26591. bottom: 60 / 1187.3,
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Micro",
  26598. height: math.unit(5, "inches")
  26599. },
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(9, "feet"),
  26603. default: true
  26604. },
  26605. {
  26606. name: "Macro",
  26607. height: math.unit(700, "feet")
  26608. },
  26609. {
  26610. name: "Max Size",
  26611. height: math.unit(1.52e22, "yottameters")
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(4.3, "meters"),
  26620. weight: math.unit(3, "tons"),
  26621. name: "Front",
  26622. image: {
  26623. source: "./media/characters/draekon-sylviar/front.svg",
  26624. extra: 2072/1512,
  26625. bottom: 74/2146
  26626. }
  26627. },
  26628. back: {
  26629. height: math.unit(4.3, "meters"),
  26630. weight: math.unit(3, "tons"),
  26631. name: "Back",
  26632. image: {
  26633. source: "./media/characters/draekon-sylviar/back.svg",
  26634. extra: 1639/1483,
  26635. bottom: 41/1680
  26636. }
  26637. },
  26638. feral: {
  26639. height: math.unit(1.15, "meters"),
  26640. weight: math.unit(3, "tons"),
  26641. name: "Feral",
  26642. image: {
  26643. source: "./media/characters/draekon-sylviar/feral.svg",
  26644. extra: 1033/395,
  26645. bottom: 130/1163
  26646. }
  26647. },
  26648. maw: {
  26649. height: math.unit(1.3, "meters"),
  26650. name: "Maw",
  26651. image: {
  26652. source: "./media/characters/draekon-sylviar/maw.svg"
  26653. }
  26654. },
  26655. mawSeparated: {
  26656. height: math.unit(1.53, "meters"),
  26657. name: "Separated Maw",
  26658. image: {
  26659. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26660. }
  26661. },
  26662. tail: {
  26663. height: math.unit(1.15, "meters"),
  26664. name: "Tail",
  26665. image: {
  26666. source: "./media/characters/draekon-sylviar/tail.svg"
  26667. }
  26668. },
  26669. tailDick: {
  26670. height: math.unit(1.15, "meters"),
  26671. name: "Tail (Dick)",
  26672. image: {
  26673. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26674. }
  26675. },
  26676. tailDickSeparated: {
  26677. height: math.unit(1.19, "meters"),
  26678. name: "Tail (Separated Dick)",
  26679. image: {
  26680. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26681. }
  26682. },
  26683. slit: {
  26684. height: math.unit(1, "meters"),
  26685. name: "Slit",
  26686. image: {
  26687. source: "./media/characters/draekon-sylviar/slit.svg"
  26688. }
  26689. },
  26690. dick: {
  26691. height: math.unit(1.15, "meters"),
  26692. name: "Dick",
  26693. image: {
  26694. source: "./media/characters/draekon-sylviar/dick.svg"
  26695. }
  26696. },
  26697. dickSeparated: {
  26698. height: math.unit(1.1, "meters"),
  26699. name: "Separated Dick",
  26700. image: {
  26701. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26702. }
  26703. },
  26704. sheath: {
  26705. height: math.unit(1.15, "meters"),
  26706. name: "Sheath",
  26707. image: {
  26708. source: "./media/characters/draekon-sylviar/sheath.svg"
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Small",
  26715. height: math.unit(4.53 / 2, "meters"),
  26716. default: true
  26717. },
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(4.53, "meters"),
  26721. default: true
  26722. },
  26723. {
  26724. name: "Large",
  26725. height: math.unit(4.53 * 2, "meters"),
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(6 + 2 / 12, "feet"),
  26734. weight: math.unit(180, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/brawler/front.svg",
  26738. extra: 3301 / 3027,
  26739. bottom: 138 / 3439
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(6 + 2 / 12, "feet"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(11, "feet"),
  26756. weight: math.unit(1000, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/alex/front.svg",
  26760. bottom: 44.5 / 620
  26761. }
  26762. },
  26763. },
  26764. [
  26765. {
  26766. name: "Micro",
  26767. height: math.unit(5, "inches")
  26768. },
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(11, "feet"),
  26772. default: true
  26773. },
  26774. {
  26775. name: "Macro",
  26776. height: math.unit(9.5e9, "feet")
  26777. },
  26778. {
  26779. name: "Max Size",
  26780. height: math.unit(1.4e283, "yottameters")
  26781. },
  26782. ]
  26783. ))
  26784. characterMakers.push(() => makeCharacter(
  26785. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26786. {
  26787. female: {
  26788. height: math.unit(29.9, "m"),
  26789. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26790. name: "Female",
  26791. image: {
  26792. source: "./media/characters/zenari/female.svg",
  26793. extra: 3281.6 / 3217,
  26794. bottom: 72.2 / 3353
  26795. }
  26796. },
  26797. male: {
  26798. height: math.unit(27.7, "m"),
  26799. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26800. name: "Male",
  26801. image: {
  26802. source: "./media/characters/zenari/male.svg",
  26803. extra: 3008 / 2991,
  26804. bottom: 54.6 / 3069
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Macro",
  26811. height: math.unit(29.7, "meters"),
  26812. default: true
  26813. },
  26814. ]
  26815. ))
  26816. characterMakers.push(() => makeCharacter(
  26817. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26818. {
  26819. female: {
  26820. height: math.unit(23.8, "m"),
  26821. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26822. name: "Female",
  26823. image: {
  26824. source: "./media/characters/mactarian/female.svg",
  26825. extra: 2662 / 2569,
  26826. bottom: 73 / 2736
  26827. }
  26828. },
  26829. male: {
  26830. height: math.unit(23.8, "m"),
  26831. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26832. name: "Male",
  26833. image: {
  26834. source: "./media/characters/mactarian/male.svg",
  26835. extra: 2673 / 2600,
  26836. bottom: 76 / 2750
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Macro",
  26843. height: math.unit(23.8, "meters"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26850. {
  26851. female: {
  26852. height: math.unit(19.3, "m"),
  26853. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26854. name: "Female",
  26855. image: {
  26856. source: "./media/characters/umok/female.svg",
  26857. extra: 2186 / 2078,
  26858. bottom: 87 / 2277
  26859. }
  26860. },
  26861. male: {
  26862. height: math.unit(19.5, "m"),
  26863. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26864. name: "Male",
  26865. image: {
  26866. source: "./media/characters/umok/male.svg",
  26867. extra: 2233 / 2140,
  26868. bottom: 24.4 / 2258
  26869. }
  26870. },
  26871. },
  26872. [
  26873. {
  26874. name: "Macro",
  26875. height: math.unit(19.3, "meters"),
  26876. default: true
  26877. },
  26878. ]
  26879. ))
  26880. characterMakers.push(() => makeCharacter(
  26881. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26882. {
  26883. female: {
  26884. height: math.unit(26.15, "m"),
  26885. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26886. name: "Female",
  26887. image: {
  26888. source: "./media/characters/joraxian/female.svg",
  26889. extra: 2912 / 2824,
  26890. bottom: 36 / 2956
  26891. }
  26892. },
  26893. male: {
  26894. height: math.unit(25.4, "m"),
  26895. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26896. name: "Male",
  26897. image: {
  26898. source: "./media/characters/joraxian/male.svg",
  26899. extra: 2877 / 2721,
  26900. bottom: 82 / 2967
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Macro",
  26907. height: math.unit(26.15, "meters"),
  26908. default: true
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26914. {
  26915. female: {
  26916. height: math.unit(21.6, "m"),
  26917. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26918. name: "Female",
  26919. image: {
  26920. source: "./media/characters/sthara/female.svg",
  26921. extra: 2516 / 2347,
  26922. bottom: 21.5 / 2537
  26923. }
  26924. },
  26925. male: {
  26926. height: math.unit(24, "m"),
  26927. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26928. name: "Male",
  26929. image: {
  26930. source: "./media/characters/sthara/male.svg",
  26931. extra: 2732 / 2607,
  26932. bottom: 23 / 2732
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Macro",
  26939. height: math.unit(21.6, "meters"),
  26940. default: true
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(6 + 4 / 12, "feet"),
  26949. weight: math.unit(175, "lb"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/luka-bryzant/front.svg",
  26953. extra: 311 / 289,
  26954. bottom: 4 / 315
  26955. }
  26956. },
  26957. back: {
  26958. height: math.unit(6 + 4 / 12, "feet"),
  26959. weight: math.unit(175, "lb"),
  26960. name: "Back",
  26961. image: {
  26962. source: "./media/characters/luka-bryzant/back.svg",
  26963. extra: 311 / 289,
  26964. bottom: 3.8 / 313.7
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Micro",
  26971. height: math.unit(10, "inches")
  26972. },
  26973. {
  26974. name: "Normal",
  26975. height: math.unit(6 + 4 / 12, "feet"),
  26976. default: true
  26977. },
  26978. {
  26979. name: "Large",
  26980. height: math.unit(12, "feet")
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(5 + 7 / 12, "feet"),
  26989. weight: math.unit(185, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/aman-aquila/front.svg",
  26993. extra: 1013 / 976,
  26994. bottom: 45.6 / 1057
  26995. }
  26996. },
  26997. side: {
  26998. height: math.unit(5 + 7 / 12, "feet"),
  26999. weight: math.unit(185, "lb"),
  27000. name: "Side",
  27001. image: {
  27002. source: "./media/characters/aman-aquila/side.svg",
  27003. extra: 1054 / 1011,
  27004. bottom: 15 / 1070
  27005. }
  27006. },
  27007. back: {
  27008. height: math.unit(5 + 7 / 12, "feet"),
  27009. weight: math.unit(185, "lb"),
  27010. name: "Back",
  27011. image: {
  27012. source: "./media/characters/aman-aquila/back.svg",
  27013. extra: 1026 / 970,
  27014. bottom: 12 / 1039
  27015. }
  27016. },
  27017. head: {
  27018. height: math.unit(1.211, "feet"),
  27019. name: "Head",
  27020. image: {
  27021. source: "./media/characters/aman-aquila/head.svg",
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Minimicro",
  27028. height: math.unit(0.057, "inches")
  27029. },
  27030. {
  27031. name: "Micro",
  27032. height: math.unit(7, "inches")
  27033. },
  27034. {
  27035. name: "Mini",
  27036. height: math.unit(3 + 7 / 12, "feet")
  27037. },
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(5 + 7 / 12, "feet"),
  27041. default: true
  27042. },
  27043. {
  27044. name: "Macro",
  27045. height: math.unit(157 + 7 / 12, "feet")
  27046. },
  27047. {
  27048. name: "Megamacro",
  27049. height: math.unit(1557 + 7 / 12, "feet")
  27050. },
  27051. {
  27052. name: "Gigamacro",
  27053. height: math.unit(15557 + 7 / 12, "feet")
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27059. {
  27060. front: {
  27061. height: math.unit(3 + 2 / 12, "inches"),
  27062. weight: math.unit(0.3, "ounces"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/hiphae/front.svg",
  27066. extra: 1931 / 1683,
  27067. bottom: 24 / 1955
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(3 + 1 / 2, "inches"),
  27075. default: true
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27081. {
  27082. front: {
  27083. height: math.unit(5 + 10 / 12, "feet"),
  27084. weight: math.unit(165, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/nicky/front.svg",
  27088. extra: 3144 / 2886,
  27089. bottom: 45.6 / 3192
  27090. }
  27091. },
  27092. back: {
  27093. height: math.unit(5 + 10 / 12, "feet"),
  27094. weight: math.unit(165, "lb"),
  27095. name: "Back",
  27096. image: {
  27097. source: "./media/characters/nicky/back.svg",
  27098. extra: 3055 / 2804,
  27099. bottom: 28.4 / 3087
  27100. }
  27101. },
  27102. frontclothed: {
  27103. height: math.unit(5 + 10 / 12, "feet"),
  27104. weight: math.unit(165, "lb"),
  27105. name: "Front-clothed",
  27106. image: {
  27107. source: "./media/characters/nicky/front-clothed.svg",
  27108. extra: 3184.9 / 2926.9,
  27109. bottom: 86.5 / 3239.9
  27110. }
  27111. },
  27112. foot: {
  27113. height: math.unit(1.16, "feet"),
  27114. name: "Foot",
  27115. image: {
  27116. source: "./media/characters/nicky/foot.svg"
  27117. }
  27118. },
  27119. feet: {
  27120. height: math.unit(1.34, "feet"),
  27121. name: "Feet",
  27122. image: {
  27123. source: "./media/characters/nicky/feet.svg"
  27124. }
  27125. },
  27126. maw: {
  27127. height: math.unit(0.9, "feet"),
  27128. name: "Maw",
  27129. image: {
  27130. source: "./media/characters/nicky/maw.svg"
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(5 + 10 / 12, "feet"),
  27138. default: true
  27139. },
  27140. {
  27141. name: "Macro",
  27142. height: math.unit(60, "feet")
  27143. },
  27144. {
  27145. name: "Megamacro",
  27146. height: math.unit(1, "mile")
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27152. {
  27153. side: {
  27154. height: math.unit(10, "feet"),
  27155. weight: math.unit(600, "lb"),
  27156. name: "Side",
  27157. image: {
  27158. source: "./media/characters/blair/side.svg",
  27159. bottom: 16.6 / 475,
  27160. extra: 458 / 431
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Micro",
  27167. height: math.unit(8, "inches")
  27168. },
  27169. {
  27170. name: "Normal",
  27171. height: math.unit(10, "feet"),
  27172. default: true
  27173. },
  27174. {
  27175. name: "Macro",
  27176. height: math.unit(180, "feet")
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(5 + 4 / 12, "feet"),
  27185. weight: math.unit(125, "lb"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/fisher/front.svg",
  27189. extra: 444 / 390,
  27190. bottom: 2 / 444.8
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Micro",
  27197. height: math.unit(4, "inches")
  27198. },
  27199. {
  27200. name: "Normal",
  27201. height: math.unit(5 + 4 / 12, "feet"),
  27202. default: true
  27203. },
  27204. {
  27205. name: "Macro",
  27206. height: math.unit(100, "feet")
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(6.71, "feet"),
  27215. weight: math.unit(200, "lb"),
  27216. preyCapacity: math.unit(1000000, "people"),
  27217. name: "Front",
  27218. image: {
  27219. source: "./media/characters/gliss/front.svg",
  27220. extra: 2347 / 2231,
  27221. bottom: 113 / 2462
  27222. }
  27223. },
  27224. hammerspaceSize: {
  27225. height: math.unit(6.71 * 717, "feet"),
  27226. weight: math.unit(200, "lb"),
  27227. preyCapacity: math.unit(1000000, "people"),
  27228. name: "Hammerspace Size",
  27229. image: {
  27230. source: "./media/characters/gliss/front.svg",
  27231. extra: 2347 / 2231,
  27232. bottom: 113 / 2462
  27233. }
  27234. },
  27235. },
  27236. [
  27237. {
  27238. name: "Normal",
  27239. height: math.unit(6.71, "feet"),
  27240. default: true
  27241. },
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27246. {
  27247. side: {
  27248. height: math.unit(1.44, "m"),
  27249. weight: math.unit(80, "kg"),
  27250. name: "Side",
  27251. image: {
  27252. source: "./media/characters/dune-anderson/side.svg",
  27253. bottom: 49 / 1426
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Wolf-sized",
  27260. height: math.unit(1.44, "meters")
  27261. },
  27262. {
  27263. name: "Normal",
  27264. height: math.unit(5.05, "meters"),
  27265. default: true
  27266. },
  27267. {
  27268. name: "Big",
  27269. height: math.unit(14.4, "meters")
  27270. },
  27271. {
  27272. name: "Huge",
  27273. height: math.unit(144, "meters")
  27274. },
  27275. ]
  27276. ))
  27277. characterMakers.push(() => makeCharacter(
  27278. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27279. {
  27280. front: {
  27281. height: math.unit(7, "feet"),
  27282. weight: math.unit(425, "lb"),
  27283. name: "Front",
  27284. image: {
  27285. source: "./media/characters/hind/front.svg",
  27286. extra: 2091 / 1860,
  27287. bottom: 129 / 2220
  27288. }
  27289. },
  27290. back: {
  27291. height: math.unit(7, "feet"),
  27292. weight: math.unit(425, "lb"),
  27293. name: "Back",
  27294. image: {
  27295. source: "./media/characters/hind/back.svg",
  27296. extra: 2091 / 1860,
  27297. bottom: 24.6 / 2309
  27298. }
  27299. },
  27300. tail: {
  27301. height: math.unit(2.8, "feet"),
  27302. name: "Tail",
  27303. image: {
  27304. source: "./media/characters/hind/tail.svg"
  27305. }
  27306. },
  27307. head: {
  27308. height: math.unit(2.55, "feet"),
  27309. name: "Head",
  27310. image: {
  27311. source: "./media/characters/hind/head.svg"
  27312. }
  27313. },
  27314. },
  27315. [
  27316. {
  27317. name: "XS",
  27318. height: math.unit(0.7, "feet")
  27319. },
  27320. {
  27321. name: "Normal",
  27322. height: math.unit(7, "feet"),
  27323. default: true
  27324. },
  27325. {
  27326. name: "XL",
  27327. height: math.unit(70, "feet")
  27328. },
  27329. ]
  27330. ))
  27331. characterMakers.push(() => makeCharacter(
  27332. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27333. {
  27334. front: {
  27335. height: math.unit(2.1, "meters"),
  27336. weight: math.unit(150, "lb"),
  27337. name: "Front",
  27338. image: {
  27339. source: "./media/characters/tharquench-sizestealer/front.svg",
  27340. extra: 1605/1470,
  27341. bottom: 36/1641
  27342. }
  27343. },
  27344. frontAlt: {
  27345. height: math.unit(2.1, "meters"),
  27346. weight: math.unit(150, "lb"),
  27347. name: "Front (Alt)",
  27348. image: {
  27349. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27350. extra: 2318 / 2063,
  27351. bottom: 93.4 / 2410
  27352. }
  27353. },
  27354. },
  27355. [
  27356. {
  27357. name: "Nano",
  27358. height: math.unit(1, "mm")
  27359. },
  27360. {
  27361. name: "Micro",
  27362. height: math.unit(1, "cm")
  27363. },
  27364. {
  27365. name: "Normal",
  27366. height: math.unit(2.1, "meters"),
  27367. default: true
  27368. },
  27369. ]
  27370. ))
  27371. characterMakers.push(() => makeCharacter(
  27372. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27373. {
  27374. front: {
  27375. height: math.unit(7 + 5 / 12, "feet"),
  27376. weight: math.unit(357, "lb"),
  27377. name: "Front",
  27378. image: {
  27379. source: "./media/characters/solex-draconov/front.svg",
  27380. extra: 1993 / 1865,
  27381. bottom: 117 / 2111
  27382. }
  27383. },
  27384. },
  27385. [
  27386. {
  27387. name: "Natural Height",
  27388. height: math.unit(7 + 5 / 12, "feet"),
  27389. default: true
  27390. },
  27391. {
  27392. name: "Macro",
  27393. height: math.unit(350, "feet")
  27394. },
  27395. {
  27396. name: "Macro+",
  27397. height: math.unit(1000, "feet")
  27398. },
  27399. {
  27400. name: "Megamacro",
  27401. height: math.unit(20, "km")
  27402. },
  27403. {
  27404. name: "Megamacro+",
  27405. height: math.unit(1000, "km")
  27406. },
  27407. {
  27408. name: "Gigamacro",
  27409. height: math.unit(2.5, "Gm")
  27410. },
  27411. {
  27412. name: "Teramacro",
  27413. height: math.unit(15, "Tm")
  27414. },
  27415. {
  27416. name: "Galactic",
  27417. height: math.unit(30, "Zm")
  27418. },
  27419. {
  27420. name: "Universal",
  27421. height: math.unit(21000, "Ym")
  27422. },
  27423. {
  27424. name: "Omniversal",
  27425. height: math.unit(9.861e50, "Ym")
  27426. },
  27427. {
  27428. name: "Existential",
  27429. height: math.unit(1e300, "meters")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27435. {
  27436. side: {
  27437. height: math.unit(25, "feet"),
  27438. weight: math.unit(90000, "lb"),
  27439. name: "Side",
  27440. image: {
  27441. source: "./media/characters/mandarax/side.svg",
  27442. extra: 614 / 332,
  27443. bottom: 55 / 630
  27444. }
  27445. },
  27446. lounging: {
  27447. height: math.unit(15.4, "feet"),
  27448. weight: math.unit(90000, "lb"),
  27449. name: "Lounging",
  27450. image: {
  27451. source: "./media/characters/mandarax/lounging.svg",
  27452. extra: 817/609,
  27453. bottom: 685/1502
  27454. }
  27455. },
  27456. head: {
  27457. height: math.unit(11.4, "feet"),
  27458. name: "Head",
  27459. image: {
  27460. source: "./media/characters/mandarax/head.svg"
  27461. }
  27462. },
  27463. belly: {
  27464. height: math.unit(33, "feet"),
  27465. name: "Belly",
  27466. preyCapacity: math.unit(500, "people"),
  27467. image: {
  27468. source: "./media/characters/mandarax/belly.svg"
  27469. }
  27470. },
  27471. dick: {
  27472. height: math.unit(8.46, "feet"),
  27473. name: "Dick",
  27474. image: {
  27475. source: "./media/characters/mandarax/dick.svg"
  27476. }
  27477. },
  27478. top: {
  27479. height: math.unit(28, "meters"),
  27480. name: "Top",
  27481. image: {
  27482. source: "./media/characters/mandarax/top.svg"
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(25, "feet"),
  27490. default: true
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27496. {
  27497. front: {
  27498. height: math.unit(5, "feet"),
  27499. weight: math.unit(90, "lb"),
  27500. name: "Front",
  27501. image: {
  27502. source: "./media/characters/pixil/front.svg",
  27503. extra: 2000 / 1618,
  27504. bottom: 12.3 / 2011
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(5, "feet"),
  27512. default: true
  27513. },
  27514. {
  27515. name: "Megamacro",
  27516. height: math.unit(10, "miles"),
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(7 + 2 / 12, "feet"),
  27525. weight: math.unit(200, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/angel/front.svg",
  27529. extra: 1830 / 1737,
  27530. bottom: 22.6 / 1854,
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(7 + 2 / 12, "feet"),
  27538. default: true
  27539. },
  27540. {
  27541. name: "Macro",
  27542. height: math.unit(1000, "feet")
  27543. },
  27544. {
  27545. name: "Megamacro",
  27546. height: math.unit(2, "miles")
  27547. },
  27548. {
  27549. name: "Gigamacro",
  27550. height: math.unit(20, "earths")
  27551. },
  27552. ]
  27553. ))
  27554. characterMakers.push(() => makeCharacter(
  27555. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27556. {
  27557. front: {
  27558. height: math.unit(5, "feet"),
  27559. weight: math.unit(180, "lb"),
  27560. name: "Front",
  27561. image: {
  27562. source: "./media/characters/mekana/front.svg",
  27563. extra: 1671 / 1605,
  27564. bottom: 3.5 / 1691
  27565. }
  27566. },
  27567. side: {
  27568. height: math.unit(5, "feet"),
  27569. weight: math.unit(180, "lb"),
  27570. name: "Side",
  27571. image: {
  27572. source: "./media/characters/mekana/side.svg",
  27573. extra: 1671 / 1605,
  27574. bottom: 3.5 / 1691
  27575. }
  27576. },
  27577. back: {
  27578. height: math.unit(5, "feet"),
  27579. weight: math.unit(180, "lb"),
  27580. name: "Back",
  27581. image: {
  27582. source: "./media/characters/mekana/back.svg",
  27583. extra: 1671 / 1605,
  27584. bottom: 3.5 / 1691
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(5, "feet"),
  27592. default: true
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(4 + 6 / 12, "feet"),
  27601. weight: math.unit(80, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/pixie/front.svg",
  27605. extra: 1924 / 1825,
  27606. bottom: 22.4 / 1946
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(4 + 6 / 12, "feet"),
  27614. default: true
  27615. },
  27616. {
  27617. name: "Macro",
  27618. height: math.unit(40, "feet")
  27619. },
  27620. ]
  27621. ))
  27622. characterMakers.push(() => makeCharacter(
  27623. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27624. {
  27625. front: {
  27626. height: math.unit(2.1, "meters"),
  27627. weight: math.unit(200, "lb"),
  27628. name: "Front",
  27629. image: {
  27630. source: "./media/characters/the-lascivious/front.svg",
  27631. extra: 1 / 0.893,
  27632. bottom: 3.5 / 573.7
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Human Scale",
  27639. height: math.unit(2.1, "meters")
  27640. },
  27641. {
  27642. name: "Wolxi Scale",
  27643. height: math.unit(46.2, "m"),
  27644. default: true
  27645. },
  27646. {
  27647. name: "Boinker of Buildings",
  27648. height: math.unit(10, "km")
  27649. },
  27650. {
  27651. name: "Shagger of Skyscrapers",
  27652. height: math.unit(40, "km")
  27653. },
  27654. {
  27655. name: "Banger of Boroughs",
  27656. height: math.unit(4000, "km")
  27657. },
  27658. {
  27659. name: "Screwer of States",
  27660. height: math.unit(100000, "km")
  27661. },
  27662. {
  27663. name: "Pounder of Planets",
  27664. height: math.unit(2000000, "km")
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(6, "feet"),
  27673. weight: math.unit(150, "lb"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/aj/front.svg",
  27677. extra: 2039 / 1562,
  27678. bottom: 40 / 2079
  27679. }
  27680. },
  27681. },
  27682. [
  27683. {
  27684. name: "Normal",
  27685. height: math.unit(11 + 6 / 12, "feet"),
  27686. default: true
  27687. },
  27688. {
  27689. name: "Megamacro",
  27690. height: math.unit(60, "megameters")
  27691. },
  27692. ]
  27693. ))
  27694. characterMakers.push(() => makeCharacter(
  27695. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27696. {
  27697. side: {
  27698. height: math.unit(31 + 8 / 12, "feet"),
  27699. weight: math.unit(75000, "kg"),
  27700. name: "Side",
  27701. image: {
  27702. source: "./media/characters/koros/side.svg",
  27703. extra: 1442 / 1297,
  27704. bottom: 122.7 / 1562
  27705. }
  27706. },
  27707. dicksKingsCrown: {
  27708. height: math.unit(6, "feet"),
  27709. name: "Dicks (King's Crown)",
  27710. image: {
  27711. source: "./media/characters/koros/dicks-kings-crown.svg"
  27712. }
  27713. },
  27714. dicksTailSet: {
  27715. height: math.unit(3, "feet"),
  27716. name: "Dicks (Tail Set)",
  27717. image: {
  27718. source: "./media/characters/koros/dicks-tail-set.svg"
  27719. }
  27720. },
  27721. dickCumming: {
  27722. height: math.unit(7.98, "feet"),
  27723. name: "Dick (Cumming)",
  27724. image: {
  27725. source: "./media/characters/koros/dick-cumming.svg"
  27726. }
  27727. },
  27728. dicksBack: {
  27729. height: math.unit(5.9, "feet"),
  27730. name: "Dicks (Back)",
  27731. image: {
  27732. source: "./media/characters/koros/dicks-back.svg"
  27733. }
  27734. },
  27735. dicksFront: {
  27736. height: math.unit(3.72, "feet"),
  27737. name: "Dicks (Front)",
  27738. image: {
  27739. source: "./media/characters/koros/dicks-front.svg"
  27740. }
  27741. },
  27742. dicksPeeking: {
  27743. height: math.unit(3.0, "feet"),
  27744. name: "Dicks (Peeking)",
  27745. image: {
  27746. source: "./media/characters/koros/dicks-peeking.svg"
  27747. }
  27748. },
  27749. eye: {
  27750. height: math.unit(1.7, "feet"),
  27751. name: "Eye",
  27752. image: {
  27753. source: "./media/characters/koros/eye.svg"
  27754. }
  27755. },
  27756. headFront: {
  27757. height: math.unit(11.69, "feet"),
  27758. name: "Head (Front)",
  27759. image: {
  27760. source: "./media/characters/koros/head-front.svg"
  27761. }
  27762. },
  27763. headSide: {
  27764. height: math.unit(14, "feet"),
  27765. name: "Head (Side)",
  27766. image: {
  27767. source: "./media/characters/koros/head-side.svg"
  27768. }
  27769. },
  27770. leg: {
  27771. height: math.unit(17, "feet"),
  27772. name: "Leg",
  27773. image: {
  27774. source: "./media/characters/koros/leg.svg"
  27775. }
  27776. },
  27777. mawSide: {
  27778. height: math.unit(12.8, "feet"),
  27779. name: "Maw (Side)",
  27780. image: {
  27781. source: "./media/characters/koros/maw-side.svg"
  27782. }
  27783. },
  27784. mawSpitting: {
  27785. height: math.unit(17, "feet"),
  27786. name: "Maw (Spitting)",
  27787. image: {
  27788. source: "./media/characters/koros/maw-spitting.svg"
  27789. }
  27790. },
  27791. slit: {
  27792. height: math.unit(2.8, "feet"),
  27793. name: "Slit",
  27794. image: {
  27795. source: "./media/characters/koros/slit.svg"
  27796. }
  27797. },
  27798. stomach: {
  27799. height: math.unit(6.8, "feet"),
  27800. preyCapacity: math.unit(20, "people"),
  27801. name: "Stomach",
  27802. image: {
  27803. source: "./media/characters/koros/stomach.svg"
  27804. }
  27805. },
  27806. wingspanBottom: {
  27807. height: math.unit(114, "feet"),
  27808. name: "Wingspan (Bottom)",
  27809. image: {
  27810. source: "./media/characters/koros/wingspan-bottom.svg"
  27811. }
  27812. },
  27813. wingspanTop: {
  27814. height: math.unit(104, "feet"),
  27815. name: "Wingspan (Top)",
  27816. image: {
  27817. source: "./media/characters/koros/wingspan-top.svg"
  27818. }
  27819. },
  27820. },
  27821. [
  27822. {
  27823. name: "Normal",
  27824. height: math.unit(31 + 8 / 12, "feet"),
  27825. default: true
  27826. },
  27827. ]
  27828. ))
  27829. characterMakers.push(() => makeCharacter(
  27830. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27831. {
  27832. front: {
  27833. height: math.unit(18 + 5 / 12, "feet"),
  27834. weight: math.unit(3750, "kg"),
  27835. name: "Front",
  27836. image: {
  27837. source: "./media/characters/vexx/front.svg",
  27838. extra: 426 / 396,
  27839. bottom: 31.5 / 458
  27840. }
  27841. },
  27842. maw: {
  27843. height: math.unit(6, "feet"),
  27844. name: "Maw",
  27845. image: {
  27846. source: "./media/characters/vexx/maw.svg"
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(18 + 5 / 12, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(17 + 6 / 12, "feet"),
  27863. weight: math.unit(150, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/baadra/front.svg",
  27867. extra: 1694/1553,
  27868. bottom: 179/1873
  27869. }
  27870. },
  27871. frontAlt: {
  27872. height: math.unit(17 + 6 / 12, "feet"),
  27873. weight: math.unit(150, "lb"),
  27874. name: "Front (Alt)",
  27875. image: {
  27876. source: "./media/characters/baadra/front-alt.svg",
  27877. extra: 3137 / 2890,
  27878. bottom: 168.4 / 3305
  27879. }
  27880. },
  27881. back: {
  27882. height: math.unit(17 + 6 / 12, "feet"),
  27883. weight: math.unit(150, "lb"),
  27884. name: "Back",
  27885. image: {
  27886. source: "./media/characters/baadra/back.svg",
  27887. extra: 3142 / 2890,
  27888. bottom: 220 / 3371
  27889. }
  27890. },
  27891. head: {
  27892. height: math.unit(5.45, "feet"),
  27893. name: "Head",
  27894. image: {
  27895. source: "./media/characters/baadra/head.svg"
  27896. }
  27897. },
  27898. headAngry: {
  27899. height: math.unit(4.95, "feet"),
  27900. name: "Head (Angry)",
  27901. image: {
  27902. source: "./media/characters/baadra/head-angry.svg"
  27903. }
  27904. },
  27905. headOpen: {
  27906. height: math.unit(6, "feet"),
  27907. name: "Head (Open)",
  27908. image: {
  27909. source: "./media/characters/baadra/head-open.svg"
  27910. }
  27911. },
  27912. },
  27913. [
  27914. {
  27915. name: "Normal",
  27916. height: math.unit(17 + 6 / 12, "feet"),
  27917. default: true
  27918. },
  27919. ]
  27920. ))
  27921. characterMakers.push(() => makeCharacter(
  27922. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27923. {
  27924. front: {
  27925. height: math.unit(7 + 3 / 12, "feet"),
  27926. weight: math.unit(180, "lb"),
  27927. name: "Front",
  27928. image: {
  27929. source: "./media/characters/juri/front.svg",
  27930. extra: 1401 / 1237,
  27931. bottom: 18.5 / 1418
  27932. }
  27933. },
  27934. side: {
  27935. height: math.unit(7 + 3 / 12, "feet"),
  27936. weight: math.unit(180, "lb"),
  27937. name: "Side",
  27938. image: {
  27939. source: "./media/characters/juri/side.svg",
  27940. extra: 1424 / 1242,
  27941. bottom: 18.5 / 1447
  27942. }
  27943. },
  27944. sitting: {
  27945. height: math.unit(6, "feet"),
  27946. weight: math.unit(180, "lb"),
  27947. name: "Sitting",
  27948. image: {
  27949. source: "./media/characters/juri/sitting.svg",
  27950. extra: 1270 / 1143,
  27951. bottom: 100 / 1343
  27952. }
  27953. },
  27954. back: {
  27955. height: math.unit(7 + 3 / 12, "feet"),
  27956. weight: math.unit(180, "lb"),
  27957. name: "Back",
  27958. image: {
  27959. source: "./media/characters/juri/back.svg",
  27960. extra: 1377 / 1240,
  27961. bottom: 23.7 / 1405
  27962. }
  27963. },
  27964. maw: {
  27965. height: math.unit(2.8, "feet"),
  27966. name: "Maw",
  27967. image: {
  27968. source: "./media/characters/juri/maw.svg"
  27969. }
  27970. },
  27971. stomach: {
  27972. height: math.unit(0.89, "feet"),
  27973. preyCapacity: math.unit(4, "liters"),
  27974. name: "Stomach",
  27975. image: {
  27976. source: "./media/characters/juri/stomach.svg"
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(7 + 3 / 12, "feet"),
  27984. default: true
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27990. {
  27991. fox: {
  27992. height: math.unit(5 + 6 / 12, "feet"),
  27993. weight: math.unit(140, "lb"),
  27994. name: "Fox",
  27995. image: {
  27996. source: "./media/characters/maxene-sita/fox.svg",
  27997. extra: 146 / 138,
  27998. bottom: 2.1 / 148.19
  27999. }
  28000. },
  28001. foxLaying: {
  28002. height: math.unit(1.70, "feet"),
  28003. weight: math.unit(140, "lb"),
  28004. name: "Fox (Laying)",
  28005. image: {
  28006. source: "./media/characters/maxene-sita/fox-laying.svg",
  28007. extra: 910 / 572,
  28008. bottom: 71 / 981
  28009. }
  28010. },
  28011. kitsune: {
  28012. height: math.unit(10, "feet"),
  28013. weight: math.unit(800, "lb"),
  28014. name: "Kitsune",
  28015. image: {
  28016. source: "./media/characters/maxene-sita/kitsune.svg",
  28017. extra: 185 / 176,
  28018. bottom: 4.7 / 189.9
  28019. }
  28020. },
  28021. hellhound: {
  28022. height: math.unit(10, "feet"),
  28023. weight: math.unit(700, "lb"),
  28024. name: "Hellhound",
  28025. image: {
  28026. source: "./media/characters/maxene-sita/hellhound.svg",
  28027. extra: 1600 / 1545,
  28028. bottom: 81 / 1681
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(5 + 6 / 12, "feet"),
  28036. default: true
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28042. {
  28043. front: {
  28044. height: math.unit(3 + 4 / 12, "feet"),
  28045. weight: math.unit(70, "lb"),
  28046. name: "Front",
  28047. image: {
  28048. source: "./media/characters/maia/front.svg",
  28049. extra: 227 / 219.5,
  28050. bottom: 40 / 267
  28051. }
  28052. },
  28053. back: {
  28054. height: math.unit(3 + 4 / 12, "feet"),
  28055. weight: math.unit(70, "lb"),
  28056. name: "Back",
  28057. image: {
  28058. source: "./media/characters/maia/back.svg",
  28059. extra: 237 / 225
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(3 + 4 / 12, "feet"),
  28067. default: true
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28073. {
  28074. front: {
  28075. height: math.unit(5 + 10 / 12, "feet"),
  28076. weight: math.unit(197, "lb"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/jabaro/front.svg",
  28080. extra: 225 / 216,
  28081. bottom: 5.06 / 230
  28082. }
  28083. },
  28084. back: {
  28085. height: math.unit(5 + 10 / 12, "feet"),
  28086. weight: math.unit(197, "lb"),
  28087. name: "Back",
  28088. image: {
  28089. source: "./media/characters/jabaro/back.svg",
  28090. extra: 225 / 219,
  28091. bottom: 1.9 / 227
  28092. }
  28093. },
  28094. },
  28095. [
  28096. {
  28097. name: "Normal",
  28098. height: math.unit(5 + 10 / 12, "feet"),
  28099. default: true
  28100. },
  28101. ]
  28102. ))
  28103. characterMakers.push(() => makeCharacter(
  28104. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28105. {
  28106. front: {
  28107. height: math.unit(5 + 8 / 12, "feet"),
  28108. weight: math.unit(139, "lb"),
  28109. name: "Front",
  28110. image: {
  28111. source: "./media/characters/risa/front.svg",
  28112. extra: 270 / 260,
  28113. bottom: 11.2 / 282
  28114. }
  28115. },
  28116. back: {
  28117. height: math.unit(5 + 8 / 12, "feet"),
  28118. weight: math.unit(139, "lb"),
  28119. name: "Back",
  28120. image: {
  28121. source: "./media/characters/risa/back.svg",
  28122. extra: 264 / 255,
  28123. bottom: 4 / 268
  28124. }
  28125. },
  28126. },
  28127. [
  28128. {
  28129. name: "Normal",
  28130. height: math.unit(5 + 8 / 12, "feet"),
  28131. default: true
  28132. },
  28133. ]
  28134. ))
  28135. characterMakers.push(() => makeCharacter(
  28136. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28137. {
  28138. front: {
  28139. height: math.unit(2 + 11 / 12, "feet"),
  28140. weight: math.unit(30, "lb"),
  28141. name: "Front",
  28142. image: {
  28143. source: "./media/characters/weatley/front.svg",
  28144. bottom: 10.7 / 414,
  28145. extra: 403.5 / 362
  28146. }
  28147. },
  28148. back: {
  28149. height: math.unit(2 + 11 / 12, "feet"),
  28150. weight: math.unit(30, "lb"),
  28151. name: "Back",
  28152. image: {
  28153. source: "./media/characters/weatley/back.svg",
  28154. bottom: 10.7 / 414,
  28155. extra: 403.5 / 362
  28156. }
  28157. },
  28158. },
  28159. [
  28160. {
  28161. name: "Normal",
  28162. height: math.unit(2 + 11 / 12, "feet"),
  28163. default: true
  28164. },
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28169. {
  28170. front: {
  28171. height: math.unit(5 + 2 / 12, "feet"),
  28172. weight: math.unit(50, "kg"),
  28173. name: "Front",
  28174. image: {
  28175. source: "./media/characters/mercury-crescent/front.svg",
  28176. extra: 1088 / 1033,
  28177. bottom: 18.9 / 1109
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(5 + 2 / 12, "feet"),
  28185. default: true
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28191. {
  28192. front: {
  28193. height: math.unit(2, "feet"),
  28194. weight: math.unit(15, "kg"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/diamond-jones/front.svg",
  28198. extra: 727/723,
  28199. bottom: 46/773
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(2, "feet"),
  28207. default: true
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(3, "feet"),
  28216. weight: math.unit(30, "kg"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/sweet-bit/front.svg",
  28220. extra: 675 / 567,
  28221. bottom: 27.7 / 703
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Normal",
  28228. height: math.unit(3, "feet"),
  28229. default: true
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28235. {
  28236. side: {
  28237. height: math.unit(9.178, "feet"),
  28238. weight: math.unit(500, "lb"),
  28239. name: "Side",
  28240. image: {
  28241. source: "./media/characters/umbrazen/side.svg",
  28242. extra: 1730 / 1473,
  28243. bottom: 34.6 / 1765
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(9.178, "feet"),
  28251. default: true
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(10, "feet"),
  28260. weight: math.unit(750, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/arlist/front.svg",
  28264. extra: 961 / 778,
  28265. bottom: 6.2 / 986
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(10, "feet"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(5 + 1 / 12, "feet"),
  28282. weight: math.unit(110, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/aradel/front.svg",
  28286. extra: 324 / 303,
  28287. bottom: 3.6 / 329.4
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(5 + 1 / 12, "feet"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28301. {
  28302. dressed: {
  28303. height: math.unit(3 + 8 / 12, "feet"),
  28304. weight: math.unit(50, "lb"),
  28305. name: "Dressed",
  28306. image: {
  28307. source: "./media/characters/serryn/dressed.svg",
  28308. extra: 1792 / 1656,
  28309. bottom: 43.5 / 1840
  28310. }
  28311. },
  28312. nude: {
  28313. height: math.unit(3 + 8 / 12, "feet"),
  28314. weight: math.unit(50, "lb"),
  28315. name: "Nude",
  28316. image: {
  28317. source: "./media/characters/serryn/nude.svg",
  28318. extra: 1792 / 1656,
  28319. bottom: 43.5 / 1840
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Normal",
  28326. height: math.unit(3 + 8 / 12, "feet"),
  28327. default: true
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(7 + 10 / 12, "feet"),
  28336. weight: math.unit(255, "lb"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/xavier-thyme/front.svg",
  28340. extra: 3733 / 3642,
  28341. bottom: 131 / 3869
  28342. }
  28343. },
  28344. frontRaven: {
  28345. height: math.unit(7 + 10 / 12, "feet"),
  28346. weight: math.unit(255, "lb"),
  28347. name: "Front (Raven)",
  28348. image: {
  28349. source: "./media/characters/xavier-thyme/front-raven.svg",
  28350. extra: 4385 / 3642,
  28351. bottom: 131 / 4517
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Normal",
  28358. height: math.unit(7 + 10 / 12, "feet"),
  28359. default: true
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(1.6, "m"),
  28368. weight: math.unit(50, "kg"),
  28369. name: "Front",
  28370. image: {
  28371. source: "./media/characters/kiki/front.svg",
  28372. extra: 4682 / 3610,
  28373. bottom: 115 / 4777
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Normal",
  28380. height: math.unit(1.6, "meters"),
  28381. default: true
  28382. },
  28383. ]
  28384. ))
  28385. characterMakers.push(() => makeCharacter(
  28386. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28387. {
  28388. front: {
  28389. height: math.unit(50, "m"),
  28390. weight: math.unit(500, "tonnes"),
  28391. name: "Front",
  28392. image: {
  28393. source: "./media/characters/ryoko/front.svg",
  28394. extra: 4632 / 3926,
  28395. bottom: 193 / 4823
  28396. }
  28397. },
  28398. },
  28399. [
  28400. {
  28401. name: "Normal",
  28402. height: math.unit(50, "meters"),
  28403. default: true
  28404. },
  28405. ]
  28406. ))
  28407. characterMakers.push(() => makeCharacter(
  28408. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28409. {
  28410. front: {
  28411. height: math.unit(30, "m"),
  28412. weight: math.unit(22, "tonnes"),
  28413. name: "Front",
  28414. image: {
  28415. source: "./media/characters/elio/front.svg",
  28416. extra: 4582 / 3720,
  28417. bottom: 236 / 4828
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(30, "meters"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(6 + 3 / 12, "feet"),
  28434. weight: math.unit(120, "lb"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/azura/front.svg",
  28438. extra: 1149 / 1135,
  28439. bottom: 45 / 1194
  28440. }
  28441. },
  28442. frontClothed: {
  28443. height: math.unit(6 + 3 / 12, "feet"),
  28444. weight: math.unit(120, "lb"),
  28445. name: "Front (Clothed)",
  28446. image: {
  28447. source: "./media/characters/azura/front-clothed.svg",
  28448. extra: 1149 / 1135,
  28449. bottom: 45 / 1194
  28450. }
  28451. },
  28452. },
  28453. [
  28454. {
  28455. name: "Normal",
  28456. height: math.unit(6 + 3 / 12, "feet"),
  28457. default: true
  28458. },
  28459. {
  28460. name: "Macro",
  28461. height: math.unit(20 + 6 / 12, "feet")
  28462. },
  28463. {
  28464. name: "Megamacro",
  28465. height: math.unit(12, "miles")
  28466. },
  28467. {
  28468. name: "Gigamacro",
  28469. height: math.unit(10000, "miles")
  28470. },
  28471. {
  28472. name: "Teramacro",
  28473. height: math.unit(900000, "miles")
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(12, "feet"),
  28482. weight: math.unit(1, "ton"),
  28483. capacity: math.unit(660000, "gallons"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/zeus/front.svg",
  28487. extra: 5005 / 4717,
  28488. bottom: 363 / 5388
  28489. }
  28490. },
  28491. },
  28492. [
  28493. {
  28494. name: "Normal",
  28495. height: math.unit(12, "feet")
  28496. },
  28497. {
  28498. name: "Preferred Size",
  28499. height: math.unit(0.5, "miles"),
  28500. default: true
  28501. },
  28502. {
  28503. name: "Giga Horse",
  28504. height: math.unit(300, "miles")
  28505. },
  28506. {
  28507. name: "Riding Planets",
  28508. height: math.unit(30, "megameters")
  28509. },
  28510. {
  28511. name: "Cosmic Giant",
  28512. height: math.unit(3, "zettameters")
  28513. },
  28514. {
  28515. name: "Breeding God",
  28516. height: math.unit(9.92e22, "yottameters")
  28517. },
  28518. ]
  28519. ))
  28520. characterMakers.push(() => makeCharacter(
  28521. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28522. {
  28523. side: {
  28524. height: math.unit(9, "feet"),
  28525. weight: math.unit(1500, "kg"),
  28526. name: "Side",
  28527. image: {
  28528. source: "./media/characters/fang/side.svg",
  28529. extra: 924 / 866,
  28530. bottom: 47.5 / 972.3
  28531. }
  28532. },
  28533. },
  28534. [
  28535. {
  28536. name: "Normal",
  28537. height: math.unit(9, "feet"),
  28538. default: true
  28539. },
  28540. {
  28541. name: "Macro",
  28542. height: math.unit(75 + 6 / 12, "feet")
  28543. },
  28544. {
  28545. name: "Teramacro",
  28546. height: math.unit(50000, "miles")
  28547. },
  28548. ]
  28549. ))
  28550. characterMakers.push(() => makeCharacter(
  28551. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28552. {
  28553. front: {
  28554. height: math.unit(10, "feet"),
  28555. weight: math.unit(2, "tons"),
  28556. name: "Front",
  28557. image: {
  28558. source: "./media/characters/rekhit/front.svg",
  28559. extra: 2796 / 2590,
  28560. bottom: 225 / 3022
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Normal",
  28567. height: math.unit(10, "feet"),
  28568. default: true
  28569. },
  28570. {
  28571. name: "Macro",
  28572. height: math.unit(500, "feet")
  28573. },
  28574. ]
  28575. ))
  28576. characterMakers.push(() => makeCharacter(
  28577. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28578. {
  28579. front: {
  28580. height: math.unit(7 + 6.451 / 12, "feet"),
  28581. weight: math.unit(310, "lb"),
  28582. name: "Front",
  28583. image: {
  28584. source: "./media/characters/dahlia-verrick/front.svg",
  28585. extra: 1488 / 1365,
  28586. bottom: 6.2 / 1495
  28587. }
  28588. },
  28589. back: {
  28590. height: math.unit(7 + 6.451 / 12, "feet"),
  28591. weight: math.unit(310, "lb"),
  28592. name: "Back",
  28593. image: {
  28594. source: "./media/characters/dahlia-verrick/back.svg",
  28595. extra: 1472 / 1351,
  28596. bottom: 5.28 / 1477
  28597. }
  28598. },
  28599. frontBusiness: {
  28600. height: math.unit(7 + 6.451 / 12, "feet"),
  28601. weight: math.unit(200, "lb"),
  28602. name: "Front (Business)",
  28603. image: {
  28604. source: "./media/characters/dahlia-verrick/front-business.svg",
  28605. extra: 1478 / 1381,
  28606. bottom: 5.5 / 1484
  28607. }
  28608. },
  28609. frontCasual: {
  28610. height: math.unit(7 + 6.451 / 12, "feet"),
  28611. weight: math.unit(200, "lb"),
  28612. name: "Front (Casual)",
  28613. image: {
  28614. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28615. extra: 1478 / 1381,
  28616. bottom: 5.5 / 1484
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Travel-Sized",
  28623. height: math.unit(7.45, "inches")
  28624. },
  28625. {
  28626. name: "Normal",
  28627. height: math.unit(7 + 6.451 / 12, "feet"),
  28628. default: true
  28629. },
  28630. {
  28631. name: "Hitting the Town",
  28632. height: math.unit(37 + 8 / 12, "feet")
  28633. },
  28634. {
  28635. name: "Stomp in the Suburbs",
  28636. height: math.unit(964 + 9.728 / 12, "feet")
  28637. },
  28638. {
  28639. name: "Sit on the City",
  28640. height: math.unit(61747 + 10.592 / 12, "feet")
  28641. },
  28642. {
  28643. name: "Glomp the Globe",
  28644. height: math.unit(252919327 + 4.832 / 12, "feet")
  28645. },
  28646. ]
  28647. ))
  28648. characterMakers.push(() => makeCharacter(
  28649. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28650. {
  28651. front: {
  28652. height: math.unit(6 + 4 / 12, "feet"),
  28653. weight: math.unit(320, "lb"),
  28654. name: "Front",
  28655. image: {
  28656. source: "./media/characters/balina-mahigan/front.svg",
  28657. extra: 447 / 428,
  28658. bottom: 18 / 466
  28659. }
  28660. },
  28661. back: {
  28662. height: math.unit(6 + 4 / 12, "feet"),
  28663. weight: math.unit(320, "lb"),
  28664. name: "Back",
  28665. image: {
  28666. source: "./media/characters/balina-mahigan/back.svg",
  28667. extra: 445 / 428,
  28668. bottom: 4.07 / 448
  28669. }
  28670. },
  28671. arm: {
  28672. height: math.unit(1.88, "feet"),
  28673. name: "Arm",
  28674. image: {
  28675. source: "./media/characters/balina-mahigan/arm.svg"
  28676. }
  28677. },
  28678. backPort: {
  28679. height: math.unit(0.685, "feet"),
  28680. name: "Back Port",
  28681. image: {
  28682. source: "./media/characters/balina-mahigan/back-port.svg"
  28683. }
  28684. },
  28685. hoofpaw: {
  28686. height: math.unit(1.41, "feet"),
  28687. name: "Hoofpaw",
  28688. image: {
  28689. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28690. }
  28691. },
  28692. leftHandBack: {
  28693. height: math.unit(0.938, "feet"),
  28694. name: "Left Hand (Back)",
  28695. image: {
  28696. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28697. }
  28698. },
  28699. leftHandFront: {
  28700. height: math.unit(0.938, "feet"),
  28701. name: "Left Hand (Front)",
  28702. image: {
  28703. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28704. }
  28705. },
  28706. rightHandBack: {
  28707. height: math.unit(0.95, "feet"),
  28708. name: "Right Hand (Back)",
  28709. image: {
  28710. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28711. }
  28712. },
  28713. rightHandFront: {
  28714. height: math.unit(0.95, "feet"),
  28715. name: "Right Hand (Front)",
  28716. image: {
  28717. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(6 + 4 / 12, "feet"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(6, "feet"),
  28734. weight: math.unit(320, "lb"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/balina-mejeri/front.svg",
  28738. extra: 517 / 488,
  28739. bottom: 44.2 / 561
  28740. }
  28741. },
  28742. },
  28743. [
  28744. {
  28745. name: "Normal",
  28746. height: math.unit(6 + 4 / 12, "feet")
  28747. },
  28748. {
  28749. name: "Business",
  28750. height: math.unit(155, "feet"),
  28751. default: true
  28752. },
  28753. ]
  28754. ))
  28755. characterMakers.push(() => makeCharacter(
  28756. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28757. {
  28758. kneeling: {
  28759. height: math.unit(6 + 4 / 12, "feet"),
  28760. weight: math.unit(300 * 20, "lb"),
  28761. name: "Kneeling",
  28762. image: {
  28763. source: "./media/characters/balbarian/kneeling.svg",
  28764. extra: 922 / 862,
  28765. bottom: 42.4 / 965
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(6 + 4 / 12, "feet")
  28773. },
  28774. {
  28775. name: "Treasured",
  28776. height: math.unit(18 + 9 / 12, "feet"),
  28777. default: true
  28778. },
  28779. {
  28780. name: "Macro",
  28781. height: math.unit(900, "feet")
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(6 + 4 / 12, "feet"),
  28790. weight: math.unit(325, "lb"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/balina-amarini/front.svg",
  28794. extra: 415 / 403,
  28795. bottom: 19 / 433.4
  28796. }
  28797. },
  28798. back: {
  28799. height: math.unit(6 + 4 / 12, "feet"),
  28800. weight: math.unit(325, "lb"),
  28801. name: "Back",
  28802. image: {
  28803. source: "./media/characters/balina-amarini/back.svg",
  28804. extra: 415 / 403,
  28805. bottom: 13.5 / 432
  28806. }
  28807. },
  28808. overdrive: {
  28809. height: math.unit(6 + 4 / 12, "feet"),
  28810. weight: math.unit(400, "lb"),
  28811. name: "Overdrive",
  28812. image: {
  28813. source: "./media/characters/balina-amarini/overdrive.svg",
  28814. extra: 269 / 259,
  28815. bottom: 12 / 282
  28816. }
  28817. },
  28818. },
  28819. [
  28820. {
  28821. name: "Boom",
  28822. height: math.unit(9 + 10 / 12, "feet"),
  28823. default: true
  28824. },
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(280, "feet")
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28833. {
  28834. goddess: {
  28835. height: math.unit(600, "feet"),
  28836. weight: math.unit(2000000, "tons"),
  28837. name: "Goddess",
  28838. image: {
  28839. source: "./media/characters/lady-kubwa/goddess.svg",
  28840. extra: 1240.5 / 1223,
  28841. bottom: 22 / 1263
  28842. }
  28843. },
  28844. goddesser: {
  28845. height: math.unit(900, "feet"),
  28846. weight: math.unit(20000000, "lb"),
  28847. name: "Goddess-er",
  28848. image: {
  28849. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28850. extra: 899 / 888,
  28851. bottom: 12.6 / 912
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Macro",
  28858. height: math.unit(600, "feet"),
  28859. default: true
  28860. },
  28861. {
  28862. name: "Megamacro",
  28863. height: math.unit(250, "miles")
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(7 + 7 / 12, "feet"),
  28872. weight: math.unit(250, "lb"),
  28873. name: "Front",
  28874. image: {
  28875. source: "./media/characters/tala-grovehorn/front.svg",
  28876. extra: 2636 / 2525,
  28877. bottom: 147 / 2781
  28878. }
  28879. },
  28880. back: {
  28881. height: math.unit(7 + 7 / 12, "feet"),
  28882. weight: math.unit(250, "lb"),
  28883. name: "Back",
  28884. image: {
  28885. source: "./media/characters/tala-grovehorn/back.svg",
  28886. extra: 2635 / 2539,
  28887. bottom: 100 / 2732.8
  28888. }
  28889. },
  28890. mouth: {
  28891. height: math.unit(1.15, "feet"),
  28892. name: "Mouth",
  28893. image: {
  28894. source: "./media/characters/tala-grovehorn/mouth.svg"
  28895. }
  28896. },
  28897. dick: {
  28898. height: math.unit(2.36, "feet"),
  28899. name: "Dick",
  28900. image: {
  28901. source: "./media/characters/tala-grovehorn/dick.svg"
  28902. }
  28903. },
  28904. slit: {
  28905. height: math.unit(0.61, "feet"),
  28906. name: "Slit",
  28907. image: {
  28908. source: "./media/characters/tala-grovehorn/slit.svg"
  28909. }
  28910. },
  28911. },
  28912. [
  28913. ]
  28914. ))
  28915. characterMakers.push(() => makeCharacter(
  28916. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28917. {
  28918. front: {
  28919. height: math.unit(7 + 7 / 12, "feet"),
  28920. weight: math.unit(225, "lb"),
  28921. name: "Front",
  28922. image: {
  28923. source: "./media/characters/epona/front.svg",
  28924. extra: 2445 / 2290,
  28925. bottom: 251 / 2696
  28926. }
  28927. },
  28928. back: {
  28929. height: math.unit(7 + 7 / 12, "feet"),
  28930. weight: math.unit(225, "lb"),
  28931. name: "Back",
  28932. image: {
  28933. source: "./media/characters/epona/back.svg",
  28934. extra: 2546 / 2408,
  28935. bottom: 44 / 2589
  28936. }
  28937. },
  28938. genitals: {
  28939. height: math.unit(1.5, "feet"),
  28940. name: "Genitals",
  28941. image: {
  28942. source: "./media/characters/epona/genitals.svg"
  28943. }
  28944. },
  28945. },
  28946. [
  28947. {
  28948. name: "Normal",
  28949. height: math.unit(7 + 7 / 12, "feet"),
  28950. default: true
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28956. {
  28957. front: {
  28958. height: math.unit(7, "feet"),
  28959. weight: math.unit(518, "lb"),
  28960. name: "Front",
  28961. image: {
  28962. source: "./media/characters/avia-bloodbourn/front.svg",
  28963. extra: 1466 / 1350,
  28964. bottom: 65 / 1527
  28965. }
  28966. },
  28967. },
  28968. [
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(9.35, "feet"),
  28976. weight: math.unit(600, "lb"),
  28977. name: "Front",
  28978. image: {
  28979. source: "./media/characters/amera/front.svg",
  28980. extra: 891 / 818,
  28981. bottom: 30 / 922.7
  28982. }
  28983. },
  28984. back: {
  28985. height: math.unit(9.35, "feet"),
  28986. weight: math.unit(600, "lb"),
  28987. name: "Back",
  28988. image: {
  28989. source: "./media/characters/amera/back.svg",
  28990. extra: 876 / 824,
  28991. bottom: 6.8 / 884
  28992. }
  28993. },
  28994. dick: {
  28995. height: math.unit(2.14, "feet"),
  28996. name: "Dick",
  28997. image: {
  28998. source: "./media/characters/amera/dick.svg"
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(9.35, "feet"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29012. {
  29013. kneeling: {
  29014. height: math.unit(3 + 4 / 12, "feet"),
  29015. weight: math.unit(90, "lb"),
  29016. name: "Kneeling",
  29017. image: {
  29018. source: "./media/characters/rosewen/kneeling.svg",
  29019. extra: 1835 / 1571,
  29020. bottom: 27.7 / 1862
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(3 + 4 / 12, "feet"),
  29028. default: true
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(5 + 10 / 12, "feet"),
  29037. weight: math.unit(200, "lb"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/sabah/front.svg",
  29041. extra: 849 / 763,
  29042. bottom: 33.9 / 881
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(5 + 10 / 12, "feet"),
  29050. default: true
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29056. {
  29057. front: {
  29058. height: math.unit(3 + 5 / 12, "feet"),
  29059. weight: math.unit(40, "kg"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/purple-flame/front.svg",
  29063. extra: 1577 / 1412,
  29064. bottom: 97 / 1694
  29065. }
  29066. },
  29067. frontDressed: {
  29068. height: math.unit(3 + 5 / 12, "feet"),
  29069. weight: math.unit(40, "kg"),
  29070. name: "Front (Dressed)",
  29071. image: {
  29072. source: "./media/characters/purple-flame/front-dressed.svg",
  29073. extra: 1577 / 1412,
  29074. bottom: 97 / 1694
  29075. }
  29076. },
  29077. headphones: {
  29078. height: math.unit(0.85, "feet"),
  29079. name: "Headphones",
  29080. image: {
  29081. source: "./media/characters/purple-flame/headphones.svg"
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Really Small",
  29088. height: math.unit(5, "cm")
  29089. },
  29090. {
  29091. name: "Micro",
  29092. height: math.unit(1 + 5 / 12, "feet")
  29093. },
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(3 + 5 / 12, "feet"),
  29097. default: true
  29098. },
  29099. {
  29100. name: "Minimacro",
  29101. height: math.unit(125, "feet")
  29102. },
  29103. {
  29104. name: "Macro",
  29105. height: math.unit(0.5, "miles")
  29106. },
  29107. {
  29108. name: "Megamacro",
  29109. height: math.unit(50, "miles")
  29110. },
  29111. {
  29112. name: "Gigantic",
  29113. height: math.unit(750, "miles")
  29114. },
  29115. {
  29116. name: "Planetary",
  29117. height: math.unit(15000, "miles")
  29118. },
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29123. {
  29124. front: {
  29125. height: math.unit(14, "feet"),
  29126. weight: math.unit(959, "lb"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/arsenal/front.svg",
  29130. extra: 2357 / 2157,
  29131. bottom: 93 / 2458
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(14, "feet"),
  29139. default: true
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(6, "feet"),
  29148. weight: math.unit(150, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/adira/front.svg",
  29152. extra: 1078 / 1029,
  29153. bottom: 87 / 1166
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Micro",
  29160. height: math.unit(4, "inches"),
  29161. default: true
  29162. },
  29163. {
  29164. name: "Macro",
  29165. height: math.unit(50, "feet")
  29166. },
  29167. ]
  29168. ))
  29169. characterMakers.push(() => makeCharacter(
  29170. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29171. {
  29172. front: {
  29173. height: math.unit(16, "feet"),
  29174. weight: math.unit(1000, "lb"),
  29175. name: "Front",
  29176. image: {
  29177. source: "./media/characters/grim/front.svg",
  29178. extra: 622 / 614,
  29179. bottom: 18.1 / 642
  29180. }
  29181. },
  29182. back: {
  29183. height: math.unit(16, "feet"),
  29184. weight: math.unit(1000, "lb"),
  29185. name: "Back",
  29186. image: {
  29187. source: "./media/characters/grim/back.svg",
  29188. extra: 610.6 / 602,
  29189. bottom: 40.8 / 652
  29190. }
  29191. },
  29192. hunched: {
  29193. height: math.unit(9.75, "feet"),
  29194. weight: math.unit(1000, "lb"),
  29195. name: "Hunched",
  29196. image: {
  29197. source: "./media/characters/grim/hunched.svg",
  29198. extra: 304 / 297,
  29199. bottom: 35.4 / 394
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Normal",
  29206. height: math.unit(16, "feet"),
  29207. default: true
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(2.3, "meters"),
  29216. weight: math.unit(300, "lb"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/sinja/front-sfw.svg",
  29220. extra: 1393 / 1294,
  29221. bottom: 70 / 1463
  29222. }
  29223. },
  29224. frontNsfw: {
  29225. height: math.unit(2.3, "meters"),
  29226. weight: math.unit(300, "lb"),
  29227. name: "Front (NSFW)",
  29228. image: {
  29229. source: "./media/characters/sinja/front-nsfw.svg",
  29230. extra: 1393 / 1294,
  29231. bottom: 70 / 1463
  29232. }
  29233. },
  29234. back: {
  29235. height: math.unit(2.3, "meters"),
  29236. weight: math.unit(300, "lb"),
  29237. name: "Back",
  29238. image: {
  29239. source: "./media/characters/sinja/back.svg",
  29240. extra: 1393 / 1294,
  29241. bottom: 70 / 1463
  29242. }
  29243. },
  29244. head: {
  29245. height: math.unit(1.771, "feet"),
  29246. name: "Head",
  29247. image: {
  29248. source: "./media/characters/sinja/head.svg"
  29249. }
  29250. },
  29251. slit: {
  29252. height: math.unit(0.8, "feet"),
  29253. name: "Slit",
  29254. image: {
  29255. source: "./media/characters/sinja/slit.svg"
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Normal",
  29262. height: math.unit(2.3, "meters")
  29263. },
  29264. {
  29265. name: "Macro",
  29266. height: math.unit(91, "meters"),
  29267. default: true
  29268. },
  29269. {
  29270. name: "Megamacro",
  29271. height: math.unit(91440, "meters")
  29272. },
  29273. {
  29274. name: "Gigamacro",
  29275. height: math.unit(60960000, "meters")
  29276. },
  29277. {
  29278. name: "Teramacro",
  29279. height: math.unit(9144000000, "meters")
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29285. {
  29286. front: {
  29287. height: math.unit(1.7, "meters"),
  29288. weight: math.unit(130, "lb"),
  29289. name: "Front",
  29290. image: {
  29291. source: "./media/characters/kyu/front.svg",
  29292. extra: 415 / 395,
  29293. bottom: 5 / 420
  29294. }
  29295. },
  29296. head: {
  29297. height: math.unit(1.75, "feet"),
  29298. name: "Head",
  29299. image: {
  29300. source: "./media/characters/kyu/head.svg"
  29301. }
  29302. },
  29303. foot: {
  29304. height: math.unit(0.81, "feet"),
  29305. name: "Foot",
  29306. image: {
  29307. source: "./media/characters/kyu/foot.svg"
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Normal",
  29314. height: math.unit(1.7, "meters")
  29315. },
  29316. {
  29317. name: "Macro",
  29318. height: math.unit(131, "feet"),
  29319. default: true
  29320. },
  29321. {
  29322. name: "Megamacro",
  29323. height: math.unit(91440, "meters")
  29324. },
  29325. {
  29326. name: "Gigamacro",
  29327. height: math.unit(60960000, "meters")
  29328. },
  29329. {
  29330. name: "Teramacro",
  29331. height: math.unit(9144000000, "meters")
  29332. },
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29337. {
  29338. front: {
  29339. height: math.unit(7 + 1 / 12, "feet"),
  29340. weight: math.unit(250, "lb"),
  29341. name: "Front",
  29342. image: {
  29343. source: "./media/characters/joey/front.svg",
  29344. extra: 1791 / 1537,
  29345. bottom: 28 / 1816
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Micro",
  29352. height: math.unit(3, "inches")
  29353. },
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(7 + 1 / 12, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(165, "cm"),
  29366. weight: math.unit(140, "lb"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/sam-evans/front.svg",
  29370. extra: 3417 / 3230,
  29371. bottom: 41.3 / 3417
  29372. }
  29373. },
  29374. frontSixTails: {
  29375. height: math.unit(165, "cm"),
  29376. weight: math.unit(140, "lb"),
  29377. name: "Front-six-tails",
  29378. image: {
  29379. source: "./media/characters/sam-evans/front-six-tails.svg",
  29380. extra: 3417 / 3230,
  29381. bottom: 41.3 / 3417
  29382. }
  29383. },
  29384. back: {
  29385. height: math.unit(165, "cm"),
  29386. weight: math.unit(140, "lb"),
  29387. name: "Back",
  29388. image: {
  29389. source: "./media/characters/sam-evans/back.svg",
  29390. extra: 3227 / 3032,
  29391. bottom: 6.8 / 3234
  29392. }
  29393. },
  29394. face: {
  29395. height: math.unit(0.68, "feet"),
  29396. name: "Face",
  29397. image: {
  29398. source: "./media/characters/sam-evans/face.svg"
  29399. }
  29400. },
  29401. },
  29402. [
  29403. {
  29404. name: "Normal",
  29405. height: math.unit(165, "cm"),
  29406. default: true
  29407. },
  29408. {
  29409. name: "Macro",
  29410. height: math.unit(100, "meters")
  29411. },
  29412. {
  29413. name: "Macro+",
  29414. height: math.unit(800, "meters")
  29415. },
  29416. {
  29417. name: "Macro++",
  29418. height: math.unit(3, "km")
  29419. },
  29420. {
  29421. name: "Macro+++",
  29422. height: math.unit(30, "km")
  29423. },
  29424. ]
  29425. ))
  29426. characterMakers.push(() => makeCharacter(
  29427. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29428. {
  29429. front: {
  29430. height: math.unit(10, "feet"),
  29431. weight: math.unit(750, "lb"),
  29432. name: "Front",
  29433. image: {
  29434. source: "./media/characters/juliet-a/front.svg",
  29435. extra: 1766 / 1720,
  29436. bottom: 43 / 1809
  29437. }
  29438. },
  29439. back: {
  29440. height: math.unit(10, "feet"),
  29441. weight: math.unit(750, "lb"),
  29442. name: "Back",
  29443. image: {
  29444. source: "./media/characters/juliet-a/back.svg",
  29445. extra: 1781 / 1734,
  29446. bottom: 35 / 1810,
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(10, "feet"),
  29454. default: true
  29455. },
  29456. {
  29457. name: "Dragon Form",
  29458. height: math.unit(250, "feet")
  29459. },
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(1000, "feet")
  29463. },
  29464. {
  29465. name: "Megamacro",
  29466. height: math.unit(10000, "feet")
  29467. }
  29468. ]
  29469. ))
  29470. characterMakers.push(() => makeCharacter(
  29471. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29472. {
  29473. regular: {
  29474. height: math.unit(7 + 3 / 12, "feet"),
  29475. weight: math.unit(260, "lb"),
  29476. name: "Regular",
  29477. image: {
  29478. source: "./media/characters/wild/regular.svg",
  29479. extra: 97.45 / 92,
  29480. bottom: 6.8 / 104.3
  29481. }
  29482. },
  29483. biggums: {
  29484. height: math.unit(8 + 6 / 12, "feet"),
  29485. weight: math.unit(425, "lb"),
  29486. name: "Biggums",
  29487. image: {
  29488. source: "./media/characters/wild/biggums.svg",
  29489. extra: 97.45 / 92,
  29490. bottom: 7.5 / 132.34
  29491. }
  29492. },
  29493. mawRegular: {
  29494. height: math.unit(1.24, "feet"),
  29495. name: "Maw (Regular)",
  29496. image: {
  29497. source: "./media/characters/wild/maw.svg"
  29498. }
  29499. },
  29500. mawBiggums: {
  29501. height: math.unit(1.47, "feet"),
  29502. name: "Maw (Biggums)",
  29503. image: {
  29504. source: "./media/characters/wild/maw.svg"
  29505. }
  29506. },
  29507. },
  29508. [
  29509. {
  29510. name: "Normal",
  29511. height: math.unit(7 + 3 / 12, "feet"),
  29512. default: true
  29513. },
  29514. ]
  29515. ))
  29516. characterMakers.push(() => makeCharacter(
  29517. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29518. {
  29519. front: {
  29520. height: math.unit(2.5, "meters"),
  29521. weight: math.unit(200, "kg"),
  29522. name: "Front",
  29523. image: {
  29524. source: "./media/characters/vidar/front.svg",
  29525. extra: 2994 / 2795,
  29526. bottom: 56 / 3061
  29527. }
  29528. },
  29529. back: {
  29530. height: math.unit(2.5, "meters"),
  29531. weight: math.unit(200, "kg"),
  29532. name: "Back",
  29533. image: {
  29534. source: "./media/characters/vidar/back.svg",
  29535. extra: 3131 / 2928,
  29536. bottom: 13.5 / 3141.5
  29537. }
  29538. },
  29539. feral: {
  29540. height: math.unit(2.5, "meters"),
  29541. weight: math.unit(2000, "kg"),
  29542. name: "Feral",
  29543. image: {
  29544. source: "./media/characters/vidar/feral.svg",
  29545. extra: 2790 / 1765,
  29546. bottom: 6 / 2796
  29547. }
  29548. },
  29549. },
  29550. [
  29551. {
  29552. name: "Normal",
  29553. height: math.unit(2.5, "meters"),
  29554. default: true
  29555. },
  29556. {
  29557. name: "Macro",
  29558. height: math.unit(100, "meters")
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(5 + 9 / 12, "feet"),
  29567. weight: math.unit(120, "lb"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/ash/front.svg",
  29571. extra: 2189 / 1961,
  29572. bottom: 5.2 / 2194
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Normal",
  29579. height: math.unit(5 + 9 / 12, "feet"),
  29580. default: true
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29586. {
  29587. front: {
  29588. height: math.unit(9, "feet"),
  29589. weight: math.unit(10000, "lb"),
  29590. name: "Front",
  29591. image: {
  29592. source: "./media/characters/gygabite/front.svg",
  29593. bottom: 31.7 / 537.8,
  29594. extra: 505 / 370
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(9, "feet"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(12, "feet"),
  29611. weight: math.unit(4000, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/p0tat0/front.svg",
  29615. extra: 1065 / 921,
  29616. bottom: 55.7 / 1121.25
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Normal",
  29623. height: math.unit(12, "feet"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29630. {
  29631. side: {
  29632. height: math.unit(6.5, "feet"),
  29633. weight: math.unit(800, "lb"),
  29634. name: "Side",
  29635. image: {
  29636. source: "./media/characters/dusk/side.svg",
  29637. extra: 615 / 373,
  29638. bottom: 53 / 664
  29639. }
  29640. },
  29641. sitting: {
  29642. height: math.unit(7, "feet"),
  29643. weight: math.unit(800, "lb"),
  29644. name: "Sitting",
  29645. image: {
  29646. source: "./media/characters/dusk/sitting.svg",
  29647. extra: 753 / 425,
  29648. bottom: 33 / 774
  29649. }
  29650. },
  29651. head: {
  29652. height: math.unit(6.1, "feet"),
  29653. name: "Head",
  29654. image: {
  29655. source: "./media/characters/dusk/head.svg"
  29656. }
  29657. },
  29658. },
  29659. [
  29660. {
  29661. name: "Normal",
  29662. height: math.unit(7, "feet"),
  29663. default: true
  29664. },
  29665. ]
  29666. ))
  29667. characterMakers.push(() => makeCharacter(
  29668. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29669. {
  29670. front: {
  29671. height: math.unit(15, "feet"),
  29672. weight: math.unit(7000, "lb"),
  29673. name: "Front",
  29674. image: {
  29675. source: "./media/characters/jay-direwolf/front.svg",
  29676. extra: 1810 / 1732,
  29677. bottom: 66 / 1892
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Normal",
  29684. height: math.unit(15, "feet"),
  29685. default: true
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(4 + 9 / 12, "feet"),
  29694. weight: math.unit(130, "lb"),
  29695. name: "Front",
  29696. image: {
  29697. source: "./media/characters/anchovie/front.svg",
  29698. extra: 382 / 350,
  29699. bottom: 25 / 409
  29700. }
  29701. },
  29702. back: {
  29703. height: math.unit(4 + 9 / 12, "feet"),
  29704. weight: math.unit(130, "lb"),
  29705. name: "Back",
  29706. image: {
  29707. source: "./media/characters/anchovie/back.svg",
  29708. extra: 385 / 352,
  29709. bottom: 16.6 / 402
  29710. }
  29711. },
  29712. frontDressed: {
  29713. height: math.unit(4 + 9 / 12, "feet"),
  29714. weight: math.unit(130, "lb"),
  29715. name: "Front (Dressed)",
  29716. image: {
  29717. source: "./media/characters/anchovie/front-dressed.svg",
  29718. extra: 382 / 350,
  29719. bottom: 25 / 409
  29720. }
  29721. },
  29722. backDressed: {
  29723. height: math.unit(4 + 9 / 12, "feet"),
  29724. weight: math.unit(130, "lb"),
  29725. name: "Back (Dressed)",
  29726. image: {
  29727. source: "./media/characters/anchovie/back-dressed.svg",
  29728. extra: 385 / 352,
  29729. bottom: 16.6 / 402
  29730. }
  29731. },
  29732. },
  29733. [
  29734. {
  29735. name: "Micro",
  29736. height: math.unit(6.4, "inches")
  29737. },
  29738. {
  29739. name: "Normal",
  29740. height: math.unit(4 + 9 / 12, "feet"),
  29741. default: true
  29742. },
  29743. ]
  29744. ))
  29745. characterMakers.push(() => makeCharacter(
  29746. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29747. {
  29748. front: {
  29749. height: math.unit(2, "meters"),
  29750. weight: math.unit(180, "lb"),
  29751. name: "Front",
  29752. image: {
  29753. source: "./media/characters/acidrenamon/front.svg",
  29754. extra: 987 / 890,
  29755. bottom: 22.8 / 1009
  29756. }
  29757. },
  29758. back: {
  29759. height: math.unit(2, "meters"),
  29760. weight: math.unit(180, "lb"),
  29761. name: "Back",
  29762. image: {
  29763. source: "./media/characters/acidrenamon/back.svg",
  29764. extra: 983 / 891,
  29765. bottom: 8.4 / 992
  29766. }
  29767. },
  29768. head: {
  29769. height: math.unit(1.92, "feet"),
  29770. name: "Head",
  29771. image: {
  29772. source: "./media/characters/acidrenamon/head.svg"
  29773. }
  29774. },
  29775. rump: {
  29776. height: math.unit(1.72, "feet"),
  29777. name: "Rump",
  29778. image: {
  29779. source: "./media/characters/acidrenamon/rump.svg"
  29780. }
  29781. },
  29782. tail: {
  29783. height: math.unit(4.2, "feet"),
  29784. name: "Tail",
  29785. image: {
  29786. source: "./media/characters/acidrenamon/tail.svg"
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Normal",
  29793. height: math.unit(2, "meters"),
  29794. default: true
  29795. },
  29796. {
  29797. name: "Minimacro",
  29798. height: math.unit(7, "meters")
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(200, "meters")
  29803. },
  29804. {
  29805. name: "Gigamacro",
  29806. height: math.unit(0.2, "earths")
  29807. },
  29808. ]
  29809. ))
  29810. characterMakers.push(() => makeCharacter(
  29811. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29812. {
  29813. front: {
  29814. height: math.unit(152, "feet"),
  29815. name: "Front",
  29816. image: {
  29817. source: "./media/characters/kenzie-lee/front.svg",
  29818. extra: 1869/1774,
  29819. bottom: 128/1997
  29820. }
  29821. },
  29822. side: {
  29823. height: math.unit(86, "feet"),
  29824. name: "Side",
  29825. image: {
  29826. source: "./media/characters/kenzie-lee/side.svg",
  29827. extra: 930/815,
  29828. bottom: 177/1107
  29829. }
  29830. },
  29831. paw: {
  29832. height: math.unit(15, "feet"),
  29833. name: "Paw",
  29834. image: {
  29835. source: "./media/characters/kenzie-lee/paw.svg"
  29836. }
  29837. },
  29838. },
  29839. [
  29840. {
  29841. name: "Kenzie Flea",
  29842. height: math.unit(2, "mm"),
  29843. default: true
  29844. },
  29845. {
  29846. name: "Micro",
  29847. height: math.unit(2, "inches")
  29848. },
  29849. {
  29850. name: "Normal",
  29851. height: math.unit(152, "feet")
  29852. },
  29853. {
  29854. name: "Megamacro",
  29855. height: math.unit(7, "miles")
  29856. },
  29857. {
  29858. name: "Gigamacro",
  29859. height: math.unit(8000, "miles")
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29865. {
  29866. front: {
  29867. height: math.unit(6, "feet"),
  29868. name: "Front",
  29869. image: {
  29870. source: "./media/characters/withers/front.svg",
  29871. extra: 1935/1760,
  29872. bottom: 72/2007
  29873. }
  29874. },
  29875. back: {
  29876. height: math.unit(6, "feet"),
  29877. name: "Back",
  29878. image: {
  29879. source: "./media/characters/withers/back.svg",
  29880. extra: 1944/1792,
  29881. bottom: 12/1956
  29882. }
  29883. },
  29884. dressed: {
  29885. height: math.unit(6, "feet"),
  29886. name: "Dressed",
  29887. image: {
  29888. source: "./media/characters/withers/dressed.svg",
  29889. extra: 1937/1765,
  29890. bottom: 73/2010
  29891. }
  29892. },
  29893. phase1: {
  29894. height: math.unit(1.1, "feet"),
  29895. name: "Phase 1",
  29896. image: {
  29897. source: "./media/characters/withers/phase-1.svg",
  29898. extra: 1885/1232,
  29899. bottom: 0/1885
  29900. }
  29901. },
  29902. phase2: {
  29903. height: math.unit(1.05, "feet"),
  29904. name: "Phase 2",
  29905. image: {
  29906. source: "./media/characters/withers/phase-2.svg",
  29907. extra: 1792/1090,
  29908. bottom: 0/1792
  29909. }
  29910. },
  29911. partyWipe: {
  29912. height: math.unit(1.1, "feet"),
  29913. name: "Party Wipe",
  29914. image: {
  29915. source: "./media/characters/withers/party-wipe.svg",
  29916. extra: 1864/1207,
  29917. bottom: 0/1864
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(167, "feet"),
  29925. default: true
  29926. },
  29927. {
  29928. name: "Megamacro",
  29929. height: math.unit(15, "miles")
  29930. }
  29931. ]
  29932. ))
  29933. characterMakers.push(() => makeCharacter(
  29934. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29935. {
  29936. front: {
  29937. height: math.unit(6 + 7 / 12, "feet"),
  29938. weight: math.unit(250, "lb"),
  29939. name: "Front",
  29940. image: {
  29941. source: "./media/characters/nemoskii/front.svg",
  29942. extra: 2270 / 1734,
  29943. bottom: 86 / 2354
  29944. }
  29945. },
  29946. back: {
  29947. height: math.unit(6 + 7 / 12, "feet"),
  29948. weight: math.unit(250, "lb"),
  29949. name: "Back",
  29950. image: {
  29951. source: "./media/characters/nemoskii/back.svg",
  29952. extra: 1845 / 1788,
  29953. bottom: 10.5 / 1852
  29954. }
  29955. },
  29956. head: {
  29957. height: math.unit(1.31, "feet"),
  29958. name: "Head",
  29959. image: {
  29960. source: "./media/characters/nemoskii/head.svg"
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Micro",
  29967. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29968. },
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(6 + 7 / 12, "feet"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Macro",
  29976. height: math.unit((6 + 7 / 12) * 150, "feet")
  29977. },
  29978. {
  29979. name: "Macro+",
  29980. height: math.unit((6 + 7 / 12) * 500, "feet")
  29981. },
  29982. {
  29983. name: "Megamacro",
  29984. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(1, "mile"),
  29993. weight: math.unit(265261.9, "lb"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/shui/front.svg",
  29997. extra: 1633 / 1564,
  29998. bottom: 91.5 / 1726
  29999. }
  30000. },
  30001. },
  30002. [
  30003. {
  30004. name: "Macro",
  30005. height: math.unit(1, "mile"),
  30006. default: true
  30007. },
  30008. ]
  30009. ))
  30010. characterMakers.push(() => makeCharacter(
  30011. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30012. {
  30013. front: {
  30014. height: math.unit(12 + 6 / 12, "feet"),
  30015. weight: math.unit(1342, "lb"),
  30016. name: "Front",
  30017. image: {
  30018. source: "./media/characters/arokh-takakura/front.svg",
  30019. extra: 1089 / 1043,
  30020. bottom: 77.4 / 1176.7
  30021. }
  30022. },
  30023. back: {
  30024. height: math.unit(12 + 6 / 12, "feet"),
  30025. weight: math.unit(1342, "lb"),
  30026. name: "Back",
  30027. image: {
  30028. source: "./media/characters/arokh-takakura/back.svg",
  30029. extra: 1046 / 1019,
  30030. bottom: 102 / 1150
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Big",
  30037. height: math.unit(12 + 6 / 12, "feet"),
  30038. default: true
  30039. },
  30040. ]
  30041. ))
  30042. characterMakers.push(() => makeCharacter(
  30043. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30044. {
  30045. front: {
  30046. height: math.unit(5 + 6 / 12, "feet"),
  30047. weight: math.unit(150, "lb"),
  30048. name: "Front",
  30049. image: {
  30050. source: "./media/characters/theo/front.svg",
  30051. extra: 1184 / 1131,
  30052. bottom: 7.4 / 1191
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Micro",
  30059. height: math.unit(5, "inches")
  30060. },
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(5 + 6 / 12, "feet"),
  30064. default: true
  30065. },
  30066. ]
  30067. ))
  30068. characterMakers.push(() => makeCharacter(
  30069. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30070. {
  30071. front: {
  30072. height: math.unit(5 + 9 / 12, "feet"),
  30073. weight: math.unit(130, "lb"),
  30074. name: "Front",
  30075. image: {
  30076. source: "./media/characters/cecelia-swift/front.svg",
  30077. extra: 502 / 484,
  30078. bottom: 23 / 523
  30079. }
  30080. },
  30081. back: {
  30082. height: math.unit(5 + 9 / 12, "feet"),
  30083. weight: math.unit(130, "lb"),
  30084. name: "Back",
  30085. image: {
  30086. source: "./media/characters/cecelia-swift/back.svg",
  30087. extra: 499 / 485,
  30088. bottom: 12 / 511
  30089. }
  30090. },
  30091. head: {
  30092. height: math.unit(0.90, "feet"),
  30093. name: "Head",
  30094. image: {
  30095. source: "./media/characters/cecelia-swift/head.svg"
  30096. }
  30097. },
  30098. rump: {
  30099. height: math.unit(1.75, "feet"),
  30100. name: "Rump",
  30101. image: {
  30102. source: "./media/characters/cecelia-swift/rump.svg"
  30103. }
  30104. },
  30105. },
  30106. [
  30107. {
  30108. name: "Normal",
  30109. height: math.unit(5 + 9 / 12, "feet"),
  30110. default: true
  30111. },
  30112. {
  30113. name: "Big",
  30114. height: math.unit(50, "feet")
  30115. },
  30116. {
  30117. name: "Macro",
  30118. height: math.unit(100, "feet")
  30119. },
  30120. {
  30121. name: "Macro+",
  30122. height: math.unit(500, "feet")
  30123. },
  30124. {
  30125. name: "Macro++",
  30126. height: math.unit(1000, "feet")
  30127. },
  30128. ]
  30129. ))
  30130. characterMakers.push(() => makeCharacter(
  30131. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30132. {
  30133. front: {
  30134. height: math.unit(6, "feet"),
  30135. weight: math.unit(150, "lb"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/kaunan/front.svg",
  30139. extra: 2890 / 2523,
  30140. bottom: 49 / 2939
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(150, "feet"),
  30148. default: true
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30154. {
  30155. dressed: {
  30156. height: math.unit(175, "cm"),
  30157. weight: math.unit(60, "kg"),
  30158. name: "Dressed",
  30159. image: {
  30160. source: "./media/characters/fei/dressed.svg",
  30161. extra: 1402/1278,
  30162. bottom: 27/1429
  30163. }
  30164. },
  30165. nude: {
  30166. height: math.unit(175, "cm"),
  30167. weight: math.unit(60, "kg"),
  30168. name: "Nude",
  30169. image: {
  30170. source: "./media/characters/fei/nude.svg",
  30171. extra: 1402/1278,
  30172. bottom: 27/1429
  30173. }
  30174. },
  30175. heels: {
  30176. height: math.unit(0.466, "feet"),
  30177. name: "Heels",
  30178. image: {
  30179. source: "./media/characters/fei/heels.svg",
  30180. extra: 156/152,
  30181. bottom: 28/184
  30182. }
  30183. },
  30184. },
  30185. [
  30186. {
  30187. name: "Mortal",
  30188. height: math.unit(175, "cm")
  30189. },
  30190. {
  30191. name: "Normal",
  30192. height: math.unit(3500, "m")
  30193. },
  30194. {
  30195. name: "Stroll",
  30196. height: math.unit(18.4, "km"),
  30197. default: true
  30198. },
  30199. {
  30200. name: "Showoff",
  30201. height: math.unit(175, "km")
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(7, "feet"),
  30210. weight: math.unit(1000, "kg"),
  30211. name: "Front",
  30212. image: {
  30213. source: "./media/characters/edrax/front.svg",
  30214. extra: 2838 / 2550,
  30215. bottom: 130 / 2968
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Small",
  30222. height: math.unit(7, "feet")
  30223. },
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(1500, "meters")
  30227. },
  30228. {
  30229. name: "Mega",
  30230. height: math.unit(12000000, "km"),
  30231. default: true
  30232. },
  30233. {
  30234. name: "Megamacro",
  30235. height: math.unit(10600000, "lightyears")
  30236. },
  30237. {
  30238. name: "Hypermacro",
  30239. height: math.unit(256, "yottameters")
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(10, "feet"),
  30248. weight: math.unit(750, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/clove/front.svg",
  30252. extra: 1918/1751,
  30253. bottom: 52/1970
  30254. }
  30255. },
  30256. back: {
  30257. height: math.unit(10, "feet"),
  30258. weight: math.unit(750, "lb"),
  30259. name: "Back",
  30260. image: {
  30261. source: "./media/characters/clove/back.svg",
  30262. extra: 1912/1747,
  30263. bottom: 50/1962
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Normal",
  30270. height: math.unit(10, "feet"),
  30271. default: true
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30277. {
  30278. front: {
  30279. height: math.unit(4, "feet"),
  30280. weight: math.unit(50, "lb"),
  30281. name: "Front",
  30282. image: {
  30283. source: "./media/characters/alex-rabbit/front.svg",
  30284. extra: 507 / 458,
  30285. bottom: 18.5 / 527
  30286. }
  30287. },
  30288. back: {
  30289. height: math.unit(4, "feet"),
  30290. weight: math.unit(50, "lb"),
  30291. name: "Back",
  30292. image: {
  30293. source: "./media/characters/alex-rabbit/back.svg",
  30294. extra: 502 / 460,
  30295. bottom: 18.9 / 521
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Normal",
  30302. height: math.unit(4, "feet"),
  30303. default: true
  30304. },
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30309. {
  30310. front: {
  30311. height: math.unit(1 + 3 / 12, "feet"),
  30312. weight: math.unit(80, "lb"),
  30313. name: "Front",
  30314. image: {
  30315. source: "./media/characters/zander-rose/front.svg",
  30316. extra: 916 / 797,
  30317. bottom: 17 / 933
  30318. }
  30319. },
  30320. back: {
  30321. height: math.unit(1 + 3 / 12, "feet"),
  30322. weight: math.unit(80, "lb"),
  30323. name: "Back",
  30324. image: {
  30325. source: "./media/characters/zander-rose/back.svg",
  30326. extra: 903 / 779,
  30327. bottom: 31 / 934
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Normal",
  30334. height: math.unit(1 + 3 / 12, "feet"),
  30335. default: true
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30341. {
  30342. anthro: {
  30343. height: math.unit(6, "feet"),
  30344. weight: math.unit(150, "lb"),
  30345. name: "Anthro",
  30346. image: {
  30347. source: "./media/characters/razz/anthro.svg",
  30348. extra: 1437 / 1343,
  30349. bottom: 48 / 1485
  30350. }
  30351. },
  30352. feral: {
  30353. height: math.unit(6, "feet"),
  30354. weight: math.unit(150, "lb"),
  30355. name: "Feral",
  30356. image: {
  30357. source: "./media/characters/razz/feral.svg",
  30358. extra: 2569 / 1385,
  30359. bottom: 95 / 2664
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(6, "feet"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30373. {
  30374. front: {
  30375. height: math.unit(9 + 4 / 12, "feet"),
  30376. weight: math.unit(500, "lb"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/morrigan/front.svg",
  30380. extra: 2707 / 2579,
  30381. bottom: 156 / 2863
  30382. }
  30383. },
  30384. },
  30385. [
  30386. {
  30387. name: "Normal",
  30388. height: math.unit(9 + 4 / 12, "feet"),
  30389. default: true
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(5, "stories"),
  30398. weight: math.unit(4000, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/jenene/front.svg",
  30402. extra: 1780 / 1710,
  30403. bottom: 57 / 1837
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(5, "stories"),
  30411. default: true
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30417. {
  30418. taurSfw: {
  30419. height: math.unit(10, "meters"),
  30420. weight: math.unit(17500, "kg"),
  30421. name: "Taur",
  30422. image: {
  30423. source: "./media/characters/faey/taur-sfw.svg",
  30424. extra: 1200 / 968,
  30425. bottom: 41 / 1241
  30426. }
  30427. },
  30428. chestmaw: {
  30429. height: math.unit(2.01, "meters"),
  30430. name: "Chestmaw",
  30431. image: {
  30432. source: "./media/characters/faey/chestmaw.svg"
  30433. }
  30434. },
  30435. foot: {
  30436. height: math.unit(2.43, "meters"),
  30437. name: "Foot",
  30438. image: {
  30439. source: "./media/characters/faey/foot.svg"
  30440. }
  30441. },
  30442. jaws: {
  30443. height: math.unit(1.66, "meters"),
  30444. name: "Jaws",
  30445. image: {
  30446. source: "./media/characters/faey/jaws.svg"
  30447. }
  30448. },
  30449. tongues: {
  30450. height: math.unit(2.01, "meters"),
  30451. name: "Tongues",
  30452. image: {
  30453. source: "./media/characters/faey/tongues.svg"
  30454. }
  30455. },
  30456. },
  30457. [
  30458. {
  30459. name: "Small",
  30460. height: math.unit(10, "meters"),
  30461. default: true
  30462. },
  30463. {
  30464. name: "Big",
  30465. height: math.unit(500000, "km")
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(7, "feet"),
  30474. weight: math.unit(275, "lb"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/roku/front.svg",
  30478. extra: 903 / 878,
  30479. bottom: 37 / 940
  30480. }
  30481. },
  30482. },
  30483. [
  30484. {
  30485. name: "Normal",
  30486. height: math.unit(7, "feet"),
  30487. default: true
  30488. },
  30489. {
  30490. name: "Macro",
  30491. height: math.unit(500, "feet")
  30492. },
  30493. {
  30494. name: "Megamacro",
  30495. height: math.unit(200, "miles")
  30496. },
  30497. ]
  30498. ))
  30499. characterMakers.push(() => makeCharacter(
  30500. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30501. {
  30502. front: {
  30503. height: math.unit(6 + 2 / 12, "feet"),
  30504. weight: math.unit(150, "lb"),
  30505. name: "Front",
  30506. image: {
  30507. source: "./media/characters/lira/front.svg",
  30508. extra: 1727 / 1605,
  30509. bottom: 26 / 1753
  30510. }
  30511. },
  30512. back: {
  30513. height: math.unit(6 + 2 / 12, "feet"),
  30514. weight: math.unit(150, "lb"),
  30515. name: "Back",
  30516. image: {
  30517. source: "./media/characters/lira/back.svg",
  30518. extra: 1713/1621,
  30519. bottom: 20/1733
  30520. }
  30521. },
  30522. hand: {
  30523. height: math.unit(0.75, "feet"),
  30524. name: "Hand",
  30525. image: {
  30526. source: "./media/characters/lira/hand.svg"
  30527. }
  30528. },
  30529. maw: {
  30530. height: math.unit(0.65, "feet"),
  30531. name: "Maw",
  30532. image: {
  30533. source: "./media/characters/lira/maw.svg"
  30534. }
  30535. },
  30536. pawDigi: {
  30537. height: math.unit(1.6, "feet"),
  30538. name: "Paw Digi",
  30539. image: {
  30540. source: "./media/characters/lira/paw-digi.svg"
  30541. }
  30542. },
  30543. pawPlanti: {
  30544. height: math.unit(1.4, "feet"),
  30545. name: "Paw Planti",
  30546. image: {
  30547. source: "./media/characters/lira/paw-planti.svg"
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Normal",
  30554. height: math.unit(6 + 2 / 12, "feet"),
  30555. default: true
  30556. },
  30557. {
  30558. name: "Macro",
  30559. height: math.unit(100, "feet")
  30560. },
  30561. {
  30562. name: "Macro²",
  30563. height: math.unit(1600, "feet")
  30564. },
  30565. {
  30566. name: "Planetary",
  30567. height: math.unit(20, "earths")
  30568. },
  30569. ]
  30570. ))
  30571. characterMakers.push(() => makeCharacter(
  30572. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30573. {
  30574. front: {
  30575. height: math.unit(6, "feet"),
  30576. weight: math.unit(150, "lb"),
  30577. name: "Front",
  30578. image: {
  30579. source: "./media/characters/hadjet/front.svg",
  30580. extra: 1480 / 1346,
  30581. bottom: 26 / 1506
  30582. }
  30583. },
  30584. frontNsfw: {
  30585. height: math.unit(6, "feet"),
  30586. weight: math.unit(150, "lb"),
  30587. name: "Front (NSFW)",
  30588. image: {
  30589. source: "./media/characters/hadjet/front-nsfw.svg",
  30590. extra: 1440 / 1358,
  30591. bottom: 52 / 1492
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Macro",
  30598. height: math.unit(10, "stories"),
  30599. default: true
  30600. },
  30601. {
  30602. name: "Megamacro",
  30603. height: math.unit(1.5, "miles")
  30604. },
  30605. {
  30606. name: "Megamacro+",
  30607. height: math.unit(5, "miles")
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30613. {
  30614. side: {
  30615. height: math.unit(106, "feet"),
  30616. weight: math.unit(500, "tonnes"),
  30617. name: "Side",
  30618. image: {
  30619. source: "./media/characters/kodran/side.svg",
  30620. extra: 553 / 480,
  30621. bottom: 33 / 586
  30622. }
  30623. },
  30624. front: {
  30625. height: math.unit(132, "feet"),
  30626. weight: math.unit(500, "tonnes"),
  30627. name: "Front",
  30628. image: {
  30629. source: "./media/characters/kodran/front.svg",
  30630. extra: 667 / 643,
  30631. bottom: 42 / 709
  30632. }
  30633. },
  30634. flying: {
  30635. height: math.unit(350, "feet"),
  30636. weight: math.unit(500, "tonnes"),
  30637. name: "Flying",
  30638. image: {
  30639. source: "./media/characters/kodran/flying.svg"
  30640. }
  30641. },
  30642. foot: {
  30643. height: math.unit(33, "feet"),
  30644. name: "Foot",
  30645. image: {
  30646. source: "./media/characters/kodran/foot.svg"
  30647. }
  30648. },
  30649. footFront: {
  30650. height: math.unit(19, "feet"),
  30651. name: "Foot (Front)",
  30652. image: {
  30653. source: "./media/characters/kodran/foot-front.svg",
  30654. extra: 261 / 261,
  30655. bottom: 91 / 352
  30656. }
  30657. },
  30658. headFront: {
  30659. height: math.unit(53, "feet"),
  30660. name: "Head (Front)",
  30661. image: {
  30662. source: "./media/characters/kodran/head-front.svg"
  30663. }
  30664. },
  30665. headSide: {
  30666. height: math.unit(65, "feet"),
  30667. name: "Head (Side)",
  30668. image: {
  30669. source: "./media/characters/kodran/head-side.svg"
  30670. }
  30671. },
  30672. throat: {
  30673. height: math.unit(79, "feet"),
  30674. name: "Throat",
  30675. image: {
  30676. source: "./media/characters/kodran/throat.svg"
  30677. }
  30678. },
  30679. },
  30680. [
  30681. {
  30682. name: "Large",
  30683. height: math.unit(106, "feet"),
  30684. default: true
  30685. },
  30686. ]
  30687. ))
  30688. characterMakers.push(() => makeCharacter(
  30689. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30690. {
  30691. side: {
  30692. height: math.unit(11, "feet"),
  30693. weight: math.unit(150, "lb"),
  30694. name: "Side",
  30695. image: {
  30696. source: "./media/characters/pyxaron/side.svg",
  30697. extra: 305 / 195,
  30698. bottom: 17 / 322
  30699. }
  30700. },
  30701. },
  30702. [
  30703. {
  30704. name: "Normal",
  30705. height: math.unit(11, "feet"),
  30706. default: true
  30707. },
  30708. ]
  30709. ))
  30710. characterMakers.push(() => makeCharacter(
  30711. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30712. {
  30713. front: {
  30714. height: math.unit(6, "feet"),
  30715. weight: math.unit(150, "lb"),
  30716. name: "Front",
  30717. image: {
  30718. source: "./media/characters/meep/front.svg",
  30719. extra: 88 / 80,
  30720. bottom: 6 / 94
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Fun Sized",
  30727. height: math.unit(2, "inches"),
  30728. default: true
  30729. },
  30730. {
  30731. name: "Friend Sized",
  30732. height: math.unit(8, "inches")
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30738. {
  30739. front: {
  30740. height: math.unit(15, "feet"),
  30741. weight: math.unit(2500, "lb"),
  30742. name: "Front",
  30743. image: {
  30744. source: "./media/characters/holly-rabbit/front.svg",
  30745. extra: 1433 / 1233,
  30746. bottom: 125 / 1558
  30747. }
  30748. },
  30749. dick: {
  30750. height: math.unit(4.6, "feet"),
  30751. name: "Dick",
  30752. image: {
  30753. source: "./media/characters/holly-rabbit/dick.svg"
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Normal",
  30760. height: math.unit(15, "feet"),
  30761. default: true
  30762. },
  30763. {
  30764. name: "Macro",
  30765. height: math.unit(250, "feet")
  30766. },
  30767. {
  30768. name: "Macro+",
  30769. height: math.unit(2500, "feet")
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30775. {
  30776. front: {
  30777. height: math.unit(3.02, "meters"),
  30778. weight: math.unit(500, "kg"),
  30779. name: "Front",
  30780. image: {
  30781. source: "./media/characters/drena/front.svg",
  30782. extra: 282 / 243,
  30783. bottom: 8 / 290
  30784. }
  30785. },
  30786. side: {
  30787. height: math.unit(3.02, "meters"),
  30788. weight: math.unit(500, "kg"),
  30789. name: "Side",
  30790. image: {
  30791. source: "./media/characters/drena/side.svg",
  30792. extra: 280 / 245,
  30793. bottom: 10 / 290
  30794. }
  30795. },
  30796. back: {
  30797. height: math.unit(3.02, "meters"),
  30798. weight: math.unit(500, "kg"),
  30799. name: "Back",
  30800. image: {
  30801. source: "./media/characters/drena/back.svg",
  30802. extra: 278 / 243,
  30803. bottom: 2 / 280
  30804. }
  30805. },
  30806. foot: {
  30807. height: math.unit(0.75, "meters"),
  30808. name: "Foot",
  30809. image: {
  30810. source: "./media/characters/drena/foot.svg"
  30811. }
  30812. },
  30813. maw: {
  30814. height: math.unit(0.82, "meters"),
  30815. name: "Maw",
  30816. image: {
  30817. source: "./media/characters/drena/maw.svg"
  30818. }
  30819. },
  30820. eating: {
  30821. height: math.unit(0.75, "meters"),
  30822. name: "Eating",
  30823. image: {
  30824. source: "./media/characters/drena/eating.svg"
  30825. }
  30826. },
  30827. rump: {
  30828. height: math.unit(0.93, "meters"),
  30829. name: "Rump",
  30830. image: {
  30831. source: "./media/characters/drena/rump.svg"
  30832. }
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Normal",
  30838. height: math.unit(3.02, "meters"),
  30839. default: true
  30840. },
  30841. ]
  30842. ))
  30843. characterMakers.push(() => makeCharacter(
  30844. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30845. {
  30846. front: {
  30847. height: math.unit(6 + 4 / 12, "feet"),
  30848. weight: math.unit(250, "lb"),
  30849. name: "Front",
  30850. image: {
  30851. source: "./media/characters/remmyzilla/front.svg",
  30852. extra: 4033 / 3588,
  30853. bottom: 123 / 4156
  30854. }
  30855. },
  30856. back: {
  30857. height: math.unit(6 + 4 / 12, "feet"),
  30858. weight: math.unit(250, "lb"),
  30859. name: "Back",
  30860. image: {
  30861. source: "./media/characters/remmyzilla/back.svg",
  30862. extra: 2687 / 2555,
  30863. bottom: 48 / 2735
  30864. }
  30865. },
  30866. paw: {
  30867. height: math.unit(1.73, "feet"),
  30868. name: "Paw",
  30869. image: {
  30870. source: "./media/characters/remmyzilla/paw.svg"
  30871. },
  30872. extraAttributes: {
  30873. "toeSize": {
  30874. name: "Toe Size",
  30875. power: 2,
  30876. type: "area",
  30877. base: math.unit(0.0035, "m^2")
  30878. },
  30879. "padSize": {
  30880. name: "Pad Size",
  30881. power: 2,
  30882. type: "area",
  30883. base: math.unit(0.015, "m^2")
  30884. },
  30885. "pawsize": {
  30886. name: "Paw Size",
  30887. power: 2,
  30888. type: "area",
  30889. base: math.unit(0.072, "m^2")
  30890. },
  30891. }
  30892. },
  30893. maw: {
  30894. height: math.unit(1.73, "feet"),
  30895. name: "Maw",
  30896. image: {
  30897. source: "./media/characters/remmyzilla/maw.svg"
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(6 + 4 / 12, "feet")
  30905. },
  30906. {
  30907. name: "Minimacro",
  30908. height: math.unit(12 + 8 / 12, "feet")
  30909. },
  30910. {
  30911. name: "Normal",
  30912. height: math.unit(640, "feet"),
  30913. default: true
  30914. },
  30915. {
  30916. name: "Megamacro",
  30917. height: math.unit(6400, "feet")
  30918. },
  30919. {
  30920. name: "Gigamacro",
  30921. height: math.unit(64000, "miles")
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30927. {
  30928. front: {
  30929. height: math.unit(2.5, "meters"),
  30930. weight: math.unit(300, "lb"),
  30931. name: "Front",
  30932. image: {
  30933. source: "./media/characters/lawrence/front.svg",
  30934. extra: 357 / 335,
  30935. bottom: 30 / 387
  30936. }
  30937. },
  30938. back: {
  30939. height: math.unit(2.5, "meters"),
  30940. weight: math.unit(300, "lb"),
  30941. name: "Back",
  30942. image: {
  30943. source: "./media/characters/lawrence/back.svg",
  30944. extra: 357 / 338,
  30945. bottom: 16 / 373
  30946. }
  30947. },
  30948. head: {
  30949. height: math.unit(0.9, "meter"),
  30950. name: "Head",
  30951. image: {
  30952. source: "./media/characters/lawrence/head.svg"
  30953. }
  30954. },
  30955. maw: {
  30956. height: math.unit(0.7, "meter"),
  30957. name: "Maw",
  30958. image: {
  30959. source: "./media/characters/lawrence/maw.svg"
  30960. }
  30961. },
  30962. footBottom: {
  30963. height: math.unit(0.5, "meter"),
  30964. name: "Foot (Bottom)",
  30965. image: {
  30966. source: "./media/characters/lawrence/foot-bottom.svg"
  30967. }
  30968. },
  30969. footTop: {
  30970. height: math.unit(0.5, "meter"),
  30971. name: "Foot (Top)",
  30972. image: {
  30973. source: "./media/characters/lawrence/foot-top.svg"
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(2.5, "meters"),
  30981. default: true
  30982. },
  30983. {
  30984. name: "Macro",
  30985. height: math.unit(95, "meters")
  30986. },
  30987. {
  30988. name: "Megamacro",
  30989. height: math.unit(150, "km")
  30990. },
  30991. ]
  30992. ))
  30993. characterMakers.push(() => makeCharacter(
  30994. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30995. {
  30996. front: {
  30997. height: math.unit(4.2, "meters"),
  30998. preyCapacity: math.unit(50, "m^3"),
  30999. weight: math.unit(30, "tonnes"),
  31000. name: "Front",
  31001. image: {
  31002. source: "./media/characters/sydney/front.svg",
  31003. extra: 1177/1129,
  31004. bottom: 197/1374
  31005. },
  31006. extraAttributes: {
  31007. "length": {
  31008. name: "Length",
  31009. power: 1,
  31010. type: "length",
  31011. base: math.unit(21, "meters")
  31012. },
  31013. }
  31014. },
  31015. },
  31016. [
  31017. {
  31018. name: "Normal",
  31019. height: math.unit(4.2, "meters"),
  31020. default: true
  31021. },
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31026. {
  31027. back: {
  31028. height: math.unit(201, "feet"),
  31029. name: "Back",
  31030. image: {
  31031. source: "./media/characters/jessica/back.svg",
  31032. extra: 273 / 259,
  31033. bottom: 7 / 280
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(201, "feet"),
  31041. default: true
  31042. },
  31043. {
  31044. name: "Megamacro",
  31045. height: math.unit(8, "miles")
  31046. },
  31047. ]
  31048. ))
  31049. characterMakers.push(() => makeCharacter(
  31050. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31051. {
  31052. side: {
  31053. height: math.unit(5.6, "m"),
  31054. weight: math.unit(8000, "kg"),
  31055. name: "Side",
  31056. image: {
  31057. source: "./media/characters/victoria/side.svg",
  31058. extra: 1542/1229,
  31059. bottom: 124/1666
  31060. }
  31061. },
  31062. maw: {
  31063. height: math.unit(7.14, "feet"),
  31064. name: "Maw",
  31065. image: {
  31066. source: "./media/characters/victoria/maw.svg"
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Normal",
  31073. height: math.unit(5.6, "m"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31080. {
  31081. front: {
  31082. height: math.unit(5 + 6 / 12, "feet"),
  31083. name: "Front",
  31084. image: {
  31085. source: "./media/characters/cat/front.svg",
  31086. extra: 1449/1295,
  31087. bottom: 34/1483
  31088. },
  31089. form: "cat",
  31090. default: true
  31091. },
  31092. back: {
  31093. height: math.unit(5 + 6 / 12, "feet"),
  31094. name: "Back",
  31095. image: {
  31096. source: "./media/characters/cat/back.svg",
  31097. extra: 1466/1301,
  31098. bottom: 19/1485
  31099. },
  31100. form: "cat"
  31101. },
  31102. taur: {
  31103. height: math.unit(7, "feet"),
  31104. name: "Taur",
  31105. image: {
  31106. source: "./media/characters/cat/taur.svg",
  31107. extra: 1389/1233,
  31108. bottom: 83/1472
  31109. },
  31110. form: "taur",
  31111. default: true
  31112. },
  31113. lucarioFront: {
  31114. height: math.unit(4, "feet"),
  31115. name: "Lucario (Front)",
  31116. image: {
  31117. source: "./media/characters/cat/lucario-front.svg",
  31118. extra: 1149/1019,
  31119. bottom: 84/1233
  31120. },
  31121. form: "lucario",
  31122. default: true
  31123. },
  31124. lucarioBack: {
  31125. height: math.unit(4, "feet"),
  31126. name: "Lucario (Back)",
  31127. image: {
  31128. source: "./media/characters/cat/lucario-back.svg",
  31129. extra: 1190/1059,
  31130. bottom: 33/1223
  31131. },
  31132. form: "lucario"
  31133. },
  31134. megaLucario: {
  31135. height: math.unit(4, "feet"),
  31136. name: "Mega Lucario",
  31137. image: {
  31138. source: "./media/characters/cat/mega-lucario.svg",
  31139. extra: 1515 / 1319,
  31140. bottom: 63 / 1578
  31141. },
  31142. form: "lucario"
  31143. },
  31144. nickit: {
  31145. height: math.unit(2, "feet"),
  31146. name: "Nickit",
  31147. image: {
  31148. source: "./media/characters/cat/nickit.svg",
  31149. extra: 1980 / 1585,
  31150. bottom: 102 / 2082
  31151. },
  31152. form: "nickit",
  31153. default: true
  31154. },
  31155. lopunnyFront: {
  31156. height: math.unit(5, "feet"),
  31157. name: "Lopunny (Front)",
  31158. image: {
  31159. source: "./media/characters/cat/lopunny-front.svg",
  31160. extra: 1782 / 1469,
  31161. bottom: 38 / 1820
  31162. },
  31163. form: "lopunny",
  31164. default: true
  31165. },
  31166. lopunnyBack: {
  31167. height: math.unit(5, "feet"),
  31168. name: "Lopunny (Back)",
  31169. image: {
  31170. source: "./media/characters/cat/lopunny-back.svg",
  31171. extra: 1660 / 1490,
  31172. bottom: 25 / 1685
  31173. },
  31174. form: "lopunny"
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Really small",
  31180. height: math.unit(1, "nm")
  31181. },
  31182. {
  31183. name: "Micro",
  31184. height: math.unit(5, "inches")
  31185. },
  31186. {
  31187. name: "Normal",
  31188. height: math.unit(5 + 6 / 12, "feet"),
  31189. default: true
  31190. },
  31191. {
  31192. name: "Macro",
  31193. height: math.unit(50, "feet")
  31194. },
  31195. {
  31196. name: "Macro+",
  31197. height: math.unit(150, "feet")
  31198. },
  31199. {
  31200. name: "Megamacro",
  31201. height: math.unit(100, "miles")
  31202. },
  31203. ]
  31204. ))
  31205. characterMakers.push(() => makeCharacter(
  31206. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31207. {
  31208. front: {
  31209. height: math.unit(63.4, "meters"),
  31210. weight: math.unit(3.28349e+6, "kilograms"),
  31211. name: "Front",
  31212. image: {
  31213. source: "./media/characters/kirina-violet/front.svg",
  31214. extra: 2812 / 2725,
  31215. bottom: 0 / 2812
  31216. }
  31217. },
  31218. back: {
  31219. height: math.unit(63.4, "meters"),
  31220. weight: math.unit(3.28349e+6, "kilograms"),
  31221. name: "Back",
  31222. image: {
  31223. source: "./media/characters/kirina-violet/back.svg",
  31224. extra: 2812 / 2725,
  31225. bottom: 0 / 2812
  31226. }
  31227. },
  31228. mouth: {
  31229. height: math.unit(4.35, "meters"),
  31230. name: "Mouth",
  31231. image: {
  31232. source: "./media/characters/kirina-violet/mouth.svg"
  31233. }
  31234. },
  31235. paw: {
  31236. height: math.unit(5.6, "meters"),
  31237. name: "Paw",
  31238. image: {
  31239. source: "./media/characters/kirina-violet/paw.svg"
  31240. }
  31241. },
  31242. tail: {
  31243. height: math.unit(18, "meters"),
  31244. name: "Tail",
  31245. image: {
  31246. source: "./media/characters/kirina-violet/tail.svg"
  31247. }
  31248. },
  31249. },
  31250. [
  31251. {
  31252. name: "Macro",
  31253. height: math.unit(63.4, "meters"),
  31254. default: true
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(75, "feet"),
  31263. name: "Front",
  31264. image: {
  31265. source: "./media/characters/cat-gigachu/front.svg",
  31266. extra: 1239/1027,
  31267. bottom: 32/1271
  31268. }
  31269. },
  31270. back: {
  31271. height: math.unit(75, "feet"),
  31272. name: "Back",
  31273. image: {
  31274. source: "./media/characters/cat-gigachu/back.svg",
  31275. extra: 1229/1030,
  31276. bottom: 9/1238
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Dynamax",
  31283. height: math.unit(75, "feet"),
  31284. default: true
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(6, "feet"),
  31293. weight: math.unit(150, "lb"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/sfaiyan/front.svg",
  31297. extra: 999 / 978,
  31298. bottom: 5 / 1004
  31299. }
  31300. },
  31301. },
  31302. [
  31303. {
  31304. name: "Normal",
  31305. height: math.unit(1.82, "meters")
  31306. },
  31307. {
  31308. name: "Giant",
  31309. height: math.unit(2.27, "km"),
  31310. default: true
  31311. },
  31312. ]
  31313. ))
  31314. characterMakers.push(() => makeCharacter(
  31315. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31316. {
  31317. front: {
  31318. height: math.unit(179, "cm"),
  31319. weight: math.unit(100, "kg"),
  31320. name: "Front",
  31321. image: {
  31322. source: "./media/characters/raunehkeli/front.svg",
  31323. extra: 1934 / 1926,
  31324. bottom: 0 / 1934
  31325. }
  31326. },
  31327. },
  31328. [
  31329. {
  31330. name: "Normal",
  31331. height: math.unit(179, "cm")
  31332. },
  31333. {
  31334. name: "Maximum",
  31335. height: math.unit(575, "meters"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(6, "feet"),
  31345. weight: math.unit(150, "lb"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31349. extra: 2625 / 2518,
  31350. bottom: 60 / 2685
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Normal",
  31357. height: math.unit(6 + 2 / 12, "feet")
  31358. },
  31359. {
  31360. name: "Macro",
  31361. height: math.unit(1180, "feet"),
  31362. default: true
  31363. },
  31364. ]
  31365. ))
  31366. characterMakers.push(() => makeCharacter(
  31367. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31368. {
  31369. front: {
  31370. height: math.unit(5 + 6 / 12, "feet"),
  31371. weight: math.unit(108, "lb"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/lilith-zott/front.svg",
  31375. extra: 2510 / 2238,
  31376. bottom: 100 / 2610
  31377. }
  31378. },
  31379. frontDressed: {
  31380. height: math.unit(5 + 6 / 12, "feet"),
  31381. weight: math.unit(108, "lb"),
  31382. name: "Front (Dressed)",
  31383. image: {
  31384. source: "./media/characters/lilith-zott/front-dressed.svg",
  31385. extra: 2510 / 2238,
  31386. bottom: 100 / 2610
  31387. }
  31388. },
  31389. },
  31390. [
  31391. {
  31392. name: "Normal",
  31393. height: math.unit(5 + 6 / 12, "feet")
  31394. },
  31395. {
  31396. name: "Macro",
  31397. height: math.unit(1030, "feet"),
  31398. default: true
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(6, "feet"),
  31407. weight: math.unit(150, "lb"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31411. extra: 2567 / 2435,
  31412. bottom: 39 / 2606
  31413. }
  31414. },
  31415. frontSuper: {
  31416. height: math.unit(6, "feet"),
  31417. name: "Front (Super)",
  31418. image: {
  31419. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31420. extra: 2567 / 2435,
  31421. bottom: 39 / 2606
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(5 + 10 / 12, "feet")
  31429. },
  31430. {
  31431. name: "Macro",
  31432. height: math.unit(1100, "feet"),
  31433. default: true
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31439. {
  31440. front: {
  31441. height: math.unit(100, "miles"),
  31442. name: "Front",
  31443. image: {
  31444. source: "./media/characters/sona/front.svg",
  31445. extra: 2433 / 2201,
  31446. bottom: 53 / 2486
  31447. }
  31448. },
  31449. foot: {
  31450. height: math.unit(16.1, "miles"),
  31451. name: "Foot",
  31452. image: {
  31453. source: "./media/characters/sona/foot.svg"
  31454. }
  31455. },
  31456. },
  31457. [
  31458. {
  31459. name: "Macro",
  31460. height: math.unit(100, "miles"),
  31461. default: true
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(6, "feet"),
  31470. weight: math.unit(150, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/bailey/front.svg",
  31474. extra: 1778 / 1724,
  31475. bottom: 30 / 1808
  31476. }
  31477. },
  31478. },
  31479. [
  31480. {
  31481. name: "Micro",
  31482. height: math.unit(4, "inches")
  31483. },
  31484. {
  31485. name: "Normal",
  31486. height: math.unit(5 + 5 / 12, "feet"),
  31487. default: true
  31488. },
  31489. {
  31490. name: "Macro",
  31491. height: math.unit(250, "feet")
  31492. },
  31493. {
  31494. name: "Megamacro",
  31495. height: math.unit(100, "miles")
  31496. },
  31497. ]
  31498. ))
  31499. characterMakers.push(() => makeCharacter(
  31500. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31501. {
  31502. front: {
  31503. height: math.unit(5 + 2 / 12, "feet"),
  31504. weight: math.unit(120, "lb"),
  31505. name: "Front",
  31506. image: {
  31507. source: "./media/characters/snaps/front.svg",
  31508. extra: 2370 / 2177,
  31509. bottom: 48 / 2418
  31510. }
  31511. },
  31512. back: {
  31513. height: math.unit(5 + 2 / 12, "feet"),
  31514. weight: math.unit(120, "lb"),
  31515. name: "Back",
  31516. image: {
  31517. source: "./media/characters/snaps/back.svg",
  31518. extra: 2408 / 2258,
  31519. bottom: 15 / 2423
  31520. }
  31521. },
  31522. },
  31523. [
  31524. {
  31525. name: "Micro",
  31526. height: math.unit(9, "inches")
  31527. },
  31528. {
  31529. name: "Normal",
  31530. height: math.unit(5 + 2 / 12, "feet"),
  31531. default: true
  31532. },
  31533. {
  31534. name: "Mini Macro",
  31535. height: math.unit(10, "feet")
  31536. },
  31537. ]
  31538. ))
  31539. characterMakers.push(() => makeCharacter(
  31540. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31541. {
  31542. front: {
  31543. height: math.unit(1.8, "meters"),
  31544. weight: math.unit(85, "kg"),
  31545. name: "Front",
  31546. image: {
  31547. source: "./media/characters/azteck/front.svg",
  31548. extra: 2815 / 2625,
  31549. bottom: 89 / 2904
  31550. }
  31551. },
  31552. back: {
  31553. height: math.unit(1.8, "meters"),
  31554. weight: math.unit(85, "kg"),
  31555. name: "Back",
  31556. image: {
  31557. source: "./media/characters/azteck/back.svg",
  31558. extra: 2856 / 2648,
  31559. bottom: 85 / 2941
  31560. }
  31561. },
  31562. frontDressed: {
  31563. height: math.unit(1.8, "meters"),
  31564. weight: math.unit(85, "kg"),
  31565. name: "Front (Dressed)",
  31566. image: {
  31567. source: "./media/characters/azteck/front-dressed.svg",
  31568. extra: 2147 / 2003,
  31569. bottom: 68 / 2215
  31570. }
  31571. },
  31572. head: {
  31573. height: math.unit(0.47, "meters"),
  31574. weight: math.unit(85, "kg"),
  31575. name: "Head",
  31576. image: {
  31577. source: "./media/characters/azteck/head.svg"
  31578. }
  31579. },
  31580. },
  31581. [
  31582. {
  31583. name: "Bite sized",
  31584. height: math.unit(16, "cm")
  31585. },
  31586. {
  31587. name: "Normal",
  31588. height: math.unit(1.8, "meters"),
  31589. default: true
  31590. },
  31591. ]
  31592. ))
  31593. characterMakers.push(() => makeCharacter(
  31594. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31595. {
  31596. front: {
  31597. height: math.unit(6, "feet"),
  31598. weight: math.unit(150, "lb"),
  31599. name: "Front",
  31600. image: {
  31601. source: "./media/characters/pidge/front.svg",
  31602. extra: 1936/1820,
  31603. bottom: 0/1936
  31604. }
  31605. },
  31606. back: {
  31607. height: math.unit(6, "feet"),
  31608. weight: math.unit(150, "lb"),
  31609. name: "Back",
  31610. image: {
  31611. source: "./media/characters/pidge/back.svg",
  31612. extra: 1938/1843,
  31613. bottom: 0/1938
  31614. }
  31615. },
  31616. casual: {
  31617. height: math.unit(6, "feet"),
  31618. weight: math.unit(150, "lb"),
  31619. name: "Casual",
  31620. image: {
  31621. source: "./media/characters/pidge/casual.svg",
  31622. extra: 1936/1820,
  31623. bottom: 0/1936
  31624. }
  31625. },
  31626. tech: {
  31627. height: math.unit(6, "feet"),
  31628. weight: math.unit(150, "lb"),
  31629. name: "Tech",
  31630. image: {
  31631. source: "./media/characters/pidge/tech.svg",
  31632. extra: 1802/1682,
  31633. bottom: 0/1802
  31634. }
  31635. },
  31636. head: {
  31637. height: math.unit(1.61, "feet"),
  31638. name: "Head",
  31639. image: {
  31640. source: "./media/characters/pidge/head.svg"
  31641. }
  31642. },
  31643. collar: {
  31644. height: math.unit(0.82, "feet"),
  31645. name: "Collar",
  31646. image: {
  31647. source: "./media/characters/pidge/collar.svg"
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Macro",
  31654. height: math.unit(2, "mile"),
  31655. default: true
  31656. },
  31657. {
  31658. name: "PUPPY",
  31659. height: math.unit(20, "miles")
  31660. },
  31661. ]
  31662. ))
  31663. characterMakers.push(() => makeCharacter(
  31664. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31665. {
  31666. front: {
  31667. height: math.unit(6, "feet"),
  31668. weight: math.unit(150, "lb"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/en/front.svg",
  31672. extra: 1697 / 1563,
  31673. bottom: 103 / 1800
  31674. }
  31675. },
  31676. back: {
  31677. height: math.unit(6, "feet"),
  31678. weight: math.unit(150, "lb"),
  31679. name: "Back",
  31680. image: {
  31681. source: "./media/characters/en/back.svg",
  31682. extra: 1700 / 1570,
  31683. bottom: 51 / 1751
  31684. }
  31685. },
  31686. frontDressed: {
  31687. height: math.unit(6, "feet"),
  31688. weight: math.unit(150, "lb"),
  31689. name: "Front (Dressed)",
  31690. image: {
  31691. source: "./media/characters/en/front-dressed.svg",
  31692. extra: 1697 / 1563,
  31693. bottom: 103 / 1800
  31694. }
  31695. },
  31696. backDressed: {
  31697. height: math.unit(6, "feet"),
  31698. weight: math.unit(150, "lb"),
  31699. name: "Back (Dressed)",
  31700. image: {
  31701. source: "./media/characters/en/back-dressed.svg",
  31702. extra: 1700 / 1570,
  31703. bottom: 51 / 1751
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Macro",
  31710. height: math.unit(210, "feet"),
  31711. default: true
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31717. {
  31718. front: {
  31719. height: math.unit(6, "feet"),
  31720. weight: math.unit(150, "lb"),
  31721. name: "Front",
  31722. image: {
  31723. source: "./media/characters/haze-orris/front.svg",
  31724. extra: 3975 / 3525,
  31725. bottom: 137 / 4112
  31726. }
  31727. },
  31728. },
  31729. [
  31730. {
  31731. name: "Micro",
  31732. height: math.unit(150, "mm"),
  31733. default: true
  31734. },
  31735. ]
  31736. ))
  31737. characterMakers.push(() => makeCharacter(
  31738. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31739. {
  31740. front: {
  31741. height: math.unit(6, "feet"),
  31742. weight: math.unit(150, "lb"),
  31743. name: "Front",
  31744. image: {
  31745. source: "./media/characters/casselene-yaro/front.svg",
  31746. extra: 4721 / 4541,
  31747. bottom: 82 / 4803
  31748. }
  31749. },
  31750. back: {
  31751. height: math.unit(6, "feet"),
  31752. weight: math.unit(150, "lb"),
  31753. name: "Back",
  31754. image: {
  31755. source: "./media/characters/casselene-yaro/back.svg",
  31756. extra: 4569 / 4377,
  31757. bottom: 69 / 4638
  31758. }
  31759. },
  31760. dressed: {
  31761. height: math.unit(6, "feet"),
  31762. weight: math.unit(150, "lb"),
  31763. name: "Dressed",
  31764. image: {
  31765. source: "./media/characters/casselene-yaro/dressed.svg",
  31766. extra: 4721 / 4541,
  31767. bottom: 82 / 4803
  31768. }
  31769. },
  31770. maw: {
  31771. height: math.unit(1, "feet"),
  31772. name: "Maw",
  31773. image: {
  31774. source: "./media/characters/casselene-yaro/maw.svg"
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Macro",
  31781. height: math.unit(190, "feet"),
  31782. default: true
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31788. {
  31789. front: {
  31790. height: math.unit(10, "feet"),
  31791. weight: math.unit(15015, "lb"),
  31792. name: "Front",
  31793. image: {
  31794. source: "./media/characters/platine/front.svg",
  31795. extra: 1741/1650,
  31796. bottom: 84/1825
  31797. }
  31798. },
  31799. side: {
  31800. height: math.unit(10, "feet"),
  31801. weight: math.unit(15015, "lb"),
  31802. name: "Side",
  31803. image: {
  31804. source: "./media/characters/platine/side.svg",
  31805. extra: 1790/1705,
  31806. bottom: 29/1819
  31807. }
  31808. },
  31809. },
  31810. [
  31811. {
  31812. name: "Normal",
  31813. height: math.unit(10, "feet"),
  31814. default: true
  31815. },
  31816. {
  31817. name: "Macro",
  31818. height: math.unit(100, "feet")
  31819. },
  31820. {
  31821. name: "Megamacro",
  31822. height: math.unit(1000, "feet")
  31823. },
  31824. ]
  31825. ))
  31826. characterMakers.push(() => makeCharacter(
  31827. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31828. {
  31829. front: {
  31830. height: math.unit(15 + 5 / 12, "feet"),
  31831. weight: math.unit(4600, "lb"),
  31832. name: "Front",
  31833. image: {
  31834. source: "./media/characters/neapolitan-ananassa/front.svg",
  31835. extra: 2903 / 2736,
  31836. bottom: 0 / 2903
  31837. }
  31838. },
  31839. side: {
  31840. height: math.unit(15 + 5 / 12, "feet"),
  31841. weight: math.unit(4600, "lb"),
  31842. name: "Side",
  31843. image: {
  31844. source: "./media/characters/neapolitan-ananassa/side.svg",
  31845. extra: 2925 / 2719,
  31846. bottom: 0 / 2925
  31847. }
  31848. },
  31849. back: {
  31850. height: math.unit(15 + 5 / 12, "feet"),
  31851. weight: math.unit(4600, "lb"),
  31852. name: "Back",
  31853. image: {
  31854. source: "./media/characters/neapolitan-ananassa/back.svg",
  31855. extra: 2903 / 2736,
  31856. bottom: 0 / 2903
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Normal",
  31863. height: math.unit(15 + 5 / 12, "feet"),
  31864. default: true
  31865. },
  31866. {
  31867. name: "Post-Millenium",
  31868. height: math.unit(35 + 5 / 12, "feet")
  31869. },
  31870. {
  31871. name: "Post-Era",
  31872. height: math.unit(450 + 5 / 12, "feet")
  31873. },
  31874. ]
  31875. ))
  31876. characterMakers.push(() => makeCharacter(
  31877. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31878. {
  31879. front: {
  31880. height: math.unit(300, "meters"),
  31881. weight: math.unit(125000, "tonnes"),
  31882. name: "Front",
  31883. image: {
  31884. source: "./media/characters/pazuzu/front.svg",
  31885. extra: 877 / 794,
  31886. bottom: 47 / 924
  31887. }
  31888. },
  31889. },
  31890. [
  31891. {
  31892. name: "Macro",
  31893. height: math.unit(300, "meters"),
  31894. default: true
  31895. },
  31896. ]
  31897. ))
  31898. characterMakers.push(() => makeCharacter(
  31899. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31900. {
  31901. side: {
  31902. height: math.unit(10 + 7 / 12, "feet"),
  31903. weight: math.unit(2.5, "tons"),
  31904. name: "Side",
  31905. image: {
  31906. source: "./media/characters/aasha/side.svg",
  31907. extra: 1345 / 1245,
  31908. bottom: 111 / 1456
  31909. }
  31910. },
  31911. back: {
  31912. height: math.unit(10 + 7 / 12, "feet"),
  31913. weight: math.unit(2.5, "tons"),
  31914. name: "Back",
  31915. image: {
  31916. source: "./media/characters/aasha/back.svg",
  31917. extra: 1133 / 1057,
  31918. bottom: 257 / 1390
  31919. }
  31920. },
  31921. },
  31922. [
  31923. {
  31924. name: "Normal",
  31925. height: math.unit(10 + 7 / 12, "feet"),
  31926. default: true
  31927. },
  31928. ]
  31929. ))
  31930. characterMakers.push(() => makeCharacter(
  31931. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31932. {
  31933. front: {
  31934. height: math.unit(6 + 3 / 12, "feet"),
  31935. name: "Front",
  31936. image: {
  31937. source: "./media/characters/nevan/front.svg",
  31938. extra: 704 / 704,
  31939. bottom: 28 / 732
  31940. }
  31941. },
  31942. back: {
  31943. height: math.unit(6 + 3 / 12, "feet"),
  31944. name: "Back",
  31945. image: {
  31946. source: "./media/characters/nevan/back.svg",
  31947. extra: 714 / 714,
  31948. bottom: 21 / 735
  31949. }
  31950. },
  31951. frontFlaccid: {
  31952. height: math.unit(6 + 3 / 12, "feet"),
  31953. name: "Front (Flaccid)",
  31954. image: {
  31955. source: "./media/characters/nevan/front-flaccid.svg",
  31956. extra: 704 / 704,
  31957. bottom: 28 / 732
  31958. }
  31959. },
  31960. frontErect: {
  31961. height: math.unit(6 + 3 / 12, "feet"),
  31962. name: "Front (Erect)",
  31963. image: {
  31964. source: "./media/characters/nevan/front-erect.svg",
  31965. extra: 704 / 704,
  31966. bottom: 28 / 732
  31967. }
  31968. },
  31969. backFlaccid: {
  31970. height: math.unit(6 + 3 / 12, "feet"),
  31971. name: "Back (Flaccid)",
  31972. image: {
  31973. source: "./media/characters/nevan/back-flaccid.svg",
  31974. extra: 714 / 714,
  31975. bottom: 21 / 735
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(6 + 3 / 12, "feet"),
  31983. default: true
  31984. },
  31985. ]
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31989. {
  31990. front: {
  31991. height: math.unit(4, "feet"),
  31992. name: "Front",
  31993. image: {
  31994. source: "./media/characters/arhan/front.svg",
  31995. extra: 3368 / 3133,
  31996. bottom: 0 / 3368
  31997. }
  31998. },
  31999. side: {
  32000. height: math.unit(4, "feet"),
  32001. name: "Side",
  32002. image: {
  32003. source: "./media/characters/arhan/side.svg",
  32004. extra: 3347 / 3105,
  32005. bottom: 0 / 3347
  32006. }
  32007. },
  32008. tongue: {
  32009. height: math.unit(1.42, "feet"),
  32010. name: "Tongue",
  32011. image: {
  32012. source: "./media/characters/arhan/tongue.svg"
  32013. }
  32014. },
  32015. head: {
  32016. height: math.unit(0.85, "feet"),
  32017. name: "Head",
  32018. image: {
  32019. source: "./media/characters/arhan/head.svg"
  32020. }
  32021. },
  32022. },
  32023. [
  32024. {
  32025. name: "Normal",
  32026. height: math.unit(4, "feet"),
  32027. default: true
  32028. },
  32029. ]
  32030. ))
  32031. characterMakers.push(() => makeCharacter(
  32032. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32033. {
  32034. front: {
  32035. height: math.unit(5 + 7.5 / 12, "feet"),
  32036. weight: math.unit(120, "lb"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/digi-duncan/front.svg",
  32040. extra: 330 / 326,
  32041. bottom: 16 / 346
  32042. }
  32043. },
  32044. side: {
  32045. height: math.unit(5 + 7.5 / 12, "feet"),
  32046. weight: math.unit(120, "lb"),
  32047. name: "Side",
  32048. image: {
  32049. source: "./media/characters/digi-duncan/side.svg",
  32050. extra: 341 / 337,
  32051. bottom: 1 / 342
  32052. }
  32053. },
  32054. back: {
  32055. height: math.unit(5 + 7.5 / 12, "feet"),
  32056. weight: math.unit(120, "lb"),
  32057. name: "Back",
  32058. image: {
  32059. source: "./media/characters/digi-duncan/back.svg",
  32060. extra: 330 / 326,
  32061. bottom: 12 / 342
  32062. }
  32063. },
  32064. },
  32065. [
  32066. {
  32067. name: "Speck",
  32068. height: math.unit(0.25, "mm")
  32069. },
  32070. {
  32071. name: "Micro",
  32072. height: math.unit(5, "mm")
  32073. },
  32074. {
  32075. name: "Tiny",
  32076. height: math.unit(0.5, "inches"),
  32077. default: true
  32078. },
  32079. {
  32080. name: "Human",
  32081. height: math.unit(5 + 7.5 / 12, "feet")
  32082. },
  32083. {
  32084. name: "Minigiant",
  32085. height: math.unit(8 + 5.25, "feet")
  32086. },
  32087. {
  32088. name: "Giant",
  32089. height: math.unit(2000, "feet")
  32090. },
  32091. {
  32092. name: "Mega",
  32093. height: math.unit(371.1, "miles")
  32094. },
  32095. ]
  32096. ))
  32097. characterMakers.push(() => makeCharacter(
  32098. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32099. {
  32100. front: {
  32101. height: math.unit(2, "meters"),
  32102. weight: math.unit(350, "kg"),
  32103. name: "Front",
  32104. image: {
  32105. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32106. extra: 898 / 838,
  32107. bottom: 9 / 907
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Micro",
  32114. height: math.unit(8, "meters")
  32115. },
  32116. {
  32117. name: "Normal",
  32118. height: math.unit(50, "meters"),
  32119. default: true
  32120. },
  32121. {
  32122. name: "Macro",
  32123. height: math.unit(500, "meters")
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(6 + 6 / 12, "feet"),
  32132. name: "Front",
  32133. image: {
  32134. source: "./media/characters/khardesh/front.svg",
  32135. extra: 1788/1596,
  32136. bottom: 66/1854
  32137. }
  32138. },
  32139. back: {
  32140. height: math.unit(6 + 6 / 12, "feet"),
  32141. name: "Back",
  32142. image: {
  32143. source: "./media/characters/khardesh/back.svg",
  32144. extra: 1781/1584,
  32145. bottom: 68/1849
  32146. }
  32147. },
  32148. },
  32149. [
  32150. {
  32151. name: "Normal",
  32152. height: math.unit(6 + 6 / 12, "feet"),
  32153. default: true
  32154. },
  32155. {
  32156. name: "Normal+",
  32157. height: math.unit(4, "meters")
  32158. },
  32159. {
  32160. name: "Macro",
  32161. height: math.unit(50, "meters")
  32162. },
  32163. {
  32164. name: "Macro+",
  32165. height: math.unit(100, "meters")
  32166. },
  32167. {
  32168. name: "Megamacro",
  32169. height: math.unit(20, "km")
  32170. },
  32171. ]
  32172. ))
  32173. characterMakers.push(() => makeCharacter(
  32174. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32175. {
  32176. front: {
  32177. height: math.unit(6, "feet"),
  32178. weight: math.unit(150, "lb"),
  32179. name: "Front",
  32180. image: {
  32181. source: "./media/characters/kosho/front.svg",
  32182. extra: 1847 / 1847,
  32183. bottom: 86 / 1933
  32184. }
  32185. },
  32186. },
  32187. [
  32188. {
  32189. name: "Second-stage micro",
  32190. height: math.unit(0.5, "inches")
  32191. },
  32192. {
  32193. name: "First-stage micro",
  32194. height: math.unit(6, "inches")
  32195. },
  32196. {
  32197. name: "Normal",
  32198. height: math.unit(6, "feet"),
  32199. default: true
  32200. },
  32201. {
  32202. name: "First-stage macro",
  32203. height: math.unit(72, "feet")
  32204. },
  32205. {
  32206. name: "Second-stage macro",
  32207. height: math.unit(864, "feet")
  32208. },
  32209. ]
  32210. ))
  32211. characterMakers.push(() => makeCharacter(
  32212. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32213. {
  32214. normal: {
  32215. height: math.unit(4 + 6 / 12, "feet"),
  32216. name: "Normal",
  32217. image: {
  32218. source: "./media/characters/hydra/normal.svg",
  32219. extra: 2833 / 2634,
  32220. bottom: 68 / 2901
  32221. }
  32222. },
  32223. smol: {
  32224. height: math.unit(0.705, "inches"),
  32225. name: "Smol",
  32226. image: {
  32227. source: "./media/characters/hydra/smol.svg",
  32228. extra: 2715 / 2540,
  32229. bottom: 0 / 2715
  32230. }
  32231. },
  32232. },
  32233. [
  32234. {
  32235. name: "Normal",
  32236. height: math.unit(4 + 6 / 12, "feet"),
  32237. default: true
  32238. }
  32239. ]
  32240. ))
  32241. characterMakers.push(() => makeCharacter(
  32242. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32243. {
  32244. front: {
  32245. height: math.unit(0.6, "cm"),
  32246. name: "Front",
  32247. image: {
  32248. source: "./media/characters/daz/front.svg",
  32249. extra: 1682 / 1164,
  32250. bottom: 42 / 1724
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Normal",
  32257. height: math.unit(0.6, "cm"),
  32258. default: true
  32259. },
  32260. ]
  32261. ))
  32262. characterMakers.push(() => makeCharacter(
  32263. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32264. {
  32265. front: {
  32266. height: math.unit(6, "feet"),
  32267. weight: math.unit(235, "lb"),
  32268. name: "Front",
  32269. image: {
  32270. source: "./media/characters/theo-pangolin/front.svg",
  32271. extra: 1996 / 1969,
  32272. bottom: 115 / 2111
  32273. }
  32274. },
  32275. back: {
  32276. height: math.unit(6, "feet"),
  32277. weight: math.unit(235, "lb"),
  32278. name: "Back",
  32279. image: {
  32280. source: "./media/characters/theo-pangolin/back.svg",
  32281. extra: 1979 / 1979,
  32282. bottom: 40 / 2019
  32283. }
  32284. },
  32285. feral: {
  32286. height: math.unit(2, "feet"),
  32287. weight: math.unit(30, "lb"),
  32288. name: "Feral",
  32289. image: {
  32290. source: "./media/characters/theo-pangolin/feral.svg",
  32291. extra: 803 / 791,
  32292. bottom: 181 / 984
  32293. }
  32294. },
  32295. footFive: {
  32296. height: math.unit(1.43, "feet"),
  32297. name: "Foot (Five Toes)",
  32298. image: {
  32299. source: "./media/characters/theo-pangolin/foot-five.svg"
  32300. }
  32301. },
  32302. footFour: {
  32303. height: math.unit(1.43, "feet"),
  32304. name: "Foot (Four Toes)",
  32305. image: {
  32306. source: "./media/characters/theo-pangolin/foot-four.svg"
  32307. }
  32308. },
  32309. handFour: {
  32310. height: math.unit(0.81, "feet"),
  32311. name: "Hand (Four Fingers)",
  32312. image: {
  32313. source: "./media/characters/theo-pangolin/hand-four.svg"
  32314. }
  32315. },
  32316. handThree: {
  32317. height: math.unit(0.81, "feet"),
  32318. name: "Hand (Three Fingers)",
  32319. image: {
  32320. source: "./media/characters/theo-pangolin/hand-three.svg"
  32321. }
  32322. },
  32323. headFront: {
  32324. height: math.unit(1.37, "feet"),
  32325. name: "Head (Front)",
  32326. image: {
  32327. source: "./media/characters/theo-pangolin/head-front.svg"
  32328. }
  32329. },
  32330. headSide: {
  32331. height: math.unit(1.43, "feet"),
  32332. name: "Head (Side)",
  32333. image: {
  32334. source: "./media/characters/theo-pangolin/head-side.svg"
  32335. }
  32336. },
  32337. tongue: {
  32338. height: math.unit(2.29, "feet"),
  32339. name: "Tongue",
  32340. image: {
  32341. source: "./media/characters/theo-pangolin/tongue.svg"
  32342. }
  32343. },
  32344. },
  32345. [
  32346. {
  32347. name: "Normal",
  32348. height: math.unit(6, "feet")
  32349. },
  32350. {
  32351. name: "Macro",
  32352. height: math.unit(400, "feet"),
  32353. default: true
  32354. },
  32355. ]
  32356. ))
  32357. characterMakers.push(() => makeCharacter(
  32358. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32359. {
  32360. front: {
  32361. height: math.unit(6, "inches"),
  32362. weight: math.unit(0.036, "kg"),
  32363. name: "Front",
  32364. image: {
  32365. source: "./media/characters/renée/front.svg",
  32366. extra: 900 / 886,
  32367. bottom: 8 / 908
  32368. }
  32369. },
  32370. },
  32371. [
  32372. {
  32373. name: "Nano",
  32374. height: math.unit(1, "nm")
  32375. },
  32376. {
  32377. name: "Micro",
  32378. height: math.unit(1, "mm")
  32379. },
  32380. {
  32381. name: "Normal",
  32382. height: math.unit(6, "inches")
  32383. },
  32384. {
  32385. name: "Macro",
  32386. height: math.unit(2000, "feet"),
  32387. default: true
  32388. },
  32389. {
  32390. name: "Megamacro",
  32391. height: math.unit(2, "km")
  32392. },
  32393. {
  32394. name: "Gigamacro",
  32395. height: math.unit(2000, "km")
  32396. },
  32397. {
  32398. name: "Teramacro",
  32399. height: math.unit(250000, "km")
  32400. },
  32401. ]
  32402. ))
  32403. characterMakers.push(() => makeCharacter(
  32404. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32405. {
  32406. front: {
  32407. height: math.unit(4, "meters"),
  32408. weight: math.unit(150, "kg"),
  32409. name: "Front",
  32410. image: {
  32411. source: "./media/characters/caledvwlch/front.svg",
  32412. extra: 1757/1537,
  32413. bottom: 31/1788
  32414. }
  32415. },
  32416. side: {
  32417. height: math.unit(4, "meters"),
  32418. weight: math.unit(150, "kg"),
  32419. name: "Side",
  32420. image: {
  32421. source: "./media/characters/caledvwlch/side.svg",
  32422. extra: 1605 / 1536,
  32423. bottom: 31 / 1636
  32424. }
  32425. },
  32426. back: {
  32427. height: math.unit(4, "meters"),
  32428. weight: math.unit(150, "kg"),
  32429. name: "Back",
  32430. image: {
  32431. source: "./media/characters/caledvwlch/back.svg",
  32432. extra: 1635 / 1565,
  32433. bottom: 27 / 1662
  32434. }
  32435. },
  32436. },
  32437. [
  32438. {
  32439. name: "\"Incognito\"",
  32440. height: math.unit(4, "meters")
  32441. },
  32442. {
  32443. name: "Small rampage",
  32444. height: math.unit(600, "meters")
  32445. },
  32446. {
  32447. name: "Mega",
  32448. height: math.unit(30, "km")
  32449. },
  32450. {
  32451. name: "Home-size",
  32452. height: math.unit(50, "km"),
  32453. default: true
  32454. },
  32455. {
  32456. name: "Giga",
  32457. height: math.unit(300, "km")
  32458. },
  32459. {
  32460. name: "Lounging",
  32461. height: math.unit(11000, "km")
  32462. },
  32463. {
  32464. name: "Planet snacking",
  32465. height: math.unit(2000000, "km")
  32466. },
  32467. ]
  32468. ))
  32469. characterMakers.push(() => makeCharacter(
  32470. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32471. {
  32472. front: {
  32473. height: math.unit(6, "feet"),
  32474. weight: math.unit(215, "lb"),
  32475. name: "Front",
  32476. image: {
  32477. source: "./media/characters/sapphire-svell/front.svg",
  32478. extra: 495 / 455,
  32479. bottom: 20 / 515
  32480. }
  32481. },
  32482. back: {
  32483. height: math.unit(6, "feet"),
  32484. weight: math.unit(216, "lb"),
  32485. name: "Back",
  32486. image: {
  32487. source: "./media/characters/sapphire-svell/back.svg",
  32488. extra: 497 / 477,
  32489. bottom: 7 / 504
  32490. }
  32491. },
  32492. maw: {
  32493. height: math.unit(1.57, "feet"),
  32494. name: "Maw",
  32495. image: {
  32496. source: "./media/characters/sapphire-svell/maw.svg"
  32497. }
  32498. },
  32499. foot: {
  32500. height: math.unit(1.07, "feet"),
  32501. name: "Foot",
  32502. image: {
  32503. source: "./media/characters/sapphire-svell/foot.svg"
  32504. }
  32505. },
  32506. toering: {
  32507. height: math.unit(1.7, "inch"),
  32508. name: "Toering",
  32509. image: {
  32510. source: "./media/characters/sapphire-svell/toering.svg"
  32511. }
  32512. },
  32513. },
  32514. [
  32515. {
  32516. name: "Normal",
  32517. height: math.unit(300, "feet"),
  32518. default: true
  32519. },
  32520. {
  32521. name: "Augmented",
  32522. height: math.unit(1250, "feet")
  32523. },
  32524. {
  32525. name: "Unleashed",
  32526. height: math.unit(3000, "feet")
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32532. {
  32533. side: {
  32534. height: math.unit(2 + 3 / 12, "feet"),
  32535. weight: math.unit(110, "lb"),
  32536. name: "Side",
  32537. image: {
  32538. source: "./media/characters/glitch-flux/side.svg",
  32539. extra: 997 / 805,
  32540. bottom: 20 / 1017
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(2 + 3 / 12, "feet"),
  32548. default: true
  32549. },
  32550. ]
  32551. ))
  32552. characterMakers.push(() => makeCharacter(
  32553. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32554. {
  32555. front: {
  32556. height: math.unit(4, "meters"),
  32557. name: "Front",
  32558. image: {
  32559. source: "./media/characters/mid/front.svg",
  32560. extra: 507 / 476,
  32561. bottom: 17 / 524
  32562. }
  32563. },
  32564. back: {
  32565. height: math.unit(4, "meters"),
  32566. name: "Back",
  32567. image: {
  32568. source: "./media/characters/mid/back.svg",
  32569. extra: 519 / 487,
  32570. bottom: 7 / 526
  32571. }
  32572. },
  32573. stuck: {
  32574. height: math.unit(2.2, "meters"),
  32575. name: "Stuck",
  32576. image: {
  32577. source: "./media/characters/mid/stuck.svg",
  32578. extra: 1951 / 1869,
  32579. bottom: 88 / 2039
  32580. }
  32581. }
  32582. },
  32583. [
  32584. {
  32585. name: "Normal",
  32586. height: math.unit(4, "meters"),
  32587. default: true
  32588. },
  32589. {
  32590. name: "Big",
  32591. height: math.unit(10, "meters")
  32592. },
  32593. {
  32594. name: "Macro",
  32595. height: math.unit(800, "meters")
  32596. },
  32597. {
  32598. name: "Megamacro",
  32599. height: math.unit(100, "km")
  32600. },
  32601. {
  32602. name: "Overgrown",
  32603. height: math.unit(1, "parsec")
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32609. {
  32610. front: {
  32611. height: math.unit(2.5, "meters"),
  32612. weight: math.unit(225, "kg"),
  32613. name: "Front",
  32614. image: {
  32615. source: "./media/characters/iris/front.svg",
  32616. extra: 3348 / 3251,
  32617. bottom: 205 / 3553
  32618. }
  32619. },
  32620. maw: {
  32621. height: math.unit(0.56, "meter"),
  32622. name: "Maw",
  32623. image: {
  32624. source: "./media/characters/iris/maw.svg"
  32625. }
  32626. },
  32627. },
  32628. [
  32629. {
  32630. name: "Mewter cat",
  32631. height: math.unit(1.2, "meters")
  32632. },
  32633. {
  32634. name: "Normal",
  32635. height: math.unit(2.5, "meters"),
  32636. default: true
  32637. },
  32638. {
  32639. name: "Minimacro",
  32640. height: math.unit(18, "feet")
  32641. },
  32642. {
  32643. name: "Macro",
  32644. height: math.unit(140, "feet")
  32645. },
  32646. {
  32647. name: "Macro+",
  32648. height: math.unit(180, "meters")
  32649. },
  32650. {
  32651. name: "Megamacro",
  32652. height: math.unit(2746, "meters")
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32658. {
  32659. front: {
  32660. height: math.unit(6, "feet"),
  32661. weight: math.unit(135, "lb"),
  32662. name: "Front",
  32663. image: {
  32664. source: "./media/characters/axel/front.svg",
  32665. extra: 908 / 908,
  32666. bottom: 58 / 966
  32667. }
  32668. },
  32669. side: {
  32670. height: math.unit(6, "feet"),
  32671. weight: math.unit(135, "lb"),
  32672. name: "Side",
  32673. image: {
  32674. source: "./media/characters/axel/side.svg",
  32675. extra: 958 / 958,
  32676. bottom: 11 / 969
  32677. }
  32678. },
  32679. back: {
  32680. height: math.unit(6, "feet"),
  32681. weight: math.unit(135, "lb"),
  32682. name: "Back",
  32683. image: {
  32684. source: "./media/characters/axel/back.svg",
  32685. extra: 887 / 887,
  32686. bottom: 34 / 921
  32687. }
  32688. },
  32689. head: {
  32690. height: math.unit(1.07, "feet"),
  32691. name: "Head",
  32692. image: {
  32693. source: "./media/characters/axel/head.svg"
  32694. }
  32695. },
  32696. beak: {
  32697. height: math.unit(1.4, "feet"),
  32698. name: "Beak",
  32699. image: {
  32700. source: "./media/characters/axel/beak.svg"
  32701. }
  32702. },
  32703. beakSide: {
  32704. height: math.unit(1.4, "feet"),
  32705. name: "Beak Side",
  32706. image: {
  32707. source: "./media/characters/axel/beak-side.svg"
  32708. }
  32709. },
  32710. sheath: {
  32711. height: math.unit(0.5, "feet"),
  32712. name: "Sheath",
  32713. image: {
  32714. source: "./media/characters/axel/sheath.svg"
  32715. }
  32716. },
  32717. dick: {
  32718. height: math.unit(0.98, "feet"),
  32719. name: "Dick",
  32720. image: {
  32721. source: "./media/characters/axel/dick.svg"
  32722. }
  32723. },
  32724. },
  32725. [
  32726. {
  32727. name: "Macro",
  32728. height: math.unit(68, "meters"),
  32729. default: true
  32730. },
  32731. ]
  32732. ))
  32733. characterMakers.push(() => makeCharacter(
  32734. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32735. {
  32736. front: {
  32737. height: math.unit(3.5, "meters"),
  32738. weight: math.unit(1200, "kg"),
  32739. name: "Front",
  32740. image: {
  32741. source: "./media/characters/joanna/front.svg",
  32742. extra: 1596 / 1488,
  32743. bottom: 29 / 1625
  32744. }
  32745. },
  32746. back: {
  32747. height: math.unit(3.5, "meters"),
  32748. weight: math.unit(1200, "kg"),
  32749. name: "Back",
  32750. image: {
  32751. source: "./media/characters/joanna/back.svg",
  32752. extra: 1594 / 1495,
  32753. bottom: 26 / 1620
  32754. }
  32755. },
  32756. frontShorts: {
  32757. height: math.unit(3.5, "meters"),
  32758. weight: math.unit(1200, "kg"),
  32759. name: "Front (Shorts)",
  32760. image: {
  32761. source: "./media/characters/joanna/front-shorts.svg",
  32762. extra: 1596 / 1488,
  32763. bottom: 29 / 1625
  32764. }
  32765. },
  32766. frontBiker: {
  32767. height: math.unit(3.5, "meters"),
  32768. weight: math.unit(1200, "kg"),
  32769. name: "Front (Biker)",
  32770. image: {
  32771. source: "./media/characters/joanna/front-biker.svg",
  32772. extra: 1596 / 1488,
  32773. bottom: 29 / 1625
  32774. }
  32775. },
  32776. backBiker: {
  32777. height: math.unit(3.5, "meters"),
  32778. weight: math.unit(1200, "kg"),
  32779. name: "Back (Biker)",
  32780. image: {
  32781. source: "./media/characters/joanna/back-biker.svg",
  32782. extra: 1594 / 1495,
  32783. bottom: 88 / 1682
  32784. }
  32785. },
  32786. bikeLeft: {
  32787. height: math.unit(2.4, "meters"),
  32788. weight: math.unit(1600, "kg"),
  32789. name: "Bike (Left)",
  32790. image: {
  32791. source: "./media/characters/joanna/bike-left.svg",
  32792. extra: 720 / 720,
  32793. bottom: 8 / 728
  32794. }
  32795. },
  32796. bikeRight: {
  32797. height: math.unit(2.4, "meters"),
  32798. weight: math.unit(1600, "kg"),
  32799. name: "Bike (Right)",
  32800. image: {
  32801. source: "./media/characters/joanna/bike-right.svg",
  32802. extra: 720 / 720,
  32803. bottom: 8 / 728
  32804. }
  32805. },
  32806. },
  32807. [
  32808. {
  32809. name: "Incognito",
  32810. height: math.unit(3.5, "meters")
  32811. },
  32812. {
  32813. name: "Casual Big",
  32814. height: math.unit(200, "meters")
  32815. },
  32816. {
  32817. name: "Macro",
  32818. height: math.unit(600, "meters")
  32819. },
  32820. {
  32821. name: "Original",
  32822. height: math.unit(20, "km"),
  32823. default: true
  32824. },
  32825. {
  32826. name: "Giga",
  32827. height: math.unit(400, "km")
  32828. },
  32829. {
  32830. name: "Lounging",
  32831. height: math.unit(1500, "km")
  32832. },
  32833. {
  32834. name: "Planetary",
  32835. height: math.unit(200000, "km")
  32836. },
  32837. ]
  32838. ))
  32839. characterMakers.push(() => makeCharacter(
  32840. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32841. {
  32842. front: {
  32843. height: math.unit(6, "feet"),
  32844. weight: math.unit(150, "lb"),
  32845. name: "Front",
  32846. image: {
  32847. source: "./media/characters/hugo-sigil/front.svg",
  32848. extra: 522 / 500,
  32849. bottom: 2 / 524
  32850. }
  32851. },
  32852. back: {
  32853. height: math.unit(6, "feet"),
  32854. weight: math.unit(150, "lb"),
  32855. name: "Back",
  32856. image: {
  32857. source: "./media/characters/hugo-sigil/back.svg",
  32858. extra: 519 / 495,
  32859. bottom: 5 / 524
  32860. }
  32861. },
  32862. maw: {
  32863. height: math.unit(1.4, "feet"),
  32864. weight: math.unit(150, "lb"),
  32865. name: "Maw",
  32866. image: {
  32867. source: "./media/characters/hugo-sigil/maw.svg"
  32868. }
  32869. },
  32870. feet: {
  32871. height: math.unit(1.56, "feet"),
  32872. weight: math.unit(150, "lb"),
  32873. name: "Feet",
  32874. image: {
  32875. source: "./media/characters/hugo-sigil/feet.svg",
  32876. extra: 177 / 177,
  32877. bottom: 12 / 189
  32878. }
  32879. },
  32880. },
  32881. [
  32882. {
  32883. name: "Normal",
  32884. height: math.unit(6, "feet")
  32885. },
  32886. {
  32887. name: "Macro",
  32888. height: math.unit(200, "feet"),
  32889. default: true
  32890. },
  32891. ]
  32892. ))
  32893. characterMakers.push(() => makeCharacter(
  32894. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32895. {
  32896. front: {
  32897. height: math.unit(6, "feet"),
  32898. weight: math.unit(150, "lb"),
  32899. name: "Front",
  32900. image: {
  32901. source: "./media/characters/peri/front.svg",
  32902. extra: 2354 / 2233,
  32903. bottom: 49 / 2403
  32904. }
  32905. },
  32906. },
  32907. [
  32908. {
  32909. name: "Really Small",
  32910. height: math.unit(1, "nm")
  32911. },
  32912. {
  32913. name: "Micro",
  32914. height: math.unit(4, "inches")
  32915. },
  32916. {
  32917. name: "Normal",
  32918. height: math.unit(7, "inches"),
  32919. default: true
  32920. },
  32921. {
  32922. name: "Macro",
  32923. height: math.unit(400, "feet")
  32924. },
  32925. {
  32926. name: "Megamacro",
  32927. height: math.unit(100, "miles")
  32928. },
  32929. ]
  32930. ))
  32931. characterMakers.push(() => makeCharacter(
  32932. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32933. {
  32934. frontSlim: {
  32935. height: math.unit(7, "feet"),
  32936. name: "Front (Slim)",
  32937. image: {
  32938. source: "./media/characters/issilora/front-slim.svg",
  32939. extra: 529 / 449,
  32940. bottom: 53 / 582
  32941. }
  32942. },
  32943. sideSlim: {
  32944. height: math.unit(7, "feet"),
  32945. name: "Side (Slim)",
  32946. image: {
  32947. source: "./media/characters/issilora/side-slim.svg",
  32948. extra: 570 / 480,
  32949. bottom: 30 / 600
  32950. }
  32951. },
  32952. backSlim: {
  32953. height: math.unit(7, "feet"),
  32954. name: "Back (Slim)",
  32955. image: {
  32956. source: "./media/characters/issilora/back-slim.svg",
  32957. extra: 537 / 455,
  32958. bottom: 46 / 583
  32959. }
  32960. },
  32961. frontBuff: {
  32962. height: math.unit(7, "feet"),
  32963. name: "Front (Buff)",
  32964. image: {
  32965. source: "./media/characters/issilora/front-buff.svg",
  32966. extra: 2310 / 2035,
  32967. bottom: 335 / 2645
  32968. }
  32969. },
  32970. head: {
  32971. height: math.unit(1.94, "feet"),
  32972. name: "Head",
  32973. image: {
  32974. source: "./media/characters/issilora/head.svg"
  32975. }
  32976. },
  32977. },
  32978. [
  32979. {
  32980. name: "Minimum",
  32981. height: math.unit(7, "feet")
  32982. },
  32983. {
  32984. name: "Comfortable",
  32985. height: math.unit(17, "feet")
  32986. },
  32987. {
  32988. name: "Fun Size",
  32989. height: math.unit(47, "feet")
  32990. },
  32991. {
  32992. name: "Natural Macro",
  32993. height: math.unit(137, "feet"),
  32994. default: true
  32995. },
  32996. {
  32997. name: "Maximum Kaiju",
  32998. height: math.unit(397, "feet")
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33004. {
  33005. front: {
  33006. height: math.unit(50 + 9/12, "feet"),
  33007. weight: math.unit(32.8, "tons"),
  33008. name: "Front",
  33009. image: {
  33010. source: "./media/characters/irb'iiritaahn/front.svg",
  33011. extra: 1878/1826,
  33012. bottom: 326/2204
  33013. }
  33014. },
  33015. back: {
  33016. height: math.unit(50 + 9/12, "feet"),
  33017. weight: math.unit(32.8, "tons"),
  33018. name: "Back",
  33019. image: {
  33020. source: "./media/characters/irb'iiritaahn/back.svg",
  33021. extra: 2052/2018,
  33022. bottom: 152/2204
  33023. }
  33024. },
  33025. head: {
  33026. height: math.unit(12.86, "feet"),
  33027. name: "Head",
  33028. image: {
  33029. source: "./media/characters/irb'iiritaahn/head.svg"
  33030. }
  33031. },
  33032. maw: {
  33033. height: math.unit(9.66, "feet"),
  33034. name: "Maw",
  33035. image: {
  33036. source: "./media/characters/irb'iiritaahn/maw.svg"
  33037. }
  33038. },
  33039. frontDick: {
  33040. height: math.unit(8.78461, "feet"),
  33041. name: "Front Dick",
  33042. image: {
  33043. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33044. }
  33045. },
  33046. rearDick: {
  33047. height: math.unit(8.78461, "feet"),
  33048. name: "Rear Dick",
  33049. image: {
  33050. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33051. }
  33052. },
  33053. rearDickUnfolded: {
  33054. height: math.unit(8.78, "feet"),
  33055. name: "Rear Dick (Unfolded)",
  33056. image: {
  33057. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33058. }
  33059. },
  33060. wings: {
  33061. height: math.unit(43, "feet"),
  33062. name: "Wings",
  33063. image: {
  33064. source: "./media/characters/irb'iiritaahn/wings.svg"
  33065. }
  33066. },
  33067. },
  33068. [
  33069. {
  33070. name: "Macro",
  33071. height: math.unit(50 + 9/12, "feet"),
  33072. default: true
  33073. },
  33074. ]
  33075. ))
  33076. characterMakers.push(() => makeCharacter(
  33077. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33078. {
  33079. front: {
  33080. height: math.unit(205, "cm"),
  33081. weight: math.unit(102, "kg"),
  33082. name: "Front",
  33083. image: {
  33084. source: "./media/characters/irbisgreif/front.svg",
  33085. extra: 785/706,
  33086. bottom: 13/798
  33087. }
  33088. },
  33089. back: {
  33090. height: math.unit(205, "cm"),
  33091. weight: math.unit(102, "kg"),
  33092. name: "Back",
  33093. image: {
  33094. source: "./media/characters/irbisgreif/back.svg",
  33095. extra: 713/701,
  33096. bottom: 26/739
  33097. }
  33098. },
  33099. frontDressed: {
  33100. height: math.unit(216, "cm"),
  33101. weight: math.unit(102, "kg"),
  33102. name: "Front-dressed",
  33103. image: {
  33104. source: "./media/characters/irbisgreif/front-dressed.svg",
  33105. extra: 902/776,
  33106. bottom: 14/916
  33107. }
  33108. },
  33109. sideDressed: {
  33110. height: math.unit(195, "cm"),
  33111. weight: math.unit(102, "kg"),
  33112. name: "Side-dressed",
  33113. image: {
  33114. source: "./media/characters/irbisgreif/side-dressed.svg",
  33115. extra: 788/688,
  33116. bottom: 21/809
  33117. }
  33118. },
  33119. backDressed: {
  33120. height: math.unit(216, "cm"),
  33121. weight: math.unit(102, "kg"),
  33122. name: "Back-dressed",
  33123. image: {
  33124. source: "./media/characters/irbisgreif/back-dressed.svg",
  33125. extra: 901/783,
  33126. bottom: 10/911
  33127. }
  33128. },
  33129. dick: {
  33130. height: math.unit(0.49, "feet"),
  33131. name: "Dick",
  33132. image: {
  33133. source: "./media/characters/irbisgreif/dick.svg"
  33134. }
  33135. },
  33136. wingTop: {
  33137. height: math.unit(1.93 , "feet"),
  33138. name: "Wing-top",
  33139. image: {
  33140. source: "./media/characters/irbisgreif/wing-top.svg"
  33141. }
  33142. },
  33143. wingBottom: {
  33144. height: math.unit(1.93 , "feet"),
  33145. name: "Wing-bottom",
  33146. image: {
  33147. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33148. }
  33149. },
  33150. },
  33151. [
  33152. {
  33153. name: "Normal",
  33154. height: math.unit(216, "cm"),
  33155. default: true
  33156. },
  33157. ]
  33158. ))
  33159. characterMakers.push(() => makeCharacter(
  33160. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33161. {
  33162. front: {
  33163. height: math.unit(6, "feet"),
  33164. weight: math.unit(150, "lb"),
  33165. name: "Front",
  33166. image: {
  33167. source: "./media/characters/pride/front.svg",
  33168. extra: 1299/1230,
  33169. bottom: 18/1317
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Normal",
  33176. height: math.unit(7, "feet")
  33177. },
  33178. {
  33179. name: "Mini-macro",
  33180. height: math.unit(11, "feet")
  33181. },
  33182. {
  33183. name: "Macro",
  33184. height: math.unit(15, "meters"),
  33185. default: true
  33186. },
  33187. {
  33188. name: "Macro+",
  33189. height: math.unit(40, "meters")
  33190. },
  33191. ]
  33192. ))
  33193. characterMakers.push(() => makeCharacter(
  33194. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33195. {
  33196. front: {
  33197. height: math.unit(4 + 2 / 12, "feet"),
  33198. weight: math.unit(95, "lb"),
  33199. name: "Front",
  33200. image: {
  33201. source: "./media/characters/vaelophis-nyx/front.svg",
  33202. extra: 2532/2330,
  33203. bottom: 0/2532
  33204. }
  33205. },
  33206. back: {
  33207. height: math.unit(4 + 2 / 12, "feet"),
  33208. weight: math.unit(95, "lb"),
  33209. name: "Back",
  33210. image: {
  33211. source: "./media/characters/vaelophis-nyx/back.svg",
  33212. extra: 2484/2361,
  33213. bottom: 0/2484
  33214. }
  33215. },
  33216. feralSide: {
  33217. height: math.unit(2 + 1/12, "feet"),
  33218. weight: math.unit(20, "lb"),
  33219. name: "Feral (Side)",
  33220. image: {
  33221. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33222. extra: 1721/1581,
  33223. bottom: 70/1791
  33224. }
  33225. },
  33226. feralLazing: {
  33227. height: math.unit(1.08, "feet"),
  33228. weight: math.unit(20, "lb"),
  33229. name: "Feral (Lazing)",
  33230. image: {
  33231. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33232. extra: 822/822,
  33233. bottom: 248/1070
  33234. }
  33235. },
  33236. ear: {
  33237. height: math.unit(0.416, "feet"),
  33238. name: "Ear",
  33239. image: {
  33240. source: "./media/characters/vaelophis-nyx/ear.svg"
  33241. }
  33242. },
  33243. eye: {
  33244. height: math.unit(0.0748, "feet"),
  33245. name: "Eye",
  33246. image: {
  33247. source: "./media/characters/vaelophis-nyx/eye.svg"
  33248. }
  33249. },
  33250. mouth: {
  33251. height: math.unit(0.378, "feet"),
  33252. name: "Mouth",
  33253. image: {
  33254. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33255. }
  33256. },
  33257. spade: {
  33258. height: math.unit(0.55, "feet"),
  33259. name: "Spade",
  33260. image: {
  33261. source: "./media/characters/vaelophis-nyx/spade.svg"
  33262. }
  33263. },
  33264. },
  33265. [
  33266. {
  33267. name: "Normal",
  33268. height: math.unit(4 + 2/12, "feet"),
  33269. default: true
  33270. },
  33271. ]
  33272. ))
  33273. characterMakers.push(() => makeCharacter(
  33274. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33275. {
  33276. front: {
  33277. height: math.unit(7, "feet"),
  33278. weight: math.unit(231, "lb"),
  33279. name: "Front",
  33280. image: {
  33281. source: "./media/characters/flux/front.svg",
  33282. extra: 919/871,
  33283. bottom: 0/919
  33284. }
  33285. },
  33286. back: {
  33287. height: math.unit(7, "feet"),
  33288. weight: math.unit(231, "lb"),
  33289. name: "Back",
  33290. image: {
  33291. source: "./media/characters/flux/back.svg",
  33292. extra: 1040/992,
  33293. bottom: 0/1040
  33294. }
  33295. },
  33296. frontDressed: {
  33297. height: math.unit(7, "feet"),
  33298. weight: math.unit(231, "lb"),
  33299. name: "Front (Dressed)",
  33300. image: {
  33301. source: "./media/characters/flux/front-dressed.svg",
  33302. extra: 919/871,
  33303. bottom: 0/919
  33304. }
  33305. },
  33306. feralSide: {
  33307. height: math.unit(5, "feet"),
  33308. weight: math.unit(150, "lb"),
  33309. name: "Feral (Side)",
  33310. image: {
  33311. source: "./media/characters/flux/feral-side.svg",
  33312. extra: 598/528,
  33313. bottom: 28/626
  33314. }
  33315. },
  33316. head: {
  33317. height: math.unit(1.585, "feet"),
  33318. name: "Head",
  33319. image: {
  33320. source: "./media/characters/flux/head.svg"
  33321. }
  33322. },
  33323. headSide: {
  33324. height: math.unit(1.74, "feet"),
  33325. name: "Head (Side)",
  33326. image: {
  33327. source: "./media/characters/flux/head-side.svg"
  33328. }
  33329. },
  33330. headSideFire: {
  33331. height: math.unit(1.76, "feet"),
  33332. name: "Head (Side, Fire)",
  33333. image: {
  33334. source: "./media/characters/flux/head-side-fire.svg"
  33335. }
  33336. },
  33337. },
  33338. [
  33339. {
  33340. name: "Normal",
  33341. height: math.unit(7, "feet"),
  33342. default: true
  33343. },
  33344. ]
  33345. ))
  33346. characterMakers.push(() => makeCharacter(
  33347. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33348. {
  33349. front: {
  33350. height: math.unit(9, "feet"),
  33351. weight: math.unit(1012, "lb"),
  33352. name: "Front",
  33353. image: {
  33354. source: "./media/characters/ulfra-lupae/front.svg",
  33355. extra: 1083/1011,
  33356. bottom: 67/1150
  33357. }
  33358. },
  33359. },
  33360. [
  33361. {
  33362. name: "Micro",
  33363. height: math.unit(6, "inches")
  33364. },
  33365. {
  33366. name: "Socializing",
  33367. height: math.unit(6 + 5/12, "feet")
  33368. },
  33369. {
  33370. name: "Normal",
  33371. height: math.unit(9, "feet"),
  33372. default: true
  33373. },
  33374. {
  33375. name: "Macro",
  33376. height: math.unit(150, "feet")
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33382. {
  33383. front: {
  33384. height: math.unit(5 + 2/12, "feet"),
  33385. weight: math.unit(120, "lb"),
  33386. name: "Front",
  33387. image: {
  33388. source: "./media/characters/timber/front.svg",
  33389. extra: 2814/2705,
  33390. bottom: 181/2995
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(5 + 2/12, "feet"),
  33398. default: true
  33399. },
  33400. ]
  33401. ))
  33402. characterMakers.push(() => makeCharacter(
  33403. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33404. {
  33405. front: {
  33406. height: math.unit(9, "feet"),
  33407. name: "Front",
  33408. image: {
  33409. source: "./media/characters/nicki/front.svg",
  33410. extra: 1240/990,
  33411. bottom: 45/1285
  33412. },
  33413. form: "anthro",
  33414. default: true
  33415. },
  33416. side: {
  33417. height: math.unit(9, "feet"),
  33418. name: "Side",
  33419. image: {
  33420. source: "./media/characters/nicki/side.svg",
  33421. extra: 1047/973,
  33422. bottom: 61/1108
  33423. },
  33424. form: "anthro"
  33425. },
  33426. back: {
  33427. height: math.unit(9, "feet"),
  33428. name: "Back",
  33429. image: {
  33430. source: "./media/characters/nicki/back.svg",
  33431. extra: 1006/965,
  33432. bottom: 39/1045
  33433. },
  33434. form: "anthro"
  33435. },
  33436. taur: {
  33437. height: math.unit(15, "feet"),
  33438. name: "Taur",
  33439. image: {
  33440. source: "./media/characters/nicki/taur.svg",
  33441. extra: 1592/1347,
  33442. bottom: 0/1592
  33443. },
  33444. form: "taur",
  33445. default: true
  33446. },
  33447. },
  33448. [
  33449. {
  33450. name: "Normal",
  33451. height: math.unit(9, "feet"),
  33452. form: "anthro",
  33453. default: true
  33454. },
  33455. {
  33456. name: "Normal",
  33457. height: math.unit(15, "feet"),
  33458. form: "taur",
  33459. default: true
  33460. }
  33461. ],
  33462. {
  33463. "anthro": {
  33464. name: "Anthro",
  33465. default: true
  33466. },
  33467. "taur": {
  33468. name: "Taur"
  33469. }
  33470. }
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33474. {
  33475. front: {
  33476. height: math.unit(7 + 10/12, "feet"),
  33477. weight: math.unit(3.5, "tons"),
  33478. name: "Front",
  33479. image: {
  33480. source: "./media/characters/lee/front.svg",
  33481. extra: 1773/1615,
  33482. bottom: 86/1859
  33483. }
  33484. },
  33485. hand: {
  33486. height: math.unit(1.78, "feet"),
  33487. name: "Hand",
  33488. image: {
  33489. source: "./media/characters/lee/hand.svg"
  33490. }
  33491. },
  33492. maw: {
  33493. height: math.unit(1.18, "feet"),
  33494. name: "Maw",
  33495. image: {
  33496. source: "./media/characters/lee/maw.svg"
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Normal",
  33503. height: math.unit(7 + 10/12, "feet"),
  33504. default: true
  33505. },
  33506. ]
  33507. ))
  33508. characterMakers.push(() => makeCharacter(
  33509. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33510. {
  33511. front: {
  33512. height: math.unit(9, "feet"),
  33513. name: "Front",
  33514. image: {
  33515. source: "./media/characters/guti/front.svg",
  33516. extra: 4551/4355,
  33517. bottom: 123/4674
  33518. }
  33519. },
  33520. tongue: {
  33521. height: math.unit(1, "feet"),
  33522. name: "Tongue",
  33523. image: {
  33524. source: "./media/characters/guti/tongue.svg"
  33525. }
  33526. },
  33527. paw: {
  33528. height: math.unit(1.18, "feet"),
  33529. name: "Paw",
  33530. image: {
  33531. source: "./media/characters/guti/paw.svg"
  33532. }
  33533. },
  33534. },
  33535. [
  33536. {
  33537. name: "Normal",
  33538. height: math.unit(9, "feet"),
  33539. default: true
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33545. {
  33546. side: {
  33547. height: math.unit(5, "meters"),
  33548. name: "Side",
  33549. image: {
  33550. source: "./media/characters/vesper/side.svg",
  33551. extra: 1605/1518,
  33552. bottom: 0/1605
  33553. }
  33554. },
  33555. },
  33556. [
  33557. {
  33558. name: "Small",
  33559. height: math.unit(5, "meters")
  33560. },
  33561. {
  33562. name: "Sage",
  33563. height: math.unit(100, "meters"),
  33564. default: true
  33565. },
  33566. {
  33567. name: "Fun Size",
  33568. height: math.unit(600, "meters")
  33569. },
  33570. {
  33571. name: "Goddess",
  33572. height: math.unit(20000, "km")
  33573. },
  33574. {
  33575. name: "Maximum",
  33576. height: math.unit(5, "galaxies")
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(6 + 3/12, "feet"),
  33585. weight: math.unit(190, "lb"),
  33586. name: "Front",
  33587. image: {
  33588. source: "./media/characters/gawain/front.svg",
  33589. extra: 2222/2139,
  33590. bottom: 90/2312
  33591. }
  33592. },
  33593. back: {
  33594. height: math.unit(6 + 3/12, "feet"),
  33595. weight: math.unit(190, "lb"),
  33596. name: "Back",
  33597. image: {
  33598. source: "./media/characters/gawain/back.svg",
  33599. extra: 2199/2111,
  33600. bottom: 73/2272
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Normal",
  33607. height: math.unit(6 + 3/12, "feet"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33614. {
  33615. side: {
  33616. height: math.unit(3.5, "meters"),
  33617. weight: math.unit(16000, "lb"),
  33618. name: "Side",
  33619. image: {
  33620. source: "./media/characters/dascalti/side.svg",
  33621. extra: 392/273,
  33622. bottom: 47/439
  33623. }
  33624. },
  33625. breath: {
  33626. height: math.unit(7.4, "feet"),
  33627. name: "Breath",
  33628. image: {
  33629. source: "./media/characters/dascalti/breath.svg"
  33630. }
  33631. },
  33632. fed: {
  33633. height: math.unit(3.6, "meters"),
  33634. weight: math.unit(16000, "lb"),
  33635. name: "Fed",
  33636. image: {
  33637. source: "./media/characters/dascalti/fed.svg",
  33638. extra: 1419/820,
  33639. bottom: 95/1514
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(3.5, "meters"),
  33647. default: true
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(3 + 5/12, "feet"),
  33656. name: "Front",
  33657. image: {
  33658. source: "./media/characters/mauve/front.svg",
  33659. extra: 1126/1033,
  33660. bottom: 65/1191
  33661. }
  33662. },
  33663. side: {
  33664. height: math.unit(3 + 5/12, "feet"),
  33665. name: "Side",
  33666. image: {
  33667. source: "./media/characters/mauve/side.svg",
  33668. extra: 1089/1001,
  33669. bottom: 29/1118
  33670. }
  33671. },
  33672. back: {
  33673. height: math.unit(3 + 5/12, "feet"),
  33674. name: "Back",
  33675. image: {
  33676. source: "./media/characters/mauve/back.svg",
  33677. extra: 1173/1053,
  33678. bottom: 109/1282
  33679. }
  33680. },
  33681. },
  33682. [
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(3 + 5/12, "feet"),
  33686. default: true
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33692. {
  33693. front: {
  33694. height: math.unit(6 + 3/12, "feet"),
  33695. weight: math.unit(430, "lb"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/carlos/front.svg",
  33699. extra: 1964/1913,
  33700. bottom: 70/2034
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(6 + 3/12, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33714. {
  33715. back: {
  33716. height: math.unit(5 + 10/12, "feet"),
  33717. weight: math.unit(200, "lb"),
  33718. name: "Back",
  33719. image: {
  33720. source: "./media/characters/jax/back.svg",
  33721. extra: 764/739,
  33722. bottom: 25/789
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(5 + 10/12, "feet"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(8, "feet"),
  33739. weight: math.unit(250, "lb"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/eikthynir/front.svg",
  33743. extra: 1332/1166,
  33744. bottom: 82/1414
  33745. }
  33746. },
  33747. back: {
  33748. height: math.unit(8, "feet"),
  33749. weight: math.unit(250, "lb"),
  33750. name: "Back",
  33751. image: {
  33752. source: "./media/characters/eikthynir/back.svg",
  33753. extra: 1342/1190,
  33754. bottom: 19/1361
  33755. }
  33756. },
  33757. dick: {
  33758. height: math.unit(2.35, "feet"),
  33759. name: "Dick",
  33760. image: {
  33761. source: "./media/characters/eikthynir/dick.svg"
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Normal",
  33768. height: math.unit(8, "feet"),
  33769. default: true
  33770. },
  33771. ]
  33772. ))
  33773. characterMakers.push(() => makeCharacter(
  33774. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33775. {
  33776. front: {
  33777. height: math.unit(99, "meters"),
  33778. weight: math.unit(13000, "tons"),
  33779. name: "Front",
  33780. image: {
  33781. source: "./media/characters/zlmos/front.svg",
  33782. extra: 2202/1992,
  33783. bottom: 315/2517
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Macro",
  33790. height: math.unit(99, "meters"),
  33791. default: true
  33792. },
  33793. ]
  33794. ))
  33795. characterMakers.push(() => makeCharacter(
  33796. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33797. {
  33798. front: {
  33799. height: math.unit(6 + 5/12, "feet"),
  33800. name: "Front",
  33801. image: {
  33802. source: "./media/characters/purri/front.svg",
  33803. extra: 1698/1610,
  33804. bottom: 32/1730
  33805. }
  33806. },
  33807. frontAlt: {
  33808. height: math.unit(6 + 5/12, "feet"),
  33809. name: "Front (Alt)",
  33810. image: {
  33811. source: "./media/characters/purri/front-alt.svg",
  33812. extra: 450/420,
  33813. bottom: 26/476
  33814. }
  33815. },
  33816. boots: {
  33817. height: math.unit(5.5, "feet"),
  33818. name: "Boots",
  33819. image: {
  33820. source: "./media/characters/purri/boots.svg",
  33821. extra: 905/853,
  33822. bottom: 18/923
  33823. }
  33824. },
  33825. lying: {
  33826. height: math.unit(2, "feet"),
  33827. name: "Lying",
  33828. image: {
  33829. source: "./media/characters/purri/lying.svg",
  33830. extra: 940/843,
  33831. bottom: 146/1086
  33832. }
  33833. },
  33834. devious: {
  33835. height: math.unit(1.77, "feet"),
  33836. name: "Devious",
  33837. image: {
  33838. source: "./media/characters/purri/devious.svg",
  33839. extra: 1440/1155,
  33840. bottom: 147/1587
  33841. }
  33842. },
  33843. bean: {
  33844. height: math.unit(1.94, "feet"),
  33845. name: "Bean",
  33846. image: {
  33847. source: "./media/characters/purri/bean.svg"
  33848. }
  33849. },
  33850. },
  33851. [
  33852. {
  33853. name: "Micro",
  33854. height: math.unit(1, "mm")
  33855. },
  33856. {
  33857. name: "Normal",
  33858. height: math.unit(6 + 5/12, "feet"),
  33859. default: true
  33860. },
  33861. {
  33862. name: "Macro :3c",
  33863. height: math.unit(2, "miles")
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(6 + 2/12, "feet"),
  33872. weight: math.unit(250, "lb"),
  33873. name: "Front",
  33874. image: {
  33875. source: "./media/characters/moonlight/front.svg",
  33876. extra: 1044/908,
  33877. bottom: 56/1100
  33878. }
  33879. },
  33880. feral: {
  33881. height: math.unit(3 + 1/12, "feet"),
  33882. weight: math.unit(50, "kg"),
  33883. name: "Feral",
  33884. image: {
  33885. source: "./media/characters/moonlight/feral.svg",
  33886. extra: 3705/2791,
  33887. bottom: 145/3850
  33888. }
  33889. },
  33890. paw: {
  33891. height: math.unit(1, "feet"),
  33892. name: "Paw",
  33893. image: {
  33894. source: "./media/characters/moonlight/paw.svg"
  33895. }
  33896. },
  33897. paws: {
  33898. height: math.unit(0.98, "feet"),
  33899. name: "Paws",
  33900. image: {
  33901. source: "./media/characters/moonlight/paws.svg",
  33902. extra: 939/939,
  33903. bottom: 50/989
  33904. }
  33905. },
  33906. mouth: {
  33907. height: math.unit(0.48, "feet"),
  33908. name: "Mouth",
  33909. image: {
  33910. source: "./media/characters/moonlight/mouth.svg"
  33911. }
  33912. },
  33913. dick: {
  33914. height: math.unit(1.46, "feet"),
  33915. name: "Dick",
  33916. image: {
  33917. source: "./media/characters/moonlight/dick.svg"
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Normal",
  33924. height: math.unit(6 + 2/12, "feet"),
  33925. default: true
  33926. },
  33927. {
  33928. name: "Macro",
  33929. height: math.unit(300, "feet")
  33930. },
  33931. {
  33932. name: "Macro+",
  33933. height: math.unit(1, "mile")
  33934. },
  33935. {
  33936. name: "Mt. Moon",
  33937. height: math.unit(5, "miles")
  33938. },
  33939. {
  33940. name: "Megamacro",
  33941. height: math.unit(15, "miles")
  33942. },
  33943. ]
  33944. ))
  33945. characterMakers.push(() => makeCharacter(
  33946. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33947. {
  33948. back: {
  33949. height: math.unit(6, "feet"),
  33950. weight: math.unit(150, "lb"),
  33951. name: "Back",
  33952. image: {
  33953. source: "./media/characters/sylen/back.svg",
  33954. extra: 1335/1273,
  33955. bottom: 107/1442
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Normal",
  33962. height: math.unit(5 + 5/12, "feet")
  33963. },
  33964. {
  33965. name: "Megamacro",
  33966. height: math.unit(3, "miles"),
  33967. default: true
  33968. },
  33969. ]
  33970. ))
  33971. characterMakers.push(() => makeCharacter(
  33972. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33973. {
  33974. front: {
  33975. height: math.unit(6, "feet"),
  33976. weight: math.unit(190, "lb"),
  33977. name: "Front",
  33978. image: {
  33979. source: "./media/characters/huttser/front.svg",
  33980. extra: 1152/1058,
  33981. bottom: 23/1175
  33982. }
  33983. },
  33984. side: {
  33985. height: math.unit(6, "feet"),
  33986. weight: math.unit(190, "lb"),
  33987. name: "Side",
  33988. image: {
  33989. source: "./media/characters/huttser/side.svg",
  33990. extra: 1174/1065,
  33991. bottom: 18/1192
  33992. }
  33993. },
  33994. back: {
  33995. height: math.unit(6, "feet"),
  33996. weight: math.unit(190, "lb"),
  33997. name: "Back",
  33998. image: {
  33999. source: "./media/characters/huttser/back.svg",
  34000. extra: 1158/1056,
  34001. bottom: 12/1170
  34002. }
  34003. },
  34004. },
  34005. [
  34006. ]
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34010. {
  34011. side: {
  34012. height: math.unit(12 + 9/12, "feet"),
  34013. weight: math.unit(15000, "lb"),
  34014. name: "Side",
  34015. image: {
  34016. source: "./media/characters/faan/side.svg",
  34017. extra: 2747/2697,
  34018. bottom: 0/2747
  34019. }
  34020. },
  34021. front: {
  34022. height: math.unit(12 + 9/12, "feet"),
  34023. weight: math.unit(15000, "lb"),
  34024. name: "Front",
  34025. image: {
  34026. source: "./media/characters/faan/front.svg",
  34027. extra: 607/571,
  34028. bottom: 24/631
  34029. }
  34030. },
  34031. head: {
  34032. height: math.unit(2.85, "feet"),
  34033. name: "Head",
  34034. image: {
  34035. source: "./media/characters/faan/head.svg"
  34036. }
  34037. },
  34038. headAlt: {
  34039. height: math.unit(3.13, "feet"),
  34040. name: "Head-alt",
  34041. image: {
  34042. source: "./media/characters/faan/head-alt.svg"
  34043. }
  34044. },
  34045. },
  34046. [
  34047. {
  34048. name: "Normal",
  34049. height: math.unit(12 + 9/12, "feet"),
  34050. default: true
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(6, "feet"),
  34059. weight: math.unit(300, "lb"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/tanio/front.svg",
  34063. extra: 711/673,
  34064. bottom: 25/736
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Normal",
  34071. height: math.unit(6, "feet"),
  34072. default: true
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34078. {
  34079. front: {
  34080. height: math.unit(3, "inches"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/noboru/front.svg",
  34084. extra: 1039/932,
  34085. bottom: 18/1057
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Micro",
  34092. height: math.unit(3, "inches"),
  34093. default: true
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34099. {
  34100. front: {
  34101. height: math.unit(1.85, "meters"),
  34102. weight: math.unit(80, "kg"),
  34103. name: "Front",
  34104. image: {
  34105. source: "./media/characters/daniel-barrett/front.svg",
  34106. extra: 355/337,
  34107. bottom: 9/364
  34108. }
  34109. },
  34110. },
  34111. [
  34112. {
  34113. name: "Pico",
  34114. height: math.unit(0.0433, "mm")
  34115. },
  34116. {
  34117. name: "Nano",
  34118. height: math.unit(1.5, "mm")
  34119. },
  34120. {
  34121. name: "Micro",
  34122. height: math.unit(5.3, "cm"),
  34123. default: true
  34124. },
  34125. {
  34126. name: "Normal",
  34127. height: math.unit(1.85, "meters")
  34128. },
  34129. {
  34130. name: "Macro",
  34131. height: math.unit(64.7, "meters")
  34132. },
  34133. {
  34134. name: "Megamacro",
  34135. height: math.unit(2.26, "km")
  34136. },
  34137. {
  34138. name: "Gigamacro",
  34139. height: math.unit(79, "km")
  34140. },
  34141. {
  34142. name: "Teramacro",
  34143. height: math.unit(2765, "km")
  34144. },
  34145. {
  34146. name: "Petamacro",
  34147. height: math.unit(96678, "km")
  34148. },
  34149. ]
  34150. ))
  34151. characterMakers.push(() => makeCharacter(
  34152. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34153. {
  34154. front: {
  34155. height: math.unit(30, "meters"),
  34156. weight: math.unit(400, "tons"),
  34157. name: "Front",
  34158. image: {
  34159. source: "./media/characters/zeel/front.svg",
  34160. extra: 2599/2599,
  34161. bottom: 226/2825
  34162. }
  34163. },
  34164. },
  34165. [
  34166. {
  34167. name: "Macro",
  34168. height: math.unit(30, "meters"),
  34169. default: true
  34170. },
  34171. ]
  34172. ))
  34173. characterMakers.push(() => makeCharacter(
  34174. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34175. {
  34176. front: {
  34177. height: math.unit(6 + 7/12, "feet"),
  34178. weight: math.unit(210, "lb"),
  34179. name: "Front",
  34180. image: {
  34181. source: "./media/characters/tarn/front.svg",
  34182. extra: 3517/3220,
  34183. bottom: 91/3608
  34184. }
  34185. },
  34186. back: {
  34187. height: math.unit(6 + 7/12, "feet"),
  34188. weight: math.unit(210, "lb"),
  34189. name: "Back",
  34190. image: {
  34191. source: "./media/characters/tarn/back.svg",
  34192. extra: 3566/3241,
  34193. bottom: 34/3600
  34194. }
  34195. },
  34196. dick: {
  34197. height: math.unit(1.65, "feet"),
  34198. name: "Dick",
  34199. image: {
  34200. source: "./media/characters/tarn/dick.svg"
  34201. }
  34202. },
  34203. paw: {
  34204. height: math.unit(1.80, "feet"),
  34205. name: "Paw",
  34206. image: {
  34207. source: "./media/characters/tarn/paw.svg"
  34208. }
  34209. },
  34210. tongue: {
  34211. height: math.unit(0.97, "feet"),
  34212. name: "Tongue",
  34213. image: {
  34214. source: "./media/characters/tarn/tongue.svg"
  34215. }
  34216. },
  34217. },
  34218. [
  34219. {
  34220. name: "Micro",
  34221. height: math.unit(4, "inches")
  34222. },
  34223. {
  34224. name: "Normal",
  34225. height: math.unit(6 + 7/12, "feet"),
  34226. default: true
  34227. },
  34228. {
  34229. name: "Macro",
  34230. height: math.unit(300, "feet")
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34236. {
  34237. front: {
  34238. height: math.unit(5 + 7/12, "feet"),
  34239. weight: math.unit(80, "kg"),
  34240. name: "Front",
  34241. image: {
  34242. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34243. extra: 3023/2865,
  34244. bottom: 33/3056
  34245. }
  34246. },
  34247. back: {
  34248. height: math.unit(5 + 7/12, "feet"),
  34249. weight: math.unit(80, "kg"),
  34250. name: "Back",
  34251. image: {
  34252. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34253. extra: 3020/2886,
  34254. bottom: 30/3050
  34255. }
  34256. },
  34257. dick: {
  34258. height: math.unit(0.98, "feet"),
  34259. name: "Dick",
  34260. image: {
  34261. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34262. }
  34263. },
  34264. anatomy: {
  34265. height: math.unit(2.86, "feet"),
  34266. name: "Anatomy",
  34267. image: {
  34268. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Really Small",
  34275. height: math.unit(2, "inches")
  34276. },
  34277. {
  34278. name: "Micro",
  34279. height: math.unit(5.583, "inches")
  34280. },
  34281. {
  34282. name: "Normal",
  34283. height: math.unit(5 + 7/12, "feet"),
  34284. default: true
  34285. },
  34286. {
  34287. name: "Macro",
  34288. height: math.unit(67, "feet")
  34289. },
  34290. {
  34291. name: "Megamacro",
  34292. height: math.unit(134, "feet")
  34293. },
  34294. ]
  34295. ))
  34296. characterMakers.push(() => makeCharacter(
  34297. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34298. {
  34299. front: {
  34300. height: math.unit(9, "feet"),
  34301. weight: math.unit(120, "lb"),
  34302. name: "Front",
  34303. image: {
  34304. source: "./media/characters/sally/front.svg",
  34305. extra: 1506/1349,
  34306. bottom: 66/1572
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Normal",
  34313. height: math.unit(9, "feet"),
  34314. default: true
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34320. {
  34321. front: {
  34322. height: math.unit(8, "feet"),
  34323. weight: math.unit(900, "lb"),
  34324. name: "Front",
  34325. image: {
  34326. source: "./media/characters/owen/front.svg",
  34327. extra: 1761/1657,
  34328. bottom: 74/1835
  34329. }
  34330. },
  34331. side: {
  34332. height: math.unit(8, "feet"),
  34333. weight: math.unit(900, "lb"),
  34334. name: "Side",
  34335. image: {
  34336. source: "./media/characters/owen/side.svg",
  34337. extra: 1797/1734,
  34338. bottom: 30/1827
  34339. }
  34340. },
  34341. back: {
  34342. height: math.unit(8, "feet"),
  34343. weight: math.unit(900, "lb"),
  34344. name: "Back",
  34345. image: {
  34346. source: "./media/characters/owen/back.svg",
  34347. extra: 1796/1706,
  34348. bottom: 59/1855
  34349. }
  34350. },
  34351. maw: {
  34352. height: math.unit(1.76, "feet"),
  34353. name: "Maw",
  34354. image: {
  34355. source: "./media/characters/owen/maw.svg"
  34356. }
  34357. },
  34358. },
  34359. [
  34360. {
  34361. name: "Normal",
  34362. height: math.unit(8, "feet"),
  34363. default: true
  34364. },
  34365. ]
  34366. ))
  34367. characterMakers.push(() => makeCharacter(
  34368. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34369. {
  34370. front: {
  34371. height: math.unit(4, "feet"),
  34372. weight: math.unit(400, "lb"),
  34373. name: "Front",
  34374. image: {
  34375. source: "./media/characters/ryth/front.svg",
  34376. extra: 1920/1748,
  34377. bottom: 42/1962
  34378. }
  34379. },
  34380. back: {
  34381. height: math.unit(4, "feet"),
  34382. weight: math.unit(400, "lb"),
  34383. name: "Back",
  34384. image: {
  34385. source: "./media/characters/ryth/back.svg",
  34386. extra: 1897/1690,
  34387. bottom: 89/1986
  34388. }
  34389. },
  34390. mouth: {
  34391. height: math.unit(1.39, "feet"),
  34392. name: "Mouth",
  34393. image: {
  34394. source: "./media/characters/ryth/mouth.svg"
  34395. }
  34396. },
  34397. tailmaw: {
  34398. height: math.unit(1.23, "feet"),
  34399. name: "Tailmaw",
  34400. image: {
  34401. source: "./media/characters/ryth/tailmaw.svg"
  34402. }
  34403. },
  34404. goia: {
  34405. height: math.unit(4, "meters"),
  34406. weight: math.unit(10800, "lb"),
  34407. name: "Goia",
  34408. image: {
  34409. source: "./media/characters/ryth/goia.svg",
  34410. extra: 745/640,
  34411. bottom: 107/852
  34412. }
  34413. },
  34414. goiaFront: {
  34415. height: math.unit(4, "meters"),
  34416. weight: math.unit(10800, "lb"),
  34417. name: "Goia (Front)",
  34418. image: {
  34419. source: "./media/characters/ryth/goia-front.svg",
  34420. extra: 750/586,
  34421. bottom: 114/864
  34422. }
  34423. },
  34424. goiaMaw: {
  34425. height: math.unit(5.55, "feet"),
  34426. name: "Goia Maw",
  34427. image: {
  34428. source: "./media/characters/ryth/goia-maw.svg"
  34429. }
  34430. },
  34431. goiaForepaw: {
  34432. height: math.unit(3.5, "feet"),
  34433. name: "Goia Forepaw",
  34434. image: {
  34435. source: "./media/characters/ryth/goia-forepaw.svg"
  34436. }
  34437. },
  34438. goiaHindpaw: {
  34439. height: math.unit(5.55, "feet"),
  34440. name: "Goia Hindpaw",
  34441. image: {
  34442. source: "./media/characters/ryth/goia-hindpaw.svg"
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(4, "feet"),
  34450. default: true
  34451. },
  34452. ]
  34453. ))
  34454. characterMakers.push(() => makeCharacter(
  34455. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34456. {
  34457. front: {
  34458. height: math.unit(7, "feet"),
  34459. weight: math.unit(180, "lb"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/necrolance/front.svg",
  34463. extra: 1062/947,
  34464. bottom: 41/1103
  34465. }
  34466. },
  34467. back: {
  34468. height: math.unit(7, "feet"),
  34469. weight: math.unit(180, "lb"),
  34470. name: "Back",
  34471. image: {
  34472. source: "./media/characters/necrolance/back.svg",
  34473. extra: 1045/984,
  34474. bottom: 14/1059
  34475. }
  34476. },
  34477. wing: {
  34478. height: math.unit(2.67, "feet"),
  34479. name: "Wing",
  34480. image: {
  34481. source: "./media/characters/necrolance/wing.svg"
  34482. }
  34483. },
  34484. },
  34485. [
  34486. {
  34487. name: "Normal",
  34488. height: math.unit(7, "feet"),
  34489. default: true
  34490. },
  34491. ]
  34492. ))
  34493. characterMakers.push(() => makeCharacter(
  34494. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34495. {
  34496. front: {
  34497. height: math.unit(76, "meters"),
  34498. weight: math.unit(30000, "tons"),
  34499. name: "Front",
  34500. image: {
  34501. source: "./media/characters/tyler/front.svg",
  34502. extra: 1640/1640,
  34503. bottom: 114/1754
  34504. }
  34505. },
  34506. },
  34507. [
  34508. {
  34509. name: "Macro",
  34510. height: math.unit(76, "meters"),
  34511. default: true
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(4 + 11/12, "feet"),
  34520. weight: math.unit(132, "lb"),
  34521. name: "Front",
  34522. image: {
  34523. source: "./media/characters/icey/front.svg",
  34524. extra: 2750/2550,
  34525. bottom: 33/2783
  34526. }
  34527. },
  34528. back: {
  34529. height: math.unit(4 + 11/12, "feet"),
  34530. weight: math.unit(132, "lb"),
  34531. name: "Back",
  34532. image: {
  34533. source: "./media/characters/icey/back.svg",
  34534. extra: 2624/2481,
  34535. bottom: 35/2659
  34536. }
  34537. },
  34538. },
  34539. [
  34540. {
  34541. name: "Normal",
  34542. height: math.unit(4 + 11/12, "feet"),
  34543. default: true
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(100, "feet"),
  34552. weight: math.unit(0, "lb"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/smile/front.svg",
  34556. extra: 2983/2912,
  34557. bottom: 162/3145
  34558. }
  34559. },
  34560. back: {
  34561. height: math.unit(100, "feet"),
  34562. weight: math.unit(0, "lb"),
  34563. name: "Back",
  34564. image: {
  34565. source: "./media/characters/smile/back.svg",
  34566. extra: 3143/3031,
  34567. bottom: 91/3234
  34568. }
  34569. },
  34570. head: {
  34571. height: math.unit(26.3, "feet"),
  34572. weight: math.unit(0, "lb"),
  34573. name: "Head",
  34574. image: {
  34575. source: "./media/characters/smile/head.svg"
  34576. }
  34577. },
  34578. collar: {
  34579. height: math.unit(5.3, "feet"),
  34580. weight: math.unit(0, "lb"),
  34581. name: "Collar",
  34582. image: {
  34583. source: "./media/characters/smile/collar.svg"
  34584. }
  34585. },
  34586. },
  34587. [
  34588. {
  34589. name: "Macro",
  34590. height: math.unit(100, "feet"),
  34591. default: true
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34597. {
  34598. dragon: {
  34599. height: math.unit(26, "feet"),
  34600. weight: math.unit(36, "tons"),
  34601. name: "Dragon",
  34602. image: {
  34603. source: "./media/characters/arimphae/dragon.svg",
  34604. extra: 1574/983,
  34605. bottom: 357/1931
  34606. }
  34607. },
  34608. drake: {
  34609. height: math.unit(9, "feet"),
  34610. weight: math.unit(1.5, "tons"),
  34611. name: "Drake",
  34612. image: {
  34613. source: "./media/characters/arimphae/drake.svg",
  34614. extra: 1120/925,
  34615. bottom: 435/1555
  34616. }
  34617. },
  34618. },
  34619. [
  34620. {
  34621. name: "Small",
  34622. height: math.unit(26*5/9, "feet")
  34623. },
  34624. {
  34625. name: "Normal",
  34626. height: math.unit(26, "feet"),
  34627. default: true
  34628. },
  34629. ]
  34630. ))
  34631. characterMakers.push(() => makeCharacter(
  34632. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34633. {
  34634. front: {
  34635. height: math.unit(8 + 9/12, "feet"),
  34636. name: "Front",
  34637. image: {
  34638. source: "./media/characters/xander/front.svg",
  34639. extra: 1237/974,
  34640. bottom: 94/1331
  34641. }
  34642. },
  34643. },
  34644. [
  34645. {
  34646. name: "Normal",
  34647. height: math.unit(8 + 9/12, "feet"),
  34648. default: true
  34649. },
  34650. {
  34651. name: "Gaze Grabber",
  34652. height: math.unit(13 + 8/12, "feet")
  34653. },
  34654. {
  34655. name: "Jaw Dropper",
  34656. height: math.unit(27, "feet")
  34657. },
  34658. {
  34659. name: "Show Stopper",
  34660. height: math.unit(136, "feet")
  34661. },
  34662. {
  34663. name: "Superstar",
  34664. height: math.unit(1.9e6, "miles")
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34670. {
  34671. side: {
  34672. height: math.unit(2100, "feet"),
  34673. name: "Side",
  34674. image: {
  34675. source: "./media/characters/osiris/side.svg",
  34676. extra: 1105/939,
  34677. bottom: 167/1272
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Macro",
  34684. height: math.unit(2100, "feet"),
  34685. default: true
  34686. },
  34687. ]
  34688. ))
  34689. characterMakers.push(() => makeCharacter(
  34690. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34691. {
  34692. front: {
  34693. height: math.unit(6 + 8/12, "feet"),
  34694. weight: math.unit(225, "lb"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/rhys-londe/front.svg",
  34698. extra: 2258/2141,
  34699. bottom: 188/2446
  34700. }
  34701. },
  34702. back: {
  34703. height: math.unit(6 + 8/12, "feet"),
  34704. weight: math.unit(225, "lb"),
  34705. name: "Back",
  34706. image: {
  34707. source: "./media/characters/rhys-londe/back.svg",
  34708. extra: 2237/2137,
  34709. bottom: 63/2300
  34710. }
  34711. },
  34712. frontNsfw: {
  34713. height: math.unit(6 + 8/12, "feet"),
  34714. weight: math.unit(225, "lb"),
  34715. name: "Front (NSFW)",
  34716. image: {
  34717. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34718. extra: 2258/2141,
  34719. bottom: 188/2446
  34720. }
  34721. },
  34722. backNsfw: {
  34723. height: math.unit(6 + 8/12, "feet"),
  34724. weight: math.unit(225, "lb"),
  34725. name: "Back (NSFW)",
  34726. image: {
  34727. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34728. extra: 2237/2137,
  34729. bottom: 63/2300
  34730. }
  34731. },
  34732. dick: {
  34733. height: math.unit(30, "inches"),
  34734. name: "Dick",
  34735. image: {
  34736. source: "./media/characters/rhys-londe/dick.svg"
  34737. }
  34738. },
  34739. maw: {
  34740. height: math.unit(1.6, "feet"),
  34741. name: "Maw",
  34742. image: {
  34743. source: "./media/characters/rhys-londe/maw.svg"
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(6 + 8/12, "feet"),
  34751. default: true
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34757. {
  34758. front: {
  34759. height: math.unit(3 + 10/12, "feet"),
  34760. weight: math.unit(90, "lb"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/taivas-ensim/front.svg",
  34764. extra: 1327/1216,
  34765. bottom: 96/1423
  34766. }
  34767. },
  34768. back: {
  34769. height: math.unit(3 + 10/12, "feet"),
  34770. weight: math.unit(90, "lb"),
  34771. name: "Back",
  34772. image: {
  34773. source: "./media/characters/taivas-ensim/back.svg",
  34774. extra: 1355/1247,
  34775. bottom: 11/1366
  34776. }
  34777. },
  34778. frontNsfw: {
  34779. height: math.unit(3 + 10/12, "feet"),
  34780. weight: math.unit(90, "lb"),
  34781. name: "Front (NSFW)",
  34782. image: {
  34783. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34784. extra: 1327/1216,
  34785. bottom: 96/1423
  34786. }
  34787. },
  34788. backNsfw: {
  34789. height: math.unit(3 + 10/12, "feet"),
  34790. weight: math.unit(90, "lb"),
  34791. name: "Back (NSFW)",
  34792. image: {
  34793. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34794. extra: 1355/1247,
  34795. bottom: 11/1366
  34796. }
  34797. },
  34798. },
  34799. [
  34800. {
  34801. name: "Normal",
  34802. height: math.unit(3 + 10/12, "feet"),
  34803. default: true
  34804. },
  34805. ]
  34806. ))
  34807. characterMakers.push(() => makeCharacter(
  34808. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34809. {
  34810. front: {
  34811. height: math.unit(9 + 6/12, "feet"),
  34812. weight: math.unit(940, "lb"),
  34813. name: "Front",
  34814. image: {
  34815. source: "./media/characters/byliss/front.svg",
  34816. extra: 1327/1290,
  34817. bottom: 82/1409
  34818. }
  34819. },
  34820. back: {
  34821. height: math.unit(9 + 6/12, "feet"),
  34822. weight: math.unit(940, "lb"),
  34823. name: "Back",
  34824. image: {
  34825. source: "./media/characters/byliss/back.svg",
  34826. extra: 1376/1349,
  34827. bottom: 9/1385
  34828. }
  34829. },
  34830. frontNsfw: {
  34831. height: math.unit(9 + 6/12, "feet"),
  34832. weight: math.unit(940, "lb"),
  34833. name: "Front (NSFW)",
  34834. image: {
  34835. source: "./media/characters/byliss/front-nsfw.svg",
  34836. extra: 1327/1290,
  34837. bottom: 82/1409
  34838. }
  34839. },
  34840. backNsfw: {
  34841. height: math.unit(9 + 6/12, "feet"),
  34842. weight: math.unit(940, "lb"),
  34843. name: "Back (NSFW)",
  34844. image: {
  34845. source: "./media/characters/byliss/back-nsfw.svg",
  34846. extra: 1376/1349,
  34847. bottom: 9/1385
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(9 + 6/12, "feet"),
  34855. default: true
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34861. {
  34862. front: {
  34863. height: math.unit(5 + 2/12, "feet"),
  34864. weight: math.unit(200, "lb"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/noraly/front.svg",
  34868. extra: 4985/4773,
  34869. bottom: 150/5135
  34870. }
  34871. },
  34872. full: {
  34873. height: math.unit(5 + 2/12, "feet"),
  34874. weight: math.unit(164, "lb"),
  34875. name: "Full",
  34876. image: {
  34877. source: "./media/characters/noraly/full.svg",
  34878. extra: 1114/1059,
  34879. bottom: 35/1149
  34880. }
  34881. },
  34882. fuller: {
  34883. height: math.unit(5 + 2/12, "feet"),
  34884. weight: math.unit(230, "lb"),
  34885. name: "Fuller",
  34886. image: {
  34887. source: "./media/characters/noraly/fuller.svg",
  34888. extra: 1114/1059,
  34889. bottom: 35/1149
  34890. }
  34891. },
  34892. fullest: {
  34893. height: math.unit(5 + 2/12, "feet"),
  34894. weight: math.unit(300, "lb"),
  34895. name: "Fullest",
  34896. image: {
  34897. source: "./media/characters/noraly/fullest.svg",
  34898. extra: 1114/1059,
  34899. bottom: 35/1149
  34900. }
  34901. },
  34902. },
  34903. [
  34904. {
  34905. name: "Normal",
  34906. height: math.unit(5 + 2/12, "feet"),
  34907. default: true
  34908. },
  34909. ]
  34910. ))
  34911. characterMakers.push(() => makeCharacter(
  34912. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34913. {
  34914. front: {
  34915. height: math.unit(5 + 2/12, "feet"),
  34916. weight: math.unit(210, "lb"),
  34917. name: "Front",
  34918. image: {
  34919. source: "./media/characters/pera/front.svg",
  34920. extra: 1560/1531,
  34921. bottom: 165/1725
  34922. }
  34923. },
  34924. back: {
  34925. height: math.unit(5 + 2/12, "feet"),
  34926. weight: math.unit(210, "lb"),
  34927. name: "Back",
  34928. image: {
  34929. source: "./media/characters/pera/back.svg",
  34930. extra: 1523/1493,
  34931. bottom: 152/1675
  34932. }
  34933. },
  34934. dick: {
  34935. height: math.unit(2.4, "feet"),
  34936. name: "Dick",
  34937. image: {
  34938. source: "./media/characters/pera/dick.svg"
  34939. }
  34940. },
  34941. },
  34942. [
  34943. {
  34944. name: "Normal",
  34945. height: math.unit(5 + 2/12, "feet"),
  34946. default: true
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(12, "feet"),
  34955. weight: math.unit(3200, "lb"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/julian/front.svg",
  34959. extra: 2962/2701,
  34960. bottom: 184/3146
  34961. }
  34962. },
  34963. maw: {
  34964. height: math.unit(5.35, "feet"),
  34965. name: "Maw",
  34966. image: {
  34967. source: "./media/characters/julian/maw.svg"
  34968. }
  34969. },
  34970. paw: {
  34971. height: math.unit(3.07, "feet"),
  34972. name: "Paw",
  34973. image: {
  34974. source: "./media/characters/julian/paw.svg"
  34975. }
  34976. },
  34977. },
  34978. [
  34979. {
  34980. name: "Default",
  34981. height: math.unit(12, "feet"),
  34982. default: true
  34983. },
  34984. {
  34985. name: "Big",
  34986. height: math.unit(50, "feet")
  34987. },
  34988. {
  34989. name: "Really Big",
  34990. height: math.unit(1, "mile")
  34991. },
  34992. {
  34993. name: "Extremely Big",
  34994. height: math.unit(100, "miles")
  34995. },
  34996. {
  34997. name: "Planet Hugger",
  34998. height: math.unit(200, "megameters")
  34999. },
  35000. {
  35001. name: "Unreasonably Big",
  35002. height: math.unit(1e300, "meters")
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35008. {
  35009. solgooleo: {
  35010. height: math.unit(4, "meters"),
  35011. weight: math.unit(6000*1.5, "kg"),
  35012. volume: math.unit(6000, "liters"),
  35013. name: "Solgooleo",
  35014. image: {
  35015. source: "./media/characters/pi/solgooleo.svg",
  35016. extra: 388/331,
  35017. bottom: 29/417
  35018. }
  35019. },
  35020. },
  35021. [
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(4, "meters"),
  35025. default: true
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35031. {
  35032. front: {
  35033. height: math.unit(8, "feet"),
  35034. weight: math.unit(4, "tons"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/shaun/front.svg",
  35038. extra: 503/495,
  35039. bottom: 20/523
  35040. }
  35041. },
  35042. back: {
  35043. height: math.unit(8, "feet"),
  35044. weight: math.unit(4, "tons"),
  35045. name: "Back",
  35046. image: {
  35047. source: "./media/characters/shaun/back.svg",
  35048. extra: 487/480,
  35049. bottom: 20/507
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Lorg",
  35056. height: math.unit(8, "feet"),
  35057. default: true
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35063. {
  35064. frontAnthro: {
  35065. height: math.unit(7, "feet"),
  35066. name: "Front",
  35067. image: {
  35068. source: "./media/characters/sini/front-anthro.svg",
  35069. extra: 726/678,
  35070. bottom: 35/761
  35071. },
  35072. form: "anthro",
  35073. default: true
  35074. },
  35075. backAnthro: {
  35076. height: math.unit(7, "feet"),
  35077. name: "Back",
  35078. image: {
  35079. source: "./media/characters/sini/back-anthro.svg",
  35080. extra: 743/701,
  35081. bottom: 12/755
  35082. },
  35083. form: "anthro",
  35084. },
  35085. frontAnthroNsfw: {
  35086. height: math.unit(7, "feet"),
  35087. name: "Front (NSFW)",
  35088. image: {
  35089. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35090. extra: 726/678,
  35091. bottom: 35/761
  35092. },
  35093. form: "anthro"
  35094. },
  35095. backAnthroNsfw: {
  35096. height: math.unit(7, "feet"),
  35097. name: "Back (NSFW)",
  35098. image: {
  35099. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35100. extra: 743/701,
  35101. bottom: 12/755
  35102. },
  35103. form: "anthro",
  35104. },
  35105. mawAnthro: {
  35106. height: math.unit(2.14, "feet"),
  35107. name: "Maw",
  35108. image: {
  35109. source: "./media/characters/sini/maw-anthro.svg"
  35110. },
  35111. form: "anthro"
  35112. },
  35113. dick: {
  35114. height: math.unit(1.45, "feet"),
  35115. name: "Dick",
  35116. image: {
  35117. source: "./media/characters/sini/dick-anthro.svg"
  35118. },
  35119. form: "anthro"
  35120. },
  35121. feral: {
  35122. height: math.unit(16, "feet"),
  35123. name: "Feral",
  35124. image: {
  35125. source: "./media/characters/sini/feral.svg",
  35126. extra: 814/605,
  35127. bottom: 11/825
  35128. },
  35129. form: "feral",
  35130. default: true
  35131. },
  35132. feralNsfw: {
  35133. height: math.unit(16, "feet"),
  35134. name: "Feral (NSFW)",
  35135. image: {
  35136. source: "./media/characters/sini/feral-nsfw.svg",
  35137. extra: 814/605,
  35138. bottom: 11/825
  35139. },
  35140. form: "feral"
  35141. },
  35142. mawFeral: {
  35143. height: math.unit(5.66, "feet"),
  35144. name: "Maw",
  35145. image: {
  35146. source: "./media/characters/sini/maw-feral.svg"
  35147. },
  35148. form: "feral",
  35149. },
  35150. pawFeral: {
  35151. height: math.unit(5.17, "feet"),
  35152. name: "Paw",
  35153. image: {
  35154. source: "./media/characters/sini/paw-feral.svg"
  35155. },
  35156. form: "feral",
  35157. },
  35158. rumpFeral: {
  35159. height: math.unit(13.11, "feet"),
  35160. name: "Rump",
  35161. image: {
  35162. source: "./media/characters/sini/rump-feral.svg"
  35163. },
  35164. form: "feral",
  35165. },
  35166. dickFeral: {
  35167. height: math.unit(1, "feet"),
  35168. name: "Dick",
  35169. image: {
  35170. source: "./media/characters/sini/dick-feral.svg"
  35171. },
  35172. form: "feral",
  35173. },
  35174. eyeFeral: {
  35175. height: math.unit(1.23, "feet"),
  35176. name: "Eye",
  35177. image: {
  35178. source: "./media/characters/sini/eye-feral.svg"
  35179. },
  35180. form: "feral",
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(7, "feet"),
  35187. default: true,
  35188. form: "anthro"
  35189. },
  35190. {
  35191. name: "Normal",
  35192. height: math.unit(16, "feet"),
  35193. default: true,
  35194. form: "feral"
  35195. },
  35196. ],
  35197. {
  35198. "anthro": {
  35199. name: "Anthro",
  35200. default: true
  35201. },
  35202. "feral": {
  35203. name: "Feral",
  35204. }
  35205. }
  35206. ))
  35207. characterMakers.push(() => makeCharacter(
  35208. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35209. {
  35210. side: {
  35211. height: math.unit(47.2, "meters"),
  35212. weight: math.unit(10000, "tons"),
  35213. name: "Side",
  35214. image: {
  35215. source: "./media/characters/raylldo/side.svg",
  35216. extra: 2363/642,
  35217. bottom: 221/2584
  35218. }
  35219. },
  35220. top: {
  35221. height: math.unit(240, "meters"),
  35222. weight: math.unit(10000, "tons"),
  35223. name: "Top",
  35224. image: {
  35225. source: "./media/characters/raylldo/top.svg"
  35226. }
  35227. },
  35228. bottom: {
  35229. height: math.unit(240, "meters"),
  35230. weight: math.unit(10000, "tons"),
  35231. name: "Bottom",
  35232. image: {
  35233. source: "./media/characters/raylldo/bottom.svg"
  35234. }
  35235. },
  35236. head: {
  35237. height: math.unit(38.6, "meters"),
  35238. name: "Head",
  35239. image: {
  35240. source: "./media/characters/raylldo/head.svg",
  35241. extra: 1335/1112,
  35242. bottom: 0/1335
  35243. }
  35244. },
  35245. maw: {
  35246. height: math.unit(16.37, "meters"),
  35247. name: "Maw",
  35248. image: {
  35249. source: "./media/characters/raylldo/maw.svg",
  35250. extra: 883/660,
  35251. bottom: 0/883
  35252. },
  35253. extraAttributes: {
  35254. preyCapacity: {
  35255. name: "Capacity",
  35256. power: 3,
  35257. type: "volume",
  35258. base: math.unit(1000, "people")
  35259. },
  35260. tongueSize: {
  35261. name: "Tongue Size",
  35262. power: 2,
  35263. type: "area",
  35264. base: math.unit(21, "m^2")
  35265. }
  35266. }
  35267. },
  35268. forepaw: {
  35269. height: math.unit(18, "meters"),
  35270. name: "Forepaw",
  35271. image: {
  35272. source: "./media/characters/raylldo/forepaw.svg"
  35273. }
  35274. },
  35275. hindpaw: {
  35276. height: math.unit(23, "meters"),
  35277. name: "Hindpaw",
  35278. image: {
  35279. source: "./media/characters/raylldo/hindpaw.svg"
  35280. }
  35281. },
  35282. genitals: {
  35283. height: math.unit(42, "meters"),
  35284. name: "Genitals",
  35285. image: {
  35286. source: "./media/characters/raylldo/genitals.svg"
  35287. }
  35288. },
  35289. },
  35290. [
  35291. {
  35292. name: "Normal",
  35293. height: math.unit(47.2, "meters"),
  35294. default: true
  35295. },
  35296. ]
  35297. ))
  35298. characterMakers.push(() => makeCharacter(
  35299. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35300. {
  35301. anthroFront: {
  35302. height: math.unit(9, "feet"),
  35303. weight: math.unit(600, "lb"),
  35304. name: "Anthro (Front)",
  35305. image: {
  35306. source: "./media/characters/glint/anthro-front.svg",
  35307. extra: 1097/1018,
  35308. bottom: 28/1125
  35309. }
  35310. },
  35311. anthroBack: {
  35312. height: math.unit(9, "feet"),
  35313. weight: math.unit(600, "lb"),
  35314. name: "Anthro (Back)",
  35315. image: {
  35316. source: "./media/characters/glint/anthro-back.svg",
  35317. extra: 1154/997,
  35318. bottom: 36/1190
  35319. }
  35320. },
  35321. feral: {
  35322. height: math.unit(11, "feet"),
  35323. weight: math.unit(50000, "lb"),
  35324. name: "Feral",
  35325. image: {
  35326. source: "./media/characters/glint/feral.svg",
  35327. extra: 3035/1585,
  35328. bottom: 1169/4204
  35329. }
  35330. },
  35331. dickAnthro: {
  35332. height: math.unit(0.7, "meters"),
  35333. name: "Dick (Anthro)",
  35334. image: {
  35335. source: "./media/characters/glint/dick-anthro.svg"
  35336. }
  35337. },
  35338. dickFeral: {
  35339. height: math.unit(2.65, "meters"),
  35340. name: "Dick (Feral)",
  35341. image: {
  35342. source: "./media/characters/glint/dick-feral.svg"
  35343. }
  35344. },
  35345. slitHidden: {
  35346. height: math.unit(5.85, "meters"),
  35347. name: "Slit (Hidden)",
  35348. image: {
  35349. source: "./media/characters/glint/slit-hidden.svg"
  35350. }
  35351. },
  35352. slitErect: {
  35353. height: math.unit(5.85, "meters"),
  35354. name: "Slit (Erect)",
  35355. image: {
  35356. source: "./media/characters/glint/slit-erect.svg"
  35357. }
  35358. },
  35359. mawAnthro: {
  35360. height: math.unit(0.63, "meters"),
  35361. name: "Maw (Anthro)",
  35362. image: {
  35363. source: "./media/characters/glint/maw.svg"
  35364. }
  35365. },
  35366. mawFeral: {
  35367. height: math.unit(2.89, "meters"),
  35368. name: "Maw (Feral)",
  35369. image: {
  35370. source: "./media/characters/glint/maw.svg"
  35371. }
  35372. },
  35373. },
  35374. [
  35375. {
  35376. name: "Normal",
  35377. height: math.unit(9, "feet"),
  35378. default: true
  35379. },
  35380. ]
  35381. ))
  35382. characterMakers.push(() => makeCharacter(
  35383. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35384. {
  35385. side: {
  35386. height: math.unit(15, "feet"),
  35387. weight: math.unit(5000, "kg"),
  35388. name: "Side",
  35389. image: {
  35390. source: "./media/characters/kairne/side.svg",
  35391. extra: 979/811,
  35392. bottom: 13/992
  35393. }
  35394. },
  35395. front: {
  35396. height: math.unit(15, "feet"),
  35397. weight: math.unit(5000, "kg"),
  35398. name: "Front",
  35399. image: {
  35400. source: "./media/characters/kairne/front.svg",
  35401. extra: 908/814,
  35402. bottom: 26/934
  35403. }
  35404. },
  35405. sideNsfw: {
  35406. height: math.unit(15, "feet"),
  35407. weight: math.unit(5000, "kg"),
  35408. name: "Side (NSFW)",
  35409. image: {
  35410. source: "./media/characters/kairne/side-nsfw.svg",
  35411. extra: 979/811,
  35412. bottom: 13/992
  35413. }
  35414. },
  35415. frontNsfw: {
  35416. height: math.unit(15, "feet"),
  35417. weight: math.unit(5000, "kg"),
  35418. name: "Front (NSFW)",
  35419. image: {
  35420. source: "./media/characters/kairne/front-nsfw.svg",
  35421. extra: 908/814,
  35422. bottom: 26/934
  35423. }
  35424. },
  35425. dickCaged: {
  35426. height: math.unit(0.65, "meters"),
  35427. name: "Dick-caged",
  35428. image: {
  35429. source: "./media/characters/kairne/dick-caged.svg"
  35430. }
  35431. },
  35432. dick: {
  35433. height: math.unit(0.79, "meters"),
  35434. name: "Dick",
  35435. image: {
  35436. source: "./media/characters/kairne/dick.svg"
  35437. }
  35438. },
  35439. genitals: {
  35440. height: math.unit(1.29, "meters"),
  35441. name: "Genitals",
  35442. image: {
  35443. source: "./media/characters/kairne/genitals.svg"
  35444. }
  35445. },
  35446. maw: {
  35447. height: math.unit(1.73, "meters"),
  35448. name: "Maw",
  35449. image: {
  35450. source: "./media/characters/kairne/maw.svg"
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(15, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(5 + 8/12, "feet"),
  35467. weight: math.unit(139, "lb"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/biscuit-jackal/front.svg",
  35471. extra: 2106/1961,
  35472. bottom: 58/2164
  35473. }
  35474. },
  35475. back: {
  35476. height: math.unit(5 + 8/12, "feet"),
  35477. weight: math.unit(139, "lb"),
  35478. name: "Back",
  35479. image: {
  35480. source: "./media/characters/biscuit-jackal/back.svg",
  35481. extra: 2132/1976,
  35482. bottom: 57/2189
  35483. }
  35484. },
  35485. werejackal: {
  35486. height: math.unit(6 + 3/12, "feet"),
  35487. weight: math.unit(188, "lb"),
  35488. name: "Werejackal",
  35489. image: {
  35490. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35491. extra: 2373/2178,
  35492. bottom: 53/2426
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Normal",
  35499. height: math.unit(5 + 8/12, "feet"),
  35500. default: true
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(140, "cm"),
  35509. weight: math.unit(45, "kg"),
  35510. name: "Front",
  35511. image: {
  35512. source: "./media/characters/tayra-white/front.svg",
  35513. extra: 2229/2192,
  35514. bottom: 75/2304
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Normal",
  35521. height: math.unit(140, "cm"),
  35522. default: true
  35523. },
  35524. ]
  35525. ))
  35526. characterMakers.push(() => makeCharacter(
  35527. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35528. {
  35529. front: {
  35530. height: math.unit(4 + 5/12, "feet"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/scoop/front.svg",
  35534. extra: 1257/1136,
  35535. bottom: 69/1326
  35536. }
  35537. },
  35538. back: {
  35539. height: math.unit(4 + 5/12, "feet"),
  35540. name: "Back",
  35541. image: {
  35542. source: "./media/characters/scoop/back.svg",
  35543. extra: 1321/1152,
  35544. bottom: 32/1353
  35545. }
  35546. },
  35547. maw: {
  35548. height: math.unit(0.68, "feet"),
  35549. name: "Maw",
  35550. image: {
  35551. source: "./media/characters/scoop/maw.svg"
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Really Small",
  35558. height: math.unit(1, "mm")
  35559. },
  35560. {
  35561. name: "Micro",
  35562. height: math.unit(1, "inch")
  35563. },
  35564. {
  35565. name: "Normal",
  35566. height: math.unit(4 + 5/12, "feet"),
  35567. default: true
  35568. },
  35569. {
  35570. name: "Macro",
  35571. height: math.unit(200, "feet")
  35572. },
  35573. {
  35574. name: "Megamacro",
  35575. height: math.unit(3240, "feet")
  35576. },
  35577. {
  35578. name: "Teramacro",
  35579. height: math.unit(2500, "miles")
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35585. {
  35586. front: {
  35587. height: math.unit(15 + 7/12, "feet"),
  35588. weight: math.unit(1150, "tons"),
  35589. name: "Front",
  35590. image: {
  35591. source: "./media/characters/saphinara/front.svg",
  35592. extra: 1837/1643,
  35593. bottom: 84/1921
  35594. },
  35595. form: "normal",
  35596. default: true
  35597. },
  35598. side: {
  35599. height: math.unit(15 + 7/12, "feet"),
  35600. weight: math.unit(1150, "tons"),
  35601. name: "Side",
  35602. image: {
  35603. source: "./media/characters/saphinara/side.svg",
  35604. extra: 605/547,
  35605. bottom: 6/611
  35606. },
  35607. form: "normal"
  35608. },
  35609. back: {
  35610. height: math.unit(15 + 7/12, "feet"),
  35611. weight: math.unit(1150, "tons"),
  35612. name: "Back",
  35613. image: {
  35614. source: "./media/characters/saphinara/back.svg",
  35615. extra: 591/531,
  35616. bottom: 13/604
  35617. },
  35618. form: "normal"
  35619. },
  35620. frontTail: {
  35621. height: math.unit(15 + 7/12, "feet"),
  35622. weight: math.unit(1150, "tons"),
  35623. name: "Front (Full Tail)",
  35624. image: {
  35625. source: "./media/characters/saphinara/front-tail.svg",
  35626. extra: 2256/1630,
  35627. bottom: 261/2517
  35628. },
  35629. form: "normal"
  35630. },
  35631. insides: {
  35632. height: math.unit(11.92, "feet"),
  35633. name: "Insides",
  35634. image: {
  35635. source: "./media/characters/saphinara/insides.svg"
  35636. },
  35637. form: "normal"
  35638. },
  35639. head: {
  35640. height: math.unit(4.17, "feet"),
  35641. name: "Head",
  35642. image: {
  35643. source: "./media/characters/saphinara/head.svg"
  35644. },
  35645. form: "normal"
  35646. },
  35647. tongue: {
  35648. height: math.unit(4.60, "feet"),
  35649. name: "Tongue",
  35650. image: {
  35651. source: "./media/characters/saphinara/tongue.svg"
  35652. },
  35653. form: "normal"
  35654. },
  35655. headEnraged: {
  35656. height: math.unit(5.55, "feet"),
  35657. name: "Head (Enraged)",
  35658. image: {
  35659. source: "./media/characters/saphinara/head-enraged.svg"
  35660. },
  35661. form: "normal"
  35662. },
  35663. wings: {
  35664. height: math.unit(11.95, "feet"),
  35665. name: "Wings",
  35666. image: {
  35667. source: "./media/characters/saphinara/wings.svg"
  35668. },
  35669. form: "normal"
  35670. },
  35671. feathers: {
  35672. height: math.unit(8.92, "feet"),
  35673. name: "Feathers",
  35674. image: {
  35675. source: "./media/characters/saphinara/feathers.svg"
  35676. },
  35677. form: "normal"
  35678. },
  35679. shackles: {
  35680. height: math.unit(2, "feet"),
  35681. name: "Shackles",
  35682. image: {
  35683. source: "./media/characters/saphinara/shackles.svg"
  35684. },
  35685. form: "normal"
  35686. },
  35687. eyes: {
  35688. height: math.unit(1.331, "feet"),
  35689. name: "Eyes",
  35690. image: {
  35691. source: "./media/characters/saphinara/eyes.svg"
  35692. },
  35693. form: "normal"
  35694. },
  35695. eyesEnraged: {
  35696. height: math.unit(1.331, "feet"),
  35697. name: "Eyes (Enraged)",
  35698. image: {
  35699. source: "./media/characters/saphinara/eyes-enraged.svg"
  35700. },
  35701. form: "normal"
  35702. },
  35703. trueFormSide: {
  35704. height: math.unit(200, "feet"),
  35705. weight: math.unit(1e7, "tons"),
  35706. name: "Side",
  35707. image: {
  35708. source: "./media/characters/saphinara/true-form-side.svg",
  35709. extra: 1399/770,
  35710. bottom: 97/1496
  35711. },
  35712. form: "true-form",
  35713. default: true
  35714. },
  35715. trueFormMaw: {
  35716. height: math.unit(71.5, "feet"),
  35717. name: "Maw",
  35718. image: {
  35719. source: "./media/characters/saphinara/true-form-maw.svg",
  35720. extra: 2302/1453,
  35721. bottom: 0/2302
  35722. },
  35723. form: "true-form"
  35724. },
  35725. meowberusSide: {
  35726. height: math.unit(75, "feet"),
  35727. weight: math.unit(180000, "kg"),
  35728. preyCapacity: math.unit(50000, "people"),
  35729. name: "Side",
  35730. image: {
  35731. source: "./media/characters/saphinara/meowberus-side.svg",
  35732. extra: 1400/711,
  35733. bottom: 126/1526
  35734. },
  35735. form: "meowberus",
  35736. extraAttributes: {
  35737. "pawArea": {
  35738. name: "Paw Size",
  35739. power: 2,
  35740. type: "area",
  35741. base: math.unit(35, "m^2")
  35742. }
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(15 + 7/12, "feet"),
  35750. default: true,
  35751. form: "normal"
  35752. },
  35753. {
  35754. name: "Angry",
  35755. height: math.unit(30 + 6/12, "feet"),
  35756. form: "normal"
  35757. },
  35758. {
  35759. name: "Enraged",
  35760. height: math.unit(102 + 1/12, "feet"),
  35761. form: "normal"
  35762. },
  35763. {
  35764. name: "True",
  35765. height: math.unit(200, "feet"),
  35766. default: true,
  35767. form: "true-form"
  35768. },
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(75, "feet"),
  35772. default: true,
  35773. form: "meowberus"
  35774. },
  35775. ],
  35776. {
  35777. "normal": {
  35778. name: "Normal",
  35779. default: true
  35780. },
  35781. "true-form": {
  35782. name: "True Form"
  35783. },
  35784. "meowberus": {
  35785. name: "Meowberus",
  35786. },
  35787. }
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35791. {
  35792. front: {
  35793. height: math.unit(6 + 8/12, "feet"),
  35794. weight: math.unit(300, "lb"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/jrain/front.svg",
  35798. extra: 3039/2865,
  35799. bottom: 399/3438
  35800. }
  35801. },
  35802. back: {
  35803. height: math.unit(6 + 8/12, "feet"),
  35804. weight: math.unit(300, "lb"),
  35805. name: "Back",
  35806. image: {
  35807. source: "./media/characters/jrain/back.svg",
  35808. extra: 3089/2938,
  35809. bottom: 172/3261
  35810. }
  35811. },
  35812. head: {
  35813. height: math.unit(2.14, "feet"),
  35814. name: "Head",
  35815. image: {
  35816. source: "./media/characters/jrain/head.svg"
  35817. }
  35818. },
  35819. maw: {
  35820. height: math.unit(1.77, "feet"),
  35821. name: "Maw",
  35822. image: {
  35823. source: "./media/characters/jrain/maw.svg"
  35824. }
  35825. },
  35826. leftHand: {
  35827. height: math.unit(1.1, "feet"),
  35828. name: "Left Hand",
  35829. image: {
  35830. source: "./media/characters/jrain/left-hand.svg"
  35831. }
  35832. },
  35833. rightHand: {
  35834. height: math.unit(1.1, "feet"),
  35835. name: "Right Hand",
  35836. image: {
  35837. source: "./media/characters/jrain/right-hand.svg"
  35838. }
  35839. },
  35840. eye: {
  35841. height: math.unit(0.35, "feet"),
  35842. name: "Eye",
  35843. image: {
  35844. source: "./media/characters/jrain/eye.svg"
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(6 + 8/12, "feet"),
  35852. default: true
  35853. },
  35854. {
  35855. name: "Casually Large",
  35856. height: math.unit(25, "feet")
  35857. },
  35858. {
  35859. name: "Giant",
  35860. height: math.unit(100, "feet")
  35861. },
  35862. {
  35863. name: "Kaiju",
  35864. height: math.unit(300, "feet")
  35865. },
  35866. ]
  35867. ))
  35868. characterMakers.push(() => makeCharacter(
  35869. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35870. {
  35871. dragon: {
  35872. height: math.unit(5, "meters"),
  35873. name: "Dragon",
  35874. image: {
  35875. source: "./media/characters/sabrina/dragon.svg",
  35876. extra: 3670 / 2365,
  35877. bottom: 333 / 4003
  35878. }
  35879. },
  35880. gryphon: {
  35881. height: math.unit(3, "meters"),
  35882. name: "Gryphon",
  35883. image: {
  35884. source: "./media/characters/sabrina/gryphon.svg",
  35885. extra: 1576 / 945,
  35886. bottom: 71 / 1647
  35887. }
  35888. },
  35889. snake: {
  35890. height: math.unit(12, "meters"),
  35891. name: "Snake",
  35892. image: {
  35893. source: "./media/characters/sabrina/snake.svg",
  35894. extra: 1758 / 1320,
  35895. bottom: 186 / 1944
  35896. }
  35897. },
  35898. collar: {
  35899. height: math.unit(1.86, "meters"),
  35900. name: "Collar",
  35901. image: {
  35902. source: "./media/characters/sabrina/collar.svg"
  35903. }
  35904. },
  35905. eye: {
  35906. height: math.unit(0.53, "meters"),
  35907. name: "Eye",
  35908. image: {
  35909. source: "./media/characters/sabrina/eye.svg"
  35910. }
  35911. },
  35912. foot: {
  35913. height: math.unit(1.86, "meters"),
  35914. name: "Foot",
  35915. image: {
  35916. source: "./media/characters/sabrina/foot.svg"
  35917. }
  35918. },
  35919. hand: {
  35920. height: math.unit(1.32, "meters"),
  35921. name: "Hand",
  35922. image: {
  35923. source: "./media/characters/sabrina/hand.svg"
  35924. }
  35925. },
  35926. head: {
  35927. height: math.unit(2.44, "meters"),
  35928. name: "Head",
  35929. image: {
  35930. source: "./media/characters/sabrina/head.svg"
  35931. }
  35932. },
  35933. headAngry: {
  35934. height: math.unit(2.44, "meters"),
  35935. name: "Head (Angry))",
  35936. image: {
  35937. source: "./media/characters/sabrina/head-angry.svg"
  35938. }
  35939. },
  35940. maw: {
  35941. height: math.unit(1.65, "meters"),
  35942. name: "Maw",
  35943. image: {
  35944. source: "./media/characters/sabrina/maw.svg"
  35945. }
  35946. },
  35947. spikes: {
  35948. height: math.unit(1.69, "meters"),
  35949. name: "Spikes",
  35950. image: {
  35951. source: "./media/characters/sabrina/spikes.svg"
  35952. }
  35953. },
  35954. stomach: {
  35955. height: math.unit(1.15, "meters"),
  35956. name: "Stomach",
  35957. image: {
  35958. source: "./media/characters/sabrina/stomach.svg"
  35959. }
  35960. },
  35961. tongue: {
  35962. height: math.unit(1.27, "meters"),
  35963. name: "Tongue",
  35964. image: {
  35965. source: "./media/characters/sabrina/tongue.svg"
  35966. }
  35967. },
  35968. wingDorsal: {
  35969. height: math.unit(4.85, "meters"),
  35970. name: "Wing (Dorsal)",
  35971. image: {
  35972. source: "./media/characters/sabrina/wing-dorsal.svg"
  35973. }
  35974. },
  35975. wingVentral: {
  35976. height: math.unit(4.85, "meters"),
  35977. name: "Wing (Ventral)",
  35978. image: {
  35979. source: "./media/characters/sabrina/wing-ventral.svg"
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(5, "meters"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35993. {
  35994. frontMaid: {
  35995. height: math.unit(5 + 5/12, "feet"),
  35996. weight: math.unit(130, "lb"),
  35997. name: "Front (Maid)",
  35998. image: {
  35999. source: "./media/characters/midnight-tales/front-maid.svg",
  36000. extra: 489/454,
  36001. bottom: 61/550
  36002. }
  36003. },
  36004. frontFormal: {
  36005. height: math.unit(5 + 5/12, "feet"),
  36006. weight: math.unit(130, "lb"),
  36007. name: "Front (Formal)",
  36008. image: {
  36009. source: "./media/characters/midnight-tales/front-formal.svg",
  36010. extra: 489/454,
  36011. bottom: 61/550
  36012. }
  36013. },
  36014. back: {
  36015. height: math.unit(5 + 5/12, "feet"),
  36016. weight: math.unit(130, "lb"),
  36017. name: "Back",
  36018. image: {
  36019. source: "./media/characters/midnight-tales/back.svg",
  36020. extra: 498/456,
  36021. bottom: 33/531
  36022. }
  36023. },
  36024. frontBeast: {
  36025. height: math.unit(40, "feet"),
  36026. weight: math.unit(64000, "lb"),
  36027. name: "Front (Beast)",
  36028. image: {
  36029. source: "./media/characters/midnight-tales/front-beast.svg",
  36030. extra: 927/860,
  36031. bottom: 53/980
  36032. }
  36033. },
  36034. backBeast: {
  36035. height: math.unit(40, "feet"),
  36036. weight: math.unit(64000, "lb"),
  36037. name: "Back (Beast)",
  36038. image: {
  36039. source: "./media/characters/midnight-tales/back-beast.svg",
  36040. extra: 929/855,
  36041. bottom: 16/945
  36042. }
  36043. },
  36044. footBeast: {
  36045. height: math.unit(6.7, "feet"),
  36046. name: "Foot (Beast)",
  36047. image: {
  36048. source: "./media/characters/midnight-tales/foot-beast.svg"
  36049. }
  36050. },
  36051. headBeast: {
  36052. height: math.unit(8, "feet"),
  36053. name: "Head (Beast)",
  36054. image: {
  36055. source: "./media/characters/midnight-tales/head-beast.svg"
  36056. }
  36057. },
  36058. },
  36059. [
  36060. {
  36061. name: "Normal",
  36062. height: math.unit(5 + 5 / 12, "feet"),
  36063. default: true
  36064. },
  36065. {
  36066. name: "Macro",
  36067. height: math.unit(25, "feet")
  36068. },
  36069. ]
  36070. ))
  36071. characterMakers.push(() => makeCharacter(
  36072. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36073. {
  36074. front: {
  36075. height: math.unit(5 + 10/12, "feet"),
  36076. name: "Front",
  36077. image: {
  36078. source: "./media/characters/argon/front.svg",
  36079. extra: 2009/1935,
  36080. bottom: 118/2127
  36081. }
  36082. },
  36083. back: {
  36084. height: math.unit(5 + 10/12, "feet"),
  36085. name: "Back",
  36086. image: {
  36087. source: "./media/characters/argon/back.svg",
  36088. extra: 2047/1992,
  36089. bottom: 20/2067
  36090. }
  36091. },
  36092. frontDressed: {
  36093. height: math.unit(5 + 10/12, "feet"),
  36094. name: "Front (Dressed)",
  36095. image: {
  36096. source: "./media/characters/argon/front-dressed.svg",
  36097. extra: 2009/1935,
  36098. bottom: 118/2127
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(5 + 10/12, "feet"),
  36106. default: true
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36112. {
  36113. front: {
  36114. height: math.unit(8 + 6/12, "feet"),
  36115. weight: math.unit(1150, "lb"),
  36116. name: "Front",
  36117. image: {
  36118. source: "./media/characters/kichi/front.svg",
  36119. extra: 1267/1164,
  36120. bottom: 61/1328
  36121. }
  36122. },
  36123. back: {
  36124. height: math.unit(8 + 6/12, "feet"),
  36125. weight: math.unit(1150, "lb"),
  36126. name: "Back",
  36127. image: {
  36128. source: "./media/characters/kichi/back.svg",
  36129. extra: 1273/1166,
  36130. bottom: 33/1306
  36131. }
  36132. },
  36133. },
  36134. [
  36135. {
  36136. name: "Normal",
  36137. height: math.unit(8 + 6/12, "feet"),
  36138. default: true
  36139. },
  36140. ]
  36141. ))
  36142. characterMakers.push(() => makeCharacter(
  36143. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36144. {
  36145. front: {
  36146. height: math.unit(6, "feet"),
  36147. weight: math.unit(210, "lb"),
  36148. name: "Front",
  36149. image: {
  36150. source: "./media/characters/manetel-greyscale/front.svg",
  36151. extra: 350/312,
  36152. bottom: 8/358
  36153. }
  36154. },
  36155. },
  36156. [
  36157. {
  36158. name: "Micro",
  36159. height: math.unit(2, "inches")
  36160. },
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(6, "feet"),
  36164. default: true
  36165. },
  36166. {
  36167. name: "Minimacro",
  36168. height: math.unit(17, "feet")
  36169. },
  36170. {
  36171. name: "Macro",
  36172. height: math.unit(117, "feet")
  36173. },
  36174. ]
  36175. ))
  36176. characterMakers.push(() => makeCharacter(
  36177. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36178. {
  36179. side: {
  36180. height: math.unit(5 + 1/12, "feet"),
  36181. weight: math.unit(418, "lb"),
  36182. name: "Side",
  36183. image: {
  36184. source: "./media/characters/softpurr/side.svg",
  36185. extra: 1993/1945,
  36186. bottom: 134/2127
  36187. }
  36188. },
  36189. front: {
  36190. height: math.unit(5 + 1/12, "feet"),
  36191. weight: math.unit(418, "lb"),
  36192. name: "Front",
  36193. image: {
  36194. source: "./media/characters/softpurr/front.svg",
  36195. extra: 1950/1856,
  36196. bottom: 174/2124
  36197. }
  36198. },
  36199. paw: {
  36200. height: math.unit(1, "feet"),
  36201. name: "Paw",
  36202. image: {
  36203. source: "./media/characters/softpurr/paw.svg"
  36204. }
  36205. },
  36206. },
  36207. [
  36208. {
  36209. name: "Normal",
  36210. height: math.unit(5 + 1/12, "feet"),
  36211. default: true
  36212. },
  36213. ]
  36214. ))
  36215. characterMakers.push(() => makeCharacter(
  36216. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36217. {
  36218. front: {
  36219. height: math.unit(260, "meters"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/anahita/front.svg",
  36223. extra: 665/635,
  36224. bottom: 89/754
  36225. }
  36226. },
  36227. },
  36228. [
  36229. {
  36230. name: "Macro",
  36231. height: math.unit(260, "meters"),
  36232. default: true
  36233. },
  36234. ]
  36235. ))
  36236. characterMakers.push(() => makeCharacter(
  36237. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36238. {
  36239. front: {
  36240. height: math.unit(4 + 10/12, "feet"),
  36241. weight: math.unit(160, "lb"),
  36242. name: "Front",
  36243. image: {
  36244. source: "./media/characters/chip-mouse/front.svg",
  36245. extra: 3528/3408,
  36246. bottom: 0/3528
  36247. }
  36248. },
  36249. frontNsfw: {
  36250. height: math.unit(4 + 10/12, "feet"),
  36251. weight: math.unit(160, "lb"),
  36252. name: "Front (NSFW)",
  36253. image: {
  36254. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36255. extra: 3528/3408,
  36256. bottom: 0/3528
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Normal",
  36263. height: math.unit(4 + 10/12, "feet"),
  36264. default: true
  36265. },
  36266. ]
  36267. ))
  36268. characterMakers.push(() => makeCharacter(
  36269. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36270. {
  36271. side: {
  36272. height: math.unit(10, "feet"),
  36273. weight: math.unit(14000, "lb"),
  36274. name: "Side",
  36275. image: {
  36276. source: "./media/characters/kremm/side.svg",
  36277. extra: 1390/1053,
  36278. bottom: 90/1480
  36279. }
  36280. },
  36281. gut: {
  36282. height: math.unit(5.8, "feet"),
  36283. name: "Gut",
  36284. image: {
  36285. source: "./media/characters/kremm/gut.svg"
  36286. }
  36287. },
  36288. ass: {
  36289. height: math.unit(6.1, "feet"),
  36290. name: "Ass",
  36291. image: {
  36292. source: "./media/characters/kremm/ass.svg"
  36293. }
  36294. },
  36295. jaws: {
  36296. height: math.unit(2.2, "feet"),
  36297. name: "Jaws",
  36298. image: {
  36299. source: "./media/characters/kremm/jaws.svg"
  36300. }
  36301. },
  36302. dick: {
  36303. height: math.unit(4.26, "feet"),
  36304. name: "Dick",
  36305. image: {
  36306. source: "./media/characters/kremm/dick.svg"
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(10, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(30, "stories"),
  36323. name: "Front",
  36324. image: {
  36325. source: "./media/characters/kai/front.svg",
  36326. extra: 1892/1718,
  36327. bottom: 162/2054
  36328. }
  36329. },
  36330. },
  36331. [
  36332. {
  36333. name: "Macro",
  36334. height: math.unit(30, "stories"),
  36335. default: true
  36336. },
  36337. ]
  36338. ))
  36339. characterMakers.push(() => makeCharacter(
  36340. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36341. {
  36342. front: {
  36343. height: math.unit(6 + 4/12, "feet"),
  36344. weight: math.unit(145, "lb"),
  36345. name: "Front",
  36346. image: {
  36347. source: "./media/characters/sykes/front.svg",
  36348. extra: 1321 / 1187,
  36349. bottom: 66 / 1387
  36350. }
  36351. },
  36352. back: {
  36353. height: math.unit(6 + 4/12, "feet"),
  36354. weight: math.unit(145, "lb"),
  36355. name: "Back",
  36356. image: {
  36357. source: "./media/characters/sykes/back.svg",
  36358. extra: 1326/1181,
  36359. bottom: 31/1357
  36360. }
  36361. },
  36362. traditionalOutfit: {
  36363. height: math.unit(6 + 4/12, "feet"),
  36364. weight: math.unit(145, "lb"),
  36365. name: "Traditional Outfit",
  36366. image: {
  36367. source: "./media/characters/sykes/traditional-outfit.svg",
  36368. extra: 1321 / 1187,
  36369. bottom: 66 / 1387
  36370. }
  36371. },
  36372. adventureOutfit: {
  36373. height: math.unit(6 + 4/12, "feet"),
  36374. weight: math.unit(145, "lb"),
  36375. name: "Adventure Outfit",
  36376. image: {
  36377. source: "./media/characters/sykes/adventure-outfit.svg",
  36378. extra: 1321 / 1187,
  36379. bottom: 66 / 1387
  36380. }
  36381. },
  36382. handLeft: {
  36383. height: math.unit(0.9, "feet"),
  36384. name: "Hand (Left)",
  36385. image: {
  36386. source: "./media/characters/sykes/hand-left.svg"
  36387. }
  36388. },
  36389. handRight: {
  36390. height: math.unit(0.839, "feet"),
  36391. name: "Hand (Right)",
  36392. image: {
  36393. source: "./media/characters/sykes/hand-right.svg"
  36394. }
  36395. },
  36396. leftFoot: {
  36397. height: math.unit(1.2, "feet"),
  36398. name: "Foot (Left)",
  36399. image: {
  36400. source: "./media/characters/sykes/foot-left.svg"
  36401. }
  36402. },
  36403. rightFoot: {
  36404. height: math.unit(1.2, "feet"),
  36405. name: "Foot (Right)",
  36406. image: {
  36407. source: "./media/characters/sykes/foot-right.svg"
  36408. }
  36409. },
  36410. maw: {
  36411. height: math.unit(1.93, "feet"),
  36412. name: "Maw",
  36413. image: {
  36414. source: "./media/characters/sykes/maw.svg"
  36415. }
  36416. },
  36417. teeth: {
  36418. height: math.unit(0.51, "feet"),
  36419. name: "Teeth",
  36420. image: {
  36421. source: "./media/characters/sykes/teeth.svg"
  36422. }
  36423. },
  36424. tongue: {
  36425. height: math.unit(2.13, "feet"),
  36426. name: "Tongue",
  36427. image: {
  36428. source: "./media/characters/sykes/tongue.svg"
  36429. }
  36430. },
  36431. uvula: {
  36432. height: math.unit(0.16, "feet"),
  36433. name: "Uvula",
  36434. image: {
  36435. source: "./media/characters/sykes/uvula.svg"
  36436. }
  36437. },
  36438. collar: {
  36439. height: math.unit(0.287, "feet"),
  36440. name: "Collar",
  36441. image: {
  36442. source: "./media/characters/sykes/collar.svg"
  36443. }
  36444. },
  36445. tail: {
  36446. height: math.unit(3.8, "feet"),
  36447. name: "Tail",
  36448. image: {
  36449. source: "./media/characters/sykes/tail.svg"
  36450. }
  36451. },
  36452. },
  36453. [
  36454. {
  36455. name: "Shrunken",
  36456. height: math.unit(5, "inches")
  36457. },
  36458. {
  36459. name: "Normal",
  36460. height: math.unit(6 + 4 / 12, "feet"),
  36461. default: true
  36462. },
  36463. {
  36464. name: "Big",
  36465. height: math.unit(15, "feet")
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36471. {
  36472. front: {
  36473. height: math.unit(5 + 8/12, "feet"),
  36474. weight: math.unit(190, "lb"),
  36475. name: "Front",
  36476. image: {
  36477. source: "./media/characters/oven-otter/front.svg",
  36478. extra: 1809/1740,
  36479. bottom: 181/1990
  36480. }
  36481. },
  36482. back: {
  36483. height: math.unit(5 + 8/12, "feet"),
  36484. weight: math.unit(190, "lb"),
  36485. name: "Back",
  36486. image: {
  36487. source: "./media/characters/oven-otter/back.svg",
  36488. extra: 1709/1635,
  36489. bottom: 118/1827
  36490. }
  36491. },
  36492. hand: {
  36493. height: math.unit(1.07, "feet"),
  36494. name: "Hand",
  36495. image: {
  36496. source: "./media/characters/oven-otter/hand.svg"
  36497. }
  36498. },
  36499. beans: {
  36500. height: math.unit(1.74, "feet"),
  36501. name: "Beans",
  36502. image: {
  36503. source: "./media/characters/oven-otter/beans.svg"
  36504. }
  36505. },
  36506. },
  36507. [
  36508. {
  36509. name: "Micro",
  36510. height: math.unit(0.5, "inches")
  36511. },
  36512. {
  36513. name: "Normal",
  36514. height: math.unit(5 + 8/12, "feet"),
  36515. default: true
  36516. },
  36517. {
  36518. name: "Macro",
  36519. height: math.unit(250, "feet")
  36520. },
  36521. {
  36522. name: "Really High",
  36523. height: math.unit(420, "feet")
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36529. {
  36530. front: {
  36531. height: math.unit(5, "meters"),
  36532. weight: math.unit(292000000000000, "kg"),
  36533. name: "Front",
  36534. image: {
  36535. source: "./media/characters/devourer/front.svg",
  36536. extra: 1800/1733,
  36537. bottom: 211/2011
  36538. }
  36539. },
  36540. maw: {
  36541. height: math.unit(1.1, "meter"),
  36542. name: "Maw",
  36543. image: {
  36544. source: "./media/characters/devourer/maw.svg"
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Small",
  36551. height: math.unit(3, "meters")
  36552. },
  36553. {
  36554. name: "Large",
  36555. height: math.unit(5, "meters"),
  36556. default: true
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36562. {
  36563. front: {
  36564. height: math.unit(6, "feet"),
  36565. weight: math.unit(400, "lb"),
  36566. name: "Front",
  36567. image: {
  36568. source: "./media/characters/ellarby/front.svg",
  36569. extra: 1909/1763,
  36570. bottom: 80/1989
  36571. }
  36572. },
  36573. back: {
  36574. height: math.unit(6, "feet"),
  36575. weight: math.unit(400, "lb"),
  36576. name: "Back",
  36577. image: {
  36578. source: "./media/characters/ellarby/back.svg",
  36579. extra: 1914/1784,
  36580. bottom: 172/2086
  36581. }
  36582. },
  36583. },
  36584. [
  36585. {
  36586. name: "Mischief",
  36587. height: math.unit(18, "inches")
  36588. },
  36589. {
  36590. name: "Trouble",
  36591. height: math.unit(12, "feet")
  36592. },
  36593. {
  36594. name: "Havoc",
  36595. height: math.unit(200, "feet"),
  36596. default: true
  36597. },
  36598. {
  36599. name: "Pandemonium",
  36600. height: math.unit(1, "mile")
  36601. },
  36602. {
  36603. name: "Catastrophe",
  36604. height: math.unit(100, "miles")
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36610. {
  36611. front: {
  36612. height: math.unit(4.7, "meters"),
  36613. weight: math.unit(6500, "kg"),
  36614. name: "Front",
  36615. image: {
  36616. source: "./media/characters/vex/front.svg",
  36617. extra: 1288/1140,
  36618. bottom: 100/1388
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(4.7, "meters"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36632. {
  36633. normal: {
  36634. height: math.unit(6, "feet"),
  36635. weight: math.unit(350, "lb"),
  36636. name: "Normal",
  36637. image: {
  36638. source: "./media/characters/teshy/normal.svg",
  36639. extra: 1795/1735,
  36640. bottom: 16/1811
  36641. }
  36642. },
  36643. monsterFront: {
  36644. height: math.unit(12, "feet"),
  36645. weight: math.unit(4700, "lb"),
  36646. name: "Monster (Front)",
  36647. image: {
  36648. source: "./media/characters/teshy/monster-front.svg",
  36649. extra: 2042/2034,
  36650. bottom: 128/2170
  36651. }
  36652. },
  36653. monsterSide: {
  36654. height: math.unit(12, "feet"),
  36655. weight: math.unit(4700, "lb"),
  36656. name: "Monster (Side)",
  36657. image: {
  36658. source: "./media/characters/teshy/monster-side.svg",
  36659. extra: 2067/2056,
  36660. bottom: 70/2137
  36661. }
  36662. },
  36663. monsterBack: {
  36664. height: math.unit(12, "feet"),
  36665. weight: math.unit(4700, "lb"),
  36666. name: "Monster (Back)",
  36667. image: {
  36668. source: "./media/characters/teshy/monster-back.svg",
  36669. extra: 1921/1914,
  36670. bottom: 171/2092
  36671. }
  36672. },
  36673. },
  36674. [
  36675. {
  36676. name: "Normal",
  36677. height: math.unit(6, "feet"),
  36678. default: true
  36679. },
  36680. ]
  36681. ))
  36682. characterMakers.push(() => makeCharacter(
  36683. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36684. {
  36685. front: {
  36686. height: math.unit(6, "feet"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/ramey/front.svg",
  36690. extra: 790/787,
  36691. bottom: 27/817
  36692. }
  36693. },
  36694. },
  36695. [
  36696. {
  36697. name: "Normal",
  36698. height: math.unit(6, "feet"),
  36699. default: true
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(5 + 5/12, "feet"),
  36708. weight: math.unit(120, "lb"),
  36709. name: "Front",
  36710. image: {
  36711. source: "./media/characters/phirae/front.svg",
  36712. extra: 2491/2436,
  36713. bottom: 38/2529
  36714. }
  36715. },
  36716. },
  36717. [
  36718. {
  36719. name: "Normal",
  36720. height: math.unit(5 + 5/12, "feet"),
  36721. default: true
  36722. },
  36723. ]
  36724. ))
  36725. characterMakers.push(() => makeCharacter(
  36726. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36727. {
  36728. front: {
  36729. height: math.unit(5 + 3/12, "feet"),
  36730. name: "Front",
  36731. image: {
  36732. source: "./media/characters/stagglas/front.svg",
  36733. extra: 962/882,
  36734. bottom: 53/1015
  36735. }
  36736. },
  36737. feral: {
  36738. height: math.unit(335, "cm"),
  36739. name: "Feral",
  36740. image: {
  36741. source: "./media/characters/stagglas/feral.svg",
  36742. extra: 1732/1090,
  36743. bottom: 48/1780
  36744. }
  36745. },
  36746. },
  36747. [
  36748. {
  36749. name: "Normal",
  36750. height: math.unit(5 + 3/12, "feet"),
  36751. default: true
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36757. {
  36758. front: {
  36759. height: math.unit(5 + 4/12, "feet"),
  36760. weight: math.unit(145, "lb"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/starra/front.svg",
  36764. extra: 1790/1691,
  36765. bottom: 91/1881
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(5 + 4/12, "feet"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(3.5, "meters"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36785. extra: 1248/972,
  36786. bottom: 38/1286
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(3.5, "meters"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36800. {
  36801. side: {
  36802. height: math.unit(8 + 2/12, "feet"),
  36803. weight: math.unit(1240, "lb"),
  36804. name: "Side",
  36805. image: {
  36806. source: "./media/characters/mika-valentine/side.svg",
  36807. extra: 2670/2501,
  36808. bottom: 250/2920
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Normal",
  36815. height: math.unit(8 + 2/12, "feet"),
  36816. default: true
  36817. },
  36818. ]
  36819. ))
  36820. characterMakers.push(() => makeCharacter(
  36821. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36822. {
  36823. front: {
  36824. height: math.unit(7 + 2/12, "feet"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/xoltol/front.svg",
  36828. extra: 2212/2124,
  36829. bottom: 84/2296
  36830. }
  36831. },
  36832. side: {
  36833. height: math.unit(7 + 2/12, "feet"),
  36834. name: "Side",
  36835. image: {
  36836. source: "./media/characters/xoltol/side.svg",
  36837. extra: 2273/2197,
  36838. bottom: 26/2299
  36839. }
  36840. },
  36841. hand: {
  36842. height: math.unit(2.5, "feet"),
  36843. name: "Hand",
  36844. image: {
  36845. source: "./media/characters/xoltol/hand.svg"
  36846. }
  36847. },
  36848. },
  36849. [
  36850. {
  36851. name: "Small-ish",
  36852. height: math.unit(5 + 11/12, "feet")
  36853. },
  36854. {
  36855. name: "Normal",
  36856. height: math.unit(7 + 2/12, "feet")
  36857. },
  36858. {
  36859. name: "\"Macro\"",
  36860. height: math.unit(14 + 9/12, "feet"),
  36861. default: true
  36862. },
  36863. {
  36864. name: "Alternate Height",
  36865. height: math.unit(20, "feet")
  36866. },
  36867. {
  36868. name: "Actually Macro",
  36869. height: math.unit(100, "feet")
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(5 + 2/12, "feet"),
  36878. weight: math.unit(75, "kg"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/kotetsu-redwood/front.svg",
  36882. extra: 1053/942,
  36883. bottom: 60/1113
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(5 + 2/12, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(2.4, "meters"),
  36900. weight: math.unit(125, "kg"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/lilith/front.svg",
  36904. extra: 1590/1513,
  36905. bottom: 203/1793
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Humanoid",
  36912. height: math.unit(2.4, "meters")
  36913. },
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(6, "meters"),
  36917. default: true
  36918. },
  36919. {
  36920. name: "Largest",
  36921. height: math.unit(55, "meters")
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36927. {
  36928. front: {
  36929. height: math.unit(8 + 4/12, "feet"),
  36930. weight: math.unit(535, "lb"),
  36931. name: "Front",
  36932. image: {
  36933. source: "./media/characters/beh'kah-bolger/front.svg",
  36934. extra: 1660/1603,
  36935. bottom: 37/1697
  36936. }
  36937. },
  36938. },
  36939. [
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(8 + 4/12, "feet"),
  36943. default: true
  36944. },
  36945. {
  36946. name: "Kaiju",
  36947. height: math.unit(250, "feet")
  36948. },
  36949. {
  36950. name: "Still Growing",
  36951. height: math.unit(10, "miles")
  36952. },
  36953. {
  36954. name: "Continental",
  36955. height: math.unit(5000, "miles")
  36956. },
  36957. {
  36958. name: "Final Form",
  36959. height: math.unit(2500000, "miles")
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36965. {
  36966. front: {
  36967. height: math.unit(7 + 2/12, "feet"),
  36968. weight: math.unit(230, "kg"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/tatyana-milewska/front.svg",
  36972. extra: 1199/1150,
  36973. bottom: 86/1285
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(7 + 2/12, "feet"),
  36981. default: true
  36982. },
  36983. {
  36984. name: "Big",
  36985. height: math.unit(12, "feet")
  36986. },
  36987. {
  36988. name: "Minimacro",
  36989. height: math.unit(20, "feet")
  36990. },
  36991. {
  36992. name: "Macro",
  36993. height: math.unit(120, "feet")
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36999. {
  37000. front: {
  37001. height: math.unit(7 + 8/12, "feet"),
  37002. weight: math.unit(152, "kg"),
  37003. name: "Front",
  37004. image: {
  37005. source: "./media/characters/helen-arri/front.svg",
  37006. extra: 440/423,
  37007. bottom: 14/454
  37008. }
  37009. },
  37010. back: {
  37011. height: math.unit(7 + 8/12, "feet"),
  37012. weight: math.unit(152, "kg"),
  37013. name: "Back",
  37014. image: {
  37015. source: "./media/characters/helen-arri/back.svg",
  37016. extra: 443/426,
  37017. bottom: 8/451
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Normal",
  37024. height: math.unit(7 + 8/12, "feet"),
  37025. default: true
  37026. },
  37027. {
  37028. name: "Big",
  37029. height: math.unit(14, "feet")
  37030. },
  37031. {
  37032. name: "Minimacro",
  37033. height: math.unit(24, "feet")
  37034. },
  37035. {
  37036. name: "Macro",
  37037. height: math.unit(140, "feet")
  37038. },
  37039. ]
  37040. ))
  37041. characterMakers.push(() => makeCharacter(
  37042. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37043. {
  37044. front: {
  37045. height: math.unit(6, "meters"),
  37046. name: "Front",
  37047. image: {
  37048. source: "./media/characters/ehanu-rehu/front.svg",
  37049. extra: 1800/1800,
  37050. bottom: 59/1859
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(6, "meters"),
  37058. default: true
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37064. {
  37065. front: {
  37066. height: math.unit(7 + 3/12, "feet"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/renholder/front.svg",
  37070. extra: 3096/2960,
  37071. bottom: 250/3346
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal Bat",
  37078. height: math.unit(7 + 3/12, "feet"),
  37079. default: true
  37080. },
  37081. {
  37082. name: "Slightly Tall Bat",
  37083. height: math.unit(100, "feet")
  37084. },
  37085. {
  37086. name: "Big Bat",
  37087. height: math.unit(1000, "feet")
  37088. },
  37089. {
  37090. name: "City-Sized Bat",
  37091. height: math.unit(200000, "feet")
  37092. },
  37093. {
  37094. name: "Bigger Bat",
  37095. height: math.unit(10000, "miles")
  37096. },
  37097. {
  37098. name: "Solar Sized Bat",
  37099. height: math.unit(100, "AU")
  37100. },
  37101. {
  37102. name: "Galactic Bat",
  37103. height: math.unit(200000, "lightyears")
  37104. },
  37105. {
  37106. name: "Universally Known Bat",
  37107. height: math.unit(1, "universe")
  37108. },
  37109. ]
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37113. {
  37114. front: {
  37115. height: math.unit(6 + 11/12, "feet"),
  37116. weight: math.unit(250, "lb"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/cookiecat/front.svg",
  37120. extra: 893/827,
  37121. bottom: 14/907
  37122. }
  37123. },
  37124. },
  37125. [
  37126. {
  37127. name: "Micro",
  37128. height: math.unit(3, "inches")
  37129. },
  37130. {
  37131. name: "Normal",
  37132. height: math.unit(6 + 11/12, "feet"),
  37133. default: true
  37134. },
  37135. {
  37136. name: "Macro",
  37137. height: math.unit(100, "feet")
  37138. },
  37139. {
  37140. name: "Macro+",
  37141. height: math.unit(404, "feet")
  37142. },
  37143. {
  37144. name: "Megamacro",
  37145. height: math.unit(165, "miles")
  37146. },
  37147. {
  37148. name: "Planetary",
  37149. height: math.unit(4600, "miles")
  37150. },
  37151. ]
  37152. ))
  37153. characterMakers.push(() => makeCharacter(
  37154. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37155. {
  37156. front: {
  37157. height: math.unit(10 + 3/12, "feet"),
  37158. weight: math.unit(1500, "lb"),
  37159. name: "Front",
  37160. image: {
  37161. source: "./media/characters/tux-kusanagi/front.svg",
  37162. extra: 944/840,
  37163. bottom: 39/983
  37164. }
  37165. },
  37166. back: {
  37167. height: math.unit(10 + 3/12, "feet"),
  37168. weight: math.unit(1500, "lb"),
  37169. name: "Back",
  37170. image: {
  37171. source: "./media/characters/tux-kusanagi/back.svg",
  37172. extra: 941/842,
  37173. bottom: 28/969
  37174. }
  37175. },
  37176. rump: {
  37177. height: math.unit(5.25, "feet"),
  37178. name: "Rump",
  37179. image: {
  37180. source: "./media/characters/tux-kusanagi/rump.svg"
  37181. }
  37182. },
  37183. beak: {
  37184. height: math.unit(1.54, "feet"),
  37185. name: "Beak",
  37186. image: {
  37187. source: "./media/characters/tux-kusanagi/beak.svg"
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Normal",
  37194. height: math.unit(10 + 3/12, "feet"),
  37195. default: true
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37201. {
  37202. front: {
  37203. height: math.unit(58, "feet"),
  37204. weight: math.unit(200, "tons"),
  37205. name: "Front",
  37206. image: {
  37207. source: "./media/characters/uzarmazari/front.svg",
  37208. extra: 1575/1455,
  37209. bottom: 152/1727
  37210. }
  37211. },
  37212. back: {
  37213. height: math.unit(58, "feet"),
  37214. weight: math.unit(200, "tons"),
  37215. name: "Back",
  37216. image: {
  37217. source: "./media/characters/uzarmazari/back.svg",
  37218. extra: 1585/1510,
  37219. bottom: 157/1742
  37220. }
  37221. },
  37222. head: {
  37223. height: math.unit(26, "feet"),
  37224. name: "Head",
  37225. image: {
  37226. source: "./media/characters/uzarmazari/head.svg"
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Normal",
  37233. height: math.unit(58, "feet"),
  37234. default: true
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37240. {
  37241. side: {
  37242. height: math.unit(15, "feet"),
  37243. name: "Side",
  37244. image: {
  37245. source: "./media/characters/akitu/side.svg",
  37246. extra: 1421/1321,
  37247. bottom: 157/1578
  37248. }
  37249. },
  37250. front: {
  37251. height: math.unit(15, "feet"),
  37252. name: "Front",
  37253. image: {
  37254. source: "./media/characters/akitu/front.svg",
  37255. extra: 1435/1326,
  37256. bottom: 232/1667
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(15, "feet"),
  37264. default: true
  37265. },
  37266. ]
  37267. ))
  37268. characterMakers.push(() => makeCharacter(
  37269. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37270. {
  37271. front: {
  37272. height: math.unit(10 + 8/12, "feet"),
  37273. name: "Front",
  37274. image: {
  37275. source: "./media/characters/azalie-croixland/front.svg",
  37276. extra: 1972/1856,
  37277. bottom: 31/2003
  37278. }
  37279. },
  37280. },
  37281. [
  37282. {
  37283. name: "Original Height",
  37284. height: math.unit(5 + 4/12, "feet")
  37285. },
  37286. {
  37287. name: "Normal Height",
  37288. height: math.unit(10 + 8/12, "feet"),
  37289. default: true
  37290. },
  37291. ]
  37292. ))
  37293. characterMakers.push(() => makeCharacter(
  37294. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37295. {
  37296. side: {
  37297. height: math.unit(7 + 1/12, "feet"),
  37298. weight: math.unit(245, "lb"),
  37299. name: "Side",
  37300. image: {
  37301. source: "./media/characters/kavus-kazian/side.svg",
  37302. extra: 349/342,
  37303. bottom: 15/364
  37304. }
  37305. },
  37306. },
  37307. [
  37308. {
  37309. name: "Normal",
  37310. height: math.unit(7 + 1/12, "feet"),
  37311. default: true
  37312. },
  37313. ]
  37314. ))
  37315. characterMakers.push(() => makeCharacter(
  37316. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37317. {
  37318. normalFront: {
  37319. height: math.unit(5 + 11/12, "feet"),
  37320. name: "Front",
  37321. image: {
  37322. source: "./media/characters/moonlight-rose/normal-front.svg",
  37323. extra: 1980/1825,
  37324. bottom: 18/1998
  37325. },
  37326. form: "normal",
  37327. default: true
  37328. },
  37329. normalBack: {
  37330. height: math.unit(5 + 11/12, "feet"),
  37331. name: "Back",
  37332. image: {
  37333. source: "./media/characters/moonlight-rose/normal-back.svg",
  37334. extra: 2010/1839,
  37335. bottom: 10/2020
  37336. },
  37337. form: "normal"
  37338. },
  37339. demonFront: {
  37340. height: math.unit(1.5, "earths"),
  37341. name: "Front",
  37342. image: {
  37343. source: "./media/characters/moonlight-rose/demon.svg",
  37344. extra: 1400/1294,
  37345. bottom: 45/1445
  37346. },
  37347. form: "demon",
  37348. default: true
  37349. },
  37350. terraFront: {
  37351. height: math.unit(1.5, "earths"),
  37352. name: "Front",
  37353. image: {
  37354. source: "./media/characters/moonlight-rose/terra.svg"
  37355. },
  37356. form: "terra",
  37357. default: true
  37358. },
  37359. jupiterFront: {
  37360. height: math.unit(69911*2, "km"),
  37361. name: "Front",
  37362. image: {
  37363. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37364. extra: 1367/1286,
  37365. bottom: 55/1422
  37366. },
  37367. form: "jupiter",
  37368. default: true
  37369. },
  37370. neptuneFront: {
  37371. height: math.unit(24622*2, "feet"),
  37372. name: "Front",
  37373. image: {
  37374. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37375. extra: 1851/1712,
  37376. bottom: 0/1851
  37377. },
  37378. form: "neptune",
  37379. default: true
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "\"Natural\" Height",
  37385. height: math.unit(5 + 11/12, "feet"),
  37386. form: "normal"
  37387. },
  37388. {
  37389. name: "Smallest comfortable size",
  37390. height: math.unit(40, "meters"),
  37391. form: "normal"
  37392. },
  37393. {
  37394. name: "Common size",
  37395. height: math.unit(50, "km"),
  37396. form: "normal",
  37397. default: true
  37398. },
  37399. {
  37400. name: "Normal",
  37401. height: math.unit(1.5, "earths"),
  37402. form: "demon",
  37403. default: true
  37404. },
  37405. {
  37406. name: "Universal",
  37407. height: math.unit(15, "universes"),
  37408. form: "demon"
  37409. },
  37410. {
  37411. name: "Earth",
  37412. height: math.unit(1.5, "earths"),
  37413. form: "terra",
  37414. default: true
  37415. },
  37416. {
  37417. name: "Super Earth",
  37418. height: math.unit(67.5, "earths"),
  37419. form: "terra"
  37420. },
  37421. {
  37422. name: "Doesn't fit in a solar system...",
  37423. height: math.unit(1, "galaxy"),
  37424. form: "terra"
  37425. },
  37426. {
  37427. name: "Saturn",
  37428. height: math.unit(58232*2, "km"),
  37429. form: "jupiter"
  37430. },
  37431. {
  37432. name: "Jupiter",
  37433. height: math.unit(69911*2, "km"),
  37434. form: "jupiter",
  37435. default: true
  37436. },
  37437. {
  37438. name: "HD 100546 b",
  37439. height: math.unit(482938, "km"),
  37440. form: "jupiter"
  37441. },
  37442. {
  37443. name: "Enceladus",
  37444. height: math.unit(513*2, "km"),
  37445. form: "neptune"
  37446. },
  37447. {
  37448. name: "Europe",
  37449. height: math.unit(1560*2, "km"),
  37450. form: "neptune"
  37451. },
  37452. {
  37453. name: "Neptune",
  37454. height: math.unit(24622*2, "km"),
  37455. form: "neptune",
  37456. default: true
  37457. },
  37458. {
  37459. name: "CoRoT-9b",
  37460. height: math.unit(75067*2, "km"),
  37461. form: "neptune"
  37462. },
  37463. ],
  37464. {
  37465. "normal": {
  37466. name: "Normal",
  37467. default: true
  37468. },
  37469. "demon": {
  37470. name: "Demon"
  37471. },
  37472. "terra": {
  37473. name: "Terra"
  37474. },
  37475. "jupiter": {
  37476. name: "Jupiter"
  37477. },
  37478. "neptune": {
  37479. name: "Neptune"
  37480. }
  37481. }
  37482. ))
  37483. characterMakers.push(() => makeCharacter(
  37484. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37485. {
  37486. front: {
  37487. height: math.unit(16, "feet"),
  37488. weight: math.unit(610, "kg"),
  37489. name: "Front",
  37490. image: {
  37491. source: "./media/characters/huckle/front.svg",
  37492. extra: 1731/1625,
  37493. bottom: 33/1764
  37494. }
  37495. },
  37496. back: {
  37497. height: math.unit(16, "feet"),
  37498. weight: math.unit(610, "kg"),
  37499. name: "Back",
  37500. image: {
  37501. source: "./media/characters/huckle/back.svg",
  37502. extra: 1738/1651,
  37503. bottom: 37/1775
  37504. }
  37505. },
  37506. laughing: {
  37507. height: math.unit(3.75, "feet"),
  37508. name: "Laughing",
  37509. image: {
  37510. source: "./media/characters/huckle/laughing.svg"
  37511. }
  37512. },
  37513. angry: {
  37514. height: math.unit(4.15, "feet"),
  37515. name: "Angry",
  37516. image: {
  37517. source: "./media/characters/huckle/angry.svg"
  37518. }
  37519. },
  37520. },
  37521. [
  37522. {
  37523. name: "Normal",
  37524. height: math.unit(16, "feet"),
  37525. default: true
  37526. },
  37527. {
  37528. name: "Mini Macro",
  37529. height: math.unit(463, "feet")
  37530. },
  37531. {
  37532. name: "Macro",
  37533. height: math.unit(1680, "meters")
  37534. },
  37535. {
  37536. name: "Mega Macro",
  37537. height: math.unit(175, "km")
  37538. },
  37539. {
  37540. name: "Terra Macro",
  37541. height: math.unit(32, "gigameters")
  37542. },
  37543. {
  37544. name: "Multiverse+",
  37545. height: math.unit(2.56e23, "yottameters")
  37546. },
  37547. ]
  37548. ))
  37549. characterMakers.push(() => makeCharacter(
  37550. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37551. {
  37552. front: {
  37553. height: math.unit(6 + 9/12, "feet"),
  37554. weight: math.unit(280, "lb"),
  37555. name: "Front",
  37556. image: {
  37557. source: "./media/characters/candy/front.svg",
  37558. extra: 234/217,
  37559. bottom: 11/245
  37560. }
  37561. },
  37562. },
  37563. [
  37564. {
  37565. name: "Really Small",
  37566. height: math.unit(0.1, "nm")
  37567. },
  37568. {
  37569. name: "Micro",
  37570. height: math.unit(2, "inches")
  37571. },
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(6 + 9/12, "feet"),
  37575. default: true
  37576. },
  37577. {
  37578. name: "Small Macro",
  37579. height: math.unit(69, "feet")
  37580. },
  37581. {
  37582. name: "Macro",
  37583. height: math.unit(160, "feet")
  37584. },
  37585. {
  37586. name: "Megamacro",
  37587. height: math.unit(22000, "miles")
  37588. },
  37589. {
  37590. name: "Gigamacro",
  37591. height: math.unit(50000, "miles")
  37592. },
  37593. ]
  37594. ))
  37595. characterMakers.push(() => makeCharacter(
  37596. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37597. {
  37598. front: {
  37599. height: math.unit(4, "feet"),
  37600. weight: math.unit(90, "lb"),
  37601. name: "Front",
  37602. image: {
  37603. source: "./media/characters/joey-mcdonald/front.svg",
  37604. extra: 1059/852,
  37605. bottom: 33/1092
  37606. }
  37607. },
  37608. back: {
  37609. height: math.unit(4, "feet"),
  37610. weight: math.unit(90, "lb"),
  37611. name: "Back",
  37612. image: {
  37613. source: "./media/characters/joey-mcdonald/back.svg",
  37614. extra: 1077/879,
  37615. bottom: 5/1082
  37616. }
  37617. },
  37618. frontKobold: {
  37619. height: math.unit(4, "feet"),
  37620. weight: math.unit(100, "lb"),
  37621. name: "Front-kobold",
  37622. image: {
  37623. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37624. extra: 1480/1367,
  37625. bottom: 0/1480
  37626. }
  37627. },
  37628. backKobold: {
  37629. height: math.unit(4, "feet"),
  37630. weight: math.unit(100, "lb"),
  37631. name: "Back-kobold",
  37632. image: {
  37633. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37634. extra: 1449/1361,
  37635. bottom: 0/1449
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(4, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37649. {
  37650. front: {
  37651. height: math.unit(12 + 6/12, "feet"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/kass-lockheed/front.svg",
  37655. extra: 354/343,
  37656. bottom: 9/363
  37657. }
  37658. },
  37659. back: {
  37660. height: math.unit(12 + 6/12, "feet"),
  37661. name: "Back",
  37662. image: {
  37663. source: "./media/characters/kass-lockheed/back.svg",
  37664. extra: 364/352,
  37665. bottom: 3/367
  37666. }
  37667. },
  37668. dick: {
  37669. height: math.unit(3.12, "feet"),
  37670. name: "Dick",
  37671. image: {
  37672. source: "./media/characters/kass-lockheed/dick.svg"
  37673. }
  37674. },
  37675. head: {
  37676. height: math.unit(2.6, "feet"),
  37677. name: "Head",
  37678. image: {
  37679. source: "./media/characters/kass-lockheed/head.svg"
  37680. }
  37681. },
  37682. bleh: {
  37683. height: math.unit(2.85, "feet"),
  37684. name: "Bleh",
  37685. image: {
  37686. source: "./media/characters/kass-lockheed/bleh.svg"
  37687. }
  37688. },
  37689. smug: {
  37690. height: math.unit(2.85, "feet"),
  37691. name: "Smug",
  37692. image: {
  37693. source: "./media/characters/kass-lockheed/smug.svg"
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(12 + 6/12, "feet"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37707. {
  37708. front: {
  37709. height: math.unit(6 + 2/12, "feet"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/taylor/front.svg",
  37713. extra: 639/495,
  37714. bottom: 12/651
  37715. }
  37716. },
  37717. },
  37718. [
  37719. {
  37720. name: "Normal",
  37721. height: math.unit(6 + 2/12, "feet"),
  37722. default: true
  37723. },
  37724. {
  37725. name: "Big",
  37726. height: math.unit(15, "feet")
  37727. },
  37728. {
  37729. name: "Lorg",
  37730. height: math.unit(80, "feet")
  37731. },
  37732. {
  37733. name: "Too Lorg",
  37734. height: math.unit(120, "feet")
  37735. },
  37736. ]
  37737. ))
  37738. characterMakers.push(() => makeCharacter(
  37739. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37740. {
  37741. front: {
  37742. height: math.unit(15, "feet"),
  37743. name: "Front",
  37744. image: {
  37745. source: "./media/characters/kaizer/front.svg",
  37746. extra: 1612/1436,
  37747. bottom: 43/1655
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Normal",
  37754. height: math.unit(15, "feet"),
  37755. default: true
  37756. },
  37757. ]
  37758. ))
  37759. characterMakers.push(() => makeCharacter(
  37760. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37761. {
  37762. front: {
  37763. height: math.unit(2, "feet"),
  37764. weight: math.unit(30, "lb"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/sandy/front.svg",
  37768. extra: 1439/1307,
  37769. bottom: 194/1633
  37770. }
  37771. },
  37772. },
  37773. [
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(2, "feet"),
  37777. default: true
  37778. },
  37779. ]
  37780. ))
  37781. characterMakers.push(() => makeCharacter(
  37782. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37783. {
  37784. front: {
  37785. height: math.unit(3, "feet"),
  37786. name: "Front",
  37787. image: {
  37788. source: "./media/characters/mellvi/front.svg",
  37789. extra: 1831/1630,
  37790. bottom: 58/1889
  37791. }
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "Normal",
  37797. height: math.unit(3, "feet"),
  37798. default: true
  37799. },
  37800. ]
  37801. ))
  37802. characterMakers.push(() => makeCharacter(
  37803. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37804. {
  37805. front: {
  37806. height: math.unit(5 + 11/12, "feet"),
  37807. weight: math.unit(200, "lb"),
  37808. name: "Front",
  37809. image: {
  37810. source: "./media/characters/shirou/front.svg",
  37811. extra: 2491/2383,
  37812. bottom: 189/2680
  37813. }
  37814. },
  37815. back: {
  37816. height: math.unit(5 + 11/12, "feet"),
  37817. weight: math.unit(200, "lb"),
  37818. name: "Back",
  37819. image: {
  37820. source: "./media/characters/shirou/back.svg",
  37821. extra: 2554/2450,
  37822. bottom: 76/2630
  37823. }
  37824. },
  37825. },
  37826. [
  37827. {
  37828. name: "Normal",
  37829. height: math.unit(5 + 11/12, "feet"),
  37830. default: true
  37831. },
  37832. ]
  37833. ))
  37834. characterMakers.push(() => makeCharacter(
  37835. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37836. {
  37837. front: {
  37838. height: math.unit(6 + 3/12, "feet"),
  37839. weight: math.unit(177, "lb"),
  37840. name: "Front",
  37841. image: {
  37842. source: "./media/characters/noryu/front.svg",
  37843. extra: 973/885,
  37844. bottom: 10/983
  37845. }
  37846. },
  37847. },
  37848. [
  37849. {
  37850. name: "Normal",
  37851. height: math.unit(6 + 3/12, "feet"),
  37852. default: true
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37858. {
  37859. front: {
  37860. height: math.unit(5 + 6/12, "feet"),
  37861. weight: math.unit(170, "lb"),
  37862. name: "Front",
  37863. image: {
  37864. source: "./media/characters/mevolas-rubenido/front.svg",
  37865. extra: 2109/1901,
  37866. bottom: 96/2205
  37867. }
  37868. },
  37869. },
  37870. [
  37871. {
  37872. name: "Normal",
  37873. height: math.unit(5 + 6/12, "feet"),
  37874. default: true
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(100, "feet"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/dee/front.svg",
  37886. extra: 2153/2036,
  37887. bottom: 59/2212
  37888. }
  37889. },
  37890. back: {
  37891. height: math.unit(100, "feet"),
  37892. name: "Back",
  37893. image: {
  37894. source: "./media/characters/dee/back.svg",
  37895. extra: 2183/2058,
  37896. bottom: 75/2258
  37897. }
  37898. },
  37899. foot: {
  37900. height: math.unit(19.43, "feet"),
  37901. name: "Foot",
  37902. image: {
  37903. source: "./media/characters/dee/foot.svg"
  37904. }
  37905. },
  37906. hoof: {
  37907. height: math.unit(20.6, "feet"),
  37908. name: "Hoof",
  37909. image: {
  37910. source: "./media/characters/dee/hoof.svg"
  37911. }
  37912. },
  37913. },
  37914. [
  37915. {
  37916. name: "Macro",
  37917. height: math.unit(100, "feet"),
  37918. default: true
  37919. },
  37920. ]
  37921. ))
  37922. characterMakers.push(() => makeCharacter(
  37923. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37924. {
  37925. front: {
  37926. height: math.unit(5 + 6/12, "feet"),
  37927. name: "Front",
  37928. image: {
  37929. source: "./media/characters/teh/front.svg",
  37930. extra: 1002/847,
  37931. bottom: 62/1064
  37932. }
  37933. },
  37934. },
  37935. [
  37936. {
  37937. name: "Normal",
  37938. height: math.unit(5 + 6/12, "feet"),
  37939. default: true
  37940. },
  37941. ]
  37942. ))
  37943. characterMakers.push(() => makeCharacter(
  37944. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37945. {
  37946. side: {
  37947. height: math.unit(6 + 1/12, "feet"),
  37948. weight: math.unit(204, "lb"),
  37949. name: "Side",
  37950. image: {
  37951. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37952. extra: 974/775,
  37953. bottom: 169/1143
  37954. }
  37955. },
  37956. sitting: {
  37957. height: math.unit(6 + 2/12, "feet"),
  37958. weight: math.unit(204, "lb"),
  37959. name: "Sitting",
  37960. image: {
  37961. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37962. extra: 1175/964,
  37963. bottom: 378/1553
  37964. }
  37965. },
  37966. },
  37967. [
  37968. {
  37969. name: "Normal",
  37970. height: math.unit(6 + 1/12, "feet"),
  37971. default: true
  37972. },
  37973. ]
  37974. ))
  37975. characterMakers.push(() => makeCharacter(
  37976. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37977. {
  37978. front: {
  37979. height: math.unit(6, "inches"),
  37980. name: "Front",
  37981. image: {
  37982. source: "./media/characters/tululi/front.svg",
  37983. extra: 1997/1876,
  37984. bottom: 20/2017
  37985. }
  37986. },
  37987. },
  37988. [
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(6, "inches"),
  37992. default: true
  37993. },
  37994. ]
  37995. ))
  37996. characterMakers.push(() => makeCharacter(
  37997. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37998. {
  37999. front: {
  38000. height: math.unit(4 + 1/12, "feet"),
  38001. name: "Front",
  38002. image: {
  38003. source: "./media/characters/star/front.svg",
  38004. extra: 1493/1189,
  38005. bottom: 48/1541
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(4 + 1/12, "feet"),
  38013. default: true
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(6 + 3/12, "feet"),
  38022. name: "Front",
  38023. image: {
  38024. source: "./media/characters/comet/front.svg",
  38025. extra: 1681/1462,
  38026. bottom: 26/1707
  38027. }
  38028. },
  38029. },
  38030. [
  38031. {
  38032. name: "Normal",
  38033. height: math.unit(6 + 3/12, "feet"),
  38034. default: true
  38035. },
  38036. ]
  38037. ))
  38038. characterMakers.push(() => makeCharacter(
  38039. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38040. {
  38041. front: {
  38042. height: math.unit(950, "feet"),
  38043. name: "Front",
  38044. image: {
  38045. source: "./media/characters/vortex/front.svg",
  38046. extra: 1497/1434,
  38047. bottom: 56/1553
  38048. }
  38049. },
  38050. maw: {
  38051. height: math.unit(285, "feet"),
  38052. name: "Maw",
  38053. image: {
  38054. source: "./media/characters/vortex/maw.svg"
  38055. }
  38056. },
  38057. },
  38058. [
  38059. {
  38060. name: "Macro",
  38061. height: math.unit(950, "feet"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(600, "feet"),
  38071. weight: math.unit(0.02, "grams"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/doodle/front.svg",
  38075. extra: 1578/1413,
  38076. bottom: 37/1615
  38077. }
  38078. },
  38079. },
  38080. [
  38081. {
  38082. name: "Macro",
  38083. height: math.unit(600, "feet"),
  38084. default: true
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(6 + 6/12, "feet"),
  38093. name: "Front",
  38094. image: {
  38095. source: "./media/characters/jai/front.svg",
  38096. extra: 1645/1534,
  38097. bottom: 115/1760
  38098. }
  38099. },
  38100. },
  38101. [
  38102. {
  38103. name: "Normal",
  38104. height: math.unit(6 + 6/12, "feet"),
  38105. default: true
  38106. },
  38107. ]
  38108. ))
  38109. characterMakers.push(() => makeCharacter(
  38110. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38111. {
  38112. front: {
  38113. height: math.unit(6 + 8/12, "feet"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/pixel/front.svg",
  38117. extra: 1900/1735,
  38118. bottom: 63/1963
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Normal",
  38125. height: math.unit(6 + 8/12, "feet"),
  38126. default: true
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38132. {
  38133. back: {
  38134. height: math.unit(4 + 1/12, "feet"),
  38135. weight: math.unit(75, "lb"),
  38136. name: "Back",
  38137. image: {
  38138. source: "./media/characters/rhett/back.svg",
  38139. extra: 930/878,
  38140. bottom: 25/955
  38141. }
  38142. },
  38143. front: {
  38144. height: math.unit(4 + 1/12, "feet"),
  38145. weight: math.unit(75, "lb"),
  38146. name: "Front",
  38147. image: {
  38148. source: "./media/characters/rhett/front.svg",
  38149. extra: 1682/1586,
  38150. bottom: 92/1774
  38151. }
  38152. },
  38153. },
  38154. [
  38155. {
  38156. name: "Micro",
  38157. height: math.unit(8, "inches")
  38158. },
  38159. {
  38160. name: "Tiny",
  38161. height: math.unit(2, "feet")
  38162. },
  38163. {
  38164. name: "Normal",
  38165. height: math.unit(4 + 1/12, "feet"),
  38166. default: true
  38167. },
  38168. ]
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38172. {
  38173. front: {
  38174. height: math.unit(3 + 3/12, "feet"),
  38175. name: "Front",
  38176. image: {
  38177. source: "./media/characters/penny/front.svg",
  38178. extra: 1406/1311,
  38179. bottom: 26/1432
  38180. }
  38181. },
  38182. },
  38183. [
  38184. {
  38185. name: "Normal",
  38186. height: math.unit(3 + 3/12, "feet"),
  38187. default: true
  38188. },
  38189. ]
  38190. ))
  38191. characterMakers.push(() => makeCharacter(
  38192. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38193. {
  38194. front: {
  38195. height: math.unit(4 + 11/12, "feet"),
  38196. name: "Front",
  38197. image: {
  38198. source: "./media/characters/monty/front.svg",
  38199. extra: 1479/1209,
  38200. bottom: 0/1479
  38201. }
  38202. },
  38203. },
  38204. [
  38205. {
  38206. name: "Normal",
  38207. height: math.unit(4 + 11/12, "feet"),
  38208. default: true
  38209. },
  38210. ]
  38211. ))
  38212. characterMakers.push(() => makeCharacter(
  38213. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38214. {
  38215. front: {
  38216. height: math.unit(8 + 4/12, "feet"),
  38217. name: "Front",
  38218. image: {
  38219. source: "./media/characters/sterling/front.svg",
  38220. extra: 1420/1236,
  38221. bottom: 27/1447
  38222. }
  38223. },
  38224. },
  38225. [
  38226. {
  38227. name: "Normal",
  38228. height: math.unit(8 + 4/12, "feet"),
  38229. default: true
  38230. },
  38231. ]
  38232. ))
  38233. characterMakers.push(() => makeCharacter(
  38234. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38235. {
  38236. front: {
  38237. height: math.unit(15, "feet"),
  38238. name: "Front",
  38239. image: {
  38240. source: "./media/characters/marble/front.svg",
  38241. extra: 973/937,
  38242. bottom: 32/1005
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Normal",
  38249. height: math.unit(15, "feet"),
  38250. default: true
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38256. {
  38257. front: {
  38258. height: math.unit(3, "inches"),
  38259. name: "Front",
  38260. image: {
  38261. source: "./media/characters/powder/front.svg",
  38262. extra: 1504/1334,
  38263. bottom: 518/2022
  38264. }
  38265. },
  38266. },
  38267. [
  38268. {
  38269. name: "Normal",
  38270. height: math.unit(3, "inches"),
  38271. default: true
  38272. },
  38273. ]
  38274. ))
  38275. characterMakers.push(() => makeCharacter(
  38276. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38277. {
  38278. front: {
  38279. height: math.unit(4 + 5/12, "feet"),
  38280. name: "Front",
  38281. image: {
  38282. source: "./media/characters/joey-raccoon/front.svg",
  38283. extra: 1273/1197,
  38284. bottom: 0/1273
  38285. }
  38286. },
  38287. },
  38288. [
  38289. {
  38290. name: "Normal",
  38291. height: math.unit(4 + 5/12, "feet"),
  38292. default: true
  38293. },
  38294. ]
  38295. ))
  38296. characterMakers.push(() => makeCharacter(
  38297. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38298. {
  38299. front: {
  38300. height: math.unit(8 + 4/12, "feet"),
  38301. name: "Front",
  38302. image: {
  38303. source: "./media/characters/vick/front.svg",
  38304. extra: 2187/2118,
  38305. bottom: 47/2234
  38306. }
  38307. },
  38308. },
  38309. [
  38310. {
  38311. name: "Normal",
  38312. height: math.unit(8 + 4/12, "feet"),
  38313. default: true
  38314. },
  38315. ]
  38316. ))
  38317. characterMakers.push(() => makeCharacter(
  38318. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38319. {
  38320. front: {
  38321. height: math.unit(5 + 5/12, "feet"),
  38322. name: "Front",
  38323. image: {
  38324. source: "./media/characters/mitsy/front.svg",
  38325. extra: 1842/1695,
  38326. bottom: 0/1842
  38327. }
  38328. },
  38329. },
  38330. [
  38331. {
  38332. name: "Normal",
  38333. height: math.unit(5 + 5/12, "feet"),
  38334. default: true
  38335. },
  38336. ]
  38337. ))
  38338. characterMakers.push(() => makeCharacter(
  38339. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38340. {
  38341. front: {
  38342. height: math.unit(6 + 3/12, "feet"),
  38343. name: "Front",
  38344. image: {
  38345. source: "./media/characters/silvy/front.svg",
  38346. extra: 1995/1836,
  38347. bottom: 225/2220
  38348. }
  38349. },
  38350. },
  38351. [
  38352. {
  38353. name: "Normal",
  38354. height: math.unit(6 + 3/12, "feet"),
  38355. default: true
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38361. {
  38362. front: {
  38363. height: math.unit(3 + 8/12, "feet"),
  38364. name: "Front",
  38365. image: {
  38366. source: "./media/characters/rodney/front.svg",
  38367. extra: 1956/1747,
  38368. bottom: 31/1987
  38369. }
  38370. },
  38371. frontDressed: {
  38372. height: math.unit(2.9, "feet"),
  38373. name: "Front (Dressed)",
  38374. image: {
  38375. source: "./media/characters/rodney/front-dressed.svg",
  38376. extra: 1382/1241,
  38377. bottom: 385/1767
  38378. }
  38379. },
  38380. },
  38381. [
  38382. {
  38383. name: "Normal",
  38384. height: math.unit(3 + 8/12, "feet"),
  38385. default: true
  38386. },
  38387. ]
  38388. ))
  38389. characterMakers.push(() => makeCharacter(
  38390. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38391. {
  38392. front: {
  38393. height: math.unit(5 + 9/12, "feet"),
  38394. weight: math.unit(194, "lbs"),
  38395. name: "Front",
  38396. image: {
  38397. source: "./media/characters/zakail-sudekai/front.svg",
  38398. extra: 2696/2533,
  38399. bottom: 248/2944
  38400. }
  38401. },
  38402. maw: {
  38403. height: math.unit(1.35, "feet"),
  38404. name: "Maw",
  38405. image: {
  38406. source: "./media/characters/zakail-sudekai/maw.svg"
  38407. }
  38408. },
  38409. },
  38410. [
  38411. {
  38412. name: "Normal",
  38413. height: math.unit(5 + 9/12, "feet"),
  38414. default: true
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(8 + 4/12, "feet"),
  38423. weight: math.unit(1200, "lb"),
  38424. name: "Front",
  38425. image: {
  38426. source: "./media/characters/eleanor/front.svg",
  38427. extra: 1226/1192,
  38428. bottom: 52/1278
  38429. }
  38430. },
  38431. back: {
  38432. height: math.unit(8 + 4/12, "feet"),
  38433. weight: math.unit(1200, "lb"),
  38434. name: "Back",
  38435. image: {
  38436. source: "./media/characters/eleanor/back.svg",
  38437. extra: 1242/1184,
  38438. bottom: 60/1302
  38439. }
  38440. },
  38441. head: {
  38442. height: math.unit(2.62, "feet"),
  38443. name: "Head",
  38444. image: {
  38445. source: "./media/characters/eleanor/head.svg"
  38446. }
  38447. },
  38448. },
  38449. [
  38450. {
  38451. name: "Normal",
  38452. height: math.unit(8 + 4/12, "feet"),
  38453. default: true
  38454. },
  38455. ]
  38456. ))
  38457. characterMakers.push(() => makeCharacter(
  38458. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38459. {
  38460. front: {
  38461. height: math.unit(8 + 4/12, "feet"),
  38462. weight: math.unit(750, "lb"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/tanya/front.svg",
  38466. extra: 1749/1615,
  38467. bottom: 33/1782
  38468. }
  38469. },
  38470. },
  38471. [
  38472. {
  38473. name: "Normal",
  38474. height: math.unit(8 + 4/12, "feet"),
  38475. default: true
  38476. },
  38477. ]
  38478. ))
  38479. characterMakers.push(() => makeCharacter(
  38480. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38481. {
  38482. front: {
  38483. height: math.unit(5, "feet"),
  38484. weight: math.unit(225, "lb"),
  38485. name: "Front",
  38486. image: {
  38487. source: "./media/characters/cindy/front.svg",
  38488. extra: 1320/1250,
  38489. bottom: 42/1362
  38490. }
  38491. },
  38492. frontDressed: {
  38493. height: math.unit(5, "feet"),
  38494. weight: math.unit(225, "lb"),
  38495. name: "Front (Dressed)",
  38496. image: {
  38497. source: "./media/characters/cindy/front-dressed.svg",
  38498. extra: 1320/1250,
  38499. bottom: 42/1362
  38500. }
  38501. },
  38502. back: {
  38503. height: math.unit(5, "feet"),
  38504. weight: math.unit(225, "lb"),
  38505. name: "Back",
  38506. image: {
  38507. source: "./media/characters/cindy/back.svg",
  38508. extra: 1384/1346,
  38509. bottom: 14/1398
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(5, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(6 + 9/12, "feet"),
  38526. weight: math.unit(440, "lb"),
  38527. name: "Front",
  38528. image: {
  38529. source: "./media/characters/wilbur-owen/front.svg",
  38530. extra: 1575/1448,
  38531. bottom: 72/1647
  38532. }
  38533. },
  38534. back: {
  38535. height: math.unit(6 + 9/12, "feet"),
  38536. weight: math.unit(440, "lb"),
  38537. name: "Back",
  38538. image: {
  38539. source: "./media/characters/wilbur-owen/back.svg",
  38540. extra: 1578/1445,
  38541. bottom: 36/1614
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(6 + 9/12, "feet"),
  38549. default: true
  38550. },
  38551. ]
  38552. ))
  38553. characterMakers.push(() => makeCharacter(
  38554. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38555. {
  38556. front: {
  38557. height: math.unit(6 + 5/12, "feet"),
  38558. weight: math.unit(650, "lb"),
  38559. name: "Front",
  38560. image: {
  38561. source: "./media/characters/keegan/front.svg",
  38562. extra: 2387/2198,
  38563. bottom: 33/2420
  38564. }
  38565. },
  38566. side: {
  38567. height: math.unit(6 + 5/12, "feet"),
  38568. weight: math.unit(650, "lb"),
  38569. name: "Side",
  38570. image: {
  38571. source: "./media/characters/keegan/side.svg",
  38572. extra: 2390/2202,
  38573. bottom: 47/2437
  38574. }
  38575. },
  38576. back: {
  38577. height: math.unit(6 + 5/12, "feet"),
  38578. weight: math.unit(650, "lb"),
  38579. name: "Back",
  38580. image: {
  38581. source: "./media/characters/keegan/back.svg",
  38582. extra: 2418/2268,
  38583. bottom: 15/2433
  38584. }
  38585. },
  38586. frontSfw: {
  38587. height: math.unit(6 + 5/12, "feet"),
  38588. weight: math.unit(650, "lb"),
  38589. name: "Front (SFW)",
  38590. image: {
  38591. source: "./media/characters/keegan/front-sfw.svg",
  38592. extra: 2387/2198,
  38593. bottom: 33/2420
  38594. }
  38595. },
  38596. beans: {
  38597. height: math.unit(1.85, "feet"),
  38598. name: "Beans",
  38599. image: {
  38600. source: "./media/characters/keegan/beans.svg"
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(6 + 5/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(9, "feet"),
  38617. name: "Front",
  38618. image: {
  38619. source: "./media/characters/colton/front.svg",
  38620. extra: 1589/1326,
  38621. bottom: 139/1728
  38622. }
  38623. },
  38624. },
  38625. [
  38626. {
  38627. name: "Normal",
  38628. height: math.unit(9, "feet"),
  38629. default: true
  38630. },
  38631. ]
  38632. ))
  38633. characterMakers.push(() => makeCharacter(
  38634. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38635. {
  38636. front: {
  38637. height: math.unit(2 + 9/12, "feet"),
  38638. name: "Front",
  38639. image: {
  38640. source: "./media/characters/bora/front.svg",
  38641. extra: 1265/1250,
  38642. bottom: 24/1289
  38643. }
  38644. },
  38645. },
  38646. [
  38647. {
  38648. name: "Normal",
  38649. height: math.unit(2 + 9/12, "feet"),
  38650. default: true
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38656. {
  38657. front: {
  38658. height: math.unit(8, "feet"),
  38659. name: "Front",
  38660. image: {
  38661. source: "./media/characters/myu-myu/front.svg",
  38662. extra: 1949/1857,
  38663. bottom: 90/2039
  38664. }
  38665. },
  38666. },
  38667. [
  38668. {
  38669. name: "Normal",
  38670. height: math.unit(8, "feet"),
  38671. default: true
  38672. },
  38673. {
  38674. name: "Big",
  38675. height: math.unit(15, "feet")
  38676. },
  38677. {
  38678. name: "BIG",
  38679. height: math.unit(25, "feet")
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38685. {
  38686. side: {
  38687. height: math.unit(7 + 5/12, "feet"),
  38688. weight: math.unit(2800, "lb"),
  38689. name: "Side",
  38690. image: {
  38691. source: "./media/characters/haloren/side.svg",
  38692. extra: 1793/409,
  38693. bottom: 59/1852
  38694. }
  38695. },
  38696. frontPaw: {
  38697. height: math.unit(2.36, "feet"),
  38698. name: "Front paw",
  38699. image: {
  38700. source: "./media/characters/haloren/front-paw.svg"
  38701. }
  38702. },
  38703. hindPaw: {
  38704. height: math.unit(3.18, "feet"),
  38705. name: "Hind paw",
  38706. image: {
  38707. source: "./media/characters/haloren/hind-paw.svg"
  38708. }
  38709. },
  38710. maw: {
  38711. height: math.unit(5.05, "feet"),
  38712. name: "Maw",
  38713. image: {
  38714. source: "./media/characters/haloren/maw.svg"
  38715. }
  38716. },
  38717. dick: {
  38718. height: math.unit(2.90, "feet"),
  38719. name: "Dick",
  38720. image: {
  38721. source: "./media/characters/haloren/dick.svg"
  38722. }
  38723. },
  38724. },
  38725. [
  38726. {
  38727. name: "Normal",
  38728. height: math.unit(7 + 5/12, "feet"),
  38729. default: true
  38730. },
  38731. {
  38732. name: "Enhanced",
  38733. height: math.unit(14 + 3/12, "feet")
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(171, "cm"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/kimmy/front.svg",
  38745. extra: 1491/1435,
  38746. bottom: 53/1544
  38747. }
  38748. },
  38749. },
  38750. [
  38751. {
  38752. name: "Small",
  38753. height: math.unit(9, "cm")
  38754. },
  38755. {
  38756. name: "Normal",
  38757. height: math.unit(171, "cm"),
  38758. default: true
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38764. {
  38765. front: {
  38766. height: math.unit(8, "feet"),
  38767. weight: math.unit(300, "lb"),
  38768. name: "Front",
  38769. image: {
  38770. source: "./media/characters/galeboomer/front.svg",
  38771. extra: 4651/4415,
  38772. bottom: 162/4813
  38773. }
  38774. },
  38775. back: {
  38776. height: math.unit(8, "feet"),
  38777. weight: math.unit(300, "lb"),
  38778. name: "Back",
  38779. image: {
  38780. source: "./media/characters/galeboomer/back.svg",
  38781. extra: 4544/4314,
  38782. bottom: 16/4560
  38783. }
  38784. },
  38785. frontAlt: {
  38786. height: math.unit(8, "feet"),
  38787. weight: math.unit(300, "lb"),
  38788. name: "Front (Alt)",
  38789. image: {
  38790. source: "./media/characters/galeboomer/front-alt.svg",
  38791. extra: 4458/4228,
  38792. bottom: 68/4526
  38793. }
  38794. },
  38795. maw: {
  38796. height: math.unit(1.2, "feet"),
  38797. name: "Maw",
  38798. image: {
  38799. source: "./media/characters/galeboomer/maw.svg"
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(8, "feet"),
  38807. default: true
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38813. {
  38814. front: {
  38815. height: math.unit(5 + 9/12, "feet"),
  38816. weight: math.unit(120, "lb"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/chyr/front.svg",
  38820. extra: 1323/1254,
  38821. bottom: 63/1386
  38822. }
  38823. },
  38824. back: {
  38825. height: math.unit(5 + 9/12, "feet"),
  38826. weight: math.unit(120, "lb"),
  38827. name: "Back",
  38828. image: {
  38829. source: "./media/characters/chyr/back.svg",
  38830. extra: 1323/1252,
  38831. bottom: 48/1371
  38832. }
  38833. },
  38834. },
  38835. [
  38836. {
  38837. name: "Normal",
  38838. height: math.unit(5 + 9/12, "feet"),
  38839. default: true
  38840. },
  38841. ]
  38842. ))
  38843. characterMakers.push(() => makeCharacter(
  38844. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38845. {
  38846. front: {
  38847. height: math.unit(7, "feet"),
  38848. weight: math.unit(310, "lb"),
  38849. name: "Front",
  38850. image: {
  38851. source: "./media/characters/solarus/front.svg",
  38852. extra: 2415/2021,
  38853. bottom: 103/2518
  38854. }
  38855. },
  38856. back: {
  38857. height: math.unit(7, "feet"),
  38858. weight: math.unit(310, "lb"),
  38859. name: "Back",
  38860. image: {
  38861. source: "./media/characters/solarus/back.svg",
  38862. extra: 2463/2089,
  38863. bottom: 79/2542
  38864. }
  38865. },
  38866. },
  38867. [
  38868. {
  38869. name: "Normal",
  38870. height: math.unit(7, "feet"),
  38871. default: true
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(16, "feet"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38883. extra: 1844/1780,
  38884. bottom: 58/1902
  38885. }
  38886. },
  38887. winterCoat: {
  38888. height: math.unit(16, "feet"),
  38889. name: "Winter Coat",
  38890. image: {
  38891. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38892. extra: 1807/1775,
  38893. bottom: 69/1876
  38894. }
  38895. },
  38896. },
  38897. [
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(16, "feet"),
  38901. default: true
  38902. },
  38903. {
  38904. name: "Chicago Size",
  38905. height: math.unit(560, "feet")
  38906. },
  38907. ]
  38908. ))
  38909. characterMakers.push(() => makeCharacter(
  38910. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38911. {
  38912. front: {
  38913. height: math.unit(11 + 6/12, "feet"),
  38914. weight: math.unit(1366, "lb"),
  38915. name: "Front",
  38916. image: {
  38917. source: "./media/characters/lexor/front.svg",
  38918. extra: 1560/1481,
  38919. bottom: 211/1771
  38920. }
  38921. },
  38922. back: {
  38923. height: math.unit(11 + 6/12, "feet"),
  38924. weight: math.unit(1366, "lb"),
  38925. name: "Back",
  38926. image: {
  38927. source: "./media/characters/lexor/back.svg",
  38928. extra: 1614/1533,
  38929. bottom: 76/1690
  38930. }
  38931. },
  38932. maw: {
  38933. height: math.unit(3, "feet"),
  38934. name: "Maw",
  38935. image: {
  38936. source: "./media/characters/lexor/maw.svg"
  38937. }
  38938. },
  38939. dick: {
  38940. height: math.unit(2.59, "feet"),
  38941. name: "Dick",
  38942. image: {
  38943. source: "./media/characters/lexor/dick.svg"
  38944. }
  38945. },
  38946. },
  38947. [
  38948. {
  38949. name: "Normal",
  38950. height: math.unit(11 + 6/12, "feet"),
  38951. default: true
  38952. },
  38953. ]
  38954. ))
  38955. characterMakers.push(() => makeCharacter(
  38956. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38957. {
  38958. front: {
  38959. height: math.unit(5 + 8/12, "feet"),
  38960. name: "Front",
  38961. image: {
  38962. source: "./media/characters/magnum/front.svg",
  38963. extra: 942/855,
  38964. bottom: 26/968
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(5 + 8/12, "feet"),
  38972. default: true
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38978. {
  38979. front: {
  38980. height: math.unit(18 + 4/12, "feet"),
  38981. weight: math.unit(1500, "kg"),
  38982. name: "Front",
  38983. image: {
  38984. source: "./media/characters/solas-sharpsman/front.svg",
  38985. extra: 1698/1589,
  38986. bottom: 0/1698
  38987. }
  38988. },
  38989. },
  38990. [
  38991. {
  38992. name: "Normal",
  38993. height: math.unit(18 + 4/12, "feet"),
  38994. default: true
  38995. },
  38996. ]
  38997. ))
  38998. characterMakers.push(() => makeCharacter(
  38999. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39000. {
  39001. front: {
  39002. height: math.unit(5 + 5/12, "feet"),
  39003. weight: math.unit(180, "lb"),
  39004. name: "Front",
  39005. image: {
  39006. source: "./media/characters/october/front.svg",
  39007. extra: 1800/1650,
  39008. bottom: 0/1800
  39009. }
  39010. },
  39011. frontNsfw: {
  39012. height: math.unit(5 + 5/12, "feet"),
  39013. weight: math.unit(180, "lb"),
  39014. name: "Front (NSFW)",
  39015. image: {
  39016. source: "./media/characters/october/front-nsfw.svg",
  39017. extra: 1392/1307,
  39018. bottom: 42/1434
  39019. }
  39020. },
  39021. },
  39022. [
  39023. {
  39024. name: "Normal",
  39025. height: math.unit(5 + 5/12, "feet"),
  39026. default: true
  39027. },
  39028. ]
  39029. ))
  39030. characterMakers.push(() => makeCharacter(
  39031. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39032. {
  39033. front: {
  39034. height: math.unit(8 + 6/12, "feet"),
  39035. name: "Front",
  39036. image: {
  39037. source: "./media/characters/essynkardi/front.svg",
  39038. extra: 1914/1846,
  39039. bottom: 22/1936
  39040. }
  39041. },
  39042. },
  39043. [
  39044. {
  39045. name: "Normal",
  39046. height: math.unit(8 + 6/12, "feet"),
  39047. default: true
  39048. },
  39049. ]
  39050. ))
  39051. characterMakers.push(() => makeCharacter(
  39052. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39053. {
  39054. front: {
  39055. height: math.unit(6 + 6/12, "feet"),
  39056. weight: math.unit(7, "lb"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/icky/front.svg",
  39060. extra: 813/782,
  39061. bottom: 66/879
  39062. }
  39063. },
  39064. back: {
  39065. height: math.unit(6 + 6/12, "feet"),
  39066. weight: math.unit(7, "lb"),
  39067. name: "Back",
  39068. image: {
  39069. source: "./media/characters/icky/back.svg",
  39070. extra: 754/735,
  39071. bottom: 56/810
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(6 + 6/12, "feet"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39085. {
  39086. front: {
  39087. height: math.unit(15, "feet"),
  39088. name: "Front",
  39089. image: {
  39090. source: "./media/characters/rojas/front.svg",
  39091. extra: 1462/1408,
  39092. bottom: 95/1557
  39093. }
  39094. },
  39095. back: {
  39096. height: math.unit(15, "feet"),
  39097. name: "Back",
  39098. image: {
  39099. source: "./media/characters/rojas/back.svg",
  39100. extra: 1023/954,
  39101. bottom: 28/1051
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(15, "feet"),
  39109. default: true
  39110. },
  39111. ]
  39112. ))
  39113. characterMakers.push(() => makeCharacter(
  39114. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39115. {
  39116. frontHuman: {
  39117. height: math.unit(5 + 7/12, "feet"),
  39118. name: "Front (Human)",
  39119. image: {
  39120. source: "./media/characters/alek-dryagan/front-human.svg",
  39121. extra: 1687/1667,
  39122. bottom: 69/1756
  39123. }
  39124. },
  39125. backHuman: {
  39126. height: math.unit(5 + 7/12, "feet"),
  39127. name: "Back (Human)",
  39128. image: {
  39129. source: "./media/characters/alek-dryagan/back-human.svg",
  39130. extra: 1670/1649,
  39131. bottom: 65/1735
  39132. }
  39133. },
  39134. frontDemi: {
  39135. height: math.unit(65, "feet"),
  39136. name: "Front (Demi)",
  39137. image: {
  39138. source: "./media/characters/alek-dryagan/front-demi.svg",
  39139. extra: 1669/1642,
  39140. bottom: 49/1718
  39141. }
  39142. },
  39143. backDemi: {
  39144. height: math.unit(65, "feet"),
  39145. name: "Back (Demi)",
  39146. image: {
  39147. source: "./media/characters/alek-dryagan/back-demi.svg",
  39148. extra: 1658/1637,
  39149. bottom: 40/1698
  39150. }
  39151. },
  39152. mawHuman: {
  39153. height: math.unit(0.3, "feet"),
  39154. name: "Maw (Human)",
  39155. image: {
  39156. source: "./media/characters/alek-dryagan/maw-human.svg"
  39157. }
  39158. },
  39159. mawDemi: {
  39160. height: math.unit(3.8, "feet"),
  39161. name: "Maw (Demi)",
  39162. image: {
  39163. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(5 + 7/12, "feet"),
  39171. default: true
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39177. {
  39178. frontHuman: {
  39179. height: math.unit(5 + 2/12, "feet"),
  39180. name: "Front (Human)",
  39181. image: {
  39182. source: "./media/characters/gen/front-human.svg",
  39183. extra: 1627/1538,
  39184. bottom: 71/1698
  39185. }
  39186. },
  39187. backHuman: {
  39188. height: math.unit(5 + 2/12, "feet"),
  39189. name: "Back (Human)",
  39190. image: {
  39191. source: "./media/characters/gen/back-human.svg",
  39192. extra: 1638/1548,
  39193. bottom: 69/1707
  39194. }
  39195. },
  39196. frontDemi: {
  39197. height: math.unit(5 + 2/12, "feet"),
  39198. name: "Front (Demi)",
  39199. image: {
  39200. source: "./media/characters/gen/front-demi.svg",
  39201. extra: 1627/1538,
  39202. bottom: 71/1698
  39203. }
  39204. },
  39205. backDemi: {
  39206. height: math.unit(5 + 2/12, "feet"),
  39207. name: "Back (Demi)",
  39208. image: {
  39209. source: "./media/characters/gen/back-demi.svg",
  39210. extra: 1638/1548,
  39211. bottom: 69/1707
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Normal",
  39218. height: math.unit(5 + 2/12, "feet"),
  39219. default: true
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39225. {
  39226. frontImp: {
  39227. height: math.unit(1 + 11/12, "feet"),
  39228. name: "Front (Imp)",
  39229. image: {
  39230. source: "./media/characters/max-kobold/front-imp.svg",
  39231. extra: 1238/1134,
  39232. bottom: 81/1319
  39233. }
  39234. },
  39235. backImp: {
  39236. height: math.unit(1 + 11/12, "feet"),
  39237. name: "Back (Imp)",
  39238. image: {
  39239. source: "./media/characters/max-kobold/back-imp.svg",
  39240. extra: 1334/1175,
  39241. bottom: 34/1368
  39242. }
  39243. },
  39244. frontDemi: {
  39245. height: math.unit(5 + 9/12, "feet"),
  39246. name: "Front (Demi)",
  39247. image: {
  39248. source: "./media/characters/max-kobold/front-demi.svg",
  39249. extra: 1715/1685,
  39250. bottom: 54/1769
  39251. }
  39252. },
  39253. backDemi: {
  39254. height: math.unit(5 + 9/12, "feet"),
  39255. name: "Back (Demi)",
  39256. image: {
  39257. source: "./media/characters/max-kobold/back-demi.svg",
  39258. extra: 1752/1729,
  39259. bottom: 41/1793
  39260. }
  39261. },
  39262. handImp: {
  39263. height: math.unit(0.45, "feet"),
  39264. name: "Hand (Imp)",
  39265. image: {
  39266. source: "./media/characters/max-kobold/hand.svg"
  39267. }
  39268. },
  39269. pawImp: {
  39270. height: math.unit(0.46, "feet"),
  39271. name: "Paw (Imp)",
  39272. image: {
  39273. source: "./media/characters/max-kobold/paw.svg"
  39274. }
  39275. },
  39276. handDemi: {
  39277. height: math.unit(0.80, "feet"),
  39278. name: "Hand (Demi)",
  39279. image: {
  39280. source: "./media/characters/max-kobold/hand.svg"
  39281. }
  39282. },
  39283. pawDemi: {
  39284. height: math.unit(1.1, "feet"),
  39285. name: "Paw (Demi)",
  39286. image: {
  39287. source: "./media/characters/max-kobold/paw.svg"
  39288. }
  39289. },
  39290. headImp: {
  39291. height: math.unit(1.33, "feet"),
  39292. name: "Head (Imp)",
  39293. image: {
  39294. source: "./media/characters/max-kobold/head-imp.svg"
  39295. }
  39296. },
  39297. mawImp: {
  39298. height: math.unit(0.75, "feet"),
  39299. name: "Maw (Imp)",
  39300. image: {
  39301. source: "./media/characters/max-kobold/maw-imp.svg"
  39302. }
  39303. },
  39304. mawDemi: {
  39305. height: math.unit(0.42, "feet"),
  39306. name: "Maw (Demi)",
  39307. image: {
  39308. source: "./media/characters/max-kobold/maw-demi.svg"
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(1 + 11/12, "feet"),
  39316. default: true
  39317. },
  39318. ]
  39319. ))
  39320. characterMakers.push(() => makeCharacter(
  39321. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39322. {
  39323. front: {
  39324. height: math.unit(7 + 5/12, "feet"),
  39325. name: "Front",
  39326. image: {
  39327. source: "./media/characters/carbon/front.svg",
  39328. extra: 1754/1689,
  39329. bottom: 65/1819
  39330. }
  39331. },
  39332. back: {
  39333. height: math.unit(7 + 5/12, "feet"),
  39334. name: "Back",
  39335. image: {
  39336. source: "./media/characters/carbon/back.svg",
  39337. extra: 1762/1695,
  39338. bottom: 24/1786
  39339. }
  39340. },
  39341. frontGigantamax: {
  39342. height: math.unit(150, "feet"),
  39343. name: "Front (Gigantamax)",
  39344. image: {
  39345. source: "./media/characters/carbon/front-gigantamax.svg",
  39346. extra: 1826/1669,
  39347. bottom: 59/1885
  39348. }
  39349. },
  39350. backGigantamax: {
  39351. height: math.unit(150, "feet"),
  39352. name: "Back (Gigantamax)",
  39353. image: {
  39354. source: "./media/characters/carbon/back-gigantamax.svg",
  39355. extra: 1796/1653,
  39356. bottom: 53/1849
  39357. }
  39358. },
  39359. maw: {
  39360. height: math.unit(0.48, "feet"),
  39361. name: "Maw",
  39362. image: {
  39363. source: "./media/characters/carbon/maw.svg"
  39364. }
  39365. },
  39366. mawGigantamax: {
  39367. height: math.unit(7.5, "feet"),
  39368. name: "Maw (Gigantamax)",
  39369. image: {
  39370. source: "./media/characters/carbon/maw-gigantamax.svg"
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Normal",
  39377. height: math.unit(7 + 5/12, "feet"),
  39378. default: true
  39379. },
  39380. ]
  39381. ))
  39382. characterMakers.push(() => makeCharacter(
  39383. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39384. {
  39385. front: {
  39386. height: math.unit(6, "feet"),
  39387. name: "Front",
  39388. image: {
  39389. source: "./media/characters/maverick/front.svg",
  39390. extra: 1672/1661,
  39391. bottom: 85/1757
  39392. }
  39393. },
  39394. back: {
  39395. height: math.unit(6, "feet"),
  39396. name: "Back",
  39397. image: {
  39398. source: "./media/characters/maverick/back.svg",
  39399. extra: 1642/1631,
  39400. bottom: 38/1680
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Normal",
  39407. height: math.unit(6, "feet"),
  39408. default: true
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39414. {
  39415. front: {
  39416. height: math.unit(15, "feet"),
  39417. weight: math.unit(615, "lb"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/grockle/front.svg",
  39421. extra: 1535/1427,
  39422. bottom: 56/1591
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(15, "feet"),
  39430. default: true
  39431. },
  39432. {
  39433. name: "Large",
  39434. height: math.unit(150, "feet")
  39435. },
  39436. {
  39437. name: "Macro",
  39438. height: math.unit(1876, "feet")
  39439. },
  39440. {
  39441. name: "Mega Macro",
  39442. height: math.unit(121940, "feet")
  39443. },
  39444. {
  39445. name: "Giga Macro",
  39446. height: math.unit(750, "km")
  39447. },
  39448. {
  39449. name: "Tera Macro",
  39450. height: math.unit(750000, "km")
  39451. },
  39452. {
  39453. name: "Galactic",
  39454. height: math.unit(1.4e5, "km")
  39455. },
  39456. {
  39457. name: "Godlike",
  39458. height: math.unit(9.8e280, "galaxies")
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39464. {
  39465. front: {
  39466. height: math.unit(11, "meters"),
  39467. weight: math.unit(20, "tonnes"),
  39468. name: "Front",
  39469. image: {
  39470. source: "./media/characters/alistair/front.svg",
  39471. extra: 1265/1009,
  39472. bottom: 93/1358
  39473. }
  39474. },
  39475. },
  39476. [
  39477. {
  39478. name: "Normal",
  39479. height: math.unit(11, "meters"),
  39480. default: true
  39481. },
  39482. ]
  39483. ))
  39484. characterMakers.push(() => makeCharacter(
  39485. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39486. {
  39487. front: {
  39488. height: math.unit(5 + 8/12, "feet"),
  39489. name: "Front",
  39490. image: {
  39491. source: "./media/characters/haruka/front.svg",
  39492. extra: 2012/1952,
  39493. bottom: 0/2012
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Normal",
  39500. height: math.unit(5 + 8/12, "feet"),
  39501. default: true
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39507. {
  39508. back: {
  39509. height: math.unit(9, "feet"),
  39510. name: "Back",
  39511. image: {
  39512. source: "./media/characters/vivian-sylveon/back.svg",
  39513. extra: 1853/1714,
  39514. bottom: 0/1853
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Normal",
  39521. height: math.unit(9, "feet"),
  39522. default: true
  39523. },
  39524. {
  39525. name: "Macro",
  39526. height: math.unit(500, "feet")
  39527. },
  39528. {
  39529. name: "Megamacro",
  39530. height: math.unit(600, "miles")
  39531. },
  39532. {
  39533. name: "Gigamacro",
  39534. height: math.unit(30000, "miles")
  39535. },
  39536. ]
  39537. ))
  39538. characterMakers.push(() => makeCharacter(
  39539. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39540. {
  39541. anthro: {
  39542. height: math.unit(5 + 10/12, "feet"),
  39543. weight: math.unit(100, "lb"),
  39544. name: "Anthro",
  39545. image: {
  39546. source: "./media/characters/daiki/anthro.svg",
  39547. extra: 1115/1027,
  39548. bottom: 69/1184
  39549. }
  39550. },
  39551. feral: {
  39552. height: math.unit(200, "feet"),
  39553. name: "Feral",
  39554. image: {
  39555. source: "./media/characters/daiki/feral.svg",
  39556. extra: 1256/313,
  39557. bottom: 39/1295
  39558. }
  39559. },
  39560. feralHead: {
  39561. height: math.unit(171, "feet"),
  39562. name: "Feral Head",
  39563. image: {
  39564. source: "./media/characters/daiki/feral-head.svg"
  39565. }
  39566. },
  39567. manaDragon: {
  39568. height: math.unit(170, "meters"),
  39569. name: "Mana-dragon",
  39570. image: {
  39571. source: "./media/characters/daiki/mana-dragon.svg",
  39572. extra: 763/420,
  39573. bottom: 97/860
  39574. }
  39575. },
  39576. },
  39577. [
  39578. {
  39579. name: "Normal",
  39580. height: math.unit(5 + 10/12, "feet"),
  39581. default: true
  39582. },
  39583. ]
  39584. ))
  39585. characterMakers.push(() => makeCharacter(
  39586. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39587. {
  39588. fullyEquippedFront: {
  39589. height: math.unit(3 + 1/12, "feet"),
  39590. weight: math.unit(24, "lb"),
  39591. name: "Fully Equipped (Front)",
  39592. image: {
  39593. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39594. extra: 687/605,
  39595. bottom: 18/705
  39596. }
  39597. },
  39598. fullyEquippedBack: {
  39599. height: math.unit(3 + 1/12, "feet"),
  39600. weight: math.unit(24, "lb"),
  39601. name: "Fully Equipped (Back)",
  39602. image: {
  39603. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39604. extra: 689/590,
  39605. bottom: 18/707
  39606. }
  39607. },
  39608. dailyWear: {
  39609. height: math.unit(3 + 1/12, "feet"),
  39610. weight: math.unit(24, "lb"),
  39611. name: "Daily Wear",
  39612. image: {
  39613. source: "./media/characters/tea-spot/daily-wear.svg",
  39614. extra: 701/620,
  39615. bottom: 21/722
  39616. }
  39617. },
  39618. maidWork: {
  39619. height: math.unit(3 + 1/12, "feet"),
  39620. weight: math.unit(24, "lb"),
  39621. name: "Maid Work",
  39622. image: {
  39623. source: "./media/characters/tea-spot/maid-work.svg",
  39624. extra: 693/609,
  39625. bottom: 15/708
  39626. }
  39627. },
  39628. },
  39629. [
  39630. {
  39631. name: "Normal",
  39632. height: math.unit(3 + 1/12, "feet"),
  39633. default: true
  39634. },
  39635. ]
  39636. ))
  39637. characterMakers.push(() => makeCharacter(
  39638. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39639. {
  39640. front: {
  39641. height: math.unit(175, "cm"),
  39642. weight: math.unit(75, "kg"),
  39643. name: "Front",
  39644. image: {
  39645. source: "./media/characters/chee/front.svg",
  39646. extra: 1796/1740,
  39647. bottom: 40/1836
  39648. }
  39649. },
  39650. },
  39651. [
  39652. {
  39653. name: "Micro-Micro",
  39654. height: math.unit(1, "nm")
  39655. },
  39656. {
  39657. name: "Micro-erst",
  39658. height: math.unit(1, "micrometer")
  39659. },
  39660. {
  39661. name: "Micro-er",
  39662. height: math.unit(1, "cm")
  39663. },
  39664. {
  39665. name: "Normal",
  39666. height: math.unit(175, "cm"),
  39667. default: true
  39668. },
  39669. {
  39670. name: "Macro",
  39671. height: math.unit(100, "m")
  39672. },
  39673. {
  39674. name: "Macro-er",
  39675. height: math.unit(1, "km")
  39676. },
  39677. {
  39678. name: "Macro-erst",
  39679. height: math.unit(10, "km")
  39680. },
  39681. {
  39682. name: "Macro-Macro",
  39683. height: math.unit(100, "km")
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(11 + 9/12, "feet"),
  39692. weight: math.unit(935, "lb"),
  39693. name: "Front",
  39694. image: {
  39695. source: "./media/characters/kingsley/front.svg",
  39696. extra: 1803/1674,
  39697. bottom: 127/1930
  39698. }
  39699. },
  39700. frontNude: {
  39701. height: math.unit(11 + 9/12, "feet"),
  39702. weight: math.unit(935, "lb"),
  39703. name: "Front (Nude)",
  39704. image: {
  39705. source: "./media/characters/kingsley/front-nude.svg",
  39706. extra: 1803/1674,
  39707. bottom: 127/1930
  39708. }
  39709. },
  39710. },
  39711. [
  39712. {
  39713. name: "Normal",
  39714. height: math.unit(11 + 9/12, "feet"),
  39715. default: true
  39716. },
  39717. ]
  39718. ))
  39719. characterMakers.push(() => makeCharacter(
  39720. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39721. {
  39722. side: {
  39723. height: math.unit(9, "feet"),
  39724. name: "Side",
  39725. image: {
  39726. source: "./media/characters/rymel/side.svg",
  39727. extra: 792/469,
  39728. bottom: 121/913
  39729. }
  39730. },
  39731. maw: {
  39732. height: math.unit(2.4, "meters"),
  39733. name: "Maw",
  39734. image: {
  39735. source: "./media/characters/rymel/maw.svg"
  39736. }
  39737. },
  39738. },
  39739. [
  39740. {
  39741. name: "House Drake",
  39742. height: math.unit(2, "feet")
  39743. },
  39744. {
  39745. name: "Reduced",
  39746. height: math.unit(4.5, "feet")
  39747. },
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(9, "feet"),
  39751. default: true
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39757. {
  39758. front: {
  39759. height: math.unit(1.74, "meters"),
  39760. weight: math.unit(55, "kg"),
  39761. name: "Front",
  39762. image: {
  39763. source: "./media/characters/rubus/front.svg",
  39764. extra: 1894/1742,
  39765. bottom: 44/1938
  39766. }
  39767. },
  39768. },
  39769. [
  39770. {
  39771. name: "Normal",
  39772. height: math.unit(1.74, "meters"),
  39773. default: true
  39774. },
  39775. ]
  39776. ))
  39777. characterMakers.push(() => makeCharacter(
  39778. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39779. {
  39780. front: {
  39781. height: math.unit(5 + 2/12, "feet"),
  39782. weight: math.unit(112, "lb"),
  39783. name: "Front",
  39784. image: {
  39785. source: "./media/characters/cassie-kingston/front.svg",
  39786. extra: 1438/1390,
  39787. bottom: 47/1485
  39788. }
  39789. },
  39790. },
  39791. [
  39792. {
  39793. name: "Normal",
  39794. height: math.unit(5 + 2/12, "feet"),
  39795. default: true
  39796. },
  39797. {
  39798. name: "Macro",
  39799. height: math.unit(128, "feet")
  39800. },
  39801. {
  39802. name: "Megamacro",
  39803. height: math.unit(2.56, "miles")
  39804. },
  39805. ]
  39806. ))
  39807. characterMakers.push(() => makeCharacter(
  39808. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39809. {
  39810. front: {
  39811. height: math.unit(7, "feet"),
  39812. name: "Front",
  39813. image: {
  39814. source: "./media/characters/fox/front.svg",
  39815. extra: 1798/1703,
  39816. bottom: 55/1853
  39817. }
  39818. },
  39819. back: {
  39820. height: math.unit(7, "feet"),
  39821. name: "Back",
  39822. image: {
  39823. source: "./media/characters/fox/back.svg",
  39824. extra: 1748/1649,
  39825. bottom: 32/1780
  39826. }
  39827. },
  39828. head: {
  39829. height: math.unit(1.95, "feet"),
  39830. name: "Head",
  39831. image: {
  39832. source: "./media/characters/fox/head.svg"
  39833. }
  39834. },
  39835. dick: {
  39836. height: math.unit(1.33, "feet"),
  39837. name: "Dick",
  39838. image: {
  39839. source: "./media/characters/fox/dick.svg"
  39840. }
  39841. },
  39842. foot: {
  39843. height: math.unit(1, "feet"),
  39844. name: "Foot",
  39845. image: {
  39846. source: "./media/characters/fox/foot.svg"
  39847. }
  39848. },
  39849. paw: {
  39850. height: math.unit(0.92, "feet"),
  39851. name: "Paw",
  39852. image: {
  39853. source: "./media/characters/fox/paw.svg"
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Small",
  39860. height: math.unit(3, "inches")
  39861. },
  39862. {
  39863. name: "\"Realistic\"",
  39864. height: math.unit(7, "feet")
  39865. },
  39866. {
  39867. name: "Normal",
  39868. height: math.unit(150, "feet"),
  39869. default: true
  39870. },
  39871. {
  39872. name: "BIG",
  39873. height: math.unit(1200, "feet")
  39874. },
  39875. {
  39876. name: "👀",
  39877. height: math.unit(5, "miles")
  39878. },
  39879. {
  39880. name: "👀👀👀",
  39881. height: math.unit(64, "miles")
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39887. {
  39888. front: {
  39889. height: math.unit(625, "feet"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/asonja-rossa/front.svg",
  39893. extra: 1833/1686,
  39894. bottom: 24/1857
  39895. }
  39896. },
  39897. back: {
  39898. height: math.unit(625, "feet"),
  39899. name: "Back",
  39900. image: {
  39901. source: "./media/characters/asonja-rossa/back.svg",
  39902. extra: 1852/1753,
  39903. bottom: 26/1878
  39904. }
  39905. },
  39906. },
  39907. [
  39908. {
  39909. name: "Macro",
  39910. height: math.unit(625, "feet"),
  39911. default: true
  39912. },
  39913. ]
  39914. ))
  39915. characterMakers.push(() => makeCharacter(
  39916. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39917. {
  39918. side: {
  39919. height: math.unit(8, "feet"),
  39920. name: "Side",
  39921. image: {
  39922. source: "./media/characters/rezukii/side.svg",
  39923. extra: 979/542,
  39924. bottom: 87/1066
  39925. }
  39926. },
  39927. sitting: {
  39928. height: math.unit(14.6, "feet"),
  39929. name: "Sitting",
  39930. image: {
  39931. source: "./media/characters/rezukii/sitting.svg",
  39932. extra: 1023/813,
  39933. bottom: 45/1068
  39934. }
  39935. },
  39936. },
  39937. [
  39938. {
  39939. name: "Tiny",
  39940. height: math.unit(2, "feet")
  39941. },
  39942. {
  39943. name: "Smol",
  39944. height: math.unit(4, "feet")
  39945. },
  39946. {
  39947. name: "Normal",
  39948. height: math.unit(8, "feet"),
  39949. default: true
  39950. },
  39951. {
  39952. name: "Big",
  39953. height: math.unit(12, "feet")
  39954. },
  39955. {
  39956. name: "Macro",
  39957. height: math.unit(30, "feet")
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39963. {
  39964. front: {
  39965. height: math.unit(14, "feet"),
  39966. weight: math.unit(9.5, "tonnes"),
  39967. name: "Front",
  39968. image: {
  39969. source: "./media/characters/dawnheart/front.svg",
  39970. extra: 2792/2675,
  39971. bottom: 64/2856
  39972. }
  39973. },
  39974. },
  39975. [
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(14, "feet"),
  39979. default: true
  39980. },
  39981. ]
  39982. ))
  39983. characterMakers.push(() => makeCharacter(
  39984. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39985. {
  39986. front: {
  39987. height: math.unit(1.7, "m"),
  39988. name: "Front",
  39989. image: {
  39990. source: "./media/characters/gladi/front.svg",
  39991. extra: 1460/1362,
  39992. bottom: 19/1479
  39993. }
  39994. },
  39995. back: {
  39996. height: math.unit(1.7, "m"),
  39997. name: "Back",
  39998. image: {
  39999. source: "./media/characters/gladi/back.svg",
  40000. extra: 1459/1357,
  40001. bottom: 12/1471
  40002. }
  40003. },
  40004. feral: {
  40005. height: math.unit(2.05, "m"),
  40006. name: "Feral",
  40007. image: {
  40008. source: "./media/characters/gladi/feral.svg",
  40009. extra: 821/557,
  40010. bottom: 91/912
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Shortest",
  40017. height: math.unit(70, "cm")
  40018. },
  40019. {
  40020. name: "Normal",
  40021. height: math.unit(1.7, "m")
  40022. },
  40023. {
  40024. name: "Macro",
  40025. height: math.unit(10, "m"),
  40026. default: true
  40027. },
  40028. {
  40029. name: "Tallest",
  40030. height: math.unit(200, "m")
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40036. {
  40037. front: {
  40038. height: math.unit(5 + 7/12, "feet"),
  40039. weight: math.unit(2, "tons"),
  40040. name: "Front",
  40041. image: {
  40042. source: "./media/characters/erdno/front.svg",
  40043. extra: 1234/1129,
  40044. bottom: 35/1269
  40045. }
  40046. },
  40047. angled: {
  40048. height: math.unit(5 + 7/12, "feet"),
  40049. weight: math.unit(2, "tons"),
  40050. name: "Angled",
  40051. image: {
  40052. source: "./media/characters/erdno/angled.svg",
  40053. extra: 1185/1139,
  40054. bottom: 36/1221
  40055. }
  40056. },
  40057. side: {
  40058. height: math.unit(5 + 7/12, "feet"),
  40059. weight: math.unit(2, "tons"),
  40060. name: "Side",
  40061. image: {
  40062. source: "./media/characters/erdno/side.svg",
  40063. extra: 1191/1144,
  40064. bottom: 40/1231
  40065. }
  40066. },
  40067. back: {
  40068. height: math.unit(5 + 7/12, "feet"),
  40069. weight: math.unit(2, "tons"),
  40070. name: "Back",
  40071. image: {
  40072. source: "./media/characters/erdno/back.svg",
  40073. extra: 1202/1146,
  40074. bottom: 17/1219
  40075. }
  40076. },
  40077. frontNsfw: {
  40078. height: math.unit(5 + 7/12, "feet"),
  40079. weight: math.unit(2, "tons"),
  40080. name: "Front (NSFW)",
  40081. image: {
  40082. source: "./media/characters/erdno/front-nsfw.svg",
  40083. extra: 1234/1129,
  40084. bottom: 35/1269
  40085. }
  40086. },
  40087. angledNsfw: {
  40088. height: math.unit(5 + 7/12, "feet"),
  40089. weight: math.unit(2, "tons"),
  40090. name: "Angled (NSFW)",
  40091. image: {
  40092. source: "./media/characters/erdno/angled-nsfw.svg",
  40093. extra: 1185/1139,
  40094. bottom: 36/1221
  40095. }
  40096. },
  40097. sideNsfw: {
  40098. height: math.unit(5 + 7/12, "feet"),
  40099. weight: math.unit(2, "tons"),
  40100. name: "Side (NSFW)",
  40101. image: {
  40102. source: "./media/characters/erdno/side-nsfw.svg",
  40103. extra: 1191/1144,
  40104. bottom: 40/1231
  40105. }
  40106. },
  40107. backNsfw: {
  40108. height: math.unit(5 + 7/12, "feet"),
  40109. weight: math.unit(2, "tons"),
  40110. name: "Back (NSFW)",
  40111. image: {
  40112. source: "./media/characters/erdno/back-nsfw.svg",
  40113. extra: 1202/1146,
  40114. bottom: 17/1219
  40115. }
  40116. },
  40117. frontHyper: {
  40118. height: math.unit(5 + 7/12, "feet"),
  40119. weight: math.unit(2, "tons"),
  40120. name: "Front (Hyper)",
  40121. image: {
  40122. source: "./media/characters/erdno/front-hyper.svg",
  40123. extra: 1298/1136,
  40124. bottom: 35/1333
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Normal",
  40131. height: math.unit(5 + 7/12, "feet"),
  40132. default: true
  40133. },
  40134. {
  40135. name: "Big",
  40136. height: math.unit(5.7, "meters")
  40137. },
  40138. {
  40139. name: "Macro",
  40140. height: math.unit(5.7, "kilometers")
  40141. },
  40142. {
  40143. name: "Megamacro",
  40144. height: math.unit(5.7, "earths")
  40145. },
  40146. ]
  40147. ))
  40148. characterMakers.push(() => makeCharacter(
  40149. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40150. {
  40151. front: {
  40152. height: math.unit(5 + 10/12, "feet"),
  40153. weight: math.unit(150, "lb"),
  40154. name: "Front",
  40155. image: {
  40156. source: "./media/characters/jamie/front.svg",
  40157. extra: 1908/1768,
  40158. bottom: 19/1927
  40159. }
  40160. },
  40161. },
  40162. [
  40163. {
  40164. name: "Minimum",
  40165. height: math.unit(2, "cm")
  40166. },
  40167. {
  40168. name: "Micro",
  40169. height: math.unit(3, "inches")
  40170. },
  40171. {
  40172. name: "Normal",
  40173. height: math.unit(5 + 10/12, "feet"),
  40174. default: true
  40175. },
  40176. {
  40177. name: "Macro",
  40178. height: math.unit(150, "feet")
  40179. },
  40180. {
  40181. name: "Megamacro",
  40182. height: math.unit(10000, "m")
  40183. },
  40184. ]
  40185. ))
  40186. characterMakers.push(() => makeCharacter(
  40187. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40188. {
  40189. front: {
  40190. height: math.unit(2, "meters"),
  40191. weight: math.unit(100, "kg"),
  40192. name: "Front",
  40193. image: {
  40194. source: "./media/characters/shiron/front.svg",
  40195. extra: 2103/1985,
  40196. bottom: 98/2201
  40197. }
  40198. },
  40199. back: {
  40200. height: math.unit(2, "meters"),
  40201. weight: math.unit(100, "kg"),
  40202. name: "Back",
  40203. image: {
  40204. source: "./media/characters/shiron/back.svg",
  40205. extra: 2110/2015,
  40206. bottom: 89/2199
  40207. }
  40208. },
  40209. hand: {
  40210. height: math.unit(0.96, "feet"),
  40211. name: "Hand",
  40212. image: {
  40213. source: "./media/characters/shiron/hand.svg"
  40214. }
  40215. },
  40216. foot: {
  40217. height: math.unit(1.464, "feet"),
  40218. name: "Foot",
  40219. image: {
  40220. source: "./media/characters/shiron/foot.svg"
  40221. }
  40222. },
  40223. },
  40224. [
  40225. {
  40226. name: "Normal",
  40227. height: math.unit(2, "meters")
  40228. },
  40229. {
  40230. name: "Macro",
  40231. height: math.unit(500, "meters"),
  40232. default: true
  40233. },
  40234. {
  40235. name: "Megamacro",
  40236. height: math.unit(20, "km")
  40237. },
  40238. ]
  40239. ))
  40240. characterMakers.push(() => makeCharacter(
  40241. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40242. {
  40243. front: {
  40244. height: math.unit(6, "feet"),
  40245. name: "Front",
  40246. image: {
  40247. source: "./media/characters/sam/front.svg",
  40248. extra: 849/826,
  40249. bottom: 19/868
  40250. }
  40251. },
  40252. },
  40253. [
  40254. {
  40255. name: "Normal",
  40256. height: math.unit(6, "feet"),
  40257. default: true
  40258. },
  40259. ]
  40260. ))
  40261. characterMakers.push(() => makeCharacter(
  40262. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40263. {
  40264. front: {
  40265. height: math.unit(8 + 4/12, "feet"),
  40266. weight: math.unit(122, "kg"),
  40267. name: "Front",
  40268. image: {
  40269. source: "./media/characters/namori-kurogawa/front.svg",
  40270. extra: 1894/1576,
  40271. bottom: 34/1928
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Normal",
  40278. height: math.unit(8 + 4/12, "feet"),
  40279. default: true
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(9, "feet"),
  40288. weight: math.unit(621, "lb"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/unmru/front.svg",
  40292. extra: 1853/1747,
  40293. bottom: 73/1926
  40294. }
  40295. },
  40296. side: {
  40297. height: math.unit(9, "feet"),
  40298. weight: math.unit(621, "lb"),
  40299. name: "Side",
  40300. image: {
  40301. source: "./media/characters/unmru/side.svg",
  40302. extra: 1781/1671,
  40303. bottom: 127/1908
  40304. }
  40305. },
  40306. back: {
  40307. height: math.unit(9, "feet"),
  40308. weight: math.unit(621, "lb"),
  40309. name: "Back",
  40310. image: {
  40311. source: "./media/characters/unmru/back.svg",
  40312. extra: 1894/1765,
  40313. bottom: 75/1969
  40314. }
  40315. },
  40316. dick: {
  40317. height: math.unit(3, "feet"),
  40318. weight: math.unit(35, "lb"),
  40319. name: "Dick",
  40320. image: {
  40321. source: "./media/characters/unmru/dick.svg"
  40322. }
  40323. },
  40324. },
  40325. [
  40326. {
  40327. name: "Normal",
  40328. height: math.unit(9, "feet")
  40329. },
  40330. {
  40331. name: "Natural",
  40332. height: math.unit(27, "feet"),
  40333. default: true
  40334. },
  40335. {
  40336. name: "Giant",
  40337. height: math.unit(90, "feet")
  40338. },
  40339. {
  40340. name: "Kaiju",
  40341. height: math.unit(270, "feet")
  40342. },
  40343. {
  40344. name: "Macro",
  40345. height: math.unit(900, "feet")
  40346. },
  40347. {
  40348. name: "Macro+",
  40349. height: math.unit(2700, "feet")
  40350. },
  40351. {
  40352. name: "Megamacro",
  40353. height: math.unit(9000, "feet")
  40354. },
  40355. {
  40356. name: "City-Crushing",
  40357. height: math.unit(27000, "feet")
  40358. },
  40359. {
  40360. name: "Mountain-Mashing",
  40361. height: math.unit(90000, "feet")
  40362. },
  40363. {
  40364. name: "Earth-Eclipsing",
  40365. height: math.unit(2.7e8, "feet")
  40366. },
  40367. {
  40368. name: "Sol-Swallowing",
  40369. height: math.unit(9e10, "feet")
  40370. },
  40371. {
  40372. name: "Majoris-Munching",
  40373. height: math.unit(2.7e13, "feet")
  40374. },
  40375. ]
  40376. ))
  40377. characterMakers.push(() => makeCharacter(
  40378. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40379. {
  40380. front: {
  40381. height: math.unit(1, "inch"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/squeaks-mouse/front.svg",
  40385. extra: 352/308,
  40386. bottom: 25/377
  40387. }
  40388. },
  40389. },
  40390. [
  40391. {
  40392. name: "Micro",
  40393. height: math.unit(1, "inch"),
  40394. default: true
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40400. {
  40401. side: {
  40402. height: math.unit(35, "feet"),
  40403. name: "Side",
  40404. image: {
  40405. source: "./media/characters/sayko/side.svg",
  40406. extra: 1697/1021,
  40407. bottom: 82/1779
  40408. }
  40409. },
  40410. head: {
  40411. height: math.unit(16, "feet"),
  40412. name: "Head",
  40413. image: {
  40414. source: "./media/characters/sayko/head.svg"
  40415. }
  40416. },
  40417. forepaw: {
  40418. height: math.unit(7.85, "feet"),
  40419. name: "Forepaw",
  40420. image: {
  40421. source: "./media/characters/sayko/forepaw.svg"
  40422. }
  40423. },
  40424. hindpaw: {
  40425. height: math.unit(8.8, "feet"),
  40426. name: "Hindpaw",
  40427. image: {
  40428. source: "./media/characters/sayko/hindpaw.svg"
  40429. }
  40430. },
  40431. },
  40432. [
  40433. {
  40434. name: "Normal",
  40435. height: math.unit(35, "feet"),
  40436. default: true
  40437. },
  40438. {
  40439. name: "Colossus",
  40440. height: math.unit(100, "meters")
  40441. },
  40442. {
  40443. name: "\"Small\" Deity",
  40444. height: math.unit(1, "km")
  40445. },
  40446. {
  40447. name: "\"Large\" Deity",
  40448. height: math.unit(15, "km")
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40454. {
  40455. front: {
  40456. height: math.unit(6, "feet"),
  40457. weight: math.unit(250, "lb"),
  40458. name: "Front",
  40459. image: {
  40460. source: "./media/characters/mukiro/front.svg",
  40461. extra: 1368/1310,
  40462. bottom: 34/1402
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Normal",
  40469. height: math.unit(6, "feet"),
  40470. default: true
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(12 + 4/12, "feet"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40482. extra: 1346/1311,
  40483. bottom: 65/1411
  40484. }
  40485. },
  40486. },
  40487. [
  40488. {
  40489. name: "Base",
  40490. height: math.unit(12 + 4/12, "feet"),
  40491. default: true
  40492. },
  40493. {
  40494. name: "Macro",
  40495. height: math.unit(150, "feet")
  40496. },
  40497. {
  40498. name: "Mega",
  40499. height: math.unit(2, "miles")
  40500. },
  40501. {
  40502. name: "Demi God",
  40503. height: math.unit(4, "AU")
  40504. },
  40505. {
  40506. name: "God Size",
  40507. height: math.unit(1, "universe")
  40508. },
  40509. ]
  40510. ))
  40511. characterMakers.push(() => makeCharacter(
  40512. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40513. {
  40514. front: {
  40515. height: math.unit(3 + 3/12, "feet"),
  40516. weight: math.unit(88, "lb"),
  40517. name: "Front",
  40518. image: {
  40519. source: "./media/characters/trey/front.svg",
  40520. extra: 1815/1509,
  40521. bottom: 60/1875
  40522. }
  40523. },
  40524. },
  40525. [
  40526. {
  40527. name: "Normal",
  40528. height: math.unit(3 + 3/12, "feet"),
  40529. default: true
  40530. },
  40531. ]
  40532. ))
  40533. characterMakers.push(() => makeCharacter(
  40534. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40535. {
  40536. front: {
  40537. height: math.unit(4, "meters"),
  40538. name: "Front",
  40539. image: {
  40540. source: "./media/characters/adelonda/front.svg",
  40541. extra: 1077/982,
  40542. bottom: 39/1116
  40543. }
  40544. },
  40545. back: {
  40546. height: math.unit(4, "meters"),
  40547. name: "Back",
  40548. image: {
  40549. source: "./media/characters/adelonda/back.svg",
  40550. extra: 1105/1003,
  40551. bottom: 25/1130
  40552. }
  40553. },
  40554. feral: {
  40555. height: math.unit(40/1.5, "meters"),
  40556. name: "Feral",
  40557. image: {
  40558. source: "./media/characters/adelonda/feral.svg",
  40559. extra: 597/271,
  40560. bottom: 387/984
  40561. }
  40562. },
  40563. },
  40564. [
  40565. {
  40566. name: "Normal",
  40567. height: math.unit(4, "meters"),
  40568. default: true
  40569. },
  40570. ]
  40571. ))
  40572. characterMakers.push(() => makeCharacter(
  40573. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40574. {
  40575. front: {
  40576. height: math.unit(8 + 4/12, "feet"),
  40577. weight: math.unit(670, "lb"),
  40578. name: "Front",
  40579. image: {
  40580. source: "./media/characters/acadiel/front.svg",
  40581. extra: 1901/1595,
  40582. bottom: 142/2043
  40583. }
  40584. },
  40585. },
  40586. [
  40587. {
  40588. name: "Normal",
  40589. height: math.unit(8 + 4/12, "feet"),
  40590. default: true
  40591. },
  40592. {
  40593. name: "Macro",
  40594. height: math.unit(200, "feet")
  40595. },
  40596. ]
  40597. ))
  40598. characterMakers.push(() => makeCharacter(
  40599. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40600. {
  40601. front: {
  40602. height: math.unit(6 + 2/12, "feet"),
  40603. weight: math.unit(185, "lb"),
  40604. name: "Front",
  40605. image: {
  40606. source: "./media/characters/kayne-ein/front.svg",
  40607. extra: 1780/1560,
  40608. bottom: 81/1861
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "Normal",
  40615. height: math.unit(6 + 2/12, "feet"),
  40616. default: true
  40617. },
  40618. {
  40619. name: "Transformation Stage",
  40620. height: math.unit(15, "feet")
  40621. },
  40622. {
  40623. name: "Macro",
  40624. height: math.unit(150, "feet")
  40625. },
  40626. {
  40627. name: "Earth's Shadow",
  40628. height: math.unit(6200, "miles")
  40629. },
  40630. {
  40631. name: "Universal Demon",
  40632. height: math.unit(28e9, "parsecs")
  40633. },
  40634. {
  40635. name: "Multiverse God",
  40636. height: math.unit(3, "multiverses")
  40637. },
  40638. ]
  40639. ))
  40640. characterMakers.push(() => makeCharacter(
  40641. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40642. {
  40643. front: {
  40644. height: math.unit(5 + 5/12, "feet"),
  40645. name: "Front",
  40646. image: {
  40647. source: "./media/characters/fawn/front.svg",
  40648. extra: 1873/1731,
  40649. bottom: 95/1968
  40650. }
  40651. },
  40652. back: {
  40653. height: math.unit(5 + 5/12, "feet"),
  40654. name: "Back",
  40655. image: {
  40656. source: "./media/characters/fawn/back.svg",
  40657. extra: 1813/1700,
  40658. bottom: 14/1827
  40659. }
  40660. },
  40661. hoof: {
  40662. height: math.unit(1.45, "feet"),
  40663. name: "Hoof",
  40664. image: {
  40665. source: "./media/characters/fawn/hoof.svg"
  40666. }
  40667. },
  40668. },
  40669. [
  40670. {
  40671. name: "Normal",
  40672. height: math.unit(5 + 5/12, "feet"),
  40673. default: true
  40674. },
  40675. ]
  40676. ))
  40677. characterMakers.push(() => makeCharacter(
  40678. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40679. {
  40680. front: {
  40681. height: math.unit(2 + 5/12, "feet"),
  40682. name: "Front",
  40683. image: {
  40684. source: "./media/characters/orion/front.svg",
  40685. extra: 1366/1304,
  40686. bottom: 43/1409
  40687. }
  40688. },
  40689. paw: {
  40690. height: math.unit(0.52, "feet"),
  40691. name: "Paw",
  40692. image: {
  40693. source: "./media/characters/orion/paw.svg"
  40694. }
  40695. },
  40696. },
  40697. [
  40698. {
  40699. name: "Normal",
  40700. height: math.unit(2 + 5/12, "feet"),
  40701. default: true
  40702. },
  40703. ]
  40704. ))
  40705. characterMakers.push(() => makeCharacter(
  40706. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40707. {
  40708. front: {
  40709. height: math.unit(5 + 10/12, "feet"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/vera/front.svg",
  40713. extra: 1680/1575,
  40714. bottom: 49/1729
  40715. }
  40716. },
  40717. back: {
  40718. height: math.unit(5 + 10/12, "feet"),
  40719. name: "Back",
  40720. image: {
  40721. source: "./media/characters/vera/back.svg",
  40722. extra: 1700/1588,
  40723. bottom: 18/1718
  40724. }
  40725. },
  40726. arcanine: {
  40727. height: math.unit(6 + 8/12, "feet"),
  40728. name: "Arcanine",
  40729. image: {
  40730. source: "./media/characters/vera/arcanine.svg",
  40731. extra: 1590/1511,
  40732. bottom: 71/1661
  40733. }
  40734. },
  40735. maw: {
  40736. height: math.unit(0.82, "feet"),
  40737. name: "Maw",
  40738. image: {
  40739. source: "./media/characters/vera/maw.svg"
  40740. }
  40741. },
  40742. mawArcanine: {
  40743. height: math.unit(0.97, "feet"),
  40744. name: "Maw (Arcanine)",
  40745. image: {
  40746. source: "./media/characters/vera/maw-arcanine.svg"
  40747. }
  40748. },
  40749. paw: {
  40750. height: math.unit(0.75, "feet"),
  40751. name: "Paw",
  40752. image: {
  40753. source: "./media/characters/vera/paw.svg"
  40754. }
  40755. },
  40756. pawprint: {
  40757. height: math.unit(0.52, "feet"),
  40758. name: "Pawprint",
  40759. image: {
  40760. source: "./media/characters/vera/pawprint.svg"
  40761. }
  40762. },
  40763. },
  40764. [
  40765. {
  40766. name: "Normal",
  40767. height: math.unit(5 + 10/12, "feet"),
  40768. default: true
  40769. },
  40770. {
  40771. name: "Macro",
  40772. height: math.unit(75, "feet")
  40773. },
  40774. ]
  40775. ))
  40776. characterMakers.push(() => makeCharacter(
  40777. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40778. {
  40779. front: {
  40780. height: math.unit(4, "feet"),
  40781. weight: math.unit(40, "lb"),
  40782. name: "Front",
  40783. image: {
  40784. source: "./media/characters/orvan-rabbit/front.svg",
  40785. extra: 1896/1642,
  40786. bottom: 29/1925
  40787. }
  40788. },
  40789. },
  40790. [
  40791. {
  40792. name: "Normal",
  40793. height: math.unit(4, "feet"),
  40794. default: true
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(6, "feet"),
  40803. weight: math.unit(168, "lb"),
  40804. name: "Front",
  40805. image: {
  40806. source: "./media/characters/lisa/front.svg",
  40807. extra: 2065/1867,
  40808. bottom: 46/2111
  40809. }
  40810. },
  40811. back: {
  40812. height: math.unit(6, "feet"),
  40813. weight: math.unit(168, "lb"),
  40814. name: "Back",
  40815. image: {
  40816. source: "./media/characters/lisa/back.svg",
  40817. extra: 1982/1838,
  40818. bottom: 29/2011
  40819. }
  40820. },
  40821. maw: {
  40822. height: math.unit(0.81, "feet"),
  40823. name: "Maw",
  40824. image: {
  40825. source: "./media/characters/lisa/maw.svg"
  40826. }
  40827. },
  40828. paw: {
  40829. height: math.unit(0.9, "feet"),
  40830. name: "Paw",
  40831. image: {
  40832. source: "./media/characters/lisa/paw.svg"
  40833. }
  40834. },
  40835. caribousune: {
  40836. height: math.unit(7 + 2/12, "feet"),
  40837. weight: math.unit(268, "lb"),
  40838. name: "Caribousune",
  40839. image: {
  40840. source: "./media/characters/lisa/caribousune.svg",
  40841. extra: 1843/1633,
  40842. bottom: 29/1872
  40843. }
  40844. },
  40845. frontCaribousune: {
  40846. height: math.unit(7 + 2/12, "feet"),
  40847. weight: math.unit(268, "lb"),
  40848. name: "Front (Caribousune)",
  40849. image: {
  40850. source: "./media/characters/lisa/front-caribousune.svg",
  40851. extra: 1818/1638,
  40852. bottom: 52/1870
  40853. }
  40854. },
  40855. sideCaribousune: {
  40856. height: math.unit(7 + 2/12, "feet"),
  40857. weight: math.unit(268, "lb"),
  40858. name: "Side (Caribousune)",
  40859. image: {
  40860. source: "./media/characters/lisa/side-caribousune.svg",
  40861. extra: 1851/1635,
  40862. bottom: 16/1867
  40863. }
  40864. },
  40865. backCaribousune: {
  40866. height: math.unit(7 + 2/12, "feet"),
  40867. weight: math.unit(268, "lb"),
  40868. name: "Back (Caribousune)",
  40869. image: {
  40870. source: "./media/characters/lisa/back-caribousune.svg",
  40871. extra: 1801/1604,
  40872. bottom: 44/1845
  40873. }
  40874. },
  40875. caribou: {
  40876. height: math.unit(7 + 2/12, "feet"),
  40877. weight: math.unit(268, "lb"),
  40878. name: "Caribou",
  40879. image: {
  40880. source: "./media/characters/lisa/caribou.svg",
  40881. extra: 1843/1633,
  40882. bottom: 29/1872
  40883. }
  40884. },
  40885. frontCaribou: {
  40886. height: math.unit(7 + 2/12, "feet"),
  40887. weight: math.unit(268, "lb"),
  40888. name: "Front (Caribou)",
  40889. image: {
  40890. source: "./media/characters/lisa/front-caribou.svg",
  40891. extra: 1818/1638,
  40892. bottom: 52/1870
  40893. }
  40894. },
  40895. sideCaribou: {
  40896. height: math.unit(7 + 2/12, "feet"),
  40897. weight: math.unit(268, "lb"),
  40898. name: "Side (Caribou)",
  40899. image: {
  40900. source: "./media/characters/lisa/side-caribou.svg",
  40901. extra: 1851/1635,
  40902. bottom: 16/1867
  40903. }
  40904. },
  40905. backCaribou: {
  40906. height: math.unit(7 + 2/12, "feet"),
  40907. weight: math.unit(268, "lb"),
  40908. name: "Back (Caribou)",
  40909. image: {
  40910. source: "./media/characters/lisa/back-caribou.svg",
  40911. extra: 1801/1604,
  40912. bottom: 44/1845
  40913. }
  40914. },
  40915. mawCaribou: {
  40916. height: math.unit(1.45, "feet"),
  40917. name: "Maw (Caribou)",
  40918. image: {
  40919. source: "./media/characters/lisa/maw-caribou.svg"
  40920. }
  40921. },
  40922. mawCaribousune: {
  40923. height: math.unit(1.45, "feet"),
  40924. name: "Maw (Caribousune)",
  40925. image: {
  40926. source: "./media/characters/lisa/maw-caribousune.svg"
  40927. }
  40928. },
  40929. pawCaribousune: {
  40930. height: math.unit(1.61, "feet"),
  40931. name: "Paw (Caribou)",
  40932. image: {
  40933. source: "./media/characters/lisa/paw-caribousune.svg"
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Normal",
  40940. height: math.unit(6, "feet")
  40941. },
  40942. {
  40943. name: "God Size",
  40944. height: math.unit(72, "feet"),
  40945. default: true
  40946. },
  40947. {
  40948. name: "Towering",
  40949. height: math.unit(288, "feet")
  40950. },
  40951. {
  40952. name: "City Size",
  40953. height: math.unit(48384, "feet")
  40954. },
  40955. {
  40956. name: "Continental",
  40957. height: math.unit(4200, "miles")
  40958. },
  40959. {
  40960. name: "Planet Eater",
  40961. height: math.unit(42, "earths")
  40962. },
  40963. {
  40964. name: "Star Swallower",
  40965. height: math.unit(42, "solarradii")
  40966. },
  40967. {
  40968. name: "System Swallower",
  40969. height: math.unit(84000, "AU")
  40970. },
  40971. {
  40972. name: "Galaxy Gobbler",
  40973. height: math.unit(42, "galaxies")
  40974. },
  40975. {
  40976. name: "Universe Devourer",
  40977. height: math.unit(42, "universes")
  40978. },
  40979. {
  40980. name: "Multiverse Muncher",
  40981. height: math.unit(42, "multiverses")
  40982. },
  40983. ]
  40984. ))
  40985. characterMakers.push(() => makeCharacter(
  40986. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40987. {
  40988. front: {
  40989. height: math.unit(36, "feet"),
  40990. name: "Front",
  40991. image: {
  40992. source: "./media/characters/shadow-rat/front.svg",
  40993. extra: 1845/1758,
  40994. bottom: 83/1928
  40995. }
  40996. },
  40997. },
  40998. [
  40999. {
  41000. name: "Macro",
  41001. height: math.unit(36, "feet"),
  41002. default: true
  41003. },
  41004. ]
  41005. ))
  41006. characterMakers.push(() => makeCharacter(
  41007. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41008. {
  41009. side: {
  41010. height: math.unit(8, "feet"),
  41011. weight: math.unit(2630, "lb"),
  41012. name: "Side",
  41013. image: {
  41014. source: "./media/characters/torallia/side.svg",
  41015. extra: 2164/2021,
  41016. bottom: 371/2535
  41017. }
  41018. },
  41019. },
  41020. [
  41021. {
  41022. name: "Mortal Interaction",
  41023. height: math.unit(8, "feet")
  41024. },
  41025. {
  41026. name: "Natural",
  41027. height: math.unit(24, "feet"),
  41028. default: true
  41029. },
  41030. {
  41031. name: "Giant",
  41032. height: math.unit(80, "feet")
  41033. },
  41034. {
  41035. name: "Kaiju",
  41036. height: math.unit(240, "feet")
  41037. },
  41038. {
  41039. name: "Macro",
  41040. height: math.unit(800, "feet")
  41041. },
  41042. {
  41043. name: "Macro+",
  41044. height: math.unit(2400, "feet")
  41045. },
  41046. {
  41047. name: "Macro++",
  41048. height: math.unit(8000, "feet")
  41049. },
  41050. {
  41051. name: "City-Crushing",
  41052. height: math.unit(24000, "feet")
  41053. },
  41054. {
  41055. name: "Mountain-Mashing",
  41056. height: math.unit(80000, "feet")
  41057. },
  41058. {
  41059. name: "District Demolisher",
  41060. height: math.unit(240000, "feet")
  41061. },
  41062. {
  41063. name: "Tri-County Terror",
  41064. height: math.unit(800000, "feet")
  41065. },
  41066. {
  41067. name: "State Smasher",
  41068. height: math.unit(2.4e6, "feet")
  41069. },
  41070. {
  41071. name: "Nation Nemesis",
  41072. height: math.unit(8e6, "feet")
  41073. },
  41074. {
  41075. name: "Continent Cracker",
  41076. height: math.unit(2.4e7, "feet")
  41077. },
  41078. {
  41079. name: "Planet-Pillaging",
  41080. height: math.unit(8e7, "feet")
  41081. },
  41082. {
  41083. name: "Earth-Eclipsing",
  41084. height: math.unit(2.4e8, "feet")
  41085. },
  41086. {
  41087. name: "Jovian-Jostling",
  41088. height: math.unit(8e8, "feet")
  41089. },
  41090. {
  41091. name: "Gas Giant Gulper",
  41092. height: math.unit(2.4e9, "feet")
  41093. },
  41094. {
  41095. name: "Astral Annihilator",
  41096. height: math.unit(8e9, "feet")
  41097. },
  41098. {
  41099. name: "Celestial Conqueror",
  41100. height: math.unit(2.4e10, "feet")
  41101. },
  41102. {
  41103. name: "Sol-Swallowing",
  41104. height: math.unit(8e10, "feet")
  41105. },
  41106. {
  41107. name: "Hunter of the Heavens",
  41108. height: math.unit(2.4e13, "feet")
  41109. },
  41110. ]
  41111. ))
  41112. characterMakers.push(() => makeCharacter(
  41113. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41114. {
  41115. front: {
  41116. height: math.unit(6 + 8/12, "feet"),
  41117. weight: math.unit(250, "kilograms"),
  41118. volume: math.unit(28, "liters"),
  41119. name: "Front",
  41120. image: {
  41121. source: "./media/characters/rebecca-pawlson/front.svg",
  41122. extra: 1737/1596,
  41123. bottom: 107/1844
  41124. }
  41125. },
  41126. back: {
  41127. height: math.unit(6 + 8/12, "feet"),
  41128. weight: math.unit(250, "kilograms"),
  41129. volume: math.unit(28, "liters"),
  41130. name: "Back",
  41131. image: {
  41132. source: "./media/characters/rebecca-pawlson/back.svg",
  41133. extra: 1702/1523,
  41134. bottom: 86/1788
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(6 + 8/12, "feet")
  41142. },
  41143. {
  41144. name: "Mini Macro",
  41145. height: math.unit(10, "feet"),
  41146. default: true
  41147. },
  41148. {
  41149. name: "Macro",
  41150. height: math.unit(100, "feet")
  41151. },
  41152. {
  41153. name: "Mega Macro",
  41154. height: math.unit(2500, "feet")
  41155. },
  41156. {
  41157. name: "Giga Macro",
  41158. height: math.unit(50, "miles")
  41159. },
  41160. ]
  41161. ))
  41162. characterMakers.push(() => makeCharacter(
  41163. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41164. {
  41165. front: {
  41166. height: math.unit(7 + 6/12, "feet"),
  41167. weight: math.unit(600, "lb"),
  41168. name: "Front",
  41169. image: {
  41170. source: "./media/characters/moxie-nova/front.svg",
  41171. extra: 1734/1652,
  41172. bottom: 41/1775
  41173. }
  41174. },
  41175. },
  41176. [
  41177. {
  41178. name: "Normal",
  41179. height: math.unit(7 + 6/12, "feet"),
  41180. default: true
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41186. {
  41187. goat: {
  41188. height: math.unit(4, "feet"),
  41189. weight: math.unit(180, "lb"),
  41190. name: "Goat",
  41191. image: {
  41192. source: "./media/characters/tiffany/goat.svg",
  41193. extra: 1845/1595,
  41194. bottom: 106/1951
  41195. }
  41196. },
  41197. front: {
  41198. height: math.unit(5, "feet"),
  41199. weight: math.unit(150, "lb"),
  41200. name: "Foxcoon",
  41201. image: {
  41202. source: "./media/characters/tiffany/foxcoon.svg",
  41203. extra: 1941/1845,
  41204. bottom: 58/1999
  41205. }
  41206. },
  41207. },
  41208. [
  41209. {
  41210. name: "Normal",
  41211. height: math.unit(5, "feet"),
  41212. default: true
  41213. },
  41214. ]
  41215. ))
  41216. characterMakers.push(() => makeCharacter(
  41217. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41218. {
  41219. front: {
  41220. height: math.unit(8, "feet"),
  41221. weight: math.unit(300, "lb"),
  41222. name: "Front",
  41223. image: {
  41224. source: "./media/characters/raxinath/front.svg",
  41225. extra: 1407/1309,
  41226. bottom: 39/1446
  41227. }
  41228. },
  41229. back: {
  41230. height: math.unit(8, "feet"),
  41231. weight: math.unit(300, "lb"),
  41232. name: "Back",
  41233. image: {
  41234. source: "./media/characters/raxinath/back.svg",
  41235. extra: 1405/1315,
  41236. bottom: 9/1414
  41237. }
  41238. },
  41239. },
  41240. [
  41241. {
  41242. name: "Speck",
  41243. height: math.unit(0.5, "nm")
  41244. },
  41245. {
  41246. name: "Micro",
  41247. height: math.unit(3, "inches")
  41248. },
  41249. {
  41250. name: "Kobold",
  41251. height: math.unit(3, "feet")
  41252. },
  41253. {
  41254. name: "Normal",
  41255. height: math.unit(8, "feet"),
  41256. default: true
  41257. },
  41258. {
  41259. name: "Giant",
  41260. height: math.unit(50, "feet")
  41261. },
  41262. {
  41263. name: "Macro",
  41264. height: math.unit(1000, "feet")
  41265. },
  41266. {
  41267. name: "Megamacro",
  41268. height: math.unit(1, "mile")
  41269. },
  41270. ]
  41271. ))
  41272. characterMakers.push(() => makeCharacter(
  41273. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41274. {
  41275. front: {
  41276. height: math.unit(10, "feet"),
  41277. weight: math.unit(1442, "lb"),
  41278. name: "Front",
  41279. image: {
  41280. source: "./media/characters/mal-dragon/front.svg",
  41281. extra: 1515/1444,
  41282. bottom: 113/1628
  41283. }
  41284. },
  41285. back: {
  41286. height: math.unit(10, "feet"),
  41287. weight: math.unit(1442, "lb"),
  41288. name: "Back",
  41289. image: {
  41290. source: "./media/characters/mal-dragon/back.svg",
  41291. extra: 1527/1434,
  41292. bottom: 25/1552
  41293. }
  41294. },
  41295. },
  41296. [
  41297. {
  41298. name: "Mortal Interaction",
  41299. height: math.unit(10, "feet"),
  41300. default: true
  41301. },
  41302. {
  41303. name: "Large",
  41304. height: math.unit(30, "feet")
  41305. },
  41306. {
  41307. name: "Kaiju",
  41308. height: math.unit(300, "feet")
  41309. },
  41310. {
  41311. name: "Megamacro",
  41312. height: math.unit(10000, "feet")
  41313. },
  41314. {
  41315. name: "Continent Cracker",
  41316. height: math.unit(30000000, "feet")
  41317. },
  41318. {
  41319. name: "Sol-Swallowing",
  41320. height: math.unit(1e11, "feet")
  41321. },
  41322. {
  41323. name: "Light Universal",
  41324. height: math.unit(5, "universes")
  41325. },
  41326. {
  41327. name: "Universe Atoms",
  41328. height: math.unit(1.829e9, "universes")
  41329. },
  41330. {
  41331. name: "Light Multiversal",
  41332. height: math.unit(5, "multiverses")
  41333. },
  41334. {
  41335. name: "Multiverse Atoms",
  41336. height: math.unit(1.829e9, "multiverses")
  41337. },
  41338. {
  41339. name: "Fabric of Time",
  41340. height: math.unit(1e262, "multiverses")
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(9, "feet"),
  41349. weight: math.unit(1050, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/tabitha/front.svg",
  41353. extra: 2083/1994,
  41354. bottom: 68/2151
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Baseline",
  41361. height: math.unit(9, "feet"),
  41362. default: true
  41363. },
  41364. {
  41365. name: "Giant",
  41366. height: math.unit(90, "feet")
  41367. },
  41368. {
  41369. name: "Macro",
  41370. height: math.unit(900, "feet")
  41371. },
  41372. {
  41373. name: "Megamacro",
  41374. height: math.unit(9000, "feet")
  41375. },
  41376. {
  41377. name: "City-Crushing",
  41378. height: math.unit(27000, "feet")
  41379. },
  41380. {
  41381. name: "Mountain-Mashing",
  41382. height: math.unit(90000, "feet")
  41383. },
  41384. {
  41385. name: "Nation Nemesis",
  41386. height: math.unit(9e6, "feet")
  41387. },
  41388. {
  41389. name: "Continent Cracker",
  41390. height: math.unit(27e6, "feet")
  41391. },
  41392. {
  41393. name: "Earth-Eclipsing",
  41394. height: math.unit(2.7e8, "feet")
  41395. },
  41396. {
  41397. name: "Gas Giant Gulper",
  41398. height: math.unit(2.7e9, "feet")
  41399. },
  41400. {
  41401. name: "Sol-Swallowing",
  41402. height: math.unit(9e10, "feet")
  41403. },
  41404. {
  41405. name: "Galaxy Gulper",
  41406. height: math.unit(9, "galaxies")
  41407. },
  41408. {
  41409. name: "Cosmos Churner",
  41410. height: math.unit(9, "universes")
  41411. },
  41412. ]
  41413. ))
  41414. characterMakers.push(() => makeCharacter(
  41415. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41416. {
  41417. front: {
  41418. height: math.unit(160, "cm"),
  41419. weight: math.unit(55, "kg"),
  41420. name: "Front",
  41421. image: {
  41422. source: "./media/characters/tow/front.svg",
  41423. extra: 1751/1722,
  41424. bottom: 74/1825
  41425. }
  41426. },
  41427. },
  41428. [
  41429. {
  41430. name: "Norm",
  41431. height: math.unit(160, "cm")
  41432. },
  41433. {
  41434. name: "Casual",
  41435. height: math.unit(3200, "m"),
  41436. default: true
  41437. },
  41438. {
  41439. name: "Show-Off",
  41440. height: math.unit(160, "km")
  41441. },
  41442. ]
  41443. ))
  41444. characterMakers.push(() => makeCharacter(
  41445. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41446. {
  41447. front: {
  41448. height: math.unit(7 + 11/12, "feet"),
  41449. weight: math.unit(342.8, "lb"),
  41450. name: "Front",
  41451. image: {
  41452. source: "./media/characters/vivian-orca-dragon/front.svg",
  41453. extra: 1890/1865,
  41454. bottom: 28/1918
  41455. }
  41456. },
  41457. },
  41458. [
  41459. {
  41460. name: "Micro",
  41461. height: math.unit(5, "inches")
  41462. },
  41463. {
  41464. name: "Normal",
  41465. height: math.unit(7 + 11/12, "feet"),
  41466. default: true
  41467. },
  41468. {
  41469. name: "Macro",
  41470. height: math.unit(395 + 7/12, "feet")
  41471. },
  41472. ]
  41473. ))
  41474. characterMakers.push(() => makeCharacter(
  41475. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41476. {
  41477. side: {
  41478. height: math.unit(10, "feet"),
  41479. weight: math.unit(1442, "lb"),
  41480. name: "Side",
  41481. image: {
  41482. source: "./media/characters/lotherakon/side.svg",
  41483. extra: 1604/1497,
  41484. bottom: 89/1693
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Mortal Interaction",
  41491. height: math.unit(10, "feet")
  41492. },
  41493. {
  41494. name: "Large",
  41495. height: math.unit(30, "feet"),
  41496. default: true
  41497. },
  41498. {
  41499. name: "Giant",
  41500. height: math.unit(100, "feet")
  41501. },
  41502. {
  41503. name: "Kaiju",
  41504. height: math.unit(300, "feet")
  41505. },
  41506. {
  41507. name: "Macro",
  41508. height: math.unit(1000, "feet")
  41509. },
  41510. {
  41511. name: "Macro+",
  41512. height: math.unit(3000, "feet")
  41513. },
  41514. {
  41515. name: "Megamacro",
  41516. height: math.unit(10000, "feet")
  41517. },
  41518. {
  41519. name: "City-Crushing",
  41520. height: math.unit(30000, "feet")
  41521. },
  41522. {
  41523. name: "Continent Cracker",
  41524. height: math.unit(30e6, "feet")
  41525. },
  41526. {
  41527. name: "Earth Eclipsing",
  41528. height: math.unit(3e8, "feet")
  41529. },
  41530. {
  41531. name: "Gas Giant Gulper",
  41532. height: math.unit(3e9, "feet")
  41533. },
  41534. {
  41535. name: "Sol-Swallowing",
  41536. height: math.unit(1e11, "feet")
  41537. },
  41538. {
  41539. name: "System Swallower",
  41540. height: math.unit(3e14, "feet")
  41541. },
  41542. {
  41543. name: "Galaxy Gulper",
  41544. height: math.unit(10, "galaxies")
  41545. },
  41546. {
  41547. name: "Light Universal",
  41548. height: math.unit(5, "universes")
  41549. },
  41550. {
  41551. name: "Universe Palm",
  41552. height: math.unit(20, "universes")
  41553. },
  41554. {
  41555. name: "Light Multiversal",
  41556. height: math.unit(5, "multiverses")
  41557. },
  41558. {
  41559. name: "Multiverse Palm",
  41560. height: math.unit(20, "multiverses")
  41561. },
  41562. {
  41563. name: "Inferno Incarnate",
  41564. height: math.unit(1e7, "multiverses")
  41565. },
  41566. ]
  41567. ))
  41568. characterMakers.push(() => makeCharacter(
  41569. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41570. {
  41571. front: {
  41572. height: math.unit(8, "feet"),
  41573. weight: math.unit(1200, "lb"),
  41574. name: "Front",
  41575. image: {
  41576. source: "./media/characters/malithee/front.svg",
  41577. extra: 1675/1640,
  41578. bottom: 162/1837
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Mortal Interaction",
  41585. height: math.unit(8, "feet"),
  41586. default: true
  41587. },
  41588. {
  41589. name: "Large",
  41590. height: math.unit(24, "feet")
  41591. },
  41592. {
  41593. name: "Kaiju",
  41594. height: math.unit(240, "feet")
  41595. },
  41596. {
  41597. name: "Megamacro",
  41598. height: math.unit(8000, "feet")
  41599. },
  41600. {
  41601. name: "Continent Cracker",
  41602. height: math.unit(24e6, "feet")
  41603. },
  41604. {
  41605. name: "Earth-Eclipsing",
  41606. height: math.unit(2.4e8, "feet")
  41607. },
  41608. {
  41609. name: "Sol-Swallowing",
  41610. height: math.unit(8e10, "feet")
  41611. },
  41612. {
  41613. name: "Galaxy Gulper",
  41614. height: math.unit(8, "galaxies")
  41615. },
  41616. {
  41617. name: "Light Universal",
  41618. height: math.unit(4, "universes")
  41619. },
  41620. {
  41621. name: "Universe Atoms",
  41622. height: math.unit(1.829e9, "universes")
  41623. },
  41624. {
  41625. name: "Light Multiversal",
  41626. height: math.unit(4, "multiverses")
  41627. },
  41628. {
  41629. name: "Multiverse Atoms",
  41630. height: math.unit(1.829e9, "multiverses")
  41631. },
  41632. {
  41633. name: "Nigh-Omnipresence",
  41634. height: math.unit(8e261, "multiverses")
  41635. },
  41636. ]
  41637. ))
  41638. characterMakers.push(() => makeCharacter(
  41639. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41640. {
  41641. front: {
  41642. height: math.unit(10, "feet"),
  41643. weight: math.unit(1500, "lb"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/miles-thestia/front.svg",
  41647. extra: 1812/1727,
  41648. bottom: 86/1898
  41649. }
  41650. },
  41651. back: {
  41652. height: math.unit(10, "feet"),
  41653. weight: math.unit(1500, "lb"),
  41654. name: "Back",
  41655. image: {
  41656. source: "./media/characters/miles-thestia/back.svg",
  41657. extra: 1799/1690,
  41658. bottom: 47/1846
  41659. }
  41660. },
  41661. frontNsfw: {
  41662. height: math.unit(10, "feet"),
  41663. weight: math.unit(1500, "lb"),
  41664. name: "Front (NSFW)",
  41665. image: {
  41666. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41667. extra: 1812/1727,
  41668. bottom: 86/1898
  41669. }
  41670. },
  41671. },
  41672. [
  41673. {
  41674. name: "Mini-Macro",
  41675. height: math.unit(10, "feet"),
  41676. default: true
  41677. },
  41678. ]
  41679. ))
  41680. characterMakers.push(() => makeCharacter(
  41681. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41682. {
  41683. front: {
  41684. height: math.unit(25, "feet"),
  41685. name: "Front",
  41686. image: {
  41687. source: "./media/characters/titan-s-wulf/front.svg",
  41688. extra: 1560/1484,
  41689. bottom: 76/1636
  41690. }
  41691. },
  41692. },
  41693. [
  41694. {
  41695. name: "Smallest",
  41696. height: math.unit(25, "feet"),
  41697. default: true
  41698. },
  41699. {
  41700. name: "Normal",
  41701. height: math.unit(200, "feet")
  41702. },
  41703. {
  41704. name: "Macro",
  41705. height: math.unit(200000, "feet")
  41706. },
  41707. {
  41708. name: "Multiversal Original",
  41709. height: math.unit(10000, "multiverses")
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(8, "feet"),
  41718. weight: math.unit(553, "lb"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/tawendeh/front.svg",
  41722. extra: 2365/2268,
  41723. bottom: 83/2448
  41724. }
  41725. },
  41726. frontClothed: {
  41727. height: math.unit(8, "feet"),
  41728. weight: math.unit(553, "lb"),
  41729. name: "Front (Clothed)",
  41730. image: {
  41731. source: "./media/characters/tawendeh/front-clothed.svg",
  41732. extra: 2365/2268,
  41733. bottom: 83/2448
  41734. }
  41735. },
  41736. back: {
  41737. height: math.unit(8, "feet"),
  41738. weight: math.unit(553, "lb"),
  41739. name: "Back",
  41740. image: {
  41741. source: "./media/characters/tawendeh/back.svg",
  41742. extra: 2397/2294,
  41743. bottom: 42/2439
  41744. }
  41745. },
  41746. },
  41747. [
  41748. {
  41749. name: "Mortal Interaction",
  41750. height: math.unit(8, "feet"),
  41751. default: true
  41752. },
  41753. {
  41754. name: "Giant",
  41755. height: math.unit(80, "feet")
  41756. },
  41757. {
  41758. name: "Macro",
  41759. height: math.unit(800, "feet")
  41760. },
  41761. {
  41762. name: "Megamacro",
  41763. height: math.unit(8000, "feet")
  41764. },
  41765. {
  41766. name: "City-Crushing",
  41767. height: math.unit(24000, "feet")
  41768. },
  41769. {
  41770. name: "Mountain-Mashing",
  41771. height: math.unit(80000, "feet")
  41772. },
  41773. {
  41774. name: "Nation Nemesis",
  41775. height: math.unit(8e6, "feet")
  41776. },
  41777. {
  41778. name: "Continent Cracker",
  41779. height: math.unit(24e6, "feet")
  41780. },
  41781. {
  41782. name: "Earth-Eclipsing",
  41783. height: math.unit(2.4e8, "feet")
  41784. },
  41785. {
  41786. name: "Gas Giant Gulper",
  41787. height: math.unit(2.4e9, "feet")
  41788. },
  41789. {
  41790. name: "Sol-Swallowing",
  41791. height: math.unit(8e10, "feet")
  41792. },
  41793. {
  41794. name: "Galaxy Gulper",
  41795. height: math.unit(8, "galaxies")
  41796. },
  41797. {
  41798. name: "Cosmos Churner",
  41799. height: math.unit(8, "universes")
  41800. },
  41801. {
  41802. name: "Omnipotent Otter",
  41803. height: math.unit(80, "universes")
  41804. },
  41805. ]
  41806. ))
  41807. characterMakers.push(() => makeCharacter(
  41808. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41809. {
  41810. front: {
  41811. height: math.unit(2.6, "meters"),
  41812. weight: math.unit(900, "kg"),
  41813. name: "Front",
  41814. image: {
  41815. source: "./media/characters/neesha/front.svg",
  41816. extra: 1803/1653,
  41817. bottom: 128/1931
  41818. }
  41819. },
  41820. },
  41821. [
  41822. {
  41823. name: "Normal",
  41824. height: math.unit(2.6, "meters"),
  41825. default: true
  41826. },
  41827. {
  41828. name: "Macro",
  41829. height: math.unit(50, "meters")
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(5, "feet"),
  41838. weight: math.unit(185, "lb"),
  41839. name: "Front",
  41840. image: {
  41841. source: "./media/characters/kyera/front.svg",
  41842. extra: 1875/1790,
  41843. bottom: 96/1971
  41844. }
  41845. },
  41846. },
  41847. [
  41848. {
  41849. name: "Normal",
  41850. height: math.unit(5, "feet"),
  41851. default: true
  41852. },
  41853. ]
  41854. ))
  41855. characterMakers.push(() => makeCharacter(
  41856. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41857. {
  41858. front: {
  41859. height: math.unit(7 + 6/12, "feet"),
  41860. weight: math.unit(540, "lb"),
  41861. name: "Front",
  41862. image: {
  41863. source: "./media/characters/yuko/front.svg",
  41864. extra: 1282/1222,
  41865. bottom: 101/1383
  41866. }
  41867. },
  41868. frontClothed: {
  41869. height: math.unit(7 + 6/12, "feet"),
  41870. weight: math.unit(540, "lb"),
  41871. name: "Front (Clothed)",
  41872. image: {
  41873. source: "./media/characters/yuko/front-clothed.svg",
  41874. extra: 1282/1222,
  41875. bottom: 101/1383
  41876. }
  41877. },
  41878. },
  41879. [
  41880. {
  41881. name: "Normal",
  41882. height: math.unit(7 + 6/12, "feet"),
  41883. default: true
  41884. },
  41885. {
  41886. name: "Macro",
  41887. height: math.unit(26 + 9/12, "feet")
  41888. },
  41889. {
  41890. name: "Megamacro",
  41891. height: math.unit(300, "feet")
  41892. },
  41893. {
  41894. name: "Gigamacro",
  41895. height: math.unit(5000, "feet")
  41896. },
  41897. {
  41898. name: "Planetary",
  41899. height: math.unit(10000, "miles")
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41905. {
  41906. front: {
  41907. height: math.unit(8 + 2/12, "feet"),
  41908. weight: math.unit(600, "lb"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/deam-nitrel/front.svg",
  41912. extra: 1308/1234,
  41913. bottom: 125/1433
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Normal",
  41920. height: math.unit(8 + 2/12, "feet"),
  41921. default: true
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41927. {
  41928. front: {
  41929. height: math.unit(6.1, "feet"),
  41930. weight: math.unit(180, "lb"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/skyress/front.svg",
  41934. extra: 1045/915,
  41935. bottom: 28/1073
  41936. }
  41937. },
  41938. maw: {
  41939. height: math.unit(1, "feet"),
  41940. name: "Maw",
  41941. image: {
  41942. source: "./media/characters/skyress/maw.svg"
  41943. }
  41944. },
  41945. },
  41946. [
  41947. {
  41948. name: "Normal",
  41949. height: math.unit(6.1, "feet"),
  41950. default: true
  41951. },
  41952. {
  41953. name: "Macro",
  41954. height: math.unit(200, "feet")
  41955. },
  41956. ]
  41957. ))
  41958. characterMakers.push(() => makeCharacter(
  41959. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41960. {
  41961. front: {
  41962. height: math.unit(4 + 2/12, "feet"),
  41963. weight: math.unit(40, "kg"),
  41964. name: "Front",
  41965. image: {
  41966. source: "./media/characters/amethyst-jones/front.svg",
  41967. extra: 1220/1150,
  41968. bottom: 101/1321
  41969. }
  41970. },
  41971. },
  41972. [
  41973. {
  41974. name: "Normal",
  41975. height: math.unit(4 + 2/12, "feet"),
  41976. default: true
  41977. },
  41978. ]
  41979. ))
  41980. characterMakers.push(() => makeCharacter(
  41981. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41982. {
  41983. front: {
  41984. height: math.unit(1.7, "m"),
  41985. weight: math.unit(135, "lb"),
  41986. name: "Front",
  41987. image: {
  41988. source: "./media/characters/jade/front.svg",
  41989. extra: 1818/1767,
  41990. bottom: 32/1850
  41991. }
  41992. },
  41993. back: {
  41994. height: math.unit(1.7, "m"),
  41995. weight: math.unit(135, "lb"),
  41996. name: "Back",
  41997. image: {
  41998. source: "./media/characters/jade/back.svg",
  41999. extra: 1869/1809,
  42000. bottom: 35/1904
  42001. }
  42002. },
  42003. hand: {
  42004. height: math.unit(0.24, "m"),
  42005. name: "Hand",
  42006. image: {
  42007. source: "./media/characters/jade/hand.svg"
  42008. }
  42009. },
  42010. foot: {
  42011. height: math.unit(0.263, "m"),
  42012. name: "Foot",
  42013. image: {
  42014. source: "./media/characters/jade/foot.svg"
  42015. }
  42016. },
  42017. dick: {
  42018. height: math.unit(0.47, "m"),
  42019. name: "Dick",
  42020. image: {
  42021. source: "./media/characters/jade/dick.svg"
  42022. }
  42023. },
  42024. },
  42025. [
  42026. {
  42027. name: "Micro",
  42028. height: math.unit(22, "cm")
  42029. },
  42030. {
  42031. name: "Normal",
  42032. height: math.unit(1.7, "m"),
  42033. default: true
  42034. },
  42035. {
  42036. name: "Macro",
  42037. height: math.unit(152, "m")
  42038. },
  42039. ]
  42040. ))
  42041. characterMakers.push(() => makeCharacter(
  42042. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42043. {
  42044. front: {
  42045. height: math.unit(100, "miles"),
  42046. weight: math.unit(20000, "tons"),
  42047. name: "Front",
  42048. image: {
  42049. source: "./media/characters/cookie/front.svg",
  42050. extra: 1125/1070,
  42051. bottom: 30/1155
  42052. }
  42053. },
  42054. },
  42055. [
  42056. {
  42057. name: "Big",
  42058. height: math.unit(50, "feet")
  42059. },
  42060. {
  42061. name: "Macro",
  42062. height: math.unit(100, "miles"),
  42063. default: true
  42064. },
  42065. {
  42066. name: "Megamacro",
  42067. height: math.unit(90000, "miles")
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(6, "feet"),
  42076. weight: math.unit(145, "lb"),
  42077. name: "Front",
  42078. image: {
  42079. source: "./media/characters/farzian/front.svg",
  42080. extra: 1902/1693,
  42081. bottom: 108/2010
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Macro",
  42088. height: math.unit(500, "feet"),
  42089. default: true
  42090. },
  42091. ]
  42092. ))
  42093. characterMakers.push(() => makeCharacter(
  42094. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42095. {
  42096. front: {
  42097. height: math.unit(3 + 6/12, "feet"),
  42098. weight: math.unit(50, "lb"),
  42099. name: "Front",
  42100. image: {
  42101. source: "./media/characters/kimberly-tilson/front.svg",
  42102. extra: 1400/1322,
  42103. bottom: 36/1436
  42104. }
  42105. },
  42106. back: {
  42107. height: math.unit(3 + 6/12, "feet"),
  42108. weight: math.unit(50, "lb"),
  42109. name: "Back",
  42110. image: {
  42111. source: "./media/characters/kimberly-tilson/back.svg",
  42112. extra: 1370/1307,
  42113. bottom: 20/1390
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Normal",
  42120. height: math.unit(3 + 6/12, "feet"),
  42121. default: true
  42122. },
  42123. ]
  42124. ))
  42125. characterMakers.push(() => makeCharacter(
  42126. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42127. {
  42128. front: {
  42129. height: math.unit(1148, "feet"),
  42130. weight: math.unit(34057, "lb"),
  42131. name: "Front",
  42132. image: {
  42133. source: "./media/characters/harthos/front.svg",
  42134. extra: 1391/1339,
  42135. bottom: 13/1404
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Macro",
  42142. height: math.unit(1148, "feet"),
  42143. default: true
  42144. },
  42145. ]
  42146. ))
  42147. characterMakers.push(() => makeCharacter(
  42148. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42149. {
  42150. front: {
  42151. height: math.unit(15, "feet"),
  42152. name: "Front",
  42153. image: {
  42154. source: "./media/characters/hypatia/front.svg",
  42155. extra: 1653/1591,
  42156. bottom: 79/1732
  42157. }
  42158. },
  42159. },
  42160. [
  42161. {
  42162. name: "Normal",
  42163. height: math.unit(15, "feet")
  42164. },
  42165. {
  42166. name: "Small",
  42167. height: math.unit(300, "feet")
  42168. },
  42169. {
  42170. name: "Macro",
  42171. height: math.unit(2500, "feet"),
  42172. default: true
  42173. },
  42174. {
  42175. name: "Mega Macro",
  42176. height: math.unit(1500, "miles")
  42177. },
  42178. {
  42179. name: "Giga Macro",
  42180. height: math.unit(1.5e6, "miles")
  42181. },
  42182. ]
  42183. ))
  42184. characterMakers.push(() => makeCharacter(
  42185. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42186. {
  42187. front: {
  42188. height: math.unit(6, "feet"),
  42189. weight: math.unit(200, "lb"),
  42190. name: "Front",
  42191. image: {
  42192. source: "./media/characters/wulver/front.svg",
  42193. extra: 1724/1632,
  42194. bottom: 130/1854
  42195. }
  42196. },
  42197. frontNsfw: {
  42198. height: math.unit(6, "feet"),
  42199. weight: math.unit(200, "lb"),
  42200. name: "Front (NSFW)",
  42201. image: {
  42202. source: "./media/characters/wulver/front-nsfw.svg",
  42203. extra: 1724/1632,
  42204. bottom: 130/1854
  42205. }
  42206. },
  42207. },
  42208. [
  42209. {
  42210. name: "Human-Sized",
  42211. height: math.unit(6, "feet")
  42212. },
  42213. {
  42214. name: "Normal",
  42215. height: math.unit(4, "meters"),
  42216. default: true
  42217. },
  42218. {
  42219. name: "Large",
  42220. height: math.unit(6, "m")
  42221. },
  42222. ]
  42223. ))
  42224. characterMakers.push(() => makeCharacter(
  42225. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42226. {
  42227. front: {
  42228. height: math.unit(7, "feet"),
  42229. name: "Front",
  42230. image: {
  42231. source: "./media/characters/maru/front.svg",
  42232. extra: 1595/1570,
  42233. bottom: 0/1595
  42234. }
  42235. },
  42236. },
  42237. [
  42238. {
  42239. name: "Normal",
  42240. height: math.unit(7, "feet"),
  42241. default: true
  42242. },
  42243. {
  42244. name: "Macro",
  42245. height: math.unit(700, "feet")
  42246. },
  42247. {
  42248. name: "Mega Macro",
  42249. height: math.unit(25, "miles")
  42250. },
  42251. ]
  42252. ))
  42253. characterMakers.push(() => makeCharacter(
  42254. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42255. {
  42256. front: {
  42257. height: math.unit(6, "feet"),
  42258. weight: math.unit(170, "lb"),
  42259. name: "Front",
  42260. image: {
  42261. source: "./media/characters/xenon/front.svg",
  42262. extra: 1376/1305,
  42263. bottom: 56/1432
  42264. }
  42265. },
  42266. back: {
  42267. height: math.unit(6, "feet"),
  42268. weight: math.unit(170, "lb"),
  42269. name: "Back",
  42270. image: {
  42271. source: "./media/characters/xenon/back.svg",
  42272. extra: 1328/1259,
  42273. bottom: 95/1423
  42274. }
  42275. },
  42276. maw: {
  42277. height: math.unit(0.52, "feet"),
  42278. name: "Maw",
  42279. image: {
  42280. source: "./media/characters/xenon/maw.svg"
  42281. }
  42282. },
  42283. handLeft: {
  42284. height: math.unit(0.82 * 169 / 153, "feet"),
  42285. name: "Hand (Left)",
  42286. image: {
  42287. source: "./media/characters/xenon/hand-left.svg"
  42288. }
  42289. },
  42290. handRight: {
  42291. height: math.unit(0.82, "feet"),
  42292. name: "Hand (Right)",
  42293. image: {
  42294. source: "./media/characters/xenon/hand-right.svg"
  42295. }
  42296. },
  42297. footLeft: {
  42298. height: math.unit(1.13, "feet"),
  42299. name: "Foot (Left)",
  42300. image: {
  42301. source: "./media/characters/xenon/foot-left.svg"
  42302. }
  42303. },
  42304. footRight: {
  42305. height: math.unit(1.13 * 194 / 196, "feet"),
  42306. name: "Foot (Right)",
  42307. image: {
  42308. source: "./media/characters/xenon/foot-right.svg"
  42309. }
  42310. },
  42311. },
  42312. [
  42313. {
  42314. name: "Micro",
  42315. height: math.unit(0.8, "inches")
  42316. },
  42317. {
  42318. name: "Normal",
  42319. height: math.unit(6, "feet")
  42320. },
  42321. {
  42322. name: "Macro",
  42323. height: math.unit(50, "feet"),
  42324. default: true
  42325. },
  42326. {
  42327. name: "Macro+",
  42328. height: math.unit(250, "feet")
  42329. },
  42330. {
  42331. name: "Megamacro",
  42332. height: math.unit(1500, "feet")
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42338. {
  42339. front: {
  42340. height: math.unit(7 + 5/12, "feet"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/zane/front.svg",
  42344. extra: 1260/1203,
  42345. bottom: 94/1354
  42346. }
  42347. },
  42348. back: {
  42349. height: math.unit(5.05, "feet"),
  42350. name: "Back",
  42351. image: {
  42352. source: "./media/characters/zane/back.svg",
  42353. extra: 893/829,
  42354. bottom: 30/923
  42355. }
  42356. },
  42357. werewolf: {
  42358. height: math.unit(11, "feet"),
  42359. name: "Werewolf",
  42360. image: {
  42361. source: "./media/characters/zane/werewolf.svg",
  42362. extra: 1383/1323,
  42363. bottom: 89/1472
  42364. }
  42365. },
  42366. foot: {
  42367. height: math.unit(1.46, "feet"),
  42368. name: "Foot",
  42369. image: {
  42370. source: "./media/characters/zane/foot.svg"
  42371. }
  42372. },
  42373. footFront: {
  42374. height: math.unit(0.784, "feet"),
  42375. name: "Foot (Front)",
  42376. image: {
  42377. source: "./media/characters/zane/foot-front.svg"
  42378. }
  42379. },
  42380. dick: {
  42381. height: math.unit(1.95, "feet"),
  42382. name: "Dick",
  42383. image: {
  42384. source: "./media/characters/zane/dick.svg"
  42385. }
  42386. },
  42387. dickWerewolf: {
  42388. height: math.unit(3.77, "feet"),
  42389. name: "Dick (Werewolf)",
  42390. image: {
  42391. source: "./media/characters/zane/dick.svg"
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(7 + 5/12, "feet"),
  42399. default: true
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(6 + 2/12, "feet"),
  42408. weight: math.unit(284, "lb"),
  42409. name: "Front",
  42410. image: {
  42411. source: "./media/characters/benni-desparque/front.svg",
  42412. extra: 1353/1126,
  42413. bottom: 69/1422
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Civilian",
  42420. height: math.unit(6 + 2/12, "feet")
  42421. },
  42422. {
  42423. name: "Normal",
  42424. height: math.unit(98, "feet"),
  42425. default: true
  42426. },
  42427. {
  42428. name: "Kaiju Fighter",
  42429. height: math.unit(268, "feet")
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42435. {
  42436. front: {
  42437. height: math.unit(5, "feet"),
  42438. weight: math.unit(105, "lb"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/maxine/front.svg",
  42442. extra: 1386/1250,
  42443. bottom: 71/1457
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Normal",
  42450. height: math.unit(5, "feet"),
  42451. default: true
  42452. },
  42453. ]
  42454. ))
  42455. characterMakers.push(() => makeCharacter(
  42456. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42457. {
  42458. front: {
  42459. height: math.unit(11 + 7/12, "feet"),
  42460. weight: math.unit(9576, "lb"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/scaly/front.svg",
  42464. extra: 888/867,
  42465. bottom: 36/924
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Normal",
  42472. height: math.unit(11 + 7/12, "feet"),
  42473. default: true
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42479. {
  42480. front: {
  42481. height: math.unit(6 + 3/12, "feet"),
  42482. name: "Front",
  42483. image: {
  42484. source: "./media/characters/saelria/front.svg",
  42485. extra: 1243/1138,
  42486. bottom: 46/1289
  42487. }
  42488. },
  42489. },
  42490. [
  42491. {
  42492. name: "Micro",
  42493. height: math.unit(6, "inches"),
  42494. },
  42495. {
  42496. name: "Normal",
  42497. height: math.unit(6 + 3/12, "feet"),
  42498. default: true
  42499. },
  42500. {
  42501. name: "Macro",
  42502. height: math.unit(25, "feet")
  42503. },
  42504. ]
  42505. ))
  42506. characterMakers.push(() => makeCharacter(
  42507. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42508. {
  42509. front: {
  42510. height: math.unit(80, "meters"),
  42511. weight: math.unit(7000, "tonnes"),
  42512. name: "Front",
  42513. image: {
  42514. source: "./media/characters/tef/front.svg",
  42515. extra: 2036/1991,
  42516. bottom: 54/2090
  42517. }
  42518. },
  42519. back: {
  42520. height: math.unit(80, "meters"),
  42521. weight: math.unit(7000, "tonnes"),
  42522. name: "Back",
  42523. image: {
  42524. source: "./media/characters/tef/back.svg",
  42525. extra: 2036/1991,
  42526. bottom: 54/2090
  42527. }
  42528. },
  42529. },
  42530. [
  42531. {
  42532. name: "Macro",
  42533. height: math.unit(80, "meters"),
  42534. default: true
  42535. },
  42536. ]
  42537. ))
  42538. characterMakers.push(() => makeCharacter(
  42539. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42540. {
  42541. front: {
  42542. height: math.unit(13, "feet"),
  42543. weight: math.unit(6, "tons"),
  42544. name: "Front",
  42545. image: {
  42546. source: "./media/characters/rover/front.svg",
  42547. extra: 1233/1156,
  42548. bottom: 50/1283
  42549. }
  42550. },
  42551. back: {
  42552. height: math.unit(13, "feet"),
  42553. weight: math.unit(6, "tons"),
  42554. name: "Back",
  42555. image: {
  42556. source: "./media/characters/rover/back.svg",
  42557. extra: 1327/1258,
  42558. bottom: 39/1366
  42559. }
  42560. },
  42561. },
  42562. [
  42563. {
  42564. name: "Normal",
  42565. height: math.unit(13, "feet"),
  42566. default: true
  42567. },
  42568. {
  42569. name: "Macro",
  42570. height: math.unit(1300, "feet")
  42571. },
  42572. {
  42573. name: "Megamacro",
  42574. height: math.unit(1300, "miles")
  42575. },
  42576. {
  42577. name: "Gigamacro",
  42578. height: math.unit(1300000, "miles")
  42579. },
  42580. ]
  42581. ))
  42582. characterMakers.push(() => makeCharacter(
  42583. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42584. {
  42585. front: {
  42586. height: math.unit(6, "feet"),
  42587. weight: math.unit(150, "lb"),
  42588. name: "Front",
  42589. image: {
  42590. source: "./media/characters/ariz/front.svg",
  42591. extra: 1401/1346,
  42592. bottom: 5/1406
  42593. }
  42594. },
  42595. },
  42596. [
  42597. {
  42598. name: "Normal",
  42599. height: math.unit(10, "feet"),
  42600. default: true
  42601. },
  42602. ]
  42603. ))
  42604. characterMakers.push(() => makeCharacter(
  42605. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42606. {
  42607. front: {
  42608. height: math.unit(6, "feet"),
  42609. weight: math.unit(140, "lb"),
  42610. name: "Front",
  42611. image: {
  42612. source: "./media/characters/sigrun/front.svg",
  42613. extra: 1418/1359,
  42614. bottom: 27/1445
  42615. }
  42616. },
  42617. },
  42618. [
  42619. {
  42620. name: "Macro",
  42621. height: math.unit(35, "feet"),
  42622. default: true
  42623. },
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42628. {
  42629. front: {
  42630. height: math.unit(6, "feet"),
  42631. weight: math.unit(150, "lb"),
  42632. name: "Front",
  42633. image: {
  42634. source: "./media/characters/numin/front.svg",
  42635. extra: 1433/1388,
  42636. bottom: 12/1445
  42637. }
  42638. },
  42639. },
  42640. [
  42641. {
  42642. name: "Macro",
  42643. height: math.unit(21.5, "km"),
  42644. default: true
  42645. },
  42646. ]
  42647. ))
  42648. characterMakers.push(() => makeCharacter(
  42649. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42650. {
  42651. front: {
  42652. height: math.unit(6, "feet"),
  42653. weight: math.unit(463, "lb"),
  42654. name: "Front",
  42655. image: {
  42656. source: "./media/characters/melwa/front.svg",
  42657. extra: 1307/1248,
  42658. bottom: 93/1400
  42659. }
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Macro",
  42665. height: math.unit(50, "meters"),
  42666. default: true
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(325, "feet"),
  42675. name: "Front",
  42676. image: {
  42677. source: "./media/characters/zorkaiju/front.svg",
  42678. extra: 1955/1814,
  42679. bottom: 40/1995
  42680. }
  42681. },
  42682. frontExtended: {
  42683. height: math.unit(325, "feet"),
  42684. name: "Front (Extended)",
  42685. image: {
  42686. source: "./media/characters/zorkaiju/front-extended.svg",
  42687. extra: 1955/1814,
  42688. bottom: 40/1995
  42689. }
  42690. },
  42691. side: {
  42692. height: math.unit(325, "feet"),
  42693. name: "Side",
  42694. image: {
  42695. source: "./media/characters/zorkaiju/side.svg",
  42696. extra: 1495/1396,
  42697. bottom: 17/1512
  42698. }
  42699. },
  42700. sideExtended: {
  42701. height: math.unit(325, "feet"),
  42702. name: "Side (Extended)",
  42703. image: {
  42704. source: "./media/characters/zorkaiju/side-extended.svg",
  42705. extra: 1495/1396,
  42706. bottom: 17/1512
  42707. }
  42708. },
  42709. back: {
  42710. height: math.unit(325, "feet"),
  42711. name: "Back",
  42712. image: {
  42713. source: "./media/characters/zorkaiju/back.svg",
  42714. extra: 1959/1821,
  42715. bottom: 31/1990
  42716. }
  42717. },
  42718. backExtended: {
  42719. height: math.unit(325, "feet"),
  42720. name: "Back (Extended)",
  42721. image: {
  42722. source: "./media/characters/zorkaiju/back-extended.svg",
  42723. extra: 1959/1821,
  42724. bottom: 31/1990
  42725. }
  42726. },
  42727. hand: {
  42728. height: math.unit(58.4, "feet"),
  42729. name: "Hand",
  42730. image: {
  42731. source: "./media/characters/zorkaiju/hand.svg"
  42732. }
  42733. },
  42734. handExtended: {
  42735. height: math.unit(61.4, "feet"),
  42736. name: "Hand (Extended)",
  42737. image: {
  42738. source: "./media/characters/zorkaiju/hand-extended.svg"
  42739. }
  42740. },
  42741. foot: {
  42742. height: math.unit(95, "feet"),
  42743. name: "Foot",
  42744. image: {
  42745. source: "./media/characters/zorkaiju/foot.svg"
  42746. }
  42747. },
  42748. leftArm: {
  42749. height: math.unit(59, "feet"),
  42750. name: "Left Arm",
  42751. image: {
  42752. source: "./media/characters/zorkaiju/left-arm.svg"
  42753. }
  42754. },
  42755. rightArm: {
  42756. height: math.unit(59, "feet"),
  42757. name: "Right Arm",
  42758. image: {
  42759. source: "./media/characters/zorkaiju/right-arm.svg"
  42760. }
  42761. },
  42762. leftArmExtended: {
  42763. height: math.unit(59 * 1.033546, "feet"),
  42764. name: "Left Arm (Extended)",
  42765. image: {
  42766. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42767. }
  42768. },
  42769. rightArmExtended: {
  42770. height: math.unit(59 * 1.0496, "feet"),
  42771. name: "Right Arm (Extended)",
  42772. image: {
  42773. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42774. }
  42775. },
  42776. tail: {
  42777. height: math.unit(104, "feet"),
  42778. name: "Tail",
  42779. image: {
  42780. source: "./media/characters/zorkaiju/tail.svg"
  42781. }
  42782. },
  42783. tailExtended: {
  42784. height: math.unit(104, "feet"),
  42785. name: "Tail (Extended)",
  42786. image: {
  42787. source: "./media/characters/zorkaiju/tail-extended.svg"
  42788. }
  42789. },
  42790. tailBottom: {
  42791. height: math.unit(104, "feet"),
  42792. name: "Tail Bottom",
  42793. image: {
  42794. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42795. }
  42796. },
  42797. crystal: {
  42798. height: math.unit(27.54, "feet"),
  42799. name: "Crystal",
  42800. image: {
  42801. source: "./media/characters/zorkaiju/crystal.svg"
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Kaiju",
  42808. height: math.unit(325, "feet"),
  42809. default: true
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(6 + 1/12, "feet"),
  42818. weight: math.unit(115, "lb"),
  42819. name: "Front",
  42820. image: {
  42821. source: "./media/characters/bailey-belfry/front.svg",
  42822. extra: 1240/1121,
  42823. bottom: 101/1341
  42824. }
  42825. },
  42826. },
  42827. [
  42828. {
  42829. name: "Normal",
  42830. height: math.unit(6 + 1/12, "feet"),
  42831. default: true
  42832. },
  42833. ]
  42834. ))
  42835. characterMakers.push(() => makeCharacter(
  42836. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42837. {
  42838. side: {
  42839. height: math.unit(4, "meters"),
  42840. weight: math.unit(250, "kg"),
  42841. name: "Side",
  42842. image: {
  42843. source: "./media/characters/blacky/side.svg",
  42844. extra: 1027/919,
  42845. bottom: 43/1070
  42846. }
  42847. },
  42848. maw: {
  42849. height: math.unit(1, "meters"),
  42850. name: "Maw",
  42851. image: {
  42852. source: "./media/characters/blacky/maw.svg"
  42853. }
  42854. },
  42855. paw: {
  42856. height: math.unit(1, "meters"),
  42857. name: "Paw",
  42858. image: {
  42859. source: "./media/characters/blacky/paw.svg"
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Normal",
  42866. height: math.unit(4, "meters"),
  42867. default: true
  42868. },
  42869. ]
  42870. ))
  42871. characterMakers.push(() => makeCharacter(
  42872. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42873. {
  42874. front: {
  42875. height: math.unit(170, "cm"),
  42876. weight: math.unit(66, "kg"),
  42877. name: "Front",
  42878. image: {
  42879. source: "./media/characters/thux-ei/front.svg",
  42880. extra: 1109/1011,
  42881. bottom: 8/1117
  42882. }
  42883. },
  42884. },
  42885. [
  42886. {
  42887. name: "Normal",
  42888. height: math.unit(170, "cm"),
  42889. default: true
  42890. },
  42891. ]
  42892. ))
  42893. characterMakers.push(() => makeCharacter(
  42894. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42895. {
  42896. front: {
  42897. height: math.unit(5, "feet"),
  42898. weight: math.unit(120, "lb"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/roxanne-voltaire/front.svg",
  42902. extra: 1901/1779,
  42903. bottom: 53/1954
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(5, "feet"),
  42911. default: true
  42912. },
  42913. {
  42914. name: "Giant",
  42915. height: math.unit(50, "feet")
  42916. },
  42917. {
  42918. name: "Titan",
  42919. height: math.unit(500, "feet")
  42920. },
  42921. {
  42922. name: "Macro",
  42923. height: math.unit(5000, "feet")
  42924. },
  42925. {
  42926. name: "Megamacro",
  42927. height: math.unit(50000, "feet")
  42928. },
  42929. {
  42930. name: "Gigamacro",
  42931. height: math.unit(500000, "feet")
  42932. },
  42933. {
  42934. name: "Teramacro",
  42935. height: math.unit(5e6, "feet")
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42941. {
  42942. front: {
  42943. height: math.unit(6 + 2/12, "feet"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/squeaks/front.svg",
  42947. extra: 1823/1768,
  42948. bottom: 138/1961
  42949. }
  42950. },
  42951. },
  42952. [
  42953. {
  42954. name: "Micro",
  42955. height: math.unit(0.5, "inches")
  42956. },
  42957. {
  42958. name: "Normal",
  42959. height: math.unit(6 + 2/12, "feet"),
  42960. default: true
  42961. },
  42962. {
  42963. name: "Macro",
  42964. height: math.unit(600, "feet")
  42965. },
  42966. ]
  42967. ))
  42968. characterMakers.push(() => makeCharacter(
  42969. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42970. {
  42971. front: {
  42972. height: math.unit(1.72, "meters"),
  42973. name: "Front",
  42974. image: {
  42975. source: "./media/characters/archinger/front.svg",
  42976. extra: 1861/1675,
  42977. bottom: 125/1986
  42978. }
  42979. },
  42980. back: {
  42981. height: math.unit(1.72, "meters"),
  42982. name: "Back",
  42983. image: {
  42984. source: "./media/characters/archinger/back.svg",
  42985. extra: 1844/1701,
  42986. bottom: 104/1948
  42987. }
  42988. },
  42989. cock: {
  42990. height: math.unit(0.59, "feet"),
  42991. name: "Cock",
  42992. image: {
  42993. source: "./media/characters/archinger/cock.svg"
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(1.72, "meters"),
  43001. default: true
  43002. },
  43003. {
  43004. name: "Macro",
  43005. height: math.unit(84, "meters")
  43006. },
  43007. {
  43008. name: "Macro+",
  43009. height: math.unit(112, "meters")
  43010. },
  43011. {
  43012. name: "Macro++",
  43013. height: math.unit(960, "meters")
  43014. },
  43015. {
  43016. name: "Macro+++",
  43017. height: math.unit(4, "km")
  43018. },
  43019. {
  43020. name: "Macro++++",
  43021. height: math.unit(48, "km")
  43022. },
  43023. {
  43024. name: "Macro+++++",
  43025. height: math.unit(4500, "km")
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(5 + 5/12, "feet"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/alsnapz/front.svg",
  43037. extra: 1157/1065,
  43038. bottom: 42/1199
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Normal",
  43045. height: math.unit(5 + 5/12, "feet"),
  43046. default: true
  43047. },
  43048. ]
  43049. ))
  43050. characterMakers.push(() => makeCharacter(
  43051. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43052. {
  43053. side: {
  43054. height: math.unit(3.2, "earths"),
  43055. name: "Side",
  43056. image: {
  43057. source: "./media/characters/mag/side.svg",
  43058. extra: 1331/1008,
  43059. bottom: 52/1383
  43060. }
  43061. },
  43062. wing: {
  43063. height: math.unit(1.94, "earths"),
  43064. name: "Wing",
  43065. image: {
  43066. source: "./media/characters/mag/wing.svg"
  43067. }
  43068. },
  43069. dick: {
  43070. height: math.unit(1.8, "earths"),
  43071. name: "Dick",
  43072. image: {
  43073. source: "./media/characters/mag/dick.svg"
  43074. }
  43075. },
  43076. ass: {
  43077. height: math.unit(1.33, "earths"),
  43078. name: "Ass",
  43079. image: {
  43080. source: "./media/characters/mag/ass.svg"
  43081. }
  43082. },
  43083. head: {
  43084. height: math.unit(1.1, "earths"),
  43085. name: "Head",
  43086. image: {
  43087. source: "./media/characters/mag/head.svg"
  43088. }
  43089. },
  43090. maw: {
  43091. height: math.unit(1.62, "earths"),
  43092. name: "Maw",
  43093. image: {
  43094. source: "./media/characters/mag/maw.svg"
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Small",
  43101. height: math.unit(162, "feet")
  43102. },
  43103. {
  43104. name: "Normal",
  43105. height: math.unit(3.2, "earths"),
  43106. default: true
  43107. },
  43108. ]
  43109. ))
  43110. characterMakers.push(() => makeCharacter(
  43111. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43112. {
  43113. front: {
  43114. height: math.unit(512, "feet"),
  43115. weight: math.unit(63509, "tonnes"),
  43116. name: "Front",
  43117. image: {
  43118. source: "./media/characters/vorrel-harroc/front.svg",
  43119. extra: 1075/1063,
  43120. bottom: 62/1137
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Normal",
  43127. height: math.unit(10, "feet")
  43128. },
  43129. {
  43130. name: "Macro",
  43131. height: math.unit(512, "feet"),
  43132. default: true
  43133. },
  43134. {
  43135. name: "Megamacro",
  43136. height: math.unit(256, "miles")
  43137. },
  43138. {
  43139. name: "Gigamacro",
  43140. height: math.unit(4096, "miles")
  43141. },
  43142. ]
  43143. ))
  43144. characterMakers.push(() => makeCharacter(
  43145. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43146. {
  43147. side: {
  43148. height: math.unit(50, "feet"),
  43149. name: "Side",
  43150. image: {
  43151. source: "./media/characters/froimar/side.svg",
  43152. extra: 855/638,
  43153. bottom: 99/954
  43154. }
  43155. },
  43156. },
  43157. [
  43158. {
  43159. name: "Macro",
  43160. height: math.unit(50, "feet"),
  43161. default: true
  43162. },
  43163. ]
  43164. ))
  43165. characterMakers.push(() => makeCharacter(
  43166. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43167. {
  43168. front: {
  43169. height: math.unit(210, "miles"),
  43170. name: "Front",
  43171. image: {
  43172. source: "./media/characters/timothy/front.svg",
  43173. extra: 1007/943,
  43174. bottom: 62/1069
  43175. }
  43176. },
  43177. frontSkirt: {
  43178. height: math.unit(210, "miles"),
  43179. name: "Front (Skirt)",
  43180. image: {
  43181. source: "./media/characters/timothy/front-skirt.svg",
  43182. extra: 1007/943,
  43183. bottom: 62/1069
  43184. }
  43185. },
  43186. frontCoat: {
  43187. height: math.unit(210, "miles"),
  43188. name: "Front (Coat)",
  43189. image: {
  43190. source: "./media/characters/timothy/front-coat.svg",
  43191. extra: 1007/943,
  43192. bottom: 62/1069
  43193. }
  43194. },
  43195. },
  43196. [
  43197. {
  43198. name: "Macro",
  43199. height: math.unit(210, "miles"),
  43200. default: true
  43201. },
  43202. {
  43203. name: "Megamacro",
  43204. height: math.unit(210000, "miles")
  43205. },
  43206. ]
  43207. ))
  43208. characterMakers.push(() => makeCharacter(
  43209. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43210. {
  43211. front: {
  43212. height: math.unit(188, "feet"),
  43213. name: "Front",
  43214. image: {
  43215. source: "./media/characters/pyotr/front.svg",
  43216. extra: 1912/1826,
  43217. bottom: 18/1930
  43218. }
  43219. },
  43220. },
  43221. [
  43222. {
  43223. name: "Macro",
  43224. height: math.unit(188, "feet"),
  43225. default: true
  43226. },
  43227. {
  43228. name: "Megamacro",
  43229. height: math.unit(8, "miles")
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43235. {
  43236. side: {
  43237. height: math.unit(10, "feet"),
  43238. weight: math.unit(4500, "lb"),
  43239. name: "Side",
  43240. image: {
  43241. source: "./media/characters/ackart/side.svg",
  43242. extra: 1776/1668,
  43243. bottom: 116/1892
  43244. }
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Normal",
  43250. height: math.unit(10, "feet"),
  43251. default: true
  43252. },
  43253. ]
  43254. ))
  43255. characterMakers.push(() => makeCharacter(
  43256. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43257. {
  43258. side: {
  43259. height: math.unit(21, "feet"),
  43260. name: "Side",
  43261. image: {
  43262. source: "./media/characters/nolow/side.svg",
  43263. extra: 1484/1434,
  43264. bottom: 85/1569
  43265. }
  43266. },
  43267. sideErect: {
  43268. height: math.unit(21, "feet"),
  43269. name: "Side-erect",
  43270. image: {
  43271. source: "./media/characters/nolow/side-erect.svg",
  43272. extra: 1484/1434,
  43273. bottom: 85/1569
  43274. }
  43275. },
  43276. },
  43277. [
  43278. {
  43279. name: "Regular",
  43280. height: math.unit(12, "feet")
  43281. },
  43282. {
  43283. name: "Big Chee",
  43284. height: math.unit(21, "feet"),
  43285. default: true
  43286. },
  43287. ]
  43288. ))
  43289. characterMakers.push(() => makeCharacter(
  43290. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43291. {
  43292. front: {
  43293. height: math.unit(7, "feet"),
  43294. weight: math.unit(250, "lb"),
  43295. name: "Front",
  43296. image: {
  43297. source: "./media/characters/nines/front.svg",
  43298. extra: 1741/1607,
  43299. bottom: 41/1782
  43300. }
  43301. },
  43302. side: {
  43303. height: math.unit(7, "feet"),
  43304. weight: math.unit(250, "lb"),
  43305. name: "Side",
  43306. image: {
  43307. source: "./media/characters/nines/side.svg",
  43308. extra: 1854/1735,
  43309. bottom: 93/1947
  43310. }
  43311. },
  43312. back: {
  43313. height: math.unit(7, "feet"),
  43314. weight: math.unit(250, "lb"),
  43315. name: "Back",
  43316. image: {
  43317. source: "./media/characters/nines/back.svg",
  43318. extra: 1748/1615,
  43319. bottom: 20/1768
  43320. }
  43321. },
  43322. },
  43323. [
  43324. {
  43325. name: "Megamacro",
  43326. height: math.unit(99, "km"),
  43327. default: true
  43328. },
  43329. ]
  43330. ))
  43331. characterMakers.push(() => makeCharacter(
  43332. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43333. {
  43334. front: {
  43335. height: math.unit(5 + 10/12, "feet"),
  43336. weight: math.unit(210, "lb"),
  43337. name: "Front",
  43338. image: {
  43339. source: "./media/characters/zenith/front.svg",
  43340. extra: 1531/1452,
  43341. bottom: 198/1729
  43342. }
  43343. },
  43344. back: {
  43345. height: math.unit(5 + 10/12, "feet"),
  43346. weight: math.unit(210, "lb"),
  43347. name: "Back",
  43348. image: {
  43349. source: "./media/characters/zenith/back.svg",
  43350. extra: 1571/1487,
  43351. bottom: 75/1646
  43352. }
  43353. },
  43354. },
  43355. [
  43356. {
  43357. name: "Normal",
  43358. height: math.unit(5 + 10/12, "feet"),
  43359. default: true
  43360. }
  43361. ]
  43362. ))
  43363. characterMakers.push(() => makeCharacter(
  43364. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43365. {
  43366. front: {
  43367. height: math.unit(4, "feet"),
  43368. weight: math.unit(60, "lb"),
  43369. name: "Front",
  43370. image: {
  43371. source: "./media/characters/jasper/front.svg",
  43372. extra: 1450/1379,
  43373. bottom: 19/1469
  43374. }
  43375. },
  43376. },
  43377. [
  43378. {
  43379. name: "Normal",
  43380. height: math.unit(4, "feet"),
  43381. default: true
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43387. {
  43388. front: {
  43389. height: math.unit(6 + 5/12, "feet"),
  43390. weight: math.unit(290, "lb"),
  43391. name: "Front",
  43392. image: {
  43393. source: "./media/characters/tiberius-thyben/front.svg",
  43394. extra: 757/739,
  43395. bottom: 39/796
  43396. }
  43397. },
  43398. },
  43399. [
  43400. {
  43401. name: "Micro",
  43402. height: math.unit(1.5, "inches")
  43403. },
  43404. {
  43405. name: "Normal",
  43406. height: math.unit(6 + 5/12, "feet"),
  43407. default: true
  43408. },
  43409. {
  43410. name: "Macro",
  43411. height: math.unit(300, "feet")
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(5 + 6/12, "feet"),
  43420. weight: math.unit(60, "kg"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/sabre/front.svg",
  43424. extra: 738/671,
  43425. bottom: 27/765
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Teeny",
  43432. height: math.unit(2, "inches")
  43433. },
  43434. {
  43435. name: "Smol",
  43436. height: math.unit(8, "inches")
  43437. },
  43438. {
  43439. name: "Normal",
  43440. height: math.unit(5 + 6/12, "feet"),
  43441. default: true
  43442. },
  43443. {
  43444. name: "Mini-Macro",
  43445. height: math.unit(15, "feet")
  43446. },
  43447. {
  43448. name: "Macro",
  43449. height: math.unit(50, "feet")
  43450. },
  43451. ]
  43452. ))
  43453. characterMakers.push(() => makeCharacter(
  43454. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43455. {
  43456. front: {
  43457. height: math.unit(6 + 4/12, "feet"),
  43458. weight: math.unit(170, "lb"),
  43459. name: "Front",
  43460. image: {
  43461. source: "./media/characters/charlie/front.svg",
  43462. extra: 1348/1228,
  43463. bottom: 15/1363
  43464. }
  43465. },
  43466. },
  43467. [
  43468. {
  43469. name: "Macro",
  43470. height: math.unit(1700, "meters"),
  43471. default: true
  43472. },
  43473. {
  43474. name: "MegaMacro",
  43475. height: math.unit(20400, "meters")
  43476. },
  43477. ]
  43478. ))
  43479. characterMakers.push(() => makeCharacter(
  43480. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43481. {
  43482. front: {
  43483. height: math.unit(6 + 3/12, "feet"),
  43484. weight: math.unit(185, "lb"),
  43485. name: "Front",
  43486. image: {
  43487. source: "./media/characters/susan-grant/front.svg",
  43488. extra: 1351/1327,
  43489. bottom: 26/1377
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Normal",
  43496. height: math.unit(6 + 3/12, "feet"),
  43497. default: true
  43498. },
  43499. {
  43500. name: "Macro",
  43501. height: math.unit(225, "feet")
  43502. },
  43503. {
  43504. name: "Macro+",
  43505. height: math.unit(900, "feet")
  43506. },
  43507. {
  43508. name: "MegaMacro",
  43509. height: math.unit(14400, "feet")
  43510. },
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(5 + 4/12, "feet"),
  43518. weight: math.unit(110, "lb"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/axel-isanov/front.svg",
  43522. extra: 1096/1065,
  43523. bottom: 13/1109
  43524. }
  43525. },
  43526. },
  43527. [
  43528. {
  43529. name: "Normal",
  43530. height: math.unit(5 + 4/12, "feet"),
  43531. default: true
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43537. {
  43538. front: {
  43539. height: math.unit(9, "feet"),
  43540. weight: math.unit(467, "lb"),
  43541. name: "Front",
  43542. image: {
  43543. source: "./media/characters/necahual/front.svg",
  43544. extra: 920/873,
  43545. bottom: 26/946
  43546. }
  43547. },
  43548. back: {
  43549. height: math.unit(9, "feet"),
  43550. weight: math.unit(467, "lb"),
  43551. name: "Back",
  43552. image: {
  43553. source: "./media/characters/necahual/back.svg",
  43554. extra: 930/884,
  43555. bottom: 16/946
  43556. }
  43557. },
  43558. frontUnderwear: {
  43559. height: math.unit(9, "feet"),
  43560. weight: math.unit(467, "lb"),
  43561. name: "Front (Underwear)",
  43562. image: {
  43563. source: "./media/characters/necahual/front-underwear.svg",
  43564. extra: 920/873,
  43565. bottom: 26/946
  43566. }
  43567. },
  43568. frontDressed: {
  43569. height: math.unit(9, "feet"),
  43570. weight: math.unit(467, "lb"),
  43571. name: "Front (Dressed)",
  43572. image: {
  43573. source: "./media/characters/necahual/front-dressed.svg",
  43574. extra: 920/873,
  43575. bottom: 26/946
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Comprsesed",
  43582. height: math.unit(9, "feet")
  43583. },
  43584. {
  43585. name: "Natural",
  43586. height: math.unit(15, "feet"),
  43587. default: true
  43588. },
  43589. {
  43590. name: "Boosted",
  43591. height: math.unit(50, "feet")
  43592. },
  43593. {
  43594. name: "Boosted+",
  43595. height: math.unit(150, "feet")
  43596. },
  43597. {
  43598. name: "Max",
  43599. height: math.unit(500, "feet")
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43605. {
  43606. front: {
  43607. height: math.unit(22 + 1/12, "feet"),
  43608. weight: math.unit(3200, "lb"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/theo-acacia/front.svg",
  43612. extra: 1796/1741,
  43613. bottom: 83/1879
  43614. }
  43615. },
  43616. frontUnderwear: {
  43617. height: math.unit(22 + 1/12, "feet"),
  43618. weight: math.unit(3200, "lb"),
  43619. name: "Front (Underwear)",
  43620. image: {
  43621. source: "./media/characters/theo-acacia/front-underwear.svg",
  43622. extra: 1796/1741,
  43623. bottom: 83/1879
  43624. }
  43625. },
  43626. frontNude: {
  43627. height: math.unit(22 + 1/12, "feet"),
  43628. weight: math.unit(3200, "lb"),
  43629. name: "Front (Nude)",
  43630. image: {
  43631. source: "./media/characters/theo-acacia/front-nude.svg",
  43632. extra: 1796/1741,
  43633. bottom: 83/1879
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Normal",
  43640. height: math.unit(22 + 1/12, "feet"),
  43641. default: true
  43642. },
  43643. ]
  43644. ))
  43645. characterMakers.push(() => makeCharacter(
  43646. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43647. {
  43648. front: {
  43649. height: math.unit(20, "feet"),
  43650. name: "Front",
  43651. image: {
  43652. source: "./media/characters/astra/front.svg",
  43653. extra: 1850/1714,
  43654. bottom: 106/1956
  43655. }
  43656. },
  43657. frontUndressed: {
  43658. height: math.unit(20, "feet"),
  43659. name: "Front (Undressed)",
  43660. image: {
  43661. source: "./media/characters/astra/front-undressed.svg",
  43662. extra: 1926/1749,
  43663. bottom: 0/1926
  43664. }
  43665. },
  43666. hand: {
  43667. height: math.unit(1.53, "feet"),
  43668. name: "Hand",
  43669. image: {
  43670. source: "./media/characters/astra/hand.svg"
  43671. }
  43672. },
  43673. paw: {
  43674. height: math.unit(1.53, "feet"),
  43675. name: "Paw",
  43676. image: {
  43677. source: "./media/characters/astra/paw.svg"
  43678. }
  43679. },
  43680. },
  43681. [
  43682. {
  43683. name: "Smallest",
  43684. height: math.unit(20, "feet")
  43685. },
  43686. {
  43687. name: "Normal",
  43688. height: math.unit(1e9, "miles"),
  43689. default: true
  43690. },
  43691. {
  43692. name: "Larger",
  43693. height: math.unit(5, "multiverses")
  43694. },
  43695. {
  43696. name: "Largest",
  43697. height: math.unit(1e9, "multiverses")
  43698. },
  43699. ]
  43700. ))
  43701. characterMakers.push(() => makeCharacter(
  43702. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43703. {
  43704. front: {
  43705. height: math.unit(8, "feet"),
  43706. name: "Front",
  43707. image: {
  43708. source: "./media/characters/breanna/front.svg",
  43709. extra: 1912/1632,
  43710. bottom: 33/1945
  43711. }
  43712. },
  43713. },
  43714. [
  43715. {
  43716. name: "Smallest",
  43717. height: math.unit(8, "feet")
  43718. },
  43719. {
  43720. name: "Normal",
  43721. height: math.unit(1, "mile"),
  43722. default: true
  43723. },
  43724. {
  43725. name: "Maximum",
  43726. height: math.unit(1500000000000, "lightyears")
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(5 + 11/12, "feet"),
  43735. weight: math.unit(155, "lb"),
  43736. name: "Front",
  43737. image: {
  43738. source: "./media/characters/cai/front.svg",
  43739. extra: 1823/1702,
  43740. bottom: 32/1855
  43741. }
  43742. },
  43743. back: {
  43744. height: math.unit(5 + 11/12, "feet"),
  43745. weight: math.unit(155, "lb"),
  43746. name: "Back",
  43747. image: {
  43748. source: "./media/characters/cai/back.svg",
  43749. extra: 1809/1708,
  43750. bottom: 31/1840
  43751. }
  43752. },
  43753. },
  43754. [
  43755. {
  43756. name: "Normal",
  43757. height: math.unit(5 + 11/12, "feet"),
  43758. default: true
  43759. },
  43760. {
  43761. name: "Big",
  43762. height: math.unit(15, "feet")
  43763. },
  43764. {
  43765. name: "Macro",
  43766. height: math.unit(200, "feet")
  43767. },
  43768. ]
  43769. ))
  43770. characterMakers.push(() => makeCharacter(
  43771. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43772. {
  43773. front: {
  43774. height: math.unit(5 + 6/12, "feet"),
  43775. weight: math.unit(160, "lb"),
  43776. name: "Front",
  43777. image: {
  43778. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43779. extra: 1227/1174,
  43780. bottom: 37/1264
  43781. }
  43782. },
  43783. },
  43784. [
  43785. {
  43786. name: "Macro",
  43787. height: math.unit(444, "meters"),
  43788. default: true
  43789. },
  43790. ]
  43791. ))
  43792. characterMakers.push(() => makeCharacter(
  43793. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43794. {
  43795. front: {
  43796. height: math.unit(18 + 7/12, "feet"),
  43797. name: "Front",
  43798. image: {
  43799. source: "./media/characters/rex/front.svg",
  43800. extra: 1941/1807,
  43801. bottom: 66/2007
  43802. }
  43803. },
  43804. back: {
  43805. height: math.unit(18 + 7/12, "feet"),
  43806. name: "Back",
  43807. image: {
  43808. source: "./media/characters/rex/back.svg",
  43809. extra: 1937/1822,
  43810. bottom: 42/1979
  43811. }
  43812. },
  43813. boot: {
  43814. height: math.unit(3.45, "feet"),
  43815. name: "Boot",
  43816. image: {
  43817. source: "./media/characters/rex/boot.svg"
  43818. }
  43819. },
  43820. paw: {
  43821. height: math.unit(4.17, "feet"),
  43822. name: "Paw",
  43823. image: {
  43824. source: "./media/characters/rex/paw.svg"
  43825. }
  43826. },
  43827. head: {
  43828. height: math.unit(6.728, "feet"),
  43829. name: "Head",
  43830. image: {
  43831. source: "./media/characters/rex/head.svg"
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Nano",
  43838. height: math.unit(18 + 7/12, "feet")
  43839. },
  43840. {
  43841. name: "Micro",
  43842. height: math.unit(1.5, "megameters")
  43843. },
  43844. {
  43845. name: "Normal",
  43846. height: math.unit(440, "megameters"),
  43847. default: true
  43848. },
  43849. {
  43850. name: "Macro",
  43851. height: math.unit(2.5, "gigameters")
  43852. },
  43853. {
  43854. name: "Gigamacro",
  43855. height: math.unit(2, "galaxies")
  43856. },
  43857. ]
  43858. ))
  43859. characterMakers.push(() => makeCharacter(
  43860. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43861. {
  43862. side: {
  43863. height: math.unit(32, "feet"),
  43864. weight: math.unit(250000, "lb"),
  43865. name: "Side",
  43866. image: {
  43867. source: "./media/characters/silverwing/side.svg",
  43868. extra: 1100/1019,
  43869. bottom: 204/1304
  43870. }
  43871. },
  43872. },
  43873. [
  43874. {
  43875. name: "Normal",
  43876. height: math.unit(32, "feet"),
  43877. default: true
  43878. },
  43879. ]
  43880. ))
  43881. characterMakers.push(() => makeCharacter(
  43882. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43883. {
  43884. front: {
  43885. height: math.unit(6 + 6/12, "feet"),
  43886. weight: math.unit(350, "lb"),
  43887. name: "Front",
  43888. image: {
  43889. source: "./media/characters/tristan-hawthorne/front.svg",
  43890. extra: 1159/1124,
  43891. bottom: 37/1196
  43892. },
  43893. form: "labrador",
  43894. default: true
  43895. },
  43896. skunkFront: {
  43897. height: math.unit(4 + 6/12, "feet"),
  43898. weight: math.unit(120, "lb"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43902. extra: 1609/1551,
  43903. bottom: 169/1778
  43904. },
  43905. form: "skunk",
  43906. default: true
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Normal",
  43912. height: math.unit(6 + 6/12, "feet"),
  43913. form: "labrador",
  43914. default: true
  43915. },
  43916. {
  43917. name: "Normal",
  43918. height: math.unit(4 + 6/12, "feet"),
  43919. form: "skunk",
  43920. default: true
  43921. },
  43922. ],
  43923. {
  43924. "labrador": {
  43925. name: "Labrador",
  43926. default: true
  43927. },
  43928. "skunk": {
  43929. name: "Skunk"
  43930. }
  43931. }
  43932. ))
  43933. characterMakers.push(() => makeCharacter(
  43934. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43935. {
  43936. front: {
  43937. height: math.unit(5 + 11/12, "feet"),
  43938. weight: math.unit(190, "lb"),
  43939. name: "Front",
  43940. image: {
  43941. source: "./media/characters/mizu/front.svg",
  43942. extra: 1988/1788,
  43943. bottom: 14/2002
  43944. }
  43945. },
  43946. },
  43947. [
  43948. {
  43949. name: "Normal",
  43950. height: math.unit(5 + 11/12, "feet"),
  43951. default: true
  43952. },
  43953. ]
  43954. ))
  43955. characterMakers.push(() => makeCharacter(
  43956. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43957. {
  43958. front: {
  43959. height: math.unit(1.7, "feet"),
  43960. weight: math.unit(50, "lb"),
  43961. name: "Front",
  43962. image: {
  43963. source: "./media/characters/dechroma/front.svg",
  43964. extra: 1095/859,
  43965. bottom: 64/1159
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Normal",
  43972. height: math.unit(1.7, "feet"),
  43973. default: true
  43974. },
  43975. ]
  43976. ))
  43977. characterMakers.push(() => makeCharacter(
  43978. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43979. {
  43980. side: {
  43981. height: math.unit(30, "feet"),
  43982. name: "Side",
  43983. image: {
  43984. source: "./media/characters/veluren-thanazel/side.svg",
  43985. extra: 1611/633,
  43986. bottom: 118/1729
  43987. }
  43988. },
  43989. front: {
  43990. height: math.unit(30, "feet"),
  43991. name: "Front",
  43992. image: {
  43993. source: "./media/characters/veluren-thanazel/front.svg",
  43994. extra: 1486/636,
  43995. bottom: 238/1724
  43996. }
  43997. },
  43998. head: {
  43999. height: math.unit(21.4, "feet"),
  44000. name: "Head",
  44001. image: {
  44002. source: "./media/characters/veluren-thanazel/head.svg"
  44003. }
  44004. },
  44005. genitals: {
  44006. height: math.unit(19.4, "feet"),
  44007. name: "Genitals",
  44008. image: {
  44009. source: "./media/characters/veluren-thanazel/genitals.svg"
  44010. }
  44011. },
  44012. },
  44013. [
  44014. {
  44015. name: "Social",
  44016. height: math.unit(6, "feet")
  44017. },
  44018. {
  44019. name: "Play",
  44020. height: math.unit(12, "feet")
  44021. },
  44022. {
  44023. name: "True",
  44024. height: math.unit(30, "feet"),
  44025. default: true
  44026. },
  44027. ]
  44028. ))
  44029. characterMakers.push(() => makeCharacter(
  44030. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44031. {
  44032. front: {
  44033. height: math.unit(7 + 6/12, "feet"),
  44034. weight: math.unit(500, "kg"),
  44035. name: "Front",
  44036. image: {
  44037. source: "./media/characters/arcturas/front.svg",
  44038. extra: 1700/1500,
  44039. bottom: 145/1845
  44040. }
  44041. },
  44042. },
  44043. [
  44044. {
  44045. name: "Normal",
  44046. height: math.unit(7 + 6/12, "feet"),
  44047. default: true
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44053. {
  44054. side: {
  44055. height: math.unit(6, "feet"),
  44056. weight: math.unit(2, "tons"),
  44057. name: "Side",
  44058. image: {
  44059. source: "./media/characters/vitaen/side.svg",
  44060. extra: 1157/617,
  44061. bottom: 122/1279
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Normal",
  44068. height: math.unit(6, "feet"),
  44069. default: true
  44070. },
  44071. ]
  44072. ))
  44073. characterMakers.push(() => makeCharacter(
  44074. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44075. {
  44076. front: {
  44077. height: math.unit(19, "feet"),
  44078. name: "Front",
  44079. image: {
  44080. source: "./media/characters/fia-dreamweaver/front.svg",
  44081. extra: 1630/1504,
  44082. bottom: 25/1655
  44083. }
  44084. },
  44085. },
  44086. [
  44087. {
  44088. name: "Normal",
  44089. height: math.unit(19, "feet"),
  44090. default: true
  44091. },
  44092. ]
  44093. ))
  44094. characterMakers.push(() => makeCharacter(
  44095. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44096. {
  44097. front: {
  44098. height: math.unit(5 + 4/12, "feet"),
  44099. name: "Front",
  44100. image: {
  44101. source: "./media/characters/artan/front.svg",
  44102. extra: 1618/1535,
  44103. bottom: 46/1664
  44104. }
  44105. },
  44106. back: {
  44107. height: math.unit(5 + 4/12, "feet"),
  44108. name: "Back",
  44109. image: {
  44110. source: "./media/characters/artan/back.svg",
  44111. extra: 1618/1543,
  44112. bottom: 31/1649
  44113. }
  44114. },
  44115. },
  44116. [
  44117. {
  44118. name: "Normal",
  44119. height: math.unit(5 + 4/12, "feet"),
  44120. default: true
  44121. },
  44122. ]
  44123. ))
  44124. characterMakers.push(() => makeCharacter(
  44125. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44126. {
  44127. side: {
  44128. height: math.unit(182, "cm"),
  44129. weight: math.unit(1000, "lb"),
  44130. name: "Side",
  44131. image: {
  44132. source: "./media/characters/silver-dragon/side.svg",
  44133. extra: 710/287,
  44134. bottom: 88/798
  44135. }
  44136. },
  44137. },
  44138. [
  44139. {
  44140. name: "Normal",
  44141. height: math.unit(182, "cm"),
  44142. default: true
  44143. },
  44144. ]
  44145. ))
  44146. characterMakers.push(() => makeCharacter(
  44147. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44148. {
  44149. side: {
  44150. height: math.unit(6 + 6/12, "feet"),
  44151. weight: math.unit(1.5, "tons"),
  44152. name: "Side",
  44153. image: {
  44154. source: "./media/characters/zephyr/side.svg",
  44155. extra: 1433/586,
  44156. bottom: 109/1542
  44157. }
  44158. },
  44159. },
  44160. [
  44161. {
  44162. name: "Normal",
  44163. height: math.unit(6 + 6/12, "feet"),
  44164. default: true
  44165. },
  44166. ]
  44167. ))
  44168. characterMakers.push(() => makeCharacter(
  44169. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44170. {
  44171. side: {
  44172. height: math.unit(1, "feet"),
  44173. name: "Side",
  44174. image: {
  44175. source: "./media/characters/vixye/side.svg",
  44176. extra: 632/541,
  44177. bottom: 0/632
  44178. }
  44179. },
  44180. },
  44181. [
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(1, "feet"),
  44185. default: true
  44186. },
  44187. {
  44188. name: "True",
  44189. height: math.unit(1e15, "multiverses")
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44195. {
  44196. front: {
  44197. height: math.unit(8 + 2/12, "feet"),
  44198. weight: math.unit(650, "lb"),
  44199. name: "Front",
  44200. image: {
  44201. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44202. extra: 1174/1137,
  44203. bottom: 82/1256
  44204. }
  44205. },
  44206. back: {
  44207. height: math.unit(8 + 2/12, "feet"),
  44208. weight: math.unit(650, "lb"),
  44209. name: "Back",
  44210. image: {
  44211. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44212. extra: 1204/1157,
  44213. bottom: 46/1250
  44214. }
  44215. },
  44216. },
  44217. [
  44218. {
  44219. name: "Wildform",
  44220. height: math.unit(8 + 2/12, "feet"),
  44221. default: true
  44222. },
  44223. ]
  44224. ))
  44225. characterMakers.push(() => makeCharacter(
  44226. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44227. {
  44228. front: {
  44229. height: math.unit(18, "feet"),
  44230. name: "Front",
  44231. image: {
  44232. source: "./media/characters/cyphin/front.svg",
  44233. extra: 970/886,
  44234. bottom: 42/1012
  44235. }
  44236. },
  44237. back: {
  44238. height: math.unit(18, "feet"),
  44239. name: "Back",
  44240. image: {
  44241. source: "./media/characters/cyphin/back.svg",
  44242. extra: 1009/894,
  44243. bottom: 24/1033
  44244. }
  44245. },
  44246. head: {
  44247. height: math.unit(5.05, "feet"),
  44248. name: "Head",
  44249. image: {
  44250. source: "./media/characters/cyphin/head.svg"
  44251. }
  44252. },
  44253. tailbud: {
  44254. height: math.unit(5, "feet"),
  44255. name: "Tailbud",
  44256. image: {
  44257. source: "./media/characters/cyphin/tailbud.svg"
  44258. }
  44259. },
  44260. },
  44261. [
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44266. {
  44267. side: {
  44268. height: math.unit(10, "feet"),
  44269. weight: math.unit(6, "tons"),
  44270. name: "Side",
  44271. image: {
  44272. source: "./media/characters/raijin/side.svg",
  44273. extra: 1529/613,
  44274. bottom: 337/1866
  44275. }
  44276. },
  44277. },
  44278. [
  44279. {
  44280. name: "Normal",
  44281. height: math.unit(10, "feet"),
  44282. default: true
  44283. },
  44284. ]
  44285. ))
  44286. characterMakers.push(() => makeCharacter(
  44287. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44288. {
  44289. side: {
  44290. height: math.unit(9, "feet"),
  44291. name: "Side",
  44292. image: {
  44293. source: "./media/characters/nilghais/side.svg",
  44294. extra: 1047/744,
  44295. bottom: 91/1138
  44296. }
  44297. },
  44298. head: {
  44299. height: math.unit(3.14, "feet"),
  44300. name: "Head",
  44301. image: {
  44302. source: "./media/characters/nilghais/head.svg"
  44303. }
  44304. },
  44305. mouth: {
  44306. height: math.unit(4.6, "feet"),
  44307. name: "Mouth",
  44308. image: {
  44309. source: "./media/characters/nilghais/mouth.svg"
  44310. }
  44311. },
  44312. wings: {
  44313. height: math.unit(24, "feet"),
  44314. name: "Wings",
  44315. image: {
  44316. source: "./media/characters/nilghais/wings.svg"
  44317. }
  44318. },
  44319. ass: {
  44320. height: math.unit(6.12, "feet"),
  44321. name: "Ass",
  44322. image: {
  44323. source: "./media/characters/nilghais/ass.svg"
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(9, "feet"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44337. {
  44338. regular: {
  44339. height: math.unit(16 + 2/12, "feet"),
  44340. weight: math.unit(2300, "lb"),
  44341. name: "Regular",
  44342. image: {
  44343. source: "./media/characters/zolgar/regular.svg",
  44344. extra: 1246/1004,
  44345. bottom: 124/1370
  44346. }
  44347. },
  44348. boxers: {
  44349. height: math.unit(16 + 2/12, "feet"),
  44350. weight: math.unit(2300, "lb"),
  44351. name: "Boxers",
  44352. image: {
  44353. source: "./media/characters/zolgar/boxers.svg",
  44354. extra: 1246/1004,
  44355. bottom: 124/1370
  44356. }
  44357. },
  44358. armored: {
  44359. height: math.unit(16 + 2/12, "feet"),
  44360. weight: math.unit(2300, "lb"),
  44361. name: "Armored",
  44362. image: {
  44363. source: "./media/characters/zolgar/armored.svg",
  44364. extra: 1246/1004,
  44365. bottom: 124/1370
  44366. }
  44367. },
  44368. goth: {
  44369. height: math.unit(16 + 2/12, "feet"),
  44370. weight: math.unit(2300, "lb"),
  44371. name: "Goth",
  44372. image: {
  44373. source: "./media/characters/zolgar/goth.svg",
  44374. extra: 1246/1004,
  44375. bottom: 124/1370
  44376. }
  44377. },
  44378. },
  44379. [
  44380. {
  44381. name: "Shrunken Down",
  44382. height: math.unit(9 + 2/12, "feet")
  44383. },
  44384. {
  44385. name: "Normal",
  44386. height: math.unit(16 + 2/12, "feet"),
  44387. default: true
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44393. {
  44394. front: {
  44395. height: math.unit(6, "feet"),
  44396. weight: math.unit(168, "lb"),
  44397. name: "Front",
  44398. image: {
  44399. source: "./media/characters/luca/front.svg",
  44400. extra: 841/667,
  44401. bottom: 102/943
  44402. }
  44403. },
  44404. },
  44405. [
  44406. {
  44407. name: "Normal",
  44408. height: math.unit(6, "feet"),
  44409. default: true
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44415. {
  44416. side: {
  44417. height: math.unit(7 + 3/12, "feet"),
  44418. weight: math.unit(312, "lb"),
  44419. name: "Side",
  44420. image: {
  44421. source: "./media/characters/zezo/side.svg",
  44422. extra: 1192/1067,
  44423. bottom: 63/1255
  44424. }
  44425. },
  44426. },
  44427. [
  44428. {
  44429. name: "Normal",
  44430. height: math.unit(7 + 3/12, "feet"),
  44431. default: true
  44432. },
  44433. ]
  44434. ))
  44435. characterMakers.push(() => makeCharacter(
  44436. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44437. {
  44438. front: {
  44439. height: math.unit(5 + 5/12, "feet"),
  44440. weight: math.unit(170, "lb"),
  44441. name: "Front",
  44442. image: {
  44443. source: "./media/characters/mayso/front.svg",
  44444. extra: 1215/1108,
  44445. bottom: 16/1231
  44446. }
  44447. },
  44448. },
  44449. [
  44450. {
  44451. name: "Normal",
  44452. height: math.unit(5 + 5/12, "feet"),
  44453. default: true
  44454. },
  44455. ]
  44456. ))
  44457. characterMakers.push(() => makeCharacter(
  44458. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44459. {
  44460. front: {
  44461. height: math.unit(4 + 3/12, "feet"),
  44462. weight: math.unit(80, "lb"),
  44463. name: "Front",
  44464. image: {
  44465. source: "./media/characters/hess/front.svg",
  44466. extra: 1200/1123,
  44467. bottom: 16/1216
  44468. }
  44469. },
  44470. },
  44471. [
  44472. {
  44473. name: "Normal",
  44474. height: math.unit(4 + 3/12, "feet"),
  44475. default: true
  44476. },
  44477. ]
  44478. ))
  44479. characterMakers.push(() => makeCharacter(
  44480. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44481. {
  44482. front: {
  44483. height: math.unit(1.9, "meters"),
  44484. name: "Front",
  44485. image: {
  44486. source: "./media/characters/ashgar/front.svg",
  44487. extra: 1177/1146,
  44488. bottom: 99/1276
  44489. }
  44490. },
  44491. back: {
  44492. height: math.unit(1.9, "meters"),
  44493. name: "Back",
  44494. image: {
  44495. source: "./media/characters/ashgar/back.svg",
  44496. extra: 1201/1183,
  44497. bottom: 53/1254
  44498. }
  44499. },
  44500. feral: {
  44501. height: math.unit(1.4, "meters"),
  44502. name: "Feral",
  44503. image: {
  44504. source: "./media/characters/ashgar/feral.svg",
  44505. extra: 370/345,
  44506. bottom: 45/415
  44507. }
  44508. },
  44509. },
  44510. [
  44511. {
  44512. name: "Normal",
  44513. height: math.unit(1.9, "meters"),
  44514. default: true
  44515. },
  44516. ]
  44517. ))
  44518. characterMakers.push(() => makeCharacter(
  44519. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44520. {
  44521. regular: {
  44522. height: math.unit(6, "feet"),
  44523. weight: math.unit(220, "lb"),
  44524. name: "Regular",
  44525. image: {
  44526. source: "./media/characters/phillip/regular.svg",
  44527. extra: 1373/1277,
  44528. bottom: 75/1448
  44529. }
  44530. },
  44531. dressed: {
  44532. height: math.unit(6, "feet"),
  44533. weight: math.unit(220, "lb"),
  44534. name: "Dressed",
  44535. image: {
  44536. source: "./media/characters/phillip/dressed.svg",
  44537. extra: 1373/1277,
  44538. bottom: 75/1448
  44539. }
  44540. },
  44541. paw: {
  44542. height: math.unit(1.44, "feet"),
  44543. name: "Paw",
  44544. image: {
  44545. source: "./media/characters/phillip/paw.svg"
  44546. }
  44547. },
  44548. },
  44549. [
  44550. {
  44551. name: "Normal",
  44552. height: math.unit(6, "feet"),
  44553. default: true
  44554. },
  44555. ]
  44556. ))
  44557. characterMakers.push(() => makeCharacter(
  44558. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44559. {
  44560. side: {
  44561. height: math.unit(42, "feet"),
  44562. name: "Side",
  44563. image: {
  44564. source: "./media/characters/uvula/side.svg",
  44565. extra: 683/586,
  44566. bottom: 60/743
  44567. }
  44568. },
  44569. front: {
  44570. height: math.unit(42, "feet"),
  44571. name: "Front",
  44572. image: {
  44573. source: "./media/characters/uvula/front.svg",
  44574. extra: 705/613,
  44575. bottom: 54/759
  44576. }
  44577. },
  44578. maw: {
  44579. height: math.unit(23.5, "feet"),
  44580. name: "Maw",
  44581. image: {
  44582. source: "./media/characters/uvula/maw.svg"
  44583. }
  44584. },
  44585. },
  44586. [
  44587. {
  44588. name: "Original Size",
  44589. height: math.unit(14, "inches")
  44590. },
  44591. {
  44592. name: "Human Size",
  44593. height: math.unit(6, "feet")
  44594. },
  44595. {
  44596. name: "Big",
  44597. height: math.unit(42, "feet"),
  44598. default: true
  44599. },
  44600. {
  44601. name: "Bigger",
  44602. height: math.unit(100, "feet")
  44603. },
  44604. ]
  44605. ))
  44606. characterMakers.push(() => makeCharacter(
  44607. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44608. {
  44609. front: {
  44610. height: math.unit(5 + 11/12, "feet"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/lannah/front.svg",
  44614. extra: 1208/1113,
  44615. bottom: 97/1305
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Normal",
  44622. height: math.unit(5 + 11/12, "feet"),
  44623. default: true
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44629. {
  44630. front: {
  44631. height: math.unit(6 + 3/12, "feet"),
  44632. weight: math.unit(3.5, "tons"),
  44633. name: "Front",
  44634. image: {
  44635. source: "./media/characters/emberflame/front.svg",
  44636. extra: 1198/672,
  44637. bottom: 82/1280
  44638. }
  44639. },
  44640. side: {
  44641. height: math.unit(6 + 3/12, "feet"),
  44642. weight: math.unit(3.5, "tons"),
  44643. name: "Side",
  44644. image: {
  44645. source: "./media/characters/emberflame/side.svg",
  44646. extra: 938/527,
  44647. bottom: 56/994
  44648. }
  44649. },
  44650. },
  44651. [
  44652. {
  44653. name: "Normal",
  44654. height: math.unit(6 + 3/12, "feet"),
  44655. default: true
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44661. {
  44662. side: {
  44663. height: math.unit(17.5, "feet"),
  44664. weight: math.unit(35, "tons"),
  44665. name: "Side",
  44666. image: {
  44667. source: "./media/characters/sophie-ambrose/side.svg",
  44668. extra: 1573/1242,
  44669. bottom: 71/1644
  44670. }
  44671. },
  44672. maw: {
  44673. height: math.unit(7.4, "feet"),
  44674. name: "Maw",
  44675. image: {
  44676. source: "./media/characters/sophie-ambrose/maw.svg"
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(17.5, "feet"),
  44684. default: true
  44685. },
  44686. ]
  44687. ))
  44688. characterMakers.push(() => makeCharacter(
  44689. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44690. {
  44691. front: {
  44692. height: math.unit(280, "feet"),
  44693. weight: math.unit(550, "tons"),
  44694. name: "Front",
  44695. image: {
  44696. source: "./media/characters/king-mugi/front.svg",
  44697. extra: 1102/947,
  44698. bottom: 104/1206
  44699. }
  44700. },
  44701. },
  44702. [
  44703. {
  44704. name: "King Mugi",
  44705. height: math.unit(280, "feet"),
  44706. default: true
  44707. },
  44708. ]
  44709. ))
  44710. characterMakers.push(() => makeCharacter(
  44711. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44712. {
  44713. front: {
  44714. height: math.unit(64, "meters"),
  44715. name: "Front",
  44716. image: {
  44717. source: "./media/characters/nova-fox/front.svg",
  44718. extra: 1310/1246,
  44719. bottom: 65/1375
  44720. }
  44721. },
  44722. },
  44723. [
  44724. {
  44725. name: "Macro",
  44726. height: math.unit(64, "meters"),
  44727. default: true
  44728. },
  44729. ]
  44730. ))
  44731. characterMakers.push(() => makeCharacter(
  44732. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44733. {
  44734. front: {
  44735. height: math.unit(6 + 3/12, "feet"),
  44736. weight: math.unit(170, "lb"),
  44737. name: "Front",
  44738. image: {
  44739. source: "./media/characters/sam-bat/front.svg",
  44740. extra: 1601/1411,
  44741. bottom: 125/1726
  44742. }
  44743. },
  44744. back: {
  44745. height: math.unit(6 + 3/12, "feet"),
  44746. weight: math.unit(170, "lb"),
  44747. name: "Back",
  44748. image: {
  44749. source: "./media/characters/sam-bat/back.svg",
  44750. extra: 1577/1405,
  44751. bottom: 58/1635
  44752. }
  44753. },
  44754. },
  44755. [
  44756. {
  44757. name: "Normal",
  44758. height: math.unit(6 + 3/12, "feet"),
  44759. default: true
  44760. },
  44761. ]
  44762. ))
  44763. characterMakers.push(() => makeCharacter(
  44764. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44765. {
  44766. front: {
  44767. height: math.unit(59, "feet"),
  44768. weight: math.unit(40000, "lb"),
  44769. name: "Front",
  44770. image: {
  44771. source: "./media/characters/inari/front.svg",
  44772. extra: 1884/1350,
  44773. bottom: 95/1979
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Gigantamax",
  44780. height: math.unit(59, "feet"),
  44781. default: true
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44787. {
  44788. front: {
  44789. height: math.unit(5 + 8/12, "feet"),
  44790. name: "Front",
  44791. image: {
  44792. source: "./media/characters/elizabeth/front.svg",
  44793. extra: 1395/1298,
  44794. bottom: 54/1449
  44795. }
  44796. },
  44797. mouth: {
  44798. height: math.unit(1.97, "feet"),
  44799. name: "Mouth",
  44800. image: {
  44801. source: "./media/characters/elizabeth/mouth.svg"
  44802. }
  44803. },
  44804. foot: {
  44805. height: math.unit(1.17, "feet"),
  44806. name: "Foot",
  44807. image: {
  44808. source: "./media/characters/elizabeth/foot.svg"
  44809. }
  44810. },
  44811. },
  44812. [
  44813. {
  44814. name: "Normal",
  44815. height: math.unit(5 + 8/12, "feet"),
  44816. default: true
  44817. },
  44818. {
  44819. name: "Minimacro",
  44820. height: math.unit(18, "feet")
  44821. },
  44822. {
  44823. name: "Macro",
  44824. height: math.unit(180, "feet")
  44825. },
  44826. ]
  44827. ))
  44828. characterMakers.push(() => makeCharacter(
  44829. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44830. {
  44831. front: {
  44832. height: math.unit(5 + 2/12, "feet"),
  44833. name: "Front",
  44834. image: {
  44835. source: "./media/characters/october-gossamer/front.svg",
  44836. extra: 505/454,
  44837. bottom: 7/512
  44838. }
  44839. },
  44840. back: {
  44841. height: math.unit(5 + 2/12, "feet"),
  44842. name: "Back",
  44843. image: {
  44844. source: "./media/characters/october-gossamer/back.svg",
  44845. extra: 501/454,
  44846. bottom: 11/512
  44847. }
  44848. },
  44849. },
  44850. [
  44851. {
  44852. name: "Normal",
  44853. height: math.unit(5 + 2/12, "feet"),
  44854. default: true
  44855. },
  44856. ]
  44857. ))
  44858. characterMakers.push(() => makeCharacter(
  44859. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44860. {
  44861. front: {
  44862. height: math.unit(5, "feet"),
  44863. name: "Front",
  44864. image: {
  44865. source: "./media/characters/epiglottis/front.svg",
  44866. extra: 923/849,
  44867. bottom: 17/940
  44868. }
  44869. },
  44870. },
  44871. [
  44872. {
  44873. name: "Original Size",
  44874. height: math.unit(10, "inches")
  44875. },
  44876. {
  44877. name: "Human Size",
  44878. height: math.unit(5, "feet"),
  44879. default: true
  44880. },
  44881. {
  44882. name: "Big",
  44883. height: math.unit(25, "feet")
  44884. },
  44885. {
  44886. name: "Bigger",
  44887. height: math.unit(50, "feet")
  44888. },
  44889. {
  44890. name: "oh lawd",
  44891. height: math.unit(75, "feet")
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44897. {
  44898. front: {
  44899. height: math.unit(2 + 4/12, "feet"),
  44900. weight: math.unit(60, "lb"),
  44901. name: "Front",
  44902. image: {
  44903. source: "./media/characters/lerm/front.svg",
  44904. extra: 796/790,
  44905. bottom: 79/875
  44906. }
  44907. },
  44908. },
  44909. [
  44910. {
  44911. name: "Normal",
  44912. height: math.unit(2 + 4/12, "feet"),
  44913. default: true
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(5.5, "feet"),
  44922. weight: math.unit(130, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/xena-nebadon/front.svg",
  44926. extra: 1828/1730,
  44927. bottom: 79/1907
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Tiny Puppy",
  44934. height: math.unit(3, "inches")
  44935. },
  44936. {
  44937. name: "Normal",
  44938. height: math.unit(5.5, "feet"),
  44939. default: true
  44940. },
  44941. {
  44942. name: "Lotta Lady",
  44943. height: math.unit(12, "feet")
  44944. },
  44945. {
  44946. name: "Pretty Big",
  44947. height: math.unit(100, "feet")
  44948. },
  44949. {
  44950. name: "Big",
  44951. height: math.unit(500, "feet")
  44952. },
  44953. {
  44954. name: "Skyscraper Toys",
  44955. height: math.unit(2500, "feet")
  44956. },
  44957. {
  44958. name: "Plane Catcher",
  44959. height: math.unit(8, "miles")
  44960. },
  44961. {
  44962. name: "Planet Toys",
  44963. height: math.unit(15, "earths")
  44964. },
  44965. {
  44966. name: "Stardust",
  44967. height: math.unit(0.25, "galaxies")
  44968. },
  44969. {
  44970. name: "Snacks",
  44971. height: math.unit(70, "universes")
  44972. },
  44973. ]
  44974. ))
  44975. characterMakers.push(() => makeCharacter(
  44976. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44977. {
  44978. front: {
  44979. height: math.unit(1.6, "meters"),
  44980. weight: math.unit(60, "kg"),
  44981. name: "Front",
  44982. image: {
  44983. source: "./media/characters/bounty/front.svg",
  44984. extra: 1426/1308,
  44985. bottom: 15/1441
  44986. }
  44987. },
  44988. back: {
  44989. height: math.unit(1.6, "meters"),
  44990. weight: math.unit(60, "kg"),
  44991. name: "Back",
  44992. image: {
  44993. source: "./media/characters/bounty/back.svg",
  44994. extra: 1417/1307,
  44995. bottom: 8/1425
  44996. }
  44997. },
  44998. },
  44999. [
  45000. {
  45001. name: "Normal",
  45002. height: math.unit(1.6, "meters"),
  45003. default: true
  45004. },
  45005. {
  45006. name: "Macro",
  45007. height: math.unit(300, "meters")
  45008. },
  45009. ]
  45010. ))
  45011. characterMakers.push(() => makeCharacter(
  45012. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45013. {
  45014. front: {
  45015. height: math.unit(2 + 8/12, "feet"),
  45016. weight: math.unit(15, "lb"),
  45017. name: "Front",
  45018. image: {
  45019. source: "./media/characters/mochi/front.svg",
  45020. extra: 1022/852,
  45021. bottom: 435/1457
  45022. }
  45023. },
  45024. back: {
  45025. height: math.unit(2 + 8/12, "feet"),
  45026. weight: math.unit(15, "lb"),
  45027. name: "Back",
  45028. image: {
  45029. source: "./media/characters/mochi/back.svg",
  45030. extra: 1335/1119,
  45031. bottom: 39/1374
  45032. }
  45033. },
  45034. bird: {
  45035. height: math.unit(2 + 8/12, "feet"),
  45036. weight: math.unit(15, "lb"),
  45037. name: "Bird",
  45038. image: {
  45039. source: "./media/characters/mochi/bird.svg",
  45040. extra: 1251/1113,
  45041. bottom: 178/1429
  45042. }
  45043. },
  45044. kaiju: {
  45045. height: math.unit(154, "feet"),
  45046. weight: math.unit(1e7, "lb"),
  45047. name: "Kaiju",
  45048. image: {
  45049. source: "./media/characters/mochi/kaiju.svg",
  45050. extra: 460/324,
  45051. bottom: 40/500
  45052. }
  45053. },
  45054. head: {
  45055. height: math.unit(1.21, "feet"),
  45056. name: "Head",
  45057. image: {
  45058. source: "./media/characters/mochi/head.svg"
  45059. }
  45060. },
  45061. alternateTail: {
  45062. height: math.unit(2 + 8/12, "feet"),
  45063. weight: math.unit(45, "lb"),
  45064. name: "Alternate Tail",
  45065. image: {
  45066. source: "./media/characters/mochi/alternate-tail.svg",
  45067. extra: 139/76,
  45068. bottom: 45/184
  45069. }
  45070. },
  45071. },
  45072. [
  45073. {
  45074. name: "Micro",
  45075. height: math.unit(2, "inches")
  45076. },
  45077. {
  45078. name: "Normal",
  45079. height: math.unit(2 + 8/12, "feet"),
  45080. default: true
  45081. },
  45082. {
  45083. name: "Macro",
  45084. height: math.unit(106, "feet")
  45085. },
  45086. ]
  45087. ))
  45088. characterMakers.push(() => makeCharacter(
  45089. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45090. {
  45091. front: {
  45092. height: math.unit(5.67, "feet"),
  45093. weight: math.unit(135, "lb"),
  45094. name: "Front",
  45095. image: {
  45096. source: "./media/characters/sarel/front.svg",
  45097. extra: 865/788,
  45098. bottom: 97/962
  45099. }
  45100. },
  45101. back: {
  45102. height: math.unit(5.67, "feet"),
  45103. weight: math.unit(135, "lb"),
  45104. name: "Back",
  45105. image: {
  45106. source: "./media/characters/sarel/back.svg",
  45107. extra: 857/777,
  45108. bottom: 32/889
  45109. }
  45110. },
  45111. chozoan: {
  45112. height: math.unit(5.67, "feet"),
  45113. weight: math.unit(135, "lb"),
  45114. name: "Chozoan",
  45115. image: {
  45116. source: "./media/characters/sarel/chozoan.svg",
  45117. extra: 865/788,
  45118. bottom: 97/962
  45119. }
  45120. },
  45121. current: {
  45122. height: math.unit(5.67, "feet"),
  45123. weight: math.unit(135, "lb"),
  45124. name: "Current",
  45125. image: {
  45126. source: "./media/characters/sarel/current.svg",
  45127. extra: 865/788,
  45128. bottom: 97/962
  45129. }
  45130. },
  45131. head: {
  45132. height: math.unit(1.77, "feet"),
  45133. name: "Head",
  45134. image: {
  45135. source: "./media/characters/sarel/head.svg"
  45136. }
  45137. },
  45138. claws: {
  45139. height: math.unit(1.8, "feet"),
  45140. name: "Claws",
  45141. image: {
  45142. source: "./media/characters/sarel/claws.svg"
  45143. }
  45144. },
  45145. clawsAlt: {
  45146. height: math.unit(1.8, "feet"),
  45147. name: "Claws-alt",
  45148. image: {
  45149. source: "./media/characters/sarel/claws-alt.svg"
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(5.67, "feet"),
  45157. default: true
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(5500, "feet"),
  45166. name: "Front",
  45167. image: {
  45168. source: "./media/characters/alyonia/front.svg",
  45169. extra: 1200/1135,
  45170. bottom: 29/1229
  45171. }
  45172. },
  45173. back: {
  45174. height: math.unit(5500, "feet"),
  45175. name: "Back",
  45176. image: {
  45177. source: "./media/characters/alyonia/back.svg",
  45178. extra: 1205/1138,
  45179. bottom: 10/1215
  45180. }
  45181. },
  45182. },
  45183. [
  45184. {
  45185. name: "Small",
  45186. height: math.unit(10, "feet")
  45187. },
  45188. {
  45189. name: "Macro",
  45190. height: math.unit(500, "feet")
  45191. },
  45192. {
  45193. name: "Mega Macro",
  45194. height: math.unit(5500, "feet"),
  45195. default: true
  45196. },
  45197. {
  45198. name: "Mega Macro+",
  45199. height: math.unit(500000, "feet")
  45200. },
  45201. {
  45202. name: "Giga Macro",
  45203. height: math.unit(3000, "miles")
  45204. },
  45205. {
  45206. name: "Tera Macro",
  45207. height: math.unit(2.8e6, "miles")
  45208. },
  45209. {
  45210. name: "Galactic",
  45211. height: math.unit(120000, "lightyears")
  45212. },
  45213. ]
  45214. ))
  45215. characterMakers.push(() => makeCharacter(
  45216. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45217. {
  45218. werewolf: {
  45219. height: math.unit(8, "feet"),
  45220. weight: math.unit(425, "lb"),
  45221. name: "Werewolf",
  45222. image: {
  45223. source: "./media/characters/autumn/werewolf.svg",
  45224. extra: 2154/2031,
  45225. bottom: 160/2314
  45226. }
  45227. },
  45228. human: {
  45229. height: math.unit(5 + 8/12, "feet"),
  45230. weight: math.unit(150, "lb"),
  45231. name: "Human",
  45232. image: {
  45233. source: "./media/characters/autumn/human.svg",
  45234. extra: 1200/1149,
  45235. bottom: 30/1230
  45236. }
  45237. },
  45238. },
  45239. [
  45240. {
  45241. name: "Normal",
  45242. height: math.unit(8, "feet"),
  45243. default: true
  45244. },
  45245. ]
  45246. ))
  45247. characterMakers.push(() => makeCharacter(
  45248. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45249. {
  45250. front: {
  45251. height: math.unit(8 + 5/12, "feet"),
  45252. weight: math.unit(825, "lb"),
  45253. name: "Front",
  45254. image: {
  45255. source: "./media/characters/cobalt-charizard/front.svg",
  45256. extra: 1268/1155,
  45257. bottom: 122/1390
  45258. }
  45259. },
  45260. side: {
  45261. height: math.unit(8 + 5/12, "feet"),
  45262. weight: math.unit(825, "lb"),
  45263. name: "Side",
  45264. image: {
  45265. source: "./media/characters/cobalt-charizard/side.svg",
  45266. extra: 1348/1257,
  45267. bottom: 58/1406
  45268. }
  45269. },
  45270. gMax: {
  45271. height: math.unit(134 + 11/12, "feet"),
  45272. name: "G-Max",
  45273. image: {
  45274. source: "./media/characters/cobalt-charizard/g-max.svg",
  45275. extra: 1835/1541,
  45276. bottom: 151/1986
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Normal",
  45283. height: math.unit(8 + 5/12, "feet"),
  45284. default: true
  45285. },
  45286. ]
  45287. ))
  45288. characterMakers.push(() => makeCharacter(
  45289. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45290. {
  45291. front: {
  45292. height: math.unit(6 + 3/12, "feet"),
  45293. weight: math.unit(210, "lb"),
  45294. name: "Front",
  45295. image: {
  45296. source: "./media/characters/stella/front.svg",
  45297. extra: 3549/3335,
  45298. bottom: 51/3600
  45299. }
  45300. },
  45301. },
  45302. [
  45303. {
  45304. name: "Normal",
  45305. height: math.unit(6 + 3/12, "feet"),
  45306. default: true
  45307. },
  45308. ]
  45309. ))
  45310. characterMakers.push(() => makeCharacter(
  45311. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45312. {
  45313. front: {
  45314. height: math.unit(5, "feet"),
  45315. weight: math.unit(90, "lb"),
  45316. name: "Front",
  45317. image: {
  45318. source: "./media/characters/riley-bishop/front.svg",
  45319. extra: 1450/1428,
  45320. bottom: 152/1602
  45321. }
  45322. },
  45323. },
  45324. [
  45325. {
  45326. name: "Normal",
  45327. height: math.unit(5, "feet"),
  45328. default: true
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45334. {
  45335. side: {
  45336. height: math.unit(8 + 2/12, "feet"),
  45337. weight: math.unit(500, "kg"),
  45338. name: "Side",
  45339. image: {
  45340. source: "./media/characters/theo-arcanine/side.svg",
  45341. extra: 1342/1074,
  45342. bottom: 111/1453
  45343. }
  45344. },
  45345. },
  45346. [
  45347. {
  45348. name: "Normal",
  45349. height: math.unit(8 + 2/12, "feet"),
  45350. default: true
  45351. },
  45352. ]
  45353. ))
  45354. characterMakers.push(() => makeCharacter(
  45355. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45356. {
  45357. front: {
  45358. height: math.unit(4, "feet"),
  45359. name: "Front",
  45360. image: {
  45361. source: "./media/characters/kali/front.svg",
  45362. extra: 1921/1357,
  45363. bottom: 70/1991
  45364. }
  45365. },
  45366. },
  45367. [
  45368. {
  45369. name: "Normal",
  45370. height: math.unit(4, "feet"),
  45371. default: true
  45372. },
  45373. {
  45374. name: "Macro",
  45375. height: math.unit(32, "meters")
  45376. },
  45377. {
  45378. name: "Macro+",
  45379. height: math.unit(150, "meters")
  45380. },
  45381. {
  45382. name: "Megamacro",
  45383. height: math.unit(7500, "meters")
  45384. },
  45385. {
  45386. name: "Megamacro+",
  45387. height: math.unit(80, "kilometers")
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45393. {
  45394. side: {
  45395. height: math.unit(5 + 11/12, "feet"),
  45396. weight: math.unit(236, "lb"),
  45397. name: "Side",
  45398. image: {
  45399. source: "./media/characters/gapp/side.svg",
  45400. extra: 775/340,
  45401. bottom: 58/833
  45402. }
  45403. },
  45404. mouth: {
  45405. height: math.unit(2.98, "feet"),
  45406. name: "Mouth",
  45407. image: {
  45408. source: "./media/characters/gapp/mouth.svg"
  45409. }
  45410. },
  45411. },
  45412. [
  45413. {
  45414. name: "Normal",
  45415. height: math.unit(5 + 1/12, "feet"),
  45416. default: true
  45417. },
  45418. ]
  45419. ))
  45420. characterMakers.push(() => makeCharacter(
  45421. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45422. {
  45423. front: {
  45424. height: math.unit(6, "feet"),
  45425. name: "Front",
  45426. image: {
  45427. source: "./media/characters/persephone/front.svg",
  45428. extra: 1895/1717,
  45429. bottom: 96/1991
  45430. }
  45431. },
  45432. back: {
  45433. height: math.unit(6, "feet"),
  45434. name: "Back",
  45435. image: {
  45436. source: "./media/characters/persephone/back.svg",
  45437. extra: 1868/1679,
  45438. bottom: 26/1894
  45439. }
  45440. },
  45441. casual: {
  45442. height: math.unit(6, "feet"),
  45443. name: "Casual",
  45444. image: {
  45445. source: "./media/characters/persephone/casual.svg",
  45446. extra: 1713/1541,
  45447. bottom: 76/1789
  45448. }
  45449. },
  45450. },
  45451. [
  45452. {
  45453. name: "Human Size",
  45454. height: math.unit(6, "feet")
  45455. },
  45456. {
  45457. name: "Big Steppy",
  45458. height: math.unit(600, "meters"),
  45459. default: true
  45460. },
  45461. {
  45462. name: "Galaxy Brain",
  45463. height: math.unit(1, "zettameter")
  45464. },
  45465. ]
  45466. ))
  45467. characterMakers.push(() => makeCharacter(
  45468. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45469. {
  45470. front: {
  45471. height: math.unit(1.85, "meters"),
  45472. name: "Front",
  45473. image: {
  45474. source: "./media/characters/riley-foxthing/front.svg",
  45475. extra: 1495/1354,
  45476. bottom: 122/1617
  45477. }
  45478. },
  45479. frontAlt: {
  45480. height: math.unit(1.85, "meters"),
  45481. name: "Front (Alt)",
  45482. image: {
  45483. source: "./media/characters/riley-foxthing/front-alt.svg",
  45484. extra: 1572/1389,
  45485. bottom: 116/1688
  45486. }
  45487. },
  45488. },
  45489. [
  45490. {
  45491. name: "Normal Sized",
  45492. height: math.unit(1.85, "meters"),
  45493. default: true
  45494. },
  45495. {
  45496. name: "Quite Sizable",
  45497. height: math.unit(5, "meters")
  45498. },
  45499. {
  45500. name: "Rather Large",
  45501. height: math.unit(20, "meters")
  45502. },
  45503. {
  45504. name: "Macro",
  45505. height: math.unit(450, "meters")
  45506. },
  45507. {
  45508. name: "Giga",
  45509. height: math.unit(5, "km")
  45510. },
  45511. ]
  45512. ))
  45513. characterMakers.push(() => makeCharacter(
  45514. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45515. {
  45516. front: {
  45517. height: math.unit(6, "feet"),
  45518. weight: math.unit(200, "lb"),
  45519. name: "Front",
  45520. image: {
  45521. source: "./media/characters/blizzard/front.svg",
  45522. extra: 1136/990,
  45523. bottom: 136/1272
  45524. }
  45525. },
  45526. back: {
  45527. height: math.unit(6, "feet"),
  45528. weight: math.unit(200, "lb"),
  45529. name: "Back",
  45530. image: {
  45531. source: "./media/characters/blizzard/back.svg",
  45532. extra: 1175/1034,
  45533. bottom: 97/1272
  45534. }
  45535. },
  45536. sitting: {
  45537. height: math.unit(3.725, "feet"),
  45538. weight: math.unit(200, "lb"),
  45539. name: "Sitting",
  45540. image: {
  45541. source: "./media/characters/blizzard/sitting.svg",
  45542. extra: 581/485,
  45543. bottom: 90/671
  45544. }
  45545. },
  45546. frontWizard: {
  45547. height: math.unit(7.9, "feet"),
  45548. weight: math.unit(200, "lb"),
  45549. name: "Front (Wizard)",
  45550. image: {
  45551. source: "./media/characters/blizzard/front-wizard.svg"
  45552. }
  45553. },
  45554. backWizard: {
  45555. height: math.unit(7.9, "feet"),
  45556. weight: math.unit(200, "lb"),
  45557. name: "Back (Wizard)",
  45558. image: {
  45559. source: "./media/characters/blizzard/back-wizard.svg"
  45560. }
  45561. },
  45562. frontNsfw: {
  45563. height: math.unit(6, "feet"),
  45564. weight: math.unit(200, "lb"),
  45565. name: "Front (NSFW)",
  45566. image: {
  45567. source: "./media/characters/blizzard/front-nsfw.svg",
  45568. extra: 1136/990,
  45569. bottom: 136/1272
  45570. }
  45571. },
  45572. backNsfw: {
  45573. height: math.unit(6, "feet"),
  45574. weight: math.unit(200, "lb"),
  45575. name: "Back (NSFW)",
  45576. image: {
  45577. source: "./media/characters/blizzard/back-nsfw.svg",
  45578. extra: 1175/1034,
  45579. bottom: 97/1272
  45580. }
  45581. },
  45582. sittingNsfw: {
  45583. height: math.unit(3.725, "feet"),
  45584. weight: math.unit(200, "lb"),
  45585. name: "Sitting (NSFW)",
  45586. image: {
  45587. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45588. extra: 581/485,
  45589. bottom: 90/671
  45590. }
  45591. },
  45592. wizardFrontNsfw: {
  45593. height: math.unit(7.9, "feet"),
  45594. weight: math.unit(200, "lb"),
  45595. name: "Wizard (Front, NSFW)",
  45596. image: {
  45597. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45598. }
  45599. },
  45600. },
  45601. [
  45602. {
  45603. name: "Normal",
  45604. height: math.unit(6, "feet"),
  45605. default: true
  45606. },
  45607. ]
  45608. ))
  45609. characterMakers.push(() => makeCharacter(
  45610. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45611. {
  45612. front: {
  45613. height: math.unit(5 + 2/12, "feet"),
  45614. name: "Front",
  45615. image: {
  45616. source: "./media/characters/lumi/front.svg",
  45617. extra: 1328/1268,
  45618. bottom: 103/1431
  45619. }
  45620. },
  45621. back: {
  45622. height: math.unit(5 + 2/12, "feet"),
  45623. name: "Back",
  45624. image: {
  45625. source: "./media/characters/lumi/back.svg",
  45626. extra: 1381/1327,
  45627. bottom: 43/1424
  45628. }
  45629. },
  45630. },
  45631. [
  45632. {
  45633. name: "Normal",
  45634. height: math.unit(5 + 2/12, "feet"),
  45635. default: true
  45636. },
  45637. ]
  45638. ))
  45639. characterMakers.push(() => makeCharacter(
  45640. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45641. {
  45642. front: {
  45643. height: math.unit(5 + 9/12, "feet"),
  45644. name: "Front",
  45645. image: {
  45646. source: "./media/characters/aliya-cotton/front.svg",
  45647. extra: 577/564,
  45648. bottom: 29/606
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Normal",
  45655. height: math.unit(5 + 9/12, "feet"),
  45656. default: true
  45657. },
  45658. ]
  45659. ))
  45660. characterMakers.push(() => makeCharacter(
  45661. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45662. {
  45663. front: {
  45664. height: math.unit(2.7, "meters"),
  45665. weight: math.unit(25000, "lb"),
  45666. name: "Front",
  45667. image: {
  45668. source: "./media/characters/noah-luxray/front.svg",
  45669. extra: 1644/825,
  45670. bottom: 339/1983
  45671. }
  45672. },
  45673. side: {
  45674. height: math.unit(2.97, "meters"),
  45675. weight: math.unit(25000, "lb"),
  45676. name: "Side",
  45677. image: {
  45678. source: "./media/characters/noah-luxray/side.svg",
  45679. extra: 1319/650,
  45680. bottom: 163/1482
  45681. }
  45682. },
  45683. dick: {
  45684. height: math.unit(7.4, "feet"),
  45685. weight: math.unit(2500, "lb"),
  45686. name: "Dick",
  45687. image: {
  45688. source: "./media/characters/noah-luxray/dick.svg"
  45689. }
  45690. },
  45691. dickAlt: {
  45692. height: math.unit(10.83, "feet"),
  45693. weight: math.unit(2500, "lb"),
  45694. name: "Dick-alt",
  45695. image: {
  45696. source: "./media/characters/noah-luxray/dick-alt.svg"
  45697. }
  45698. },
  45699. },
  45700. [
  45701. {
  45702. name: "BIG",
  45703. height: math.unit(2.7, "meters"),
  45704. default: true
  45705. },
  45706. ]
  45707. ))
  45708. characterMakers.push(() => makeCharacter(
  45709. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45710. {
  45711. standing: {
  45712. height: math.unit(183, "cm"),
  45713. weight: math.unit(68, "kg"),
  45714. name: "Standing",
  45715. image: {
  45716. source: "./media/characters/arion/standing.svg",
  45717. extra: 1869/1807,
  45718. bottom: 93/1962
  45719. }
  45720. },
  45721. reclining: {
  45722. height: math.unit(70.5, "cm"),
  45723. weight: math.unit(68, "lb"),
  45724. name: "Reclining",
  45725. image: {
  45726. source: "./media/characters/arion/reclining.svg",
  45727. extra: 937/870,
  45728. bottom: 63/1000
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Colossus Size, Low",
  45735. height: math.unit(33, "meters"),
  45736. default: true
  45737. },
  45738. {
  45739. name: "Colossus Size, Mid",
  45740. height: math.unit(52, "meters")
  45741. },
  45742. {
  45743. name: "Colossus Size, High",
  45744. height: math.unit(60, "meters")
  45745. },
  45746. {
  45747. name: "Titan Size, Low",
  45748. height: math.unit(91, "meters"),
  45749. },
  45750. {
  45751. name: "Titan Size, Mid",
  45752. height: math.unit(122, "meters")
  45753. },
  45754. {
  45755. name: "Titan Size, High",
  45756. height: math.unit(162, "meters")
  45757. },
  45758. ]
  45759. ))
  45760. characterMakers.push(() => makeCharacter(
  45761. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45762. {
  45763. front: {
  45764. height: math.unit(53, "meters"),
  45765. name: "Front",
  45766. image: {
  45767. source: "./media/characters/stellar-marbey/front.svg",
  45768. extra: 1913/1805,
  45769. bottom: 92/2005
  45770. }
  45771. },
  45772. back: {
  45773. height: math.unit(53, "meters"),
  45774. name: "Back",
  45775. image: {
  45776. source: "./media/characters/stellar-marbey/back.svg",
  45777. extra: 1960/1851,
  45778. bottom: 28/1988
  45779. }
  45780. },
  45781. mouth: {
  45782. height: math.unit(3.5, "meters"),
  45783. name: "Mouth",
  45784. image: {
  45785. source: "./media/characters/stellar-marbey/mouth.svg"
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Macro",
  45792. height: math.unit(53, "meters"),
  45793. default: true
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(8 + 1/12, "feet"),
  45802. weight: math.unit(233, "lb"),
  45803. name: "Front",
  45804. image: {
  45805. source: "./media/characters/matsu/front.svg",
  45806. extra: 832/772,
  45807. bottom: 40/872
  45808. }
  45809. },
  45810. back: {
  45811. height: math.unit(8 + 1/12, "feet"),
  45812. weight: math.unit(233, "lb"),
  45813. name: "Back",
  45814. image: {
  45815. source: "./media/characters/matsu/back.svg",
  45816. extra: 839/780,
  45817. bottom: 47/886
  45818. }
  45819. },
  45820. },
  45821. [
  45822. {
  45823. name: "Normal",
  45824. height: math.unit(8 + 1/12, "feet"),
  45825. default: true
  45826. },
  45827. ]
  45828. ))
  45829. characterMakers.push(() => makeCharacter(
  45830. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45831. {
  45832. front: {
  45833. height: math.unit(4, "feet"),
  45834. weight: math.unit(148, "lb"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/thiz/front.svg",
  45838. extra: 1913/1748,
  45839. bottom: 62/1975
  45840. }
  45841. },
  45842. },
  45843. [
  45844. {
  45845. name: "Normal",
  45846. height: math.unit(4, "feet"),
  45847. default: true
  45848. },
  45849. ]
  45850. ))
  45851. characterMakers.push(() => makeCharacter(
  45852. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45853. {
  45854. front: {
  45855. height: math.unit(7 + 6/12, "feet"),
  45856. weight: math.unit(267, "lb"),
  45857. name: "Front",
  45858. image: {
  45859. source: "./media/characters/marcel/front.svg",
  45860. extra: 1221/1096,
  45861. bottom: 76/1297
  45862. }
  45863. },
  45864. },
  45865. [
  45866. {
  45867. name: "Normal",
  45868. height: math.unit(7 + 6/12, "feet"),
  45869. default: true
  45870. },
  45871. ]
  45872. ))
  45873. characterMakers.push(() => makeCharacter(
  45874. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45875. {
  45876. side: {
  45877. height: math.unit(42, "meters"),
  45878. name: "Side",
  45879. image: {
  45880. source: "./media/characters/flake/side.svg",
  45881. extra: 1525/1306,
  45882. bottom: 209/1734
  45883. }
  45884. },
  45885. },
  45886. [
  45887. {
  45888. name: "Normal",
  45889. height: math.unit(42, "meters"),
  45890. default: true
  45891. },
  45892. ]
  45893. ))
  45894. characterMakers.push(() => makeCharacter(
  45895. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45896. {
  45897. dressed: {
  45898. height: math.unit(6 + 4/12, "feet"),
  45899. weight: math.unit(520, "lb"),
  45900. name: "Dressed",
  45901. image: {
  45902. source: "./media/characters/someonne/dressed.svg",
  45903. extra: 1020/1010,
  45904. bottom: 178/1198
  45905. }
  45906. },
  45907. undressed: {
  45908. height: math.unit(6 + 4/12, "feet"),
  45909. weight: math.unit(520, "lb"),
  45910. name: "Undressed",
  45911. image: {
  45912. source: "./media/characters/someonne/undressed.svg",
  45913. extra: 1019/1014,
  45914. bottom: 169/1188
  45915. }
  45916. },
  45917. },
  45918. [
  45919. {
  45920. name: "Normal",
  45921. height: math.unit(6 + 4/12, "feet"),
  45922. default: true
  45923. },
  45924. ]
  45925. ))
  45926. characterMakers.push(() => makeCharacter(
  45927. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45928. {
  45929. front: {
  45930. height: math.unit(3, "feet"),
  45931. weight: math.unit(30, "lb"),
  45932. name: "Front",
  45933. image: {
  45934. source: "./media/characters/till/front.svg",
  45935. extra: 892/823,
  45936. bottom: 55/947
  45937. }
  45938. },
  45939. },
  45940. [
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(3, "feet"),
  45944. default: true
  45945. },
  45946. ]
  45947. ))
  45948. characterMakers.push(() => makeCharacter(
  45949. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45950. {
  45951. front: {
  45952. height: math.unit(9 + 8/12, "feet"),
  45953. weight: math.unit(800, "lb"),
  45954. name: "Front",
  45955. image: {
  45956. source: "./media/characters/sydney-heki/front.svg",
  45957. extra: 1360/1300,
  45958. bottom: 22/1382
  45959. }
  45960. },
  45961. back: {
  45962. height: math.unit(9 + 8/12, "feet"),
  45963. weight: math.unit(800, "lb"),
  45964. name: "Back",
  45965. image: {
  45966. source: "./media/characters/sydney-heki/back.svg",
  45967. extra: 1356/1293,
  45968. bottom: 12/1368
  45969. }
  45970. },
  45971. frontDressed: {
  45972. height: math.unit(9 + 8/12, "feet"),
  45973. weight: math.unit(800, "lb"),
  45974. name: "Front-dressed",
  45975. image: {
  45976. source: "./media/characters/sydney-heki/front-dressed.svg",
  45977. extra: 1360/1300,
  45978. bottom: 22/1382
  45979. }
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Normal",
  45985. height: math.unit(9 + 8/12, "feet"),
  45986. default: true
  45987. },
  45988. {
  45989. name: "Macro",
  45990. height: math.unit(500, "feet")
  45991. },
  45992. {
  45993. name: "Megamacro",
  45994. height: math.unit(3.6, "miles")
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46000. {
  46001. front: {
  46002. height: math.unit(200, "cm"),
  46003. weight: math.unit(250, "lb"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/fowler-karlsson/front.svg",
  46007. extra: 897/845,
  46008. bottom: 123/1020
  46009. }
  46010. },
  46011. back: {
  46012. height: math.unit(200, "cm"),
  46013. weight: math.unit(250, "lb"),
  46014. name: "Back",
  46015. image: {
  46016. source: "./media/characters/fowler-karlsson/back.svg",
  46017. extra: 999/944,
  46018. bottom: 26/1025
  46019. }
  46020. },
  46021. dick: {
  46022. height: math.unit(1.92, "feet"),
  46023. weight: math.unit(150, "lb"),
  46024. name: "Dick",
  46025. image: {
  46026. source: "./media/characters/fowler-karlsson/dick.svg"
  46027. }
  46028. },
  46029. },
  46030. [
  46031. {
  46032. name: "Normal",
  46033. height: math.unit(200, "cm"),
  46034. default: true
  46035. },
  46036. {
  46037. name: "Smaller Macro",
  46038. height: math.unit(90, "m")
  46039. },
  46040. {
  46041. name: "Macro",
  46042. height: math.unit(150, "m")
  46043. },
  46044. {
  46045. name: "Bigger Macro",
  46046. height: math.unit(300, "m")
  46047. },
  46048. ]
  46049. ))
  46050. characterMakers.push(() => makeCharacter(
  46051. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46052. {
  46053. side: {
  46054. height: math.unit(8 + 2/12, "feet"),
  46055. weight: math.unit(1, "tonne"),
  46056. name: "Side",
  46057. image: {
  46058. source: "./media/characters/rylide/side.svg",
  46059. extra: 1318/1034,
  46060. bottom: 106/1424
  46061. }
  46062. },
  46063. sitting: {
  46064. height: math.unit(303, "cm"),
  46065. weight: math.unit(1, "tonne"),
  46066. name: "Sitting",
  46067. image: {
  46068. source: "./media/characters/rylide/sitting.svg",
  46069. extra: 1303/1103,
  46070. bottom: 36/1339
  46071. }
  46072. },
  46073. },
  46074. [
  46075. {
  46076. name: "Normal",
  46077. height: math.unit(8 + 2/12, "feet"),
  46078. default: true
  46079. },
  46080. ]
  46081. ))
  46082. characterMakers.push(() => makeCharacter(
  46083. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46084. {
  46085. front: {
  46086. height: math.unit(5 + 10/12, "feet"),
  46087. weight: math.unit(160, "lb"),
  46088. name: "Front",
  46089. image: {
  46090. source: "./media/characters/pudask/front.svg",
  46091. extra: 1616/1590,
  46092. bottom: 161/1777
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Ferret Height",
  46099. height: math.unit(2 + 5/12, "feet")
  46100. },
  46101. {
  46102. name: "Canon Height",
  46103. height: math.unit(5 + 10/12, "feet"),
  46104. default: true
  46105. },
  46106. ]
  46107. ))
  46108. characterMakers.push(() => makeCharacter(
  46109. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46110. {
  46111. front: {
  46112. height: math.unit(3 + 6/12, "feet"),
  46113. weight: math.unit(60, "lb"),
  46114. name: "Front",
  46115. image: {
  46116. source: "./media/characters/ramita/front.svg",
  46117. extra: 1402/1232,
  46118. bottom: 62/1464
  46119. }
  46120. },
  46121. dressed: {
  46122. height: math.unit(3 + 6/12, "feet"),
  46123. weight: math.unit(60, "lb"),
  46124. name: "Dressed",
  46125. image: {
  46126. source: "./media/characters/ramita/dressed.svg",
  46127. extra: 1534/1249,
  46128. bottom: 50/1584
  46129. }
  46130. },
  46131. },
  46132. [
  46133. {
  46134. name: "Normal",
  46135. height: math.unit(3 + 6/12, "feet"),
  46136. default: true
  46137. },
  46138. ]
  46139. ))
  46140. characterMakers.push(() => makeCharacter(
  46141. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46142. {
  46143. front: {
  46144. height: math.unit(8, "feet"),
  46145. name: "Front",
  46146. image: {
  46147. source: "./media/characters/ark/front.svg",
  46148. extra: 772/693,
  46149. bottom: 45/817
  46150. }
  46151. },
  46152. },
  46153. [
  46154. {
  46155. name: "Normal",
  46156. height: math.unit(8, "feet"),
  46157. default: true
  46158. },
  46159. ]
  46160. ))
  46161. characterMakers.push(() => makeCharacter(
  46162. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46163. {
  46164. front: {
  46165. height: math.unit(6, "feet"),
  46166. weight: math.unit(250, "lb"),
  46167. volume: math.unit(5/8, "gallons"),
  46168. name: "Front",
  46169. image: {
  46170. source: "./media/characters/ludwig-horn/front.svg",
  46171. extra: 1782/1635,
  46172. bottom: 96/1878
  46173. }
  46174. },
  46175. back: {
  46176. height: math.unit(6, "feet"),
  46177. weight: math.unit(250, "lb"),
  46178. volume: math.unit(5/8, "gallons"),
  46179. name: "Back",
  46180. image: {
  46181. source: "./media/characters/ludwig-horn/back.svg",
  46182. extra: 1874/1729,
  46183. bottom: 27/1901
  46184. }
  46185. },
  46186. dick: {
  46187. height: math.unit(1.05, "feet"),
  46188. weight: math.unit(15, "lb"),
  46189. volume: math.unit(5/8, "gallons"),
  46190. name: "Dick",
  46191. image: {
  46192. source: "./media/characters/ludwig-horn/dick.svg"
  46193. }
  46194. },
  46195. },
  46196. [
  46197. {
  46198. name: "Small",
  46199. height: math.unit(6, "feet")
  46200. },
  46201. {
  46202. name: "Typical",
  46203. height: math.unit(12, "feet"),
  46204. default: true
  46205. },
  46206. {
  46207. name: "Building",
  46208. height: math.unit(80, "feet")
  46209. },
  46210. {
  46211. name: "Town",
  46212. height: math.unit(800, "feet")
  46213. },
  46214. {
  46215. name: "Kingdom",
  46216. height: math.unit(80000, "feet")
  46217. },
  46218. {
  46219. name: "Planet",
  46220. height: math.unit(8000000, "feet")
  46221. },
  46222. {
  46223. name: "Universe",
  46224. height: math.unit(8000000000, "feet")
  46225. },
  46226. {
  46227. name: "Transcended",
  46228. height: math.unit(8e27, "feet")
  46229. },
  46230. ]
  46231. ))
  46232. characterMakers.push(() => makeCharacter(
  46233. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46234. {
  46235. front: {
  46236. height: math.unit(5, "feet"),
  46237. weight: math.unit(50, "kg"),
  46238. name: "Front",
  46239. image: {
  46240. source: "./media/characters/biot-avery/front.svg",
  46241. extra: 1295/1232,
  46242. bottom: 86/1381
  46243. }
  46244. },
  46245. },
  46246. [
  46247. {
  46248. name: "Normal",
  46249. height: math.unit(5, "feet"),
  46250. default: true
  46251. },
  46252. ]
  46253. ))
  46254. characterMakers.push(() => makeCharacter(
  46255. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46256. {
  46257. front: {
  46258. height: math.unit(6, "feet"),
  46259. name: "Front",
  46260. image: {
  46261. source: "./media/characters/kitsune-kiro/front.svg",
  46262. extra: 1270/1158,
  46263. bottom: 42/1312
  46264. }
  46265. },
  46266. frontAlt: {
  46267. height: math.unit(6, "feet"),
  46268. name: "Front-alt",
  46269. image: {
  46270. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46271. extra: 1130/1081,
  46272. bottom: 36/1166
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Smol",
  46279. height: math.unit(3, "feet")
  46280. },
  46281. {
  46282. name: "Normal",
  46283. height: math.unit(6, "feet"),
  46284. default: true
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46290. {
  46291. front: {
  46292. height: math.unit(6, "feet"),
  46293. weight: math.unit(125, "lb"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/jack-thatcher/front.svg",
  46297. extra: 1474/1370,
  46298. bottom: 26/1500
  46299. }
  46300. },
  46301. back: {
  46302. height: math.unit(6, "feet"),
  46303. weight: math.unit(125, "lb"),
  46304. name: "Back",
  46305. image: {
  46306. source: "./media/characters/jack-thatcher/back.svg",
  46307. extra: 1489/1384,
  46308. bottom: 18/1507
  46309. }
  46310. },
  46311. },
  46312. [
  46313. {
  46314. name: "Normal",
  46315. height: math.unit(6, "feet"),
  46316. default: true
  46317. },
  46318. {
  46319. name: "Macro",
  46320. height: math.unit(75, "feet")
  46321. },
  46322. {
  46323. name: "Macro-er",
  46324. height: math.unit(250, "feet")
  46325. },
  46326. ]
  46327. ))
  46328. characterMakers.push(() => makeCharacter(
  46329. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46330. {
  46331. front: {
  46332. height: math.unit(7, "feet"),
  46333. weight: math.unit(110, "kg"),
  46334. name: "Front",
  46335. image: {
  46336. source: "./media/characters/max-hyper/front.svg",
  46337. extra: 1969/1881,
  46338. bottom: 49/2018
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Normal",
  46345. height: math.unit(7, "feet"),
  46346. default: true
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(5 + 5/12, "feet"),
  46355. weight: math.unit(160, "lb"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/spook/front.svg",
  46359. extra: 794/791,
  46360. bottom: 54/848
  46361. }
  46362. },
  46363. back: {
  46364. height: math.unit(5 + 5/12, "feet"),
  46365. weight: math.unit(160, "lb"),
  46366. name: "Back",
  46367. image: {
  46368. source: "./media/characters/spook/back.svg",
  46369. extra: 812/798,
  46370. bottom: 32/844
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Normal",
  46377. height: math.unit(5 + 5/12, "feet"),
  46378. default: true
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46384. {
  46385. front: {
  46386. height: math.unit(18, "feet"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/xeaduulix/front.svg",
  46390. extra: 1380/1166,
  46391. bottom: 110/1490
  46392. }
  46393. },
  46394. back: {
  46395. height: math.unit(18, "feet"),
  46396. name: "Back",
  46397. image: {
  46398. source: "./media/characters/xeaduulix/back.svg",
  46399. extra: 1592/1170,
  46400. bottom: 128/1720
  46401. }
  46402. },
  46403. frontNsfw: {
  46404. height: math.unit(18, "feet"),
  46405. name: "Front (NSFW)",
  46406. image: {
  46407. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46408. extra: 1380/1166,
  46409. bottom: 110/1490
  46410. }
  46411. },
  46412. backNsfw: {
  46413. height: math.unit(18, "feet"),
  46414. name: "Back (NSFW)",
  46415. image: {
  46416. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46417. extra: 1592/1170,
  46418. bottom: 128/1720
  46419. }
  46420. },
  46421. },
  46422. [
  46423. {
  46424. name: "Normal",
  46425. height: math.unit(18, "feet"),
  46426. default: true
  46427. },
  46428. ]
  46429. ))
  46430. characterMakers.push(() => makeCharacter(
  46431. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46432. {
  46433. spreadWings: {
  46434. height: math.unit(20, "feet"),
  46435. name: "Spread Wings",
  46436. image: {
  46437. source: "./media/characters/fledge/spread-wings.svg",
  46438. extra: 693/635,
  46439. bottom: 26/719
  46440. }
  46441. },
  46442. front: {
  46443. height: math.unit(20, "feet"),
  46444. name: "Front",
  46445. image: {
  46446. source: "./media/characters/fledge/front.svg",
  46447. extra: 684/637,
  46448. bottom: 18/702
  46449. }
  46450. },
  46451. frontAlt: {
  46452. height: math.unit(20, "feet"),
  46453. name: "Front (Alt)",
  46454. image: {
  46455. source: "./media/characters/fledge/front-alt.svg",
  46456. extra: 708/664,
  46457. bottom: 13/721
  46458. }
  46459. },
  46460. back: {
  46461. height: math.unit(20, "feet"),
  46462. name: "Back",
  46463. image: {
  46464. source: "./media/characters/fledge/back.svg",
  46465. extra: 718/634,
  46466. bottom: 22/740
  46467. }
  46468. },
  46469. head: {
  46470. height: math.unit(5.55, "feet"),
  46471. name: "Head",
  46472. image: {
  46473. source: "./media/characters/fledge/head.svg"
  46474. }
  46475. },
  46476. headAlt: {
  46477. height: math.unit(5.1, "feet"),
  46478. name: "Head (Alt)",
  46479. image: {
  46480. source: "./media/characters/fledge/head-alt.svg"
  46481. }
  46482. },
  46483. },
  46484. [
  46485. {
  46486. name: "Small",
  46487. height: math.unit(6 + 2/12, "feet")
  46488. },
  46489. {
  46490. name: "Big",
  46491. height: math.unit(20, "feet"),
  46492. default: true
  46493. },
  46494. {
  46495. name: "Giant",
  46496. height: math.unit(100, "feet")
  46497. },
  46498. {
  46499. name: "Macro",
  46500. height: math.unit(200, "feet")
  46501. },
  46502. ]
  46503. ))
  46504. characterMakers.push(() => makeCharacter(
  46505. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46506. {
  46507. front: {
  46508. height: math.unit(1, "meter"),
  46509. name: "Front",
  46510. image: {
  46511. source: "./media/characters/atlas-morenai/front.svg",
  46512. extra: 1275/1043,
  46513. bottom: 19/1294
  46514. }
  46515. },
  46516. back: {
  46517. height: math.unit(1, "meter"),
  46518. name: "Back",
  46519. image: {
  46520. source: "./media/characters/atlas-morenai/back.svg",
  46521. extra: 1141/1001,
  46522. bottom: 25/1166
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Normal",
  46529. height: math.unit(1, "meter"),
  46530. default: true
  46531. },
  46532. {
  46533. name: "Magic-Infused",
  46534. height: math.unit(5, "meters")
  46535. },
  46536. ]
  46537. ))
  46538. characterMakers.push(() => makeCharacter(
  46539. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46540. {
  46541. front: {
  46542. height: math.unit(5, "meters"),
  46543. name: "Front",
  46544. image: {
  46545. source: "./media/characters/cintia/front.svg",
  46546. extra: 1312/1228,
  46547. bottom: 38/1350
  46548. }
  46549. },
  46550. back: {
  46551. height: math.unit(5, "meters"),
  46552. name: "Back",
  46553. image: {
  46554. source: "./media/characters/cintia/back.svg",
  46555. extra: 1260/1166,
  46556. bottom: 98/1358
  46557. }
  46558. },
  46559. frontDick: {
  46560. height: math.unit(5, "meters"),
  46561. name: "Front (Dick)",
  46562. image: {
  46563. source: "./media/characters/cintia/front-dick.svg",
  46564. extra: 1312/1228,
  46565. bottom: 38/1350
  46566. }
  46567. },
  46568. backDick: {
  46569. height: math.unit(5, "meters"),
  46570. name: "Back (Dick)",
  46571. image: {
  46572. source: "./media/characters/cintia/back-dick.svg",
  46573. extra: 1260/1166,
  46574. bottom: 98/1358
  46575. }
  46576. },
  46577. bust: {
  46578. height: math.unit(1.97, "meters"),
  46579. name: "Bust",
  46580. image: {
  46581. source: "./media/characters/cintia/bust.svg",
  46582. extra: 617/565,
  46583. bottom: 0/617
  46584. }
  46585. },
  46586. },
  46587. [
  46588. {
  46589. name: "Normal",
  46590. height: math.unit(5, "meters"),
  46591. default: true
  46592. },
  46593. ]
  46594. ))
  46595. characterMakers.push(() => makeCharacter(
  46596. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46597. {
  46598. side: {
  46599. height: math.unit(100, "feet"),
  46600. name: "Side",
  46601. image: {
  46602. source: "./media/characters/denora/side.svg",
  46603. extra: 875/803,
  46604. bottom: 9/884
  46605. }
  46606. },
  46607. },
  46608. [
  46609. {
  46610. name: "Standard",
  46611. height: math.unit(100, "feet"),
  46612. default: true
  46613. },
  46614. {
  46615. name: "Grand",
  46616. height: math.unit(1000, "feet")
  46617. },
  46618. {
  46619. name: "Conquering",
  46620. height: math.unit(10000, "feet")
  46621. },
  46622. ]
  46623. ))
  46624. characterMakers.push(() => makeCharacter(
  46625. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46626. {
  46627. dressed: {
  46628. height: math.unit(8 + 5/12, "feet"),
  46629. weight: math.unit(700, "lb"),
  46630. name: "Dressed",
  46631. image: {
  46632. source: "./media/characters/kiva/dressed.svg",
  46633. extra: 1102/1055,
  46634. bottom: 60/1162
  46635. }
  46636. },
  46637. nude: {
  46638. height: math.unit(8 + 5/12, "feet"),
  46639. weight: math.unit(700, "lb"),
  46640. name: "Nude",
  46641. image: {
  46642. source: "./media/characters/kiva/nude.svg",
  46643. extra: 1102/1055,
  46644. bottom: 60/1162
  46645. }
  46646. },
  46647. },
  46648. [
  46649. {
  46650. name: "Base Height",
  46651. height: math.unit(8 + 5/12, "feet"),
  46652. default: true
  46653. },
  46654. {
  46655. name: "Macro",
  46656. height: math.unit(100, "feet")
  46657. },
  46658. {
  46659. name: "Max",
  46660. height: math.unit(3280, "feet")
  46661. },
  46662. ]
  46663. ))
  46664. characterMakers.push(() => makeCharacter(
  46665. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46666. {
  46667. front: {
  46668. height: math.unit(6 + 8/12, "feet"),
  46669. weight: math.unit(250, "lb"),
  46670. name: "Front",
  46671. image: {
  46672. source: "./media/characters/ztragon/front.svg",
  46673. extra: 1825/1684,
  46674. bottom: 98/1923
  46675. }
  46676. },
  46677. },
  46678. [
  46679. {
  46680. name: "Normal",
  46681. height: math.unit(6 + 8/12, "feet"),
  46682. default: true
  46683. },
  46684. {
  46685. name: "Macro",
  46686. height: math.unit(80, "feet")
  46687. },
  46688. ]
  46689. ))
  46690. characterMakers.push(() => makeCharacter(
  46691. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46692. {
  46693. front: {
  46694. height: math.unit(10.4, "feet"),
  46695. weight: math.unit(2, "tons"),
  46696. name: "Front",
  46697. image: {
  46698. source: "./media/characters/yesenia/front.svg",
  46699. extra: 1479/1474,
  46700. bottom: 233/1712
  46701. }
  46702. },
  46703. },
  46704. [
  46705. {
  46706. name: "Normal",
  46707. height: math.unit(10.4, "feet"),
  46708. default: true
  46709. },
  46710. ]
  46711. ))
  46712. characterMakers.push(() => makeCharacter(
  46713. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46714. {
  46715. normal: {
  46716. height: math.unit(6 + 1/12, "feet"),
  46717. weight: math.unit(180, "lb"),
  46718. name: "Normal",
  46719. image: {
  46720. source: "./media/characters/leanne-lycheborne/normal.svg",
  46721. extra: 1748/1660,
  46722. bottom: 98/1846
  46723. }
  46724. },
  46725. were: {
  46726. height: math.unit(12, "feet"),
  46727. weight: math.unit(1600, "lb"),
  46728. name: "Were",
  46729. image: {
  46730. source: "./media/characters/leanne-lycheborne/were.svg",
  46731. extra: 1485/1432,
  46732. bottom: 66/1551
  46733. }
  46734. },
  46735. },
  46736. [
  46737. {
  46738. name: "Normal",
  46739. height: math.unit(6 + 1/12, "feet"),
  46740. default: true
  46741. },
  46742. ]
  46743. ))
  46744. characterMakers.push(() => makeCharacter(
  46745. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46746. {
  46747. side: {
  46748. height: math.unit(13, "feet"),
  46749. name: "Side",
  46750. image: {
  46751. source: "./media/characters/kira-tyler/side.svg",
  46752. extra: 693/393,
  46753. bottom: 58/751
  46754. }
  46755. },
  46756. },
  46757. [
  46758. {
  46759. name: "Normal",
  46760. height: math.unit(13, "feet"),
  46761. default: true
  46762. },
  46763. ]
  46764. ))
  46765. characterMakers.push(() => makeCharacter(
  46766. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46767. {
  46768. front: {
  46769. height: math.unit(10.3, "feet"),
  46770. weight: math.unit(150, "lb"),
  46771. name: "Front",
  46772. image: {
  46773. source: "./media/characters/blaze/front.svg",
  46774. extra: 1378/1286,
  46775. bottom: 172/1550
  46776. }
  46777. },
  46778. },
  46779. [
  46780. {
  46781. name: "Normal",
  46782. height: math.unit(10.3, "feet"),
  46783. default: true
  46784. },
  46785. ]
  46786. ))
  46787. characterMakers.push(() => makeCharacter(
  46788. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46789. {
  46790. side: {
  46791. height: math.unit(2, "meters"),
  46792. weight: math.unit(400, "kg"),
  46793. name: "Side",
  46794. image: {
  46795. source: "./media/characters/anu/side.svg",
  46796. extra: 506/394,
  46797. bottom: 18/524
  46798. }
  46799. },
  46800. },
  46801. [
  46802. {
  46803. name: "Humanoid",
  46804. height: math.unit(2, "meters")
  46805. },
  46806. {
  46807. name: "Normal",
  46808. height: math.unit(5, "meters"),
  46809. default: true
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46815. {
  46816. front: {
  46817. height: math.unit(5 + 5/12, "feet"),
  46818. weight: math.unit(170, "lb"),
  46819. name: "Front",
  46820. image: {
  46821. source: "./media/characters/synx-the-lynx/front.svg",
  46822. extra: 1893/1745,
  46823. bottom: 17/1910
  46824. }
  46825. },
  46826. side: {
  46827. height: math.unit(5 + 5/12, "feet"),
  46828. weight: math.unit(170, "lb"),
  46829. name: "Side",
  46830. image: {
  46831. source: "./media/characters/synx-the-lynx/side.svg",
  46832. extra: 1884/1740,
  46833. bottom: 39/1923
  46834. }
  46835. },
  46836. back: {
  46837. height: math.unit(5 + 5/12, "feet"),
  46838. weight: math.unit(170, "lb"),
  46839. name: "Back",
  46840. image: {
  46841. source: "./media/characters/synx-the-lynx/back.svg",
  46842. extra: 1903/1755,
  46843. bottom: 14/1917
  46844. }
  46845. },
  46846. },
  46847. [
  46848. {
  46849. name: "Normal",
  46850. height: math.unit(5 + 5/12, "feet"),
  46851. default: true
  46852. },
  46853. ]
  46854. ))
  46855. characterMakers.push(() => makeCharacter(
  46856. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46857. {
  46858. back: {
  46859. height: math.unit(15, "feet"),
  46860. name: "Back",
  46861. image: {
  46862. source: "./media/characters/nadezda-fex/back.svg",
  46863. extra: 1695/1481,
  46864. bottom: 25/1720
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Normal",
  46871. height: math.unit(15, "feet"),
  46872. default: true
  46873. },
  46874. {
  46875. name: "Macro",
  46876. height: math.unit(2.5, "miles")
  46877. },
  46878. {
  46879. name: "Goddess",
  46880. height: math.unit(2, "multiverses")
  46881. },
  46882. ]
  46883. ))
  46884. characterMakers.push(() => makeCharacter(
  46885. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46886. {
  46887. front: {
  46888. height: math.unit(216, "cm"),
  46889. name: "Front",
  46890. image: {
  46891. source: "./media/characters/lev/front.svg",
  46892. extra: 1728/1670,
  46893. bottom: 82/1810
  46894. }
  46895. },
  46896. back: {
  46897. height: math.unit(216, "cm"),
  46898. name: "Back",
  46899. image: {
  46900. source: "./media/characters/lev/back.svg",
  46901. extra: 1738/1675,
  46902. bottom: 24/1762
  46903. }
  46904. },
  46905. dressed: {
  46906. height: math.unit(216, "cm"),
  46907. name: "Dressed",
  46908. image: {
  46909. source: "./media/characters/lev/dressed.svg",
  46910. extra: 1397/1351,
  46911. bottom: 73/1470
  46912. }
  46913. },
  46914. head: {
  46915. height: math.unit(0.51, "meter"),
  46916. name: "Head",
  46917. image: {
  46918. source: "./media/characters/lev/head.svg"
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(216, "cm"),
  46926. default: true
  46927. },
  46928. {
  46929. name: "Relatively Macro",
  46930. height: math.unit(80, "meters")
  46931. },
  46932. {
  46933. name: "Megamacro",
  46934. height: math.unit(21600, "meters")
  46935. },
  46936. {
  46937. name: "Megamacro+",
  46938. height: math.unit(64800, "meters")
  46939. },
  46940. ]
  46941. ))
  46942. characterMakers.push(() => makeCharacter(
  46943. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46944. {
  46945. front: {
  46946. height: math.unit(2, "meters"),
  46947. weight: math.unit(80, "kg"),
  46948. name: "Front",
  46949. image: {
  46950. source: "./media/characters/moka/front.svg",
  46951. extra: 1337/1255,
  46952. bottom: 58/1395
  46953. }
  46954. },
  46955. },
  46956. [
  46957. {
  46958. name: "Micro",
  46959. height: math.unit(15, "cm")
  46960. },
  46961. {
  46962. name: "Normal",
  46963. height: math.unit(2, "meters"),
  46964. default: true
  46965. },
  46966. {
  46967. name: "Macro",
  46968. height: math.unit(20, "meters"),
  46969. },
  46970. ]
  46971. ))
  46972. characterMakers.push(() => makeCharacter(
  46973. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46974. {
  46975. front: {
  46976. height: math.unit(9, "feet"),
  46977. weight: math.unit(240, "lb"),
  46978. name: "Front",
  46979. image: {
  46980. source: "./media/characters/kuzco/front.svg",
  46981. extra: 1593/1487,
  46982. bottom: 32/1625
  46983. }
  46984. },
  46985. side: {
  46986. height: math.unit(9, "feet"),
  46987. weight: math.unit(240, "lb"),
  46988. name: "Side",
  46989. image: {
  46990. source: "./media/characters/kuzco/side.svg",
  46991. extra: 1575/1485,
  46992. bottom: 30/1605
  46993. }
  46994. },
  46995. back: {
  46996. height: math.unit(9, "feet"),
  46997. weight: math.unit(240, "lb"),
  46998. name: "Back",
  46999. image: {
  47000. source: "./media/characters/kuzco/back.svg",
  47001. extra: 1603/1514,
  47002. bottom: 14/1617
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(9, "feet"),
  47010. default: true
  47011. },
  47012. ]
  47013. ))
  47014. characterMakers.push(() => makeCharacter(
  47015. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47016. {
  47017. side: {
  47018. height: math.unit(2, "meters"),
  47019. weight: math.unit(300, "kg"),
  47020. name: "Side",
  47021. image: {
  47022. source: "./media/characters/ceruleus/side.svg",
  47023. extra: 1068/974,
  47024. bottom: 126/1194
  47025. }
  47026. },
  47027. maw: {
  47028. height: math.unit(0.8125, "meter"),
  47029. name: "Maw",
  47030. image: {
  47031. source: "./media/characters/ceruleus/maw.svg"
  47032. }
  47033. },
  47034. },
  47035. [
  47036. {
  47037. name: "Normal",
  47038. height: math.unit(16, "meters"),
  47039. default: true
  47040. },
  47041. ]
  47042. ))
  47043. characterMakers.push(() => makeCharacter(
  47044. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47045. {
  47046. front: {
  47047. height: math.unit(9, "feet"),
  47048. weight: math.unit(500, "kg"),
  47049. name: "Front",
  47050. image: {
  47051. source: "./media/characters/acouya/front.svg",
  47052. extra: 1660/1473,
  47053. bottom: 28/1688
  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: "Vant", species: ["husky"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(5 + 6/12, "feet"),
  47070. weight: math.unit(195, "lb"),
  47071. name: "Front",
  47072. image: {
  47073. source: "./media/characters/vant/front.svg",
  47074. extra: 1396/1320,
  47075. bottom: 20/1416
  47076. }
  47077. },
  47078. back: {
  47079. height: math.unit(5 + 6/12, "feet"),
  47080. weight: math.unit(195, "lb"),
  47081. name: "Back",
  47082. image: {
  47083. source: "./media/characters/vant/back.svg",
  47084. extra: 1396/1320,
  47085. bottom: 20/1416
  47086. }
  47087. },
  47088. maw: {
  47089. height: math.unit(0.75, "feet"),
  47090. name: "Maw",
  47091. image: {
  47092. source: "./media/characters/vant/maw.svg"
  47093. }
  47094. },
  47095. paw: {
  47096. height: math.unit(1.07, "feet"),
  47097. name: "Paw",
  47098. image: {
  47099. source: "./media/characters/vant/paw.svg"
  47100. }
  47101. },
  47102. },
  47103. [
  47104. {
  47105. name: "Micro",
  47106. height: math.unit(0.25, "inches")
  47107. },
  47108. {
  47109. name: "Normal",
  47110. height: math.unit(5 + 6/12, "feet"),
  47111. default: true
  47112. },
  47113. {
  47114. name: "Macro",
  47115. height: math.unit(75, "feet")
  47116. },
  47117. ]
  47118. ))
  47119. characterMakers.push(() => makeCharacter(
  47120. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47121. {
  47122. front: {
  47123. height: math.unit(30, "meters"),
  47124. weight: math.unit(363, "tons"),
  47125. name: "Front",
  47126. image: {
  47127. source: "./media/characters/ahra/front.svg",
  47128. extra: 1914/1814,
  47129. bottom: 46/1960
  47130. }
  47131. },
  47132. },
  47133. [
  47134. {
  47135. name: "Macro",
  47136. height: math.unit(30, "meters"),
  47137. default: true
  47138. },
  47139. ]
  47140. ))
  47141. characterMakers.push(() => makeCharacter(
  47142. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47143. {
  47144. undressed: {
  47145. height: math.unit(2, "m"),
  47146. weight: math.unit(250, "kg"),
  47147. name: "Undressed",
  47148. image: {
  47149. source: "./media/characters/coriander/undressed.svg",
  47150. extra: 1757/1606,
  47151. bottom: 107/1864
  47152. }
  47153. },
  47154. dressed: {
  47155. height: math.unit(2, "m"),
  47156. weight: math.unit(250, "kg"),
  47157. name: "Dressed",
  47158. image: {
  47159. source: "./media/characters/coriander/dressed.svg",
  47160. extra: 1757/1606,
  47161. bottom: 107/1864
  47162. }
  47163. },
  47164. },
  47165. [
  47166. {
  47167. name: "Normal",
  47168. height: math.unit(4, "meters"),
  47169. default: true
  47170. },
  47171. {
  47172. name: "XL",
  47173. height: math.unit(6, "meters")
  47174. },
  47175. {
  47176. name: "XXL",
  47177. height: math.unit(8, "meters")
  47178. },
  47179. ]
  47180. ))
  47181. characterMakers.push(() => makeCharacter(
  47182. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47183. {
  47184. front: {
  47185. height: math.unit(6, "feet"),
  47186. name: "Front",
  47187. image: {
  47188. source: "./media/characters/syrinx/front.svg",
  47189. extra: 1557/1259,
  47190. bottom: 171/1728
  47191. }
  47192. },
  47193. },
  47194. [
  47195. {
  47196. name: "Normal",
  47197. height: math.unit(6 + 3/12, "feet"),
  47198. default: true
  47199. },
  47200. ]
  47201. ))
  47202. characterMakers.push(() => makeCharacter(
  47203. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47204. {
  47205. front: {
  47206. height: math.unit(11 + 6/12, "feet"),
  47207. weight: math.unit(1.5, "tons"),
  47208. name: "Front",
  47209. image: {
  47210. source: "./media/characters/bor/front.svg",
  47211. extra: 1189/1109,
  47212. bottom: 170/1359
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(11 + 6/12, "feet"),
  47220. default: true
  47221. },
  47222. {
  47223. name: "Macro",
  47224. height: math.unit(32 + 9/12, "feet")
  47225. },
  47226. ]
  47227. ))
  47228. characterMakers.push(() => makeCharacter(
  47229. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47230. {
  47231. anthro: {
  47232. height: math.unit(9, "feet"),
  47233. weight: math.unit(2076, "lb"),
  47234. name: "Anthro",
  47235. image: {
  47236. source: "./media/characters/abacus/anthro.svg",
  47237. extra: 1540/1494,
  47238. bottom: 233/1773
  47239. }
  47240. },
  47241. pigeon: {
  47242. height: math.unit(1, "feet"),
  47243. name: "Pigeon",
  47244. image: {
  47245. source: "./media/characters/abacus/pigeon.svg",
  47246. extra: 528/525,
  47247. bottom: 46/574
  47248. }
  47249. },
  47250. },
  47251. [
  47252. {
  47253. name: "Normal",
  47254. height: math.unit(9, "feet"),
  47255. default: true
  47256. },
  47257. ]
  47258. ))
  47259. characterMakers.push(() => makeCharacter(
  47260. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47261. {
  47262. side: {
  47263. height: math.unit(6, "feet"),
  47264. name: "Side",
  47265. image: {
  47266. source: "./media/characters/delkhan/side.svg",
  47267. extra: 1884/1786,
  47268. bottom: 308/2192
  47269. }
  47270. },
  47271. head: {
  47272. height: math.unit(3.38, "feet"),
  47273. name: "Head",
  47274. image: {
  47275. source: "./media/characters/delkhan/head.svg"
  47276. }
  47277. },
  47278. },
  47279. [
  47280. {
  47281. name: "Normal",
  47282. height: math.unit(72, "feet"),
  47283. default: true
  47284. },
  47285. {
  47286. name: "Giant",
  47287. height: math.unit(172, "feet")
  47288. },
  47289. ]
  47290. ))
  47291. characterMakers.push(() => makeCharacter(
  47292. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47293. {
  47294. standing: {
  47295. height: math.unit(6, "feet"),
  47296. name: "Standing",
  47297. image: {
  47298. source: "./media/characters/euchidat/standing.svg",
  47299. extra: 1612/1553,
  47300. bottom: 116/1728
  47301. }
  47302. },
  47303. leaning: {
  47304. height: math.unit(6, "feet"),
  47305. name: "Leaning",
  47306. image: {
  47307. source: "./media/characters/euchidat/leaning.svg",
  47308. extra: 1719/1674,
  47309. bottom: 27/1746
  47310. }
  47311. },
  47312. },
  47313. [
  47314. {
  47315. name: "Normal",
  47316. height: math.unit(175, "feet"),
  47317. default: true
  47318. },
  47319. {
  47320. name: "Megamacro",
  47321. height: math.unit(190, "miles")
  47322. },
  47323. {
  47324. name: "Gigamacro",
  47325. height: math.unit(190000, "miles")
  47326. },
  47327. ]
  47328. ))
  47329. characterMakers.push(() => makeCharacter(
  47330. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47331. {
  47332. front: {
  47333. height: math.unit(6, "feet"),
  47334. weight: math.unit(150, "lb"),
  47335. name: "Front",
  47336. image: {
  47337. source: "./media/characters/rebecca-stack/front.svg",
  47338. extra: 1256/1201,
  47339. bottom: 18/1274
  47340. }
  47341. },
  47342. },
  47343. [
  47344. {
  47345. name: "Normal",
  47346. height: math.unit(5 + 8/12, "feet"),
  47347. default: true
  47348. },
  47349. {
  47350. name: "Demolitionist",
  47351. height: math.unit(200, "feet")
  47352. },
  47353. {
  47354. name: "Out of Control",
  47355. height: math.unit(2, "miles")
  47356. },
  47357. {
  47358. name: "Giga",
  47359. height: math.unit(7200, "miles")
  47360. },
  47361. ]
  47362. ))
  47363. characterMakers.push(() => makeCharacter(
  47364. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47365. {
  47366. front: {
  47367. height: math.unit(6, "feet"),
  47368. weight: math.unit(150, "lb"),
  47369. name: "Front",
  47370. image: {
  47371. source: "./media/characters/jenny-cartwright/front.svg",
  47372. extra: 1384/1376,
  47373. bottom: 58/1442
  47374. }
  47375. },
  47376. },
  47377. [
  47378. {
  47379. name: "Normal",
  47380. height: math.unit(6 + 7/12, "feet"),
  47381. default: true
  47382. },
  47383. {
  47384. name: "Librarian",
  47385. height: math.unit(55, "feet")
  47386. },
  47387. {
  47388. name: "Sightseer",
  47389. height: math.unit(50, "miles")
  47390. },
  47391. {
  47392. name: "Giga",
  47393. height: math.unit(30000, "miles")
  47394. },
  47395. ]
  47396. ))
  47397. characterMakers.push(() => makeCharacter(
  47398. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47399. {
  47400. nude: {
  47401. height: math.unit(8, "feet"),
  47402. weight: math.unit(225, "lb"),
  47403. name: "Nude",
  47404. image: {
  47405. source: "./media/characters/marvy/nude.svg",
  47406. extra: 1900/1683,
  47407. bottom: 89/1989
  47408. }
  47409. },
  47410. dressed: {
  47411. height: math.unit(8, "feet"),
  47412. weight: math.unit(225, "lb"),
  47413. name: "Dressed",
  47414. image: {
  47415. source: "./media/characters/marvy/dressed.svg",
  47416. extra: 1900/1683,
  47417. bottom: 89/1989
  47418. }
  47419. },
  47420. head: {
  47421. height: math.unit(2.85, "feet"),
  47422. name: "Head",
  47423. image: {
  47424. source: "./media/characters/marvy/head.svg"
  47425. }
  47426. },
  47427. },
  47428. [
  47429. {
  47430. name: "Normal",
  47431. height: math.unit(8, "feet"),
  47432. default: true
  47433. },
  47434. ]
  47435. ))
  47436. characterMakers.push(() => makeCharacter(
  47437. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47438. {
  47439. front: {
  47440. height: math.unit(8, "feet"),
  47441. weight: math.unit(250, "lb"),
  47442. name: "Front",
  47443. image: {
  47444. source: "./media/characters/leah/front.svg",
  47445. extra: 1257/1149,
  47446. bottom: 109/1366
  47447. }
  47448. },
  47449. },
  47450. [
  47451. {
  47452. name: "Normal",
  47453. height: math.unit(8, "feet"),
  47454. default: true
  47455. },
  47456. {
  47457. name: "Minimacro",
  47458. height: math.unit(40, "feet")
  47459. },
  47460. {
  47461. name: "Macro",
  47462. height: math.unit(124, "feet")
  47463. },
  47464. {
  47465. name: "Megamacro",
  47466. height: math.unit(850, "feet")
  47467. },
  47468. ]
  47469. ))
  47470. characterMakers.push(() => makeCharacter(
  47471. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47472. {
  47473. side: {
  47474. height: math.unit(13 + 6/12, "feet"),
  47475. weight: math.unit(3200, "lb"),
  47476. name: "Side",
  47477. image: {
  47478. source: "./media/characters/alvir/side.svg",
  47479. extra: 896/589,
  47480. bottom: 26/922
  47481. }
  47482. },
  47483. },
  47484. [
  47485. {
  47486. name: "Normal",
  47487. height: math.unit(13 + 6/12, "feet"),
  47488. default: true
  47489. },
  47490. ]
  47491. ))
  47492. characterMakers.push(() => makeCharacter(
  47493. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47494. {
  47495. front: {
  47496. height: math.unit(5 + 4/12, "feet"),
  47497. weight: math.unit(236, "lb"),
  47498. name: "Front",
  47499. image: {
  47500. source: "./media/characters/zaina-khalil/front.svg",
  47501. extra: 1533/1485,
  47502. bottom: 94/1627
  47503. }
  47504. },
  47505. side: {
  47506. height: math.unit(5 + 4/12, "feet"),
  47507. weight: math.unit(236, "lb"),
  47508. name: "Side",
  47509. image: {
  47510. source: "./media/characters/zaina-khalil/side.svg",
  47511. extra: 1537/1498,
  47512. bottom: 66/1603
  47513. }
  47514. },
  47515. back: {
  47516. height: math.unit(5 + 4/12, "feet"),
  47517. weight: math.unit(236, "lb"),
  47518. name: "Back",
  47519. image: {
  47520. source: "./media/characters/zaina-khalil/back.svg",
  47521. extra: 1546/1494,
  47522. bottom: 89/1635
  47523. }
  47524. },
  47525. },
  47526. [
  47527. {
  47528. name: "Normal",
  47529. height: math.unit(5 + 4/12, "feet"),
  47530. default: true
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47536. {
  47537. side: {
  47538. height: math.unit(12, "feet"),
  47539. weight: math.unit(4000, "lb"),
  47540. name: "Side",
  47541. image: {
  47542. source: "./media/characters/terry/side.svg",
  47543. extra: 1518/1439,
  47544. bottom: 149/1667
  47545. }
  47546. },
  47547. },
  47548. [
  47549. {
  47550. name: "Normal",
  47551. height: math.unit(12, "feet"),
  47552. default: true
  47553. },
  47554. ]
  47555. ))
  47556. characterMakers.push(() => makeCharacter(
  47557. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47558. {
  47559. front: {
  47560. height: math.unit(12, "feet"),
  47561. weight: math.unit(1500, "lb"),
  47562. name: "Front",
  47563. image: {
  47564. source: "./media/characters/kahea/front.svg",
  47565. extra: 1722/1617,
  47566. bottom: 179/1901
  47567. }
  47568. },
  47569. },
  47570. [
  47571. {
  47572. name: "Normal",
  47573. height: math.unit(12, "feet"),
  47574. default: true
  47575. },
  47576. ]
  47577. ))
  47578. characterMakers.push(() => makeCharacter(
  47579. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47580. {
  47581. demonFront: {
  47582. height: math.unit(36, "feet"),
  47583. name: "Front",
  47584. image: {
  47585. source: "./media/characters/alex-xuria/demon-front.svg",
  47586. extra: 1705/1673,
  47587. bottom: 198/1903
  47588. },
  47589. form: "demon",
  47590. default: true
  47591. },
  47592. demonBack: {
  47593. height: math.unit(36, "feet"),
  47594. name: "Back",
  47595. image: {
  47596. source: "./media/characters/alex-xuria/demon-back.svg",
  47597. extra: 1725/1693,
  47598. bottom: 70/1795
  47599. },
  47600. form: "demon"
  47601. },
  47602. demonHead: {
  47603. height: math.unit(2.14, "meters"),
  47604. name: "Head",
  47605. image: {
  47606. source: "./media/characters/alex-xuria/demon-head.svg"
  47607. },
  47608. form: "demon"
  47609. },
  47610. demonHand: {
  47611. height: math.unit(1.61, "meters"),
  47612. name: "Hand",
  47613. image: {
  47614. source: "./media/characters/alex-xuria/demon-hand.svg"
  47615. },
  47616. form: "demon"
  47617. },
  47618. demonPaw: {
  47619. height: math.unit(1.35, "meters"),
  47620. name: "Paw",
  47621. image: {
  47622. source: "./media/characters/alex-xuria/demon-paw.svg"
  47623. },
  47624. form: "demon"
  47625. },
  47626. demonFoot: {
  47627. height: math.unit(2.2, "meters"),
  47628. name: "Foot",
  47629. image: {
  47630. source: "./media/characters/alex-xuria/demon-foot.svg"
  47631. },
  47632. form: "demon"
  47633. },
  47634. demonCock: {
  47635. height: math.unit(1.74, "meters"),
  47636. name: "Cock",
  47637. image: {
  47638. source: "./media/characters/alex-xuria/demon-cock.svg"
  47639. },
  47640. form: "demon"
  47641. },
  47642. demonTailClosed: {
  47643. height: math.unit(1.47, "meters"),
  47644. name: "Tail (Closed)",
  47645. image: {
  47646. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47647. },
  47648. form: "demon"
  47649. },
  47650. demonTailOpen: {
  47651. height: math.unit(2.85, "meters"),
  47652. name: "Tail (Open)",
  47653. image: {
  47654. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47655. },
  47656. form: "demon"
  47657. },
  47658. incubusFront: {
  47659. height: math.unit(12, "feet"),
  47660. name: "Front",
  47661. image: {
  47662. source: "./media/characters/alex-xuria/incubus-front.svg",
  47663. extra: 1754/1677,
  47664. bottom: 125/1879
  47665. },
  47666. form: "incubus",
  47667. default: true
  47668. },
  47669. incubusBack: {
  47670. height: math.unit(12, "feet"),
  47671. name: "Back",
  47672. image: {
  47673. source: "./media/characters/alex-xuria/incubus-back.svg",
  47674. extra: 1702/1647,
  47675. bottom: 30/1732
  47676. },
  47677. form: "incubus"
  47678. },
  47679. incubusHead: {
  47680. height: math.unit(3.45, "feet"),
  47681. name: "Head",
  47682. image: {
  47683. source: "./media/characters/alex-xuria/incubus-head.svg"
  47684. },
  47685. form: "incubus"
  47686. },
  47687. rabbitFront: {
  47688. height: math.unit(6, "feet"),
  47689. name: "Front",
  47690. image: {
  47691. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47692. extra: 1369/1349,
  47693. bottom: 45/1414
  47694. },
  47695. form: "rabbit",
  47696. default: true
  47697. },
  47698. rabbitSide: {
  47699. height: math.unit(6, "feet"),
  47700. name: "Side",
  47701. image: {
  47702. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47703. extra: 1370/1356,
  47704. bottom: 37/1407
  47705. },
  47706. form: "rabbit"
  47707. },
  47708. rabbitBack: {
  47709. height: math.unit(6, "feet"),
  47710. name: "Back",
  47711. image: {
  47712. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47713. extra: 1375/1358,
  47714. bottom: 43/1418
  47715. },
  47716. form: "rabbit"
  47717. },
  47718. },
  47719. [
  47720. {
  47721. name: "Normal",
  47722. height: math.unit(6, "feet"),
  47723. default: true,
  47724. form: "rabbit"
  47725. },
  47726. {
  47727. name: "Incubus",
  47728. height: math.unit(12, "feet"),
  47729. default: true,
  47730. form: "incubus"
  47731. },
  47732. {
  47733. name: "Demon",
  47734. height: math.unit(36, "feet"),
  47735. default: true,
  47736. form: "demon"
  47737. }
  47738. ],
  47739. {
  47740. "demon": {
  47741. name: "Demon",
  47742. default: true
  47743. },
  47744. "incubus": {
  47745. name: "Incubus",
  47746. },
  47747. "rabbit": {
  47748. name: "Rabbit"
  47749. }
  47750. }
  47751. ))
  47752. characterMakers.push(() => makeCharacter(
  47753. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47754. {
  47755. front: {
  47756. height: math.unit(7 + 5/12, "feet"),
  47757. weight: math.unit(510, "lb"),
  47758. name: "Front",
  47759. image: {
  47760. source: "./media/characters/syrup/front.svg",
  47761. extra: 932/916,
  47762. bottom: 26/958
  47763. }
  47764. },
  47765. },
  47766. [
  47767. {
  47768. name: "Normal",
  47769. height: math.unit(7 + 5/12, "feet"),
  47770. default: true
  47771. },
  47772. {
  47773. name: "Big",
  47774. height: math.unit(50, "feet")
  47775. },
  47776. {
  47777. name: "Macro",
  47778. height: math.unit(300, "feet")
  47779. },
  47780. {
  47781. name: "Megamacro",
  47782. height: math.unit(1, "mile")
  47783. },
  47784. ]
  47785. ))
  47786. characterMakers.push(() => makeCharacter(
  47787. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47788. {
  47789. front: {
  47790. height: math.unit(6 + 9/12, "feet"),
  47791. name: "Front",
  47792. image: {
  47793. source: "./media/characters/zeimne/front.svg",
  47794. extra: 1969/1806,
  47795. bottom: 53/2022
  47796. }
  47797. },
  47798. },
  47799. [
  47800. {
  47801. name: "Normal",
  47802. height: math.unit(6 + 9/12, "feet"),
  47803. default: true
  47804. },
  47805. {
  47806. name: "Giant",
  47807. height: math.unit(550, "feet")
  47808. },
  47809. {
  47810. name: "Mega",
  47811. height: math.unit(3, "miles")
  47812. },
  47813. {
  47814. name: "Giga",
  47815. height: math.unit(250, "miles")
  47816. },
  47817. {
  47818. name: "Tera",
  47819. height: math.unit(1, "AU")
  47820. },
  47821. ]
  47822. ))
  47823. characterMakers.push(() => makeCharacter(
  47824. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47825. {
  47826. front: {
  47827. height: math.unit(5 + 2/12, "feet"),
  47828. name: "Front",
  47829. image: {
  47830. source: "./media/characters/grar/front.svg",
  47831. extra: 1331/1119,
  47832. bottom: 60/1391
  47833. }
  47834. },
  47835. back: {
  47836. height: math.unit(5 + 2/12, "feet"),
  47837. name: "Back",
  47838. image: {
  47839. source: "./media/characters/grar/back.svg",
  47840. extra: 1385/1169,
  47841. bottom: 23/1408
  47842. }
  47843. },
  47844. },
  47845. [
  47846. {
  47847. name: "Normal",
  47848. height: math.unit(5 + 2/12, "feet"),
  47849. default: true
  47850. },
  47851. ]
  47852. ))
  47853. characterMakers.push(() => makeCharacter(
  47854. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47855. {
  47856. front: {
  47857. height: math.unit(13 + 7/12, "feet"),
  47858. weight: math.unit(2200, "lb"),
  47859. name: "Front",
  47860. image: {
  47861. source: "./media/characters/endraya/front.svg",
  47862. extra: 1289/1215,
  47863. bottom: 50/1339
  47864. }
  47865. },
  47866. nude: {
  47867. height: math.unit(13 + 7/12, "feet"),
  47868. weight: math.unit(2200, "lb"),
  47869. name: "Nude",
  47870. image: {
  47871. source: "./media/characters/endraya/nude.svg",
  47872. extra: 1247/1171,
  47873. bottom: 40/1287
  47874. }
  47875. },
  47876. head: {
  47877. height: math.unit(2.6, "feet"),
  47878. name: "Head",
  47879. image: {
  47880. source: "./media/characters/endraya/head.svg"
  47881. }
  47882. },
  47883. slit: {
  47884. height: math.unit(3.4, "feet"),
  47885. name: "Slit",
  47886. image: {
  47887. source: "./media/characters/endraya/slit.svg"
  47888. }
  47889. },
  47890. },
  47891. [
  47892. {
  47893. name: "Normal",
  47894. height: math.unit(13 + 7/12, "feet"),
  47895. default: true
  47896. },
  47897. {
  47898. name: "Macro",
  47899. height: math.unit(200, "feet")
  47900. },
  47901. ]
  47902. ))
  47903. characterMakers.push(() => makeCharacter(
  47904. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47905. {
  47906. front: {
  47907. height: math.unit(1.81, "meters"),
  47908. weight: math.unit(69, "kg"),
  47909. name: "Front",
  47910. image: {
  47911. source: "./media/characters/rodryana/front.svg",
  47912. extra: 2002/1921,
  47913. bottom: 53/2055
  47914. }
  47915. },
  47916. back: {
  47917. height: math.unit(1.81, "meters"),
  47918. weight: math.unit(69, "kg"),
  47919. name: "Back",
  47920. image: {
  47921. source: "./media/characters/rodryana/back.svg",
  47922. extra: 1993/1926,
  47923. bottom: 48/2041
  47924. }
  47925. },
  47926. maw: {
  47927. height: math.unit(0.19769417475, "meters"),
  47928. name: "Maw",
  47929. image: {
  47930. source: "./media/characters/rodryana/maw.svg"
  47931. }
  47932. },
  47933. slit: {
  47934. height: math.unit(0.31631067961, "meters"),
  47935. name: "Slit",
  47936. image: {
  47937. source: "./media/characters/rodryana/slit.svg"
  47938. }
  47939. },
  47940. },
  47941. [
  47942. {
  47943. name: "Normal",
  47944. height: math.unit(1.81, "meters")
  47945. },
  47946. {
  47947. name: "Mini Macro",
  47948. height: math.unit(181, "meters")
  47949. },
  47950. {
  47951. name: "Macro",
  47952. height: math.unit(452, "meters"),
  47953. default: true
  47954. },
  47955. {
  47956. name: "Mega Macro",
  47957. height: math.unit(1.375, "km")
  47958. },
  47959. {
  47960. name: "Giga Macro",
  47961. height: math.unit(13.575, "km")
  47962. },
  47963. ]
  47964. ))
  47965. characterMakers.push(() => makeCharacter(
  47966. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47967. {
  47968. front: {
  47969. height: math.unit(6, "feet"),
  47970. weight: math.unit(1000, "lb"),
  47971. name: "Front",
  47972. image: {
  47973. source: "./media/characters/asaya/front.svg",
  47974. extra: 1460/1200,
  47975. bottom: 71/1531
  47976. }
  47977. },
  47978. },
  47979. [
  47980. {
  47981. name: "Normal",
  47982. height: math.unit(8, "km"),
  47983. default: true
  47984. },
  47985. ]
  47986. ))
  47987. characterMakers.push(() => makeCharacter(
  47988. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47989. {
  47990. front: {
  47991. height: math.unit(3.5, "meters"),
  47992. name: "Front",
  47993. image: {
  47994. source: "./media/characters/sarzu-and-israz/front.svg",
  47995. extra: 1570/1558,
  47996. bottom: 150/1720
  47997. },
  47998. },
  47999. back: {
  48000. height: math.unit(3.5, "meters"),
  48001. name: "Back",
  48002. image: {
  48003. source: "./media/characters/sarzu-and-israz/back.svg",
  48004. extra: 1523/1509,
  48005. bottom: 132/1655
  48006. },
  48007. },
  48008. frontFemale: {
  48009. height: math.unit(3.5, "meters"),
  48010. name: "Front (Female)",
  48011. image: {
  48012. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48013. extra: 1570/1558,
  48014. bottom: 150/1720
  48015. },
  48016. },
  48017. frontHerm: {
  48018. height: math.unit(3.5, "meters"),
  48019. name: "Front (Herm)",
  48020. image: {
  48021. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48022. extra: 1570/1558,
  48023. bottom: 150/1720
  48024. },
  48025. },
  48026. },
  48027. [
  48028. {
  48029. name: "Normal",
  48030. height: math.unit(3.5, "meters"),
  48031. default: true,
  48032. },
  48033. {
  48034. name: "Macro",
  48035. height: math.unit(65.5, "meters"),
  48036. },
  48037. ],
  48038. ))
  48039. characterMakers.push(() => makeCharacter(
  48040. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48041. {
  48042. front: {
  48043. height: math.unit(6, "feet"),
  48044. weight: math.unit(250, "lb"),
  48045. name: "Front",
  48046. image: {
  48047. source: "./media/characters/zenimma/front.svg",
  48048. extra: 1346/1320,
  48049. bottom: 58/1404
  48050. }
  48051. },
  48052. back: {
  48053. height: math.unit(6, "feet"),
  48054. weight: math.unit(250, "lb"),
  48055. name: "Back",
  48056. image: {
  48057. source: "./media/characters/zenimma/back.svg",
  48058. extra: 1324/1308,
  48059. bottom: 44/1368
  48060. }
  48061. },
  48062. dick: {
  48063. height: math.unit(1.44, "feet"),
  48064. name: "Dick",
  48065. image: {
  48066. source: "./media/characters/zenimma/dick.svg"
  48067. }
  48068. },
  48069. },
  48070. [
  48071. {
  48072. name: "Canon Height",
  48073. height: math.unit(66, "miles"),
  48074. default: true
  48075. },
  48076. ]
  48077. ))
  48078. characterMakers.push(() => makeCharacter(
  48079. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48080. {
  48081. nude: {
  48082. height: math.unit(6, "feet"),
  48083. weight: math.unit(150, "lb"),
  48084. name: "Nude",
  48085. image: {
  48086. source: "./media/characters/shavon/nude.svg",
  48087. extra: 1242/1096,
  48088. bottom: 98/1340
  48089. }
  48090. },
  48091. dressed: {
  48092. height: math.unit(6, "feet"),
  48093. weight: math.unit(150, "lb"),
  48094. name: "Dressed",
  48095. image: {
  48096. source: "./media/characters/shavon/dressed.svg",
  48097. extra: 1242/1096,
  48098. bottom: 98/1340
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Macro",
  48105. height: math.unit(255, "feet"),
  48106. default: true
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48112. {
  48113. front: {
  48114. height: math.unit(6, "feet"),
  48115. name: "Front",
  48116. image: {
  48117. source: "./media/characters/steph/front.svg",
  48118. extra: 1430/1330,
  48119. bottom: 54/1484
  48120. }
  48121. },
  48122. },
  48123. [
  48124. {
  48125. name: "Normal",
  48126. height: math.unit(6, "feet"),
  48127. default: true
  48128. },
  48129. ]
  48130. ))
  48131. characterMakers.push(() => makeCharacter(
  48132. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48133. {
  48134. front: {
  48135. height: math.unit(9, "feet"),
  48136. weight: math.unit(400, "lb"),
  48137. name: "Front",
  48138. image: {
  48139. source: "./media/characters/kil'aman/front.svg",
  48140. extra: 1210/1159,
  48141. bottom: 109/1319
  48142. }
  48143. },
  48144. head: {
  48145. height: math.unit(2.14, "feet"),
  48146. name: "Head",
  48147. image: {
  48148. source: "./media/characters/kil'aman/head.svg"
  48149. }
  48150. },
  48151. maw: {
  48152. height: math.unit(1.21, "feet"),
  48153. name: "Maw",
  48154. image: {
  48155. source: "./media/characters/kil'aman/maw.svg"
  48156. }
  48157. },
  48158. foot: {
  48159. height: math.unit(1.7, "feet"),
  48160. name: "Foot",
  48161. image: {
  48162. source: "./media/characters/kil'aman/foot.svg"
  48163. }
  48164. },
  48165. dick: {
  48166. height: math.unit(2.1, "feet"),
  48167. name: "Dick",
  48168. image: {
  48169. source: "./media/characters/kil'aman/dick.svg"
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Normal",
  48176. height: math.unit(9, "feet")
  48177. },
  48178. {
  48179. name: "Canon Height",
  48180. height: math.unit(10, "miles"),
  48181. default: true
  48182. },
  48183. {
  48184. name: "Maximum",
  48185. height: math.unit(6e9, "miles")
  48186. },
  48187. ]
  48188. ))
  48189. characterMakers.push(() => makeCharacter(
  48190. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48191. {
  48192. front: {
  48193. height: math.unit(90, "feet"),
  48194. weight: math.unit(675000, "lb"),
  48195. name: "Front",
  48196. image: {
  48197. source: "./media/characters/qadan/front.svg",
  48198. extra: 1012/1004,
  48199. bottom: 78/1090
  48200. }
  48201. },
  48202. back: {
  48203. height: math.unit(90, "feet"),
  48204. weight: math.unit(675000, "lb"),
  48205. name: "Back",
  48206. image: {
  48207. source: "./media/characters/qadan/back.svg",
  48208. extra: 1042/1031,
  48209. bottom: 55/1097
  48210. }
  48211. },
  48212. armored: {
  48213. height: math.unit(90, "feet"),
  48214. weight: math.unit(675000, "lb"),
  48215. name: "Armored",
  48216. image: {
  48217. source: "./media/characters/qadan/armored.svg",
  48218. extra: 1047/1037,
  48219. bottom: 48/1095
  48220. }
  48221. },
  48222. },
  48223. [
  48224. {
  48225. name: "Normal",
  48226. height: math.unit(90, "feet"),
  48227. default: true
  48228. },
  48229. ]
  48230. ))
  48231. characterMakers.push(() => makeCharacter(
  48232. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48233. {
  48234. front: {
  48235. height: math.unit(6, "feet"),
  48236. weight: math.unit(225, "lb"),
  48237. name: "Front",
  48238. image: {
  48239. source: "./media/characters/brooke/front.svg",
  48240. extra: 1050/1010,
  48241. bottom: 66/1116
  48242. }
  48243. },
  48244. back: {
  48245. height: math.unit(6, "feet"),
  48246. weight: math.unit(225, "lb"),
  48247. name: "Back",
  48248. image: {
  48249. source: "./media/characters/brooke/back.svg",
  48250. extra: 1053/1013,
  48251. bottom: 41/1094
  48252. }
  48253. },
  48254. dressed: {
  48255. height: math.unit(6, "feet"),
  48256. weight: math.unit(225, "lb"),
  48257. name: "Dressed",
  48258. image: {
  48259. source: "./media/characters/brooke/dressed.svg",
  48260. extra: 1050/1010,
  48261. bottom: 66/1116
  48262. }
  48263. },
  48264. },
  48265. [
  48266. {
  48267. name: "Canon Height",
  48268. height: math.unit(500, "miles"),
  48269. default: true
  48270. },
  48271. ]
  48272. ))
  48273. characterMakers.push(() => makeCharacter(
  48274. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48275. {
  48276. front: {
  48277. height: math.unit(6 + 2/12, "feet"),
  48278. weight: math.unit(210, "lb"),
  48279. name: "Front",
  48280. image: {
  48281. source: "./media/characters/wubs/front.svg",
  48282. extra: 1345/1325,
  48283. bottom: 70/1415
  48284. }
  48285. },
  48286. back: {
  48287. height: math.unit(6 + 2/12, "feet"),
  48288. weight: math.unit(210, "lb"),
  48289. name: "Back",
  48290. image: {
  48291. source: "./media/characters/wubs/back.svg",
  48292. extra: 1296/1275,
  48293. bottom: 58/1354
  48294. }
  48295. },
  48296. },
  48297. [
  48298. {
  48299. name: "Normal",
  48300. height: math.unit(6 + 2/12, "feet"),
  48301. default: true
  48302. },
  48303. {
  48304. name: "Macro",
  48305. height: math.unit(1000, "feet")
  48306. },
  48307. {
  48308. name: "Megamacro",
  48309. height: math.unit(1, "mile")
  48310. },
  48311. ]
  48312. ))
  48313. characterMakers.push(() => makeCharacter(
  48314. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48315. {
  48316. front: {
  48317. height: math.unit(4, "feet"),
  48318. weight: math.unit(120, "lb"),
  48319. name: "Front",
  48320. image: {
  48321. source: "./media/characters/blue/front.svg",
  48322. extra: 1636/1525,
  48323. bottom: 43/1679
  48324. }
  48325. },
  48326. back: {
  48327. height: math.unit(4, "feet"),
  48328. weight: math.unit(120, "lb"),
  48329. name: "Back",
  48330. image: {
  48331. source: "./media/characters/blue/back.svg",
  48332. extra: 1660/1560,
  48333. bottom: 57/1717
  48334. }
  48335. },
  48336. paws: {
  48337. height: math.unit(0.826, "feet"),
  48338. name: "Paws",
  48339. image: {
  48340. source: "./media/characters/blue/paws.svg"
  48341. }
  48342. },
  48343. },
  48344. [
  48345. {
  48346. name: "Micro",
  48347. height: math.unit(3, "inches")
  48348. },
  48349. {
  48350. name: "Normal",
  48351. height: math.unit(4, "feet"),
  48352. default: true
  48353. },
  48354. {
  48355. name: "Femenine Form",
  48356. height: math.unit(14, "feet")
  48357. },
  48358. {
  48359. name: "Werebat Form",
  48360. height: math.unit(18, "feet")
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48366. {
  48367. female: {
  48368. height: math.unit(7 + 4/12, "feet"),
  48369. weight: math.unit(243, "lb"),
  48370. name: "Female",
  48371. image: {
  48372. source: "./media/characters/kaya/female.svg",
  48373. extra: 975/898,
  48374. bottom: 34/1009
  48375. }
  48376. },
  48377. herm: {
  48378. height: math.unit(7 + 4/12, "feet"),
  48379. weight: math.unit(243, "lb"),
  48380. name: "Herm",
  48381. image: {
  48382. source: "./media/characters/kaya/herm.svg",
  48383. extra: 975/898,
  48384. bottom: 34/1009
  48385. }
  48386. },
  48387. },
  48388. [
  48389. {
  48390. name: "Normal",
  48391. height: math.unit(7 + 4/12, "feet"),
  48392. default: true
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48398. {
  48399. female: {
  48400. height: math.unit(9 + 4/12, "feet"),
  48401. weight: math.unit(398, "lb"),
  48402. name: "Female",
  48403. image: {
  48404. source: "./media/characters/kassandra/female.svg",
  48405. extra: 908/839,
  48406. bottom: 61/969
  48407. }
  48408. },
  48409. intersex: {
  48410. height: math.unit(9 + 4/12, "feet"),
  48411. weight: math.unit(398, "lb"),
  48412. name: "Intersex",
  48413. image: {
  48414. source: "./media/characters/kassandra/intersex.svg",
  48415. extra: 908/839,
  48416. bottom: 61/969
  48417. }
  48418. },
  48419. },
  48420. [
  48421. {
  48422. name: "Normal",
  48423. height: math.unit(9 + 4/12, "feet"),
  48424. default: true
  48425. },
  48426. ]
  48427. ))
  48428. characterMakers.push(() => makeCharacter(
  48429. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48430. {
  48431. front: {
  48432. height: math.unit(3, "meters"),
  48433. name: "Front",
  48434. image: {
  48435. source: "./media/characters/amy/front.svg",
  48436. extra: 1380/1343,
  48437. bottom: 70/1450
  48438. }
  48439. },
  48440. back: {
  48441. height: math.unit(3, "meters"),
  48442. name: "Back",
  48443. image: {
  48444. source: "./media/characters/amy/back.svg",
  48445. extra: 1380/1347,
  48446. bottom: 66/1446
  48447. }
  48448. },
  48449. },
  48450. [
  48451. {
  48452. name: "Normal",
  48453. height: math.unit(3, "meters"),
  48454. default: true
  48455. },
  48456. ]
  48457. ))
  48458. characterMakers.push(() => makeCharacter(
  48459. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48460. {
  48461. side: {
  48462. height: math.unit(47, "cm"),
  48463. weight: math.unit(10.8, "kg"),
  48464. name: "Side",
  48465. image: {
  48466. source: "./media/characters/alphaschakal/side.svg",
  48467. extra: 1058/568,
  48468. bottom: 62/1120
  48469. }
  48470. },
  48471. back: {
  48472. height: math.unit(78, "cm"),
  48473. weight: math.unit(10.8, "kg"),
  48474. name: "Back",
  48475. image: {
  48476. source: "./media/characters/alphaschakal/back.svg",
  48477. extra: 1102/942,
  48478. bottom: 185/1287
  48479. }
  48480. },
  48481. head: {
  48482. height: math.unit(28, "cm"),
  48483. name: "Head",
  48484. image: {
  48485. source: "./media/characters/alphaschakal/head.svg",
  48486. extra: 696/508,
  48487. bottom: 0/696
  48488. }
  48489. },
  48490. paw: {
  48491. height: math.unit(16, "cm"),
  48492. name: "Paw",
  48493. image: {
  48494. source: "./media/characters/alphaschakal/paw.svg"
  48495. }
  48496. },
  48497. },
  48498. [
  48499. {
  48500. name: "Normal",
  48501. height: math.unit(47, "cm"),
  48502. default: true
  48503. },
  48504. {
  48505. name: "Macro",
  48506. height: math.unit(340, "cm")
  48507. },
  48508. ]
  48509. ))
  48510. characterMakers.push(() => makeCharacter(
  48511. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48512. {
  48513. front: {
  48514. height: math.unit(36, "earths"),
  48515. name: "Front",
  48516. image: {
  48517. source: "./media/characters/ecobyss/front.svg",
  48518. extra: 1282/1215,
  48519. bottom: 11/1293
  48520. }
  48521. },
  48522. back: {
  48523. height: math.unit(36, "earths"),
  48524. name: "Back",
  48525. image: {
  48526. source: "./media/characters/ecobyss/back.svg",
  48527. extra: 1291/1222,
  48528. bottom: 8/1299
  48529. }
  48530. },
  48531. },
  48532. [
  48533. {
  48534. name: "Normal",
  48535. height: math.unit(36, "earths"),
  48536. default: true
  48537. },
  48538. ]
  48539. ))
  48540. characterMakers.push(() => makeCharacter(
  48541. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48542. {
  48543. front: {
  48544. height: math.unit(12, "feet"),
  48545. name: "Front",
  48546. image: {
  48547. source: "./media/characters/vasuk/front.svg",
  48548. extra: 1326/1207,
  48549. bottom: 64/1390
  48550. }
  48551. },
  48552. },
  48553. [
  48554. {
  48555. name: "Normal",
  48556. height: math.unit(12, "feet"),
  48557. default: true
  48558. },
  48559. ]
  48560. ))
  48561. characterMakers.push(() => makeCharacter(
  48562. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48563. {
  48564. side: {
  48565. height: math.unit(100, "feet"),
  48566. name: "Side",
  48567. image: {
  48568. source: "./media/characters/linneaus/side.svg",
  48569. extra: 987/807,
  48570. bottom: 47/1034
  48571. }
  48572. },
  48573. },
  48574. [
  48575. {
  48576. name: "Macro",
  48577. height: math.unit(100, "feet"),
  48578. default: true
  48579. },
  48580. ]
  48581. ))
  48582. characterMakers.push(() => makeCharacter(
  48583. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48584. {
  48585. front: {
  48586. height: math.unit(8, "feet"),
  48587. weight: math.unit(1200, "lb"),
  48588. name: "Front",
  48589. image: {
  48590. source: "./media/characters/nyterious-daligdig/front.svg",
  48591. extra: 1284/1094,
  48592. bottom: 84/1368
  48593. }
  48594. },
  48595. back: {
  48596. height: math.unit(8, "feet"),
  48597. weight: math.unit(1200, "lb"),
  48598. name: "Back",
  48599. image: {
  48600. source: "./media/characters/nyterious-daligdig/back.svg",
  48601. extra: 1301/1121,
  48602. bottom: 129/1430
  48603. }
  48604. },
  48605. mouth: {
  48606. height: math.unit(1.464, "feet"),
  48607. name: "Mouth",
  48608. image: {
  48609. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48610. }
  48611. },
  48612. },
  48613. [
  48614. {
  48615. name: "Small",
  48616. height: math.unit(8, "feet"),
  48617. default: true
  48618. },
  48619. {
  48620. name: "Normal",
  48621. height: math.unit(15, "feet")
  48622. },
  48623. {
  48624. name: "Macro",
  48625. height: math.unit(90, "feet")
  48626. },
  48627. ]
  48628. ))
  48629. characterMakers.push(() => makeCharacter(
  48630. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48631. {
  48632. front: {
  48633. height: math.unit(7 + 4/12, "feet"),
  48634. weight: math.unit(252, "lb"),
  48635. name: "Front",
  48636. image: {
  48637. source: "./media/characters/bandel/front.svg",
  48638. extra: 1946/1775,
  48639. bottom: 26/1972
  48640. }
  48641. },
  48642. back: {
  48643. height: math.unit(7 + 4/12, "feet"),
  48644. weight: math.unit(252, "lb"),
  48645. name: "Back",
  48646. image: {
  48647. source: "./media/characters/bandel/back.svg",
  48648. extra: 1940/1770,
  48649. bottom: 25/1965
  48650. }
  48651. },
  48652. maw: {
  48653. height: math.unit(2.15, "feet"),
  48654. name: "Maw",
  48655. image: {
  48656. source: "./media/characters/bandel/maw.svg"
  48657. }
  48658. },
  48659. stomach: {
  48660. height: math.unit(1.95, "feet"),
  48661. name: "Stomach",
  48662. image: {
  48663. source: "./media/characters/bandel/stomach.svg"
  48664. }
  48665. },
  48666. },
  48667. [
  48668. {
  48669. name: "Normal",
  48670. height: math.unit(7 + 4/12, "feet"),
  48671. default: true
  48672. },
  48673. ]
  48674. ))
  48675. characterMakers.push(() => makeCharacter(
  48676. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48677. {
  48678. front: {
  48679. height: math.unit(10 + 5/12, "feet"),
  48680. weight: math.unit(773.5, "kg"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/zed/front.svg",
  48684. extra: 987/941,
  48685. bottom: 52/1039
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Short",
  48692. height: math.unit(5 + 4/12, "feet")
  48693. },
  48694. {
  48695. name: "Average",
  48696. height: math.unit(10 + 5/12, "feet"),
  48697. default: true
  48698. },
  48699. {
  48700. name: "Mini-Macro",
  48701. height: math.unit(24 + 9/12, "feet")
  48702. },
  48703. {
  48704. name: "Macro",
  48705. height: math.unit(249, "feet")
  48706. },
  48707. {
  48708. name: "Mega-Macro",
  48709. height: math.unit(12490, "feet")
  48710. },
  48711. {
  48712. name: "Giga-Macro",
  48713. height: math.unit(24.9, "miles")
  48714. },
  48715. {
  48716. name: "Tera-Macro",
  48717. height: math.unit(24900, "miles")
  48718. },
  48719. {
  48720. name: "Cosmic Scale",
  48721. height: math.unit(38.9, "lightyears")
  48722. },
  48723. {
  48724. name: "Universal Scale",
  48725. height: math.unit(138e12, "lightyears")
  48726. },
  48727. ]
  48728. ))
  48729. characterMakers.push(() => makeCharacter(
  48730. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48731. {
  48732. front: {
  48733. height: math.unit(1561, "inches"),
  48734. name: "Front",
  48735. image: {
  48736. source: "./media/characters/ivan/front.svg",
  48737. extra: 1126/1071,
  48738. bottom: 26/1152
  48739. }
  48740. },
  48741. back: {
  48742. height: math.unit(1561, "inches"),
  48743. name: "Back",
  48744. image: {
  48745. source: "./media/characters/ivan/back.svg",
  48746. extra: 1134/1079,
  48747. bottom: 30/1164
  48748. }
  48749. },
  48750. },
  48751. [
  48752. {
  48753. name: "Normal",
  48754. height: math.unit(1561, "inches"),
  48755. default: true
  48756. },
  48757. ]
  48758. ))
  48759. characterMakers.push(() => makeCharacter(
  48760. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48761. {
  48762. front: {
  48763. height: math.unit(5 + 7/12, "feet"),
  48764. weight: math.unit(150, "lb"),
  48765. name: "Front",
  48766. image: {
  48767. source: "./media/characters/robin-arctic-hare/front.svg",
  48768. extra: 1148/974,
  48769. bottom: 20/1168
  48770. }
  48771. },
  48772. },
  48773. [
  48774. {
  48775. name: "Normal",
  48776. height: math.unit(5 + 7/12, "feet"),
  48777. default: true
  48778. },
  48779. ]
  48780. ))
  48781. characterMakers.push(() => makeCharacter(
  48782. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48783. {
  48784. side: {
  48785. height: math.unit(5, "feet"),
  48786. name: "Side",
  48787. image: {
  48788. source: "./media/characters/birch/side.svg",
  48789. extra: 985/796,
  48790. bottom: 111/1096
  48791. }
  48792. },
  48793. },
  48794. [
  48795. {
  48796. name: "Normal",
  48797. height: math.unit(5, "feet"),
  48798. default: true
  48799. },
  48800. ]
  48801. ))
  48802. characterMakers.push(() => makeCharacter(
  48803. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48804. {
  48805. front: {
  48806. height: math.unit(4, "feet"),
  48807. name: "Front",
  48808. image: {
  48809. source: "./media/characters/rasp/front.svg",
  48810. extra: 561/478,
  48811. bottom: 74/635
  48812. }
  48813. },
  48814. },
  48815. [
  48816. {
  48817. name: "Normal",
  48818. height: math.unit(4, "feet"),
  48819. default: true
  48820. },
  48821. ]
  48822. ))
  48823. characterMakers.push(() => makeCharacter(
  48824. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48825. {
  48826. front: {
  48827. height: math.unit(4 + 6/12, "feet"),
  48828. name: "Front",
  48829. image: {
  48830. source: "./media/characters/agatha/front.svg",
  48831. extra: 947/933,
  48832. bottom: 42/989
  48833. }
  48834. },
  48835. back: {
  48836. height: math.unit(4 + 6/12, "feet"),
  48837. name: "Back",
  48838. image: {
  48839. source: "./media/characters/agatha/back.svg",
  48840. extra: 935/922,
  48841. bottom: 48/983
  48842. }
  48843. },
  48844. },
  48845. [
  48846. {
  48847. name: "Normal",
  48848. height: math.unit(4 + 6 /12, "feet"),
  48849. default: true
  48850. },
  48851. {
  48852. name: "Max Size",
  48853. height: math.unit(500, "feet")
  48854. },
  48855. ]
  48856. ))
  48857. characterMakers.push(() => makeCharacter(
  48858. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48859. {
  48860. side: {
  48861. height: math.unit(30, "feet"),
  48862. name: "Side",
  48863. image: {
  48864. source: "./media/characters/roggy/side.svg",
  48865. extra: 909/643,
  48866. bottom: 63/972
  48867. }
  48868. },
  48869. lounging: {
  48870. height: math.unit(20, "feet"),
  48871. name: "Lounging",
  48872. image: {
  48873. source: "./media/characters/roggy/lounging.svg",
  48874. extra: 643/479,
  48875. bottom: 145/788
  48876. }
  48877. },
  48878. handpaw: {
  48879. height: math.unit(13.1, "feet"),
  48880. name: "Handpaw",
  48881. image: {
  48882. source: "./media/characters/roggy/handpaw.svg"
  48883. }
  48884. },
  48885. footpaw: {
  48886. height: math.unit(15.8, "feet"),
  48887. name: "Footpaw",
  48888. image: {
  48889. source: "./media/characters/roggy/footpaw.svg"
  48890. }
  48891. },
  48892. },
  48893. [
  48894. {
  48895. name: "Menacing",
  48896. height: math.unit(30, "feet"),
  48897. default: true
  48898. },
  48899. ]
  48900. ))
  48901. characterMakers.push(() => makeCharacter(
  48902. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48903. {
  48904. front: {
  48905. height: math.unit(5 + 7/12, "feet"),
  48906. weight: math.unit(135, "lb"),
  48907. name: "Front",
  48908. image: {
  48909. source: "./media/characters/naomi/front.svg",
  48910. extra: 1209/1154,
  48911. bottom: 129/1338
  48912. }
  48913. },
  48914. back: {
  48915. height: math.unit(5 + 7/12, "feet"),
  48916. weight: math.unit(135, "lb"),
  48917. name: "Back",
  48918. image: {
  48919. source: "./media/characters/naomi/back.svg",
  48920. extra: 1252/1190,
  48921. bottom: 23/1275
  48922. }
  48923. },
  48924. },
  48925. [
  48926. {
  48927. name: "Normal",
  48928. height: math.unit(5 + 7 /12, "feet"),
  48929. default: true
  48930. },
  48931. ]
  48932. ))
  48933. characterMakers.push(() => makeCharacter(
  48934. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48935. {
  48936. side: {
  48937. height: math.unit(35, "meters"),
  48938. name: "Side",
  48939. image: {
  48940. source: "./media/characters/kimpi/side.svg",
  48941. extra: 419/382,
  48942. bottom: 63/482
  48943. }
  48944. },
  48945. hand: {
  48946. height: math.unit(8.96, "meters"),
  48947. name: "Hand",
  48948. image: {
  48949. source: "./media/characters/kimpi/hand.svg"
  48950. }
  48951. },
  48952. },
  48953. [
  48954. {
  48955. name: "Normal",
  48956. height: math.unit(35, "meters"),
  48957. default: true
  48958. },
  48959. ]
  48960. ))
  48961. characterMakers.push(() => makeCharacter(
  48962. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48963. {
  48964. front: {
  48965. height: math.unit(4 + 4/12, "feet"),
  48966. name: "Front",
  48967. image: {
  48968. source: "./media/characters/pepper-purrloin/front.svg",
  48969. extra: 1141/1024,
  48970. bottom: 21/1162
  48971. }
  48972. },
  48973. },
  48974. [
  48975. {
  48976. name: "Normal",
  48977. height: math.unit(4 + 4/12, "feet"),
  48978. default: true
  48979. },
  48980. ]
  48981. ))
  48982. characterMakers.push(() => makeCharacter(
  48983. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48984. {
  48985. front: {
  48986. height: math.unit(6 + 2/12, "feet"),
  48987. name: "Front",
  48988. image: {
  48989. source: "./media/characters/raphael/front.svg",
  48990. extra: 1101/962,
  48991. bottom: 59/1160
  48992. }
  48993. },
  48994. },
  48995. [
  48996. {
  48997. name: "Normal",
  48998. height: math.unit(6 + 2/12, "feet"),
  48999. default: true
  49000. },
  49001. ]
  49002. ))
  49003. characterMakers.push(() => makeCharacter(
  49004. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49005. {
  49006. front: {
  49007. height: math.unit(6, "feet"),
  49008. weight: math.unit(150, "lb"),
  49009. name: "Front",
  49010. image: {
  49011. source: "./media/characters/victor-williams/front.svg",
  49012. extra: 1894/1825,
  49013. bottom: 67/1961
  49014. }
  49015. },
  49016. },
  49017. [
  49018. {
  49019. name: "Normal",
  49020. height: math.unit(6, "feet"),
  49021. default: true
  49022. },
  49023. ]
  49024. ))
  49025. characterMakers.push(() => makeCharacter(
  49026. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49027. {
  49028. front: {
  49029. height: math.unit(5 + 8/12, "feet"),
  49030. weight: math.unit(150, "lb"),
  49031. name: "Front",
  49032. image: {
  49033. source: "./media/characters/rachel/front.svg",
  49034. extra: 1902/1787,
  49035. bottom: 46/1948
  49036. }
  49037. },
  49038. },
  49039. [
  49040. {
  49041. name: "Base Height",
  49042. height: math.unit(5 + 8/12, "feet"),
  49043. default: true
  49044. },
  49045. {
  49046. name: "Macro",
  49047. height: math.unit(200, "feet")
  49048. },
  49049. {
  49050. name: "Mega Macro",
  49051. height: math.unit(1, "mile")
  49052. },
  49053. {
  49054. name: "Giga Macro",
  49055. height: math.unit(1500, "miles")
  49056. },
  49057. {
  49058. name: "Tera Macro",
  49059. height: math.unit(8000, "miles")
  49060. },
  49061. {
  49062. name: "Tera Macro+",
  49063. height: math.unit(2e5, "miles")
  49064. },
  49065. ]
  49066. ))
  49067. characterMakers.push(() => makeCharacter(
  49068. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49069. {
  49070. front: {
  49071. height: math.unit(6.5, "feet"),
  49072. name: "Front",
  49073. image: {
  49074. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49075. extra: 860/819,
  49076. bottom: 307/1167
  49077. }
  49078. },
  49079. back: {
  49080. height: math.unit(6.5, "feet"),
  49081. name: "Back",
  49082. image: {
  49083. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49084. extra: 880/837,
  49085. bottom: 395/1275
  49086. }
  49087. },
  49088. sleeping: {
  49089. height: math.unit(2.79, "feet"),
  49090. name: "Sleeping",
  49091. image: {
  49092. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49093. extra: 465/383,
  49094. bottom: 263/728
  49095. }
  49096. },
  49097. maw: {
  49098. height: math.unit(2.52, "feet"),
  49099. name: "Maw",
  49100. image: {
  49101. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49102. }
  49103. },
  49104. },
  49105. [
  49106. {
  49107. name: "Normal",
  49108. height: math.unit(6.5, "feet"),
  49109. default: true
  49110. },
  49111. ]
  49112. ))
  49113. characterMakers.push(() => makeCharacter(
  49114. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49115. {
  49116. front: {
  49117. height: math.unit(5, "feet"),
  49118. name: "Front",
  49119. image: {
  49120. source: "./media/characters/nova-nerium/front.svg",
  49121. extra: 1548/1392,
  49122. bottom: 374/1922
  49123. }
  49124. },
  49125. back: {
  49126. height: math.unit(5, "feet"),
  49127. name: "Back",
  49128. image: {
  49129. source: "./media/characters/nova-nerium/back.svg",
  49130. extra: 1658/1468,
  49131. bottom: 257/1915
  49132. }
  49133. },
  49134. },
  49135. [
  49136. {
  49137. name: "Normal",
  49138. height: math.unit(5, "feet"),
  49139. default: true
  49140. },
  49141. ]
  49142. ))
  49143. characterMakers.push(() => makeCharacter(
  49144. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49145. {
  49146. front: {
  49147. height: math.unit(5 + 4/12, "feet"),
  49148. name: "Front",
  49149. image: {
  49150. source: "./media/characters/ashe-pyriph/front.svg",
  49151. extra: 1935/1747,
  49152. bottom: 60/1995
  49153. }
  49154. },
  49155. },
  49156. [
  49157. {
  49158. name: "Normal",
  49159. height: math.unit(5 + 4/12, "feet"),
  49160. default: true
  49161. },
  49162. ]
  49163. ))
  49164. characterMakers.push(() => makeCharacter(
  49165. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49166. {
  49167. front: {
  49168. height: math.unit(8.7, "feet"),
  49169. name: "Front",
  49170. image: {
  49171. source: "./media/characters/flicker-wisp/front.svg",
  49172. extra: 1835/1613,
  49173. bottom: 449/2284
  49174. }
  49175. },
  49176. side: {
  49177. height: math.unit(8.7, "feet"),
  49178. name: "Side",
  49179. image: {
  49180. source: "./media/characters/flicker-wisp/side.svg",
  49181. extra: 1841/1642,
  49182. bottom: 336/2177
  49183. },
  49184. default: true
  49185. },
  49186. maw: {
  49187. height: math.unit(3.35, "feet"),
  49188. name: "Maw",
  49189. image: {
  49190. source: "./media/characters/flicker-wisp/maw.svg",
  49191. extra: 2338/1506,
  49192. bottom: 0/2338
  49193. }
  49194. },
  49195. ovipositor: {
  49196. height: math.unit(4.95, "feet"),
  49197. name: "Ovipositor",
  49198. image: {
  49199. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49200. }
  49201. },
  49202. egg: {
  49203. height: math.unit(0.385, "feet"),
  49204. weight: math.unit(2, "lb"),
  49205. name: "Egg",
  49206. image: {
  49207. source: "./media/characters/flicker-wisp/egg.svg"
  49208. }
  49209. },
  49210. },
  49211. [
  49212. {
  49213. name: "Normal",
  49214. height: math.unit(8.7, "feet"),
  49215. default: true
  49216. },
  49217. ]
  49218. ))
  49219. characterMakers.push(() => makeCharacter(
  49220. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49221. {
  49222. side: {
  49223. height: math.unit(11, "feet"),
  49224. name: "Side",
  49225. image: {
  49226. source: "./media/characters/faefnul/side.svg",
  49227. extra: 1100/1007,
  49228. bottom: 0/1100
  49229. }
  49230. },
  49231. },
  49232. [
  49233. {
  49234. name: "Normal",
  49235. height: math.unit(11, "feet"),
  49236. default: true
  49237. },
  49238. ]
  49239. ))
  49240. characterMakers.push(() => makeCharacter(
  49241. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49242. {
  49243. front: {
  49244. height: math.unit(6 + 2/12, "feet"),
  49245. name: "Front",
  49246. image: {
  49247. source: "./media/characters/shady/front.svg",
  49248. extra: 502/461,
  49249. bottom: 9/511
  49250. }
  49251. },
  49252. kneeling: {
  49253. height: math.unit(4.6, "feet"),
  49254. name: "Kneeling",
  49255. image: {
  49256. source: "./media/characters/shady/kneeling.svg",
  49257. extra: 1328/1219,
  49258. bottom: 117/1445
  49259. }
  49260. },
  49261. maw: {
  49262. height: math.unit(2, "feet"),
  49263. name: "Maw",
  49264. image: {
  49265. source: "./media/characters/shady/maw.svg"
  49266. }
  49267. },
  49268. },
  49269. [
  49270. {
  49271. name: "Nano",
  49272. height: math.unit(1, "mm")
  49273. },
  49274. {
  49275. name: "Micro",
  49276. height: math.unit(12, "mm")
  49277. },
  49278. {
  49279. name: "Tiny",
  49280. height: math.unit(3, "inches")
  49281. },
  49282. {
  49283. name: "Normal",
  49284. height: math.unit(6 + 2/12, "feet"),
  49285. default: true
  49286. },
  49287. {
  49288. name: "Big",
  49289. height: math.unit(15, "feet")
  49290. },
  49291. {
  49292. name: "Macro",
  49293. height: math.unit(150, "feet")
  49294. },
  49295. {
  49296. name: "Titanic",
  49297. height: math.unit(500, "feet")
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49303. {
  49304. front: {
  49305. height: math.unit(12, "feet"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/fenrir/front.svg",
  49309. extra: 968/875,
  49310. bottom: 22/990
  49311. }
  49312. },
  49313. },
  49314. [
  49315. {
  49316. name: "Big",
  49317. height: math.unit(12, "feet"),
  49318. default: true
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49324. {
  49325. front: {
  49326. height: math.unit(5 + 4/12, "feet"),
  49327. name: "Front",
  49328. image: {
  49329. source: "./media/characters/makar/front.svg",
  49330. extra: 1181/1112,
  49331. bottom: 78/1259
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Normal",
  49338. height: math.unit(5 + 4/12, "feet"),
  49339. default: true
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(5 + 7/12, "feet"),
  49348. name: "Front",
  49349. image: {
  49350. source: "./media/characters/callow/front.svg",
  49351. extra: 1482/1304,
  49352. bottom: 23/1505
  49353. }
  49354. },
  49355. back: {
  49356. height: math.unit(5 + 7/12, "feet"),
  49357. name: "Back",
  49358. image: {
  49359. source: "./media/characters/callow/back.svg",
  49360. extra: 1484/1296,
  49361. bottom: 25/1509
  49362. }
  49363. },
  49364. },
  49365. [
  49366. {
  49367. name: "Micro",
  49368. height: math.unit(3, "inches"),
  49369. default: true
  49370. },
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(5 + 7/12, "feet")
  49374. },
  49375. ]
  49376. ))
  49377. characterMakers.push(() => makeCharacter(
  49378. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49379. {
  49380. front: {
  49381. height: math.unit(6 + 2/12, "feet"),
  49382. name: "Front",
  49383. image: {
  49384. source: "./media/characters/natel/front.svg",
  49385. extra: 1833/1692,
  49386. bottom: 166/1999
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(6 + 2/12, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(1.75, "meters"),
  49403. name: "Front",
  49404. image: {
  49405. source: "./media/characters/misu/front.svg",
  49406. extra: 1690/1558,
  49407. bottom: 234/1924
  49408. }
  49409. },
  49410. back: {
  49411. height: math.unit(1.75, "meters"),
  49412. name: "Back",
  49413. image: {
  49414. source: "./media/characters/misu/back.svg",
  49415. extra: 1762/1618,
  49416. bottom: 146/1908
  49417. }
  49418. },
  49419. frontNude: {
  49420. height: math.unit(1.75, "meters"),
  49421. name: "Front (Nude)",
  49422. image: {
  49423. source: "./media/characters/misu/front-nude.svg",
  49424. extra: 1690/1558,
  49425. bottom: 234/1924
  49426. }
  49427. },
  49428. backNude: {
  49429. height: math.unit(1.75, "meters"),
  49430. name: "Back (Nude)",
  49431. image: {
  49432. source: "./media/characters/misu/back-nude.svg",
  49433. extra: 1762/1618,
  49434. bottom: 146/1908
  49435. }
  49436. },
  49437. frontErect: {
  49438. height: math.unit(1.75, "meters"),
  49439. name: "Front (Erect)",
  49440. image: {
  49441. source: "./media/characters/misu/front-erect.svg",
  49442. extra: 1690/1558,
  49443. bottom: 234/1924
  49444. }
  49445. },
  49446. maw: {
  49447. height: math.unit(0.47, "meters"),
  49448. name: "Maw",
  49449. image: {
  49450. source: "./media/characters/misu/maw.svg"
  49451. }
  49452. },
  49453. head: {
  49454. height: math.unit(0.35, "meters"),
  49455. name: "Head",
  49456. image: {
  49457. source: "./media/characters/misu/head.svg"
  49458. }
  49459. },
  49460. rear: {
  49461. height: math.unit(0.47, "meters"),
  49462. name: "Rear",
  49463. image: {
  49464. source: "./media/characters/misu/rear.svg"
  49465. }
  49466. },
  49467. },
  49468. [
  49469. {
  49470. name: "Normal",
  49471. height: math.unit(1.75, "meters")
  49472. },
  49473. {
  49474. name: "Not good for the people",
  49475. height: math.unit(42, "meters")
  49476. },
  49477. {
  49478. name: "Not good for the neighborhood",
  49479. height: math.unit(135, "meters")
  49480. },
  49481. {
  49482. name: "Bit bigger problem",
  49483. height: math.unit(380, "meters"),
  49484. default: true
  49485. },
  49486. {
  49487. name: "Not good for the city",
  49488. height: math.unit(1.5, "km")
  49489. },
  49490. {
  49491. name: "Not good for the county",
  49492. height: math.unit(5.5, "km")
  49493. },
  49494. {
  49495. name: "Not good for the state",
  49496. height: math.unit(25, "km")
  49497. },
  49498. {
  49499. name: "Not good for the country",
  49500. height: math.unit(125, "km")
  49501. },
  49502. {
  49503. name: "Not good for the continent",
  49504. height: math.unit(2100, "km")
  49505. },
  49506. {
  49507. name: "Not good for the planet",
  49508. height: math.unit(35000, "km")
  49509. },
  49510. {
  49511. name: "Just no",
  49512. height: math.unit(8.5e18, "km")
  49513. },
  49514. ]
  49515. ))
  49516. characterMakers.push(() => makeCharacter(
  49517. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49518. {
  49519. front: {
  49520. height: math.unit(6.5, "feet"),
  49521. name: "Front",
  49522. image: {
  49523. source: "./media/characters/poppy/front.svg",
  49524. extra: 1878/1812,
  49525. bottom: 43/1921
  49526. }
  49527. },
  49528. feet: {
  49529. height: math.unit(1.06, "feet"),
  49530. name: "Feet",
  49531. image: {
  49532. source: "./media/characters/poppy/feet.svg",
  49533. extra: 1083/1083,
  49534. bottom: 87/1170
  49535. }
  49536. },
  49537. },
  49538. [
  49539. {
  49540. name: "Human",
  49541. height: math.unit(6.5, "feet")
  49542. },
  49543. {
  49544. name: "Default",
  49545. height: math.unit(300, "feet"),
  49546. default: true
  49547. },
  49548. {
  49549. name: "Huge",
  49550. height: math.unit(850, "feet")
  49551. },
  49552. {
  49553. name: "Mega",
  49554. height: math.unit(8000, "feet")
  49555. },
  49556. {
  49557. name: "Giga",
  49558. height: math.unit(300, "miles")
  49559. },
  49560. ]
  49561. ))
  49562. characterMakers.push(() => makeCharacter(
  49563. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49564. {
  49565. bipedal: {
  49566. height: math.unit(7, "feet"),
  49567. name: "Bipedal",
  49568. image: {
  49569. source: "./media/characters/zener/bipedal.svg",
  49570. extra: 874/805,
  49571. bottom: 109/983
  49572. }
  49573. },
  49574. quadrupedal: {
  49575. height: math.unit(4.64, "feet"),
  49576. name: "Quadrupedal",
  49577. image: {
  49578. source: "./media/characters/zener/quadrupedal.svg",
  49579. extra: 638/507,
  49580. bottom: 190/828
  49581. }
  49582. },
  49583. cock: {
  49584. height: math.unit(18, "inches"),
  49585. name: "Cock",
  49586. image: {
  49587. source: "./media/characters/zener/cock.svg"
  49588. }
  49589. },
  49590. },
  49591. [
  49592. {
  49593. name: "Normal",
  49594. height: math.unit(7, "feet"),
  49595. default: true
  49596. },
  49597. ]
  49598. ))
  49599. characterMakers.push(() => makeCharacter(
  49600. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49601. {
  49602. nude: {
  49603. height: math.unit(5 + 6/12, "feet"),
  49604. name: "Nude",
  49605. image: {
  49606. source: "./media/characters/charlie-dog/nude.svg",
  49607. extra: 768/734,
  49608. bottom: 26/794
  49609. }
  49610. },
  49611. dressed: {
  49612. height: math.unit(5 + 6/12, "feet"),
  49613. name: "Dressed",
  49614. image: {
  49615. source: "./media/characters/charlie-dog/dressed.svg",
  49616. extra: 768/734,
  49617. bottom: 26/794
  49618. }
  49619. },
  49620. },
  49621. [
  49622. {
  49623. name: "Normal",
  49624. height: math.unit(5 + 6/12, "feet"),
  49625. default: true
  49626. },
  49627. ]
  49628. ))
  49629. characterMakers.push(() => makeCharacter(
  49630. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49631. {
  49632. front: {
  49633. height: math.unit(6 + 4/12, "feet"),
  49634. name: "Front",
  49635. image: {
  49636. source: "./media/characters/ir'istrasz/front.svg",
  49637. extra: 1014/977,
  49638. bottom: 65/1079
  49639. }
  49640. },
  49641. back: {
  49642. height: math.unit(6 + 4/12, "feet"),
  49643. name: "Back",
  49644. image: {
  49645. source: "./media/characters/ir'istrasz/back.svg",
  49646. extra: 1024/992,
  49647. bottom: 34/1058
  49648. }
  49649. },
  49650. },
  49651. [
  49652. {
  49653. name: "Normal",
  49654. height: math.unit(6 + 4/12, "feet"),
  49655. default: true
  49656. },
  49657. ]
  49658. ))
  49659. characterMakers.push(() => makeCharacter(
  49660. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49661. {
  49662. front: {
  49663. height: math.unit(5 + 8/12, "feet"),
  49664. name: "Front",
  49665. image: {
  49666. source: "./media/characters/dee-ditto/front.svg",
  49667. extra: 1874/1785,
  49668. bottom: 68/1942
  49669. }
  49670. },
  49671. back: {
  49672. height: math.unit(5 + 8/12, "feet"),
  49673. name: "Back",
  49674. image: {
  49675. source: "./media/characters/dee-ditto/back.svg",
  49676. extra: 1870/1783,
  49677. bottom: 77/1947
  49678. }
  49679. },
  49680. },
  49681. [
  49682. {
  49683. name: "Normal",
  49684. height: math.unit(5 + 8/12, "feet"),
  49685. default: true
  49686. },
  49687. ]
  49688. ))
  49689. characterMakers.push(() => makeCharacter(
  49690. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49691. {
  49692. front: {
  49693. height: math.unit(7 + 6/12, "feet"),
  49694. name: "Front",
  49695. image: {
  49696. source: "./media/characters/fey/front.svg",
  49697. extra: 995/979,
  49698. bottom: 30/1025
  49699. }
  49700. },
  49701. back: {
  49702. height: math.unit(7 + 6/12, "feet"),
  49703. name: "Back",
  49704. image: {
  49705. source: "./media/characters/fey/back.svg",
  49706. extra: 1079/1008,
  49707. bottom: 5/1084
  49708. }
  49709. },
  49710. dressed: {
  49711. height: math.unit(7 + 6/12, "feet"),
  49712. name: "Dressed",
  49713. image: {
  49714. source: "./media/characters/fey/dressed.svg",
  49715. extra: 995/979,
  49716. bottom: 30/1025
  49717. }
  49718. },
  49719. },
  49720. [
  49721. {
  49722. name: "Normal",
  49723. height: math.unit(7 + 6/12, "feet"),
  49724. default: true
  49725. },
  49726. ]
  49727. ))
  49728. characterMakers.push(() => makeCharacter(
  49729. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49730. {
  49731. standing: {
  49732. height: math.unit(17, "feet"),
  49733. name: "Standing",
  49734. image: {
  49735. source: "./media/characters/aster/standing.svg",
  49736. extra: 1798/1598,
  49737. bottom: 117/1915
  49738. }
  49739. },
  49740. },
  49741. [
  49742. {
  49743. name: "Normal",
  49744. height: math.unit(17, "feet"),
  49745. default: true
  49746. },
  49747. {
  49748. name: "Homewrecker",
  49749. height: math.unit(95, "feet")
  49750. },
  49751. {
  49752. name: "Planet Devourer",
  49753. height: math.unit(1008000, "miles")
  49754. },
  49755. ]
  49756. ))
  49757. characterMakers.push(() => makeCharacter(
  49758. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49759. {
  49760. front: {
  49761. height: math.unit(6 + 5/12, "feet"),
  49762. weight: math.unit(265, "lb"),
  49763. name: "Front",
  49764. image: {
  49765. source: "./media/characters/devon-childs/front.svg",
  49766. extra: 1795/1721,
  49767. bottom: 41/1836
  49768. }
  49769. },
  49770. side: {
  49771. height: math.unit(6 + 5/12, "feet"),
  49772. weight: math.unit(265, "lb"),
  49773. name: "Side",
  49774. image: {
  49775. source: "./media/characters/devon-childs/side.svg",
  49776. extra: 1812/1738,
  49777. bottom: 30/1842
  49778. }
  49779. },
  49780. back: {
  49781. height: math.unit(6 + 5/12, "feet"),
  49782. weight: math.unit(265, "lb"),
  49783. name: "Back",
  49784. image: {
  49785. source: "./media/characters/devon-childs/back.svg",
  49786. extra: 1808/1735,
  49787. bottom: 23/1831
  49788. }
  49789. },
  49790. hand: {
  49791. height: math.unit(1.464, "feet"),
  49792. name: "Hand",
  49793. image: {
  49794. source: "./media/characters/devon-childs/hand.svg"
  49795. }
  49796. },
  49797. foot: {
  49798. height: math.unit(1.6, "feet"),
  49799. name: "Foot",
  49800. image: {
  49801. source: "./media/characters/devon-childs/foot.svg"
  49802. }
  49803. },
  49804. },
  49805. [
  49806. {
  49807. name: "Micro",
  49808. height: math.unit(7, "cm")
  49809. },
  49810. {
  49811. name: "Normal",
  49812. height: math.unit(6 + 5/12, "feet"),
  49813. default: true
  49814. },
  49815. {
  49816. name: "Macro",
  49817. height: math.unit(154, "feet")
  49818. },
  49819. ]
  49820. ))
  49821. characterMakers.push(() => makeCharacter(
  49822. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49823. {
  49824. front: {
  49825. height: math.unit(6, "feet"),
  49826. weight: math.unit(180, "lb"),
  49827. name: "Front",
  49828. image: {
  49829. source: "./media/characters/lydemox-vir/front.svg",
  49830. extra: 1632/1435,
  49831. bottom: 58/1690
  49832. }
  49833. },
  49834. frontSFW: {
  49835. height: math.unit(6, "feet"),
  49836. weight: math.unit(180, "lb"),
  49837. name: "Front (SFW)",
  49838. image: {
  49839. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49840. extra: 1632/1435,
  49841. bottom: 58/1690
  49842. }
  49843. },
  49844. back: {
  49845. height: math.unit(6, "feet"),
  49846. weight: math.unit(180, "lb"),
  49847. name: "Back",
  49848. image: {
  49849. source: "./media/characters/lydemox-vir/back.svg",
  49850. extra: 1593/1408,
  49851. bottom: 31/1624
  49852. }
  49853. },
  49854. paw: {
  49855. height: math.unit(1.85, "feet"),
  49856. name: "Paw",
  49857. image: {
  49858. source: "./media/characters/lydemox-vir/paw.svg"
  49859. }
  49860. },
  49861. dick: {
  49862. height: math.unit(1.8, "feet"),
  49863. name: "Dick",
  49864. image: {
  49865. source: "./media/characters/lydemox-vir/dick.svg"
  49866. }
  49867. },
  49868. },
  49869. [
  49870. {
  49871. name: "Macro",
  49872. height: math.unit(100, "feet"),
  49873. default: true
  49874. },
  49875. {
  49876. name: "Teramacro",
  49877. height: math.unit(1, "earth")
  49878. },
  49879. {
  49880. name: "Planetary",
  49881. height: math.unit(20, "earths")
  49882. },
  49883. ]
  49884. ))
  49885. characterMakers.push(() => makeCharacter(
  49886. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49887. {
  49888. front: {
  49889. height: math.unit(15 + 8/12, "feet"),
  49890. weight: math.unit(1237, "kg"),
  49891. name: "Front",
  49892. image: {
  49893. source: "./media/characters/mia/front.svg",
  49894. extra: 1573/1446,
  49895. bottom: 58/1631
  49896. }
  49897. },
  49898. },
  49899. [
  49900. {
  49901. name: "Small",
  49902. height: math.unit(9 + 5/12, "feet")
  49903. },
  49904. {
  49905. name: "Normal",
  49906. height: math.unit(15 + 8/12, "feet"),
  49907. default: true
  49908. },
  49909. ]
  49910. ))
  49911. characterMakers.push(() => makeCharacter(
  49912. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49913. {
  49914. front: {
  49915. height: math.unit(10 + 6/12, "feet"),
  49916. weight: math.unit(1.3, "tons"),
  49917. name: "Front",
  49918. image: {
  49919. source: "./media/characters/mr-graves/front.svg",
  49920. extra: 1779/1695,
  49921. bottom: 198/1977
  49922. }
  49923. },
  49924. },
  49925. [
  49926. {
  49927. name: "Normal",
  49928. height: math.unit(10 + 6 /12, "feet"),
  49929. default: true
  49930. },
  49931. ]
  49932. ))
  49933. characterMakers.push(() => makeCharacter(
  49934. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49935. {
  49936. dressedFront: {
  49937. height: math.unit(5 + 8/12, "feet"),
  49938. weight: math.unit(125, "lb"),
  49939. name: "Dressed (Front)",
  49940. image: {
  49941. source: "./media/characters/jess/dressed-front.svg",
  49942. extra: 1176/1152,
  49943. bottom: 42/1218
  49944. }
  49945. },
  49946. dressedSide: {
  49947. height: math.unit(5 + 8/12, "feet"),
  49948. weight: math.unit(125, "lb"),
  49949. name: "Dressed (Side)",
  49950. image: {
  49951. source: "./media/characters/jess/dressed-side.svg",
  49952. extra: 1204/1190,
  49953. bottom: 6/1210
  49954. }
  49955. },
  49956. nudeFront: {
  49957. height: math.unit(5 + 8/12, "feet"),
  49958. weight: math.unit(125, "lb"),
  49959. name: "Nude (Front)",
  49960. image: {
  49961. source: "./media/characters/jess/nude-front.svg",
  49962. extra: 1176/1152,
  49963. bottom: 42/1218
  49964. }
  49965. },
  49966. nudeSide: {
  49967. height: math.unit(5 + 8/12, "feet"),
  49968. weight: math.unit(125, "lb"),
  49969. name: "Nude (Side)",
  49970. image: {
  49971. source: "./media/characters/jess/nude-side.svg",
  49972. extra: 1204/1190,
  49973. bottom: 6/1210
  49974. }
  49975. },
  49976. organsFront: {
  49977. height: math.unit(2.83799342105, "feet"),
  49978. name: "Organs (Front)",
  49979. image: {
  49980. source: "./media/characters/jess/organs-front.svg"
  49981. }
  49982. },
  49983. organsSide: {
  49984. height: math.unit(2.64225290474, "feet"),
  49985. name: "Organs (Side)",
  49986. image: {
  49987. source: "./media/characters/jess/organs-side.svg"
  49988. }
  49989. },
  49990. digestiveTractFront: {
  49991. height: math.unit(2.8106580871, "feet"),
  49992. name: "Digestive Tract (Front)",
  49993. image: {
  49994. source: "./media/characters/jess/digestive-tract-front.svg"
  49995. }
  49996. },
  49997. digestiveTractSide: {
  49998. height: math.unit(2.54365045014, "feet"),
  49999. name: "Digestive Tract (Side)",
  50000. image: {
  50001. source: "./media/characters/jess/digestive-tract-side.svg"
  50002. }
  50003. },
  50004. respiratorySystemFront: {
  50005. height: math.unit(1.11196233456, "feet"),
  50006. name: "Respiratory System (Front)",
  50007. image: {
  50008. source: "./media/characters/jess/respiratory-system-front.svg"
  50009. }
  50010. },
  50011. respiratorySystemSide: {
  50012. height: math.unit(0.89327966297, "feet"),
  50013. name: "Respiratory System (Side)",
  50014. image: {
  50015. source: "./media/characters/jess/respiratory-system-side.svg"
  50016. }
  50017. },
  50018. urinaryTractFront: {
  50019. height: math.unit(1.16126356186, "feet"),
  50020. name: "Urinary Tract (Front)",
  50021. image: {
  50022. source: "./media/characters/jess/urinary-tract-front.svg"
  50023. }
  50024. },
  50025. urinaryTractSide: {
  50026. height: math.unit(1.20910039627, "feet"),
  50027. name: "Urinary Tract (Side)",
  50028. image: {
  50029. source: "./media/characters/jess/urinary-tract-side.svg"
  50030. }
  50031. },
  50032. reproductiveOrgansFront: {
  50033. height: math.unit(0.48422591566, "feet"),
  50034. name: "Reproductive Organs (Front)",
  50035. image: {
  50036. source: "./media/characters/jess/reproductive-organs-front.svg"
  50037. }
  50038. },
  50039. reproductiveOrgansSide: {
  50040. height: math.unit(0.61553314481, "feet"),
  50041. name: "Reproductive Organs (Side)",
  50042. image: {
  50043. source: "./media/characters/jess/reproductive-organs-side.svg"
  50044. }
  50045. },
  50046. breastsFront: {
  50047. height: math.unit(0.47690395121, "feet"),
  50048. name: "Breasts (Front)",
  50049. image: {
  50050. source: "./media/characters/jess/breasts-front.svg"
  50051. }
  50052. },
  50053. breastsSide: {
  50054. height: math.unit(0.30556998307, "feet"),
  50055. name: "Breasts (Side)",
  50056. image: {
  50057. source: "./media/characters/jess/breasts-side.svg"
  50058. }
  50059. },
  50060. heartFront: {
  50061. height: math.unit(0.53011022622, "feet"),
  50062. name: "Heart (Front)",
  50063. image: {
  50064. source: "./media/characters/jess/heart-front.svg"
  50065. }
  50066. },
  50067. heartSide: {
  50068. height: math.unit(0.51790695213, "feet"),
  50069. name: "Heart (Side)",
  50070. image: {
  50071. source: "./media/characters/jess/heart-side.svg"
  50072. }
  50073. },
  50074. earsAndNoseFront: {
  50075. height: math.unit(0.29385483995, "feet"),
  50076. name: "Ears and Nose (Front)",
  50077. image: {
  50078. source: "./media/characters/jess/ears-and-nose-front.svg"
  50079. }
  50080. },
  50081. earsAndNoseSide: {
  50082. height: math.unit(0.18109658741, "feet"),
  50083. name: "Ears and Nose (Side)",
  50084. image: {
  50085. source: "./media/characters/jess/ears-and-nose-side.svg"
  50086. }
  50087. },
  50088. },
  50089. [
  50090. {
  50091. name: "Normal",
  50092. height: math.unit(5 + 8/12, "feet"),
  50093. default: true
  50094. },
  50095. ]
  50096. ))
  50097. characterMakers.push(() => makeCharacter(
  50098. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50099. {
  50100. front: {
  50101. height: math.unit(6, "feet"),
  50102. weight: math.unit(6.64467e-7, "grams"),
  50103. name: "Front",
  50104. image: {
  50105. source: "./media/characters/wimpering/front.svg",
  50106. extra: 597/587,
  50107. bottom: 34/631
  50108. }
  50109. },
  50110. },
  50111. [
  50112. {
  50113. name: "Micro",
  50114. height: math.unit(0.4, "mm"),
  50115. default: true
  50116. },
  50117. ]
  50118. ))
  50119. characterMakers.push(() => makeCharacter(
  50120. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50121. {
  50122. front: {
  50123. height: math.unit(5 + 2/12, "feet"),
  50124. weight: math.unit(110, "lb"),
  50125. name: "Front",
  50126. image: {
  50127. source: "./media/characters/keltre/front.svg",
  50128. extra: 1099/1057,
  50129. bottom: 22/1121
  50130. }
  50131. },
  50132. back: {
  50133. height: math.unit(5 + 2/12, "feet"),
  50134. weight: math.unit(110, "lb"),
  50135. name: "Back",
  50136. image: {
  50137. source: "./media/characters/keltre/back.svg",
  50138. extra: 1095/1053,
  50139. bottom: 17/1112
  50140. }
  50141. },
  50142. dressed: {
  50143. height: math.unit(5 + 2/12, "feet"),
  50144. weight: math.unit(110, "lb"),
  50145. name: "Dressed",
  50146. image: {
  50147. source: "./media/characters/keltre/dressed.svg",
  50148. extra: 1099/1057,
  50149. bottom: 22/1121
  50150. }
  50151. },
  50152. winter: {
  50153. height: math.unit(5 + 2/12, "feet"),
  50154. weight: math.unit(110, "lb"),
  50155. name: "Winter",
  50156. image: {
  50157. source: "./media/characters/keltre/winter.svg",
  50158. extra: 1099/1057,
  50159. bottom: 22/1121
  50160. }
  50161. },
  50162. head: {
  50163. height: math.unit(1.61 * 0.86, "feet"),
  50164. name: "Head",
  50165. image: {
  50166. source: "./media/characters/keltre/head.svg",
  50167. extra: 534/421,
  50168. bottom: 0/534
  50169. }
  50170. },
  50171. hand: {
  50172. height: math.unit(1.3 * 0.86, "feet"),
  50173. name: "Hand",
  50174. image: {
  50175. source: "./media/characters/keltre/hand.svg"
  50176. }
  50177. },
  50178. foot: {
  50179. height: math.unit(1.8 * 0.86, "feet"),
  50180. name: "Foot",
  50181. image: {
  50182. source: "./media/characters/keltre/foot.svg"
  50183. }
  50184. },
  50185. },
  50186. [
  50187. {
  50188. name: "Fine",
  50189. height: math.unit(1, "inch")
  50190. },
  50191. {
  50192. name: "Dimnutive",
  50193. height: math.unit(4, "inches")
  50194. },
  50195. {
  50196. name: "Tiny",
  50197. height: math.unit(1, "foot")
  50198. },
  50199. {
  50200. name: "Small",
  50201. height: math.unit(3, "feet")
  50202. },
  50203. {
  50204. name: "Normal",
  50205. height: math.unit(5 + 2/12, "feet"),
  50206. default: true
  50207. },
  50208. ]
  50209. ))
  50210. characterMakers.push(() => makeCharacter(
  50211. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50212. {
  50213. front: {
  50214. height: math.unit(6 + 2/12, "feet"),
  50215. name: "Front",
  50216. image: {
  50217. source: "./media/characters/nox/front.svg",
  50218. extra: 1917/1830,
  50219. bottom: 74/1991
  50220. }
  50221. },
  50222. back: {
  50223. height: math.unit(6 + 2/12, "feet"),
  50224. name: "Back",
  50225. image: {
  50226. source: "./media/characters/nox/back.svg",
  50227. extra: 1896/1815,
  50228. bottom: 21/1917
  50229. }
  50230. },
  50231. head: {
  50232. height: math.unit(1.1, "feet"),
  50233. name: "Head",
  50234. image: {
  50235. source: "./media/characters/nox/head.svg",
  50236. extra: 874/704,
  50237. bottom: 0/874
  50238. }
  50239. },
  50240. tattoo: {
  50241. height: math.unit(0.729, "feet"),
  50242. name: "Tattoo",
  50243. image: {
  50244. source: "./media/characters/nox/tattoo.svg"
  50245. }
  50246. },
  50247. },
  50248. [
  50249. {
  50250. name: "Normal",
  50251. height: math.unit(6 + 2/12, "feet")
  50252. },
  50253. {
  50254. name: "Gigamacro",
  50255. height: math.unit(2, "earths"),
  50256. default: true
  50257. },
  50258. {
  50259. name: "Cosmic",
  50260. height: math.unit(867, "yottameters")
  50261. },
  50262. ]
  50263. ))
  50264. characterMakers.push(() => makeCharacter(
  50265. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50266. {
  50267. front: {
  50268. height: math.unit(6, "feet"),
  50269. weight: math.unit(150, "lb"),
  50270. name: "Front",
  50271. image: {
  50272. source: "./media/characters/caspian/front.svg",
  50273. extra: 1443/1359,
  50274. bottom: 0/1443
  50275. }
  50276. },
  50277. back: {
  50278. height: math.unit(6, "feet"),
  50279. weight: math.unit(150, "lb"),
  50280. name: "Back",
  50281. image: {
  50282. source: "./media/characters/caspian/back.svg",
  50283. extra: 1379/1309,
  50284. bottom: 0/1379
  50285. }
  50286. },
  50287. head: {
  50288. height: math.unit(0.9, "feet"),
  50289. name: "Head",
  50290. image: {
  50291. source: "./media/characters/caspian/head.svg",
  50292. extra: 692/492,
  50293. bottom: 0/692
  50294. }
  50295. },
  50296. headAlt: {
  50297. height: math.unit(0.95, "feet"),
  50298. name: "Head (Alt)",
  50299. image: {
  50300. source: "./media/characters/caspian/head-alt.svg",
  50301. extra: 668/508,
  50302. bottom: 0/668
  50303. }
  50304. },
  50305. hand: {
  50306. height: math.unit(0.8, "feet"),
  50307. name: "Hand",
  50308. image: {
  50309. source: "./media/characters/caspian/hand.svg"
  50310. }
  50311. },
  50312. paw: {
  50313. height: math.unit(0.95, "feet"),
  50314. name: "Paw",
  50315. image: {
  50316. source: "./media/characters/caspian/paw.svg"
  50317. }
  50318. },
  50319. },
  50320. [
  50321. {
  50322. name: "Normal",
  50323. height: math.unit(162, "feet"),
  50324. default: true
  50325. },
  50326. ]
  50327. ))
  50328. characterMakers.push(() => makeCharacter(
  50329. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50330. {
  50331. front: {
  50332. height: math.unit(6, "feet"),
  50333. name: "Front",
  50334. image: {
  50335. source: "./media/characters/myra-aisling/front.svg",
  50336. extra: 1268/1166,
  50337. bottom: 73/1341
  50338. }
  50339. },
  50340. back: {
  50341. height: math.unit(6, "feet"),
  50342. name: "Back",
  50343. image: {
  50344. source: "./media/characters/myra-aisling/back.svg",
  50345. extra: 1249/1149,
  50346. bottom: 79/1328
  50347. }
  50348. },
  50349. dressed: {
  50350. height: math.unit(6, "feet"),
  50351. name: "Dressed",
  50352. image: {
  50353. source: "./media/characters/myra-aisling/dressed.svg",
  50354. extra: 1290/1189,
  50355. bottom: 47/1337
  50356. }
  50357. },
  50358. hand: {
  50359. height: math.unit(1.1, "feet"),
  50360. name: "Hand",
  50361. image: {
  50362. source: "./media/characters/myra-aisling/hand.svg"
  50363. }
  50364. },
  50365. paw: {
  50366. height: math.unit(1.23, "feet"),
  50367. name: "Paw",
  50368. image: {
  50369. source: "./media/characters/myra-aisling/paw.svg"
  50370. }
  50371. },
  50372. },
  50373. [
  50374. {
  50375. name: "Normal",
  50376. height: math.unit(160, "feet"),
  50377. default: true
  50378. },
  50379. ]
  50380. ))
  50381. characterMakers.push(() => makeCharacter(
  50382. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50383. {
  50384. front: {
  50385. height: math.unit(6, "feet"),
  50386. name: "Front",
  50387. image: {
  50388. source: "./media/characters/tenley-sidero/front.svg",
  50389. extra: 1365/1276,
  50390. bottom: 47/1412
  50391. }
  50392. },
  50393. back: {
  50394. height: math.unit(6, "feet"),
  50395. name: "Back",
  50396. image: {
  50397. source: "./media/characters/tenley-sidero/back.svg",
  50398. extra: 1383/1283,
  50399. bottom: 35/1418
  50400. }
  50401. },
  50402. dressed: {
  50403. height: math.unit(6, "feet"),
  50404. name: "Dressed",
  50405. image: {
  50406. source: "./media/characters/tenley-sidero/dressed.svg",
  50407. extra: 1364/1275,
  50408. bottom: 42/1406
  50409. }
  50410. },
  50411. head: {
  50412. height: math.unit(1.47, "feet"),
  50413. name: "Head",
  50414. image: {
  50415. source: "./media/characters/tenley-sidero/head.svg",
  50416. extra: 610/490,
  50417. bottom: 0/610
  50418. }
  50419. },
  50420. },
  50421. [
  50422. {
  50423. name: "Normal",
  50424. height: math.unit(154, "feet"),
  50425. default: true
  50426. },
  50427. ]
  50428. ))
  50429. characterMakers.push(() => makeCharacter(
  50430. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50431. {
  50432. front: {
  50433. height: math.unit(5, "inches"),
  50434. name: "Front",
  50435. image: {
  50436. source: "./media/characters/mallory/front.svg",
  50437. extra: 1919/1678,
  50438. bottom: 29/1948
  50439. }
  50440. },
  50441. hand: {
  50442. height: math.unit(0.73, "inches"),
  50443. name: "Hand",
  50444. image: {
  50445. source: "./media/characters/mallory/hand.svg"
  50446. }
  50447. },
  50448. paw: {
  50449. height: math.unit(0.68, "inches"),
  50450. name: "Paw",
  50451. image: {
  50452. source: "./media/characters/mallory/paw.svg"
  50453. }
  50454. },
  50455. },
  50456. [
  50457. {
  50458. name: "Small",
  50459. height: math.unit(5, "inches"),
  50460. default: true
  50461. },
  50462. ]
  50463. ))
  50464. characterMakers.push(() => makeCharacter(
  50465. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50466. {
  50467. naked: {
  50468. height: math.unit(6, "feet"),
  50469. name: "Naked",
  50470. image: {
  50471. source: "./media/characters/mab/naked.svg",
  50472. extra: 1855/1757,
  50473. bottom: 208/2063
  50474. }
  50475. },
  50476. outside: {
  50477. height: math.unit(6, "feet"),
  50478. name: "Outside",
  50479. image: {
  50480. source: "./media/characters/mab/outside.svg",
  50481. extra: 1855/1757,
  50482. bottom: 208/2063
  50483. }
  50484. },
  50485. party: {
  50486. height: math.unit(6, "feet"),
  50487. name: "Party",
  50488. image: {
  50489. source: "./media/characters/mab/party.svg",
  50490. extra: 1855/1757,
  50491. bottom: 208/2063
  50492. }
  50493. },
  50494. },
  50495. [
  50496. {
  50497. name: "Normal",
  50498. height: math.unit(165, "feet"),
  50499. default: true
  50500. },
  50501. ]
  50502. ))
  50503. characterMakers.push(() => makeCharacter(
  50504. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50505. {
  50506. feral: {
  50507. height: math.unit(12, "feet"),
  50508. weight: math.unit(20000, "lb"),
  50509. name: "Side",
  50510. image: {
  50511. source: "./media/characters/winter/feral.svg",
  50512. extra: 1286/943,
  50513. bottom: 112/1398
  50514. },
  50515. form: "feral",
  50516. default: true
  50517. },
  50518. feralNsfw: {
  50519. height: math.unit(12, "feet"),
  50520. weight: math.unit(20000, "lb"),
  50521. name: "Side (NSFW)",
  50522. image: {
  50523. source: "./media/characters/winter/feral-nsfw.svg",
  50524. extra: 1286/943,
  50525. bottom: 112/1398
  50526. },
  50527. form: "feral"
  50528. },
  50529. dick: {
  50530. height: math.unit(3.79, "feet"),
  50531. name: "Dick",
  50532. image: {
  50533. source: "./media/characters/winter/dick.svg"
  50534. },
  50535. form: "feral"
  50536. },
  50537. anthro: {
  50538. height: math.unit(12, "feet"),
  50539. weight: math.unit(10, "tons"),
  50540. name: "Anthro",
  50541. image: {
  50542. source: "./media/characters/winter/anthro.svg",
  50543. extra: 1701/1553,
  50544. bottom: 64/1765
  50545. },
  50546. form: "anthro",
  50547. default: true
  50548. },
  50549. },
  50550. [
  50551. {
  50552. name: "Big",
  50553. height: math.unit(12, "feet"),
  50554. default: true,
  50555. form: "feral"
  50556. },
  50557. {
  50558. name: "Big",
  50559. height: math.unit(12, "feet"),
  50560. default: true,
  50561. form: "anthro"
  50562. },
  50563. ],
  50564. {
  50565. "feral": {
  50566. name: "Feral",
  50567. default: true
  50568. },
  50569. "anthro": {
  50570. name: "Anthro"
  50571. }
  50572. }
  50573. ))
  50574. characterMakers.push(() => makeCharacter(
  50575. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50576. {
  50577. front: {
  50578. height: math.unit(4.1, "inches"),
  50579. name: "Front",
  50580. image: {
  50581. source: "./media/characters/alto/front.svg",
  50582. extra: 736/627,
  50583. bottom: 90/826
  50584. }
  50585. },
  50586. },
  50587. [
  50588. {
  50589. name: "Normal",
  50590. height: math.unit(4.1, "inches"),
  50591. default: true
  50592. },
  50593. ]
  50594. ))
  50595. characterMakers.push(() => makeCharacter(
  50596. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50597. {
  50598. sitting: {
  50599. height: math.unit(3, "feet"),
  50600. name: "Sitting",
  50601. image: {
  50602. source: "./media/characters/ratstrid-v/sitting.svg",
  50603. extra: 355/310,
  50604. bottom: 136/491
  50605. }
  50606. },
  50607. },
  50608. [
  50609. {
  50610. name: "Normal",
  50611. height: math.unit(3, "feet"),
  50612. default: true
  50613. },
  50614. ]
  50615. ))
  50616. characterMakers.push(() => makeCharacter(
  50617. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50618. {
  50619. back: {
  50620. height: math.unit(6, "feet"),
  50621. weight: math.unit(450, "lb"),
  50622. name: "Back",
  50623. image: {
  50624. source: "./media/characters/siz/back.svg",
  50625. extra: 1449/1274,
  50626. bottom: 13/1462
  50627. }
  50628. },
  50629. },
  50630. [
  50631. {
  50632. name: "Smallest",
  50633. height: math.unit(18 + 3/12, "feet")
  50634. },
  50635. {
  50636. name: "Modest",
  50637. height: math.unit(56 + 8/12, "feet"),
  50638. default: true
  50639. },
  50640. {
  50641. name: "Largest",
  50642. height: math.unit(3590, "feet")
  50643. },
  50644. ]
  50645. ))
  50646. characterMakers.push(() => makeCharacter(
  50647. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50648. {
  50649. front: {
  50650. height: math.unit(5 + 9/12, "feet"),
  50651. weight: math.unit(150, "lb"),
  50652. name: "Front",
  50653. image: {
  50654. source: "./media/characters/ven/front.svg",
  50655. extra: 1372/1320,
  50656. bottom: 73/1445
  50657. }
  50658. },
  50659. side: {
  50660. height: math.unit(5 + 9/12, "feet"),
  50661. weight: math.unit(1150, "lb"),
  50662. name: "Side",
  50663. image: {
  50664. source: "./media/characters/ven/side.svg",
  50665. extra: 1119/1070,
  50666. bottom: 42/1161
  50667. },
  50668. default: true
  50669. },
  50670. },
  50671. [
  50672. {
  50673. name: "Normal",
  50674. height: math.unit(5 + 9/12, "feet"),
  50675. default: true
  50676. },
  50677. ]
  50678. ))
  50679. characterMakers.push(() => makeCharacter(
  50680. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50681. {
  50682. front: {
  50683. height: math.unit(12, "feet"),
  50684. weight: math.unit(1000, "kg"),
  50685. name: "Front",
  50686. image: {
  50687. source: "./media/characters/maple/front.svg",
  50688. extra: 1193/1081,
  50689. bottom: 22/1215
  50690. }
  50691. },
  50692. },
  50693. [
  50694. {
  50695. name: "Compressed",
  50696. height: math.unit(7, "feet")
  50697. },
  50698. {
  50699. name: "Normal",
  50700. height: math.unit(12, "feet"),
  50701. default: true
  50702. },
  50703. ]
  50704. ))
  50705. characterMakers.push(() => makeCharacter(
  50706. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50707. {
  50708. front: {
  50709. height: math.unit(9, "feet"),
  50710. weight: math.unit(1500, "lb"),
  50711. name: "Front",
  50712. image: {
  50713. source: "./media/characters/nora/front.svg",
  50714. extra: 1348/1286,
  50715. bottom: 218/1566
  50716. }
  50717. },
  50718. erect: {
  50719. height: math.unit(9, "feet"),
  50720. weight: math.unit(11500, "lb"),
  50721. name: "Erect",
  50722. image: {
  50723. source: "./media/characters/nora/erect.svg",
  50724. extra: 1488/1433,
  50725. bottom: 133/1621
  50726. }
  50727. },
  50728. },
  50729. [
  50730. {
  50731. name: "Normal",
  50732. height: math.unit(9, "feet"),
  50733. default: true
  50734. },
  50735. ]
  50736. ))
  50737. characterMakers.push(() => makeCharacter(
  50738. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50739. {
  50740. front: {
  50741. height: math.unit(25, "feet"),
  50742. weight: math.unit(27500, "lb"),
  50743. name: "Front",
  50744. image: {
  50745. source: "./media/characters/north-caudin/front.svg",
  50746. extra: 1184/1082,
  50747. bottom: 23/1207
  50748. }
  50749. },
  50750. },
  50751. [
  50752. {
  50753. name: "Compressed",
  50754. height: math.unit(10, "feet")
  50755. },
  50756. {
  50757. name: "Normal",
  50758. height: math.unit(25, "feet"),
  50759. default: true
  50760. },
  50761. ]
  50762. ))
  50763. characterMakers.push(() => makeCharacter(
  50764. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50765. {
  50766. front: {
  50767. height: math.unit(9, "feet"),
  50768. weight: math.unit(1250, "lb"),
  50769. name: "Front",
  50770. image: {
  50771. source: "./media/characters/merrian/front.svg",
  50772. extra: 2393/2304,
  50773. bottom: 40/2433
  50774. }
  50775. },
  50776. },
  50777. [
  50778. {
  50779. name: "Normal",
  50780. height: math.unit(9, "feet"),
  50781. default: true
  50782. },
  50783. ]
  50784. ))
  50785. characterMakers.push(() => makeCharacter(
  50786. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50787. {
  50788. front: {
  50789. height: math.unit(9, "feet"),
  50790. weight: math.unit(1000, "lb"),
  50791. name: "Front",
  50792. image: {
  50793. source: "./media/characters/hazel/front.svg",
  50794. extra: 2351/2298,
  50795. bottom: 38/2389
  50796. }
  50797. },
  50798. },
  50799. [
  50800. {
  50801. name: "Normal",
  50802. height: math.unit(9, "feet"),
  50803. default: true
  50804. },
  50805. ]
  50806. ))
  50807. characterMakers.push(() => makeCharacter(
  50808. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50809. {
  50810. front: {
  50811. height: math.unit(13, "feet"),
  50812. weight: math.unit(3200, "lb"),
  50813. name: "Front",
  50814. image: {
  50815. source: "./media/characters/emma/front.svg",
  50816. extra: 2263/2029,
  50817. bottom: 68/2331
  50818. }
  50819. },
  50820. },
  50821. [
  50822. {
  50823. name: "Normal",
  50824. height: math.unit(13, "feet"),
  50825. default: true
  50826. },
  50827. ]
  50828. ))
  50829. characterMakers.push(() => makeCharacter(
  50830. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50831. {
  50832. front: {
  50833. height: math.unit(11 + 9/12, "feet"),
  50834. weight: math.unit(2500, "lb"),
  50835. name: "Front",
  50836. image: {
  50837. source: "./media/characters/ilumina/front.svg",
  50838. extra: 2248/2209,
  50839. bottom: 164/2412
  50840. }
  50841. },
  50842. },
  50843. [
  50844. {
  50845. name: "Normal",
  50846. height: math.unit(11 + 9/12, "feet"),
  50847. default: true
  50848. },
  50849. ]
  50850. ))
  50851. characterMakers.push(() => makeCharacter(
  50852. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50853. {
  50854. front: {
  50855. height: math.unit(8 + 10/12, "feet"),
  50856. weight: math.unit(1350, "lb"),
  50857. name: "Front",
  50858. image: {
  50859. source: "./media/characters/moonshine/front.svg",
  50860. extra: 2395/2288,
  50861. bottom: 40/2435
  50862. }
  50863. },
  50864. },
  50865. [
  50866. {
  50867. name: "Normal",
  50868. height: math.unit(8 + 10/12, "feet"),
  50869. default: true
  50870. },
  50871. ]
  50872. ))
  50873. characterMakers.push(() => makeCharacter(
  50874. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50875. {
  50876. front: {
  50877. height: math.unit(14, "feet"),
  50878. weight: math.unit(3400, "lb"),
  50879. name: "Front",
  50880. image: {
  50881. source: "./media/characters/aletia/front.svg",
  50882. extra: 1185/1052,
  50883. bottom: 21/1206
  50884. }
  50885. },
  50886. },
  50887. [
  50888. {
  50889. name: "Compressed",
  50890. height: math.unit(8, "feet")
  50891. },
  50892. {
  50893. name: "Normal",
  50894. height: math.unit(14, "feet"),
  50895. default: true
  50896. },
  50897. ]
  50898. ))
  50899. characterMakers.push(() => makeCharacter(
  50900. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50901. {
  50902. front: {
  50903. height: math.unit(17, "feet"),
  50904. weight: math.unit(6500, "lb"),
  50905. name: "Front",
  50906. image: {
  50907. source: "./media/characters/deidra/front.svg",
  50908. extra: 1201/1081,
  50909. bottom: 16/1217
  50910. }
  50911. },
  50912. },
  50913. [
  50914. {
  50915. name: "Compressed",
  50916. height: math.unit(9 + 6/12, "feet")
  50917. },
  50918. {
  50919. name: "Normal",
  50920. height: math.unit(17, "feet"),
  50921. default: true
  50922. },
  50923. ]
  50924. ))
  50925. characterMakers.push(() => makeCharacter(
  50926. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50927. {
  50928. front: {
  50929. height: math.unit(7 + 4/12, "feet"),
  50930. weight: math.unit(280, "lb"),
  50931. name: "Front",
  50932. image: {
  50933. source: "./media/characters/freki-yrmori/front.svg",
  50934. extra: 1286/1182,
  50935. bottom: 29/1315
  50936. }
  50937. },
  50938. maw: {
  50939. height: math.unit(0.9, "feet"),
  50940. name: "Maw",
  50941. image: {
  50942. source: "./media/characters/freki-yrmori/maw.svg"
  50943. }
  50944. },
  50945. },
  50946. [
  50947. {
  50948. name: "Normal",
  50949. height: math.unit(7 + 4/12, "feet"),
  50950. default: true
  50951. },
  50952. {
  50953. name: "Macro",
  50954. height: math.unit(38.5, "meters")
  50955. },
  50956. ]
  50957. ))
  50958. characterMakers.push(() => makeCharacter(
  50959. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50960. {
  50961. side: {
  50962. height: math.unit(47.2, "meters"),
  50963. weight: math.unit(10000, "tons"),
  50964. name: "Side",
  50965. image: {
  50966. source: "./media/characters/aetherios/side.svg",
  50967. extra: 2363/642,
  50968. bottom: 221/2584
  50969. }
  50970. },
  50971. top: {
  50972. height: math.unit(240, "meters"),
  50973. weight: math.unit(10000, "tons"),
  50974. name: "Top",
  50975. image: {
  50976. source: "./media/characters/aetherios/top.svg"
  50977. }
  50978. },
  50979. bottom: {
  50980. height: math.unit(240, "meters"),
  50981. weight: math.unit(10000, "tons"),
  50982. name: "Bottom",
  50983. image: {
  50984. source: "./media/characters/aetherios/bottom.svg"
  50985. }
  50986. },
  50987. head: {
  50988. height: math.unit(38.6, "meters"),
  50989. name: "Head",
  50990. image: {
  50991. source: "./media/characters/aetherios/head.svg",
  50992. extra: 1335/1112,
  50993. bottom: 0/1335
  50994. }
  50995. },
  50996. front: {
  50997. height: math.unit(29, "meters"),
  50998. name: "Front",
  50999. image: {
  51000. source: "./media/characters/aetherios/front.svg",
  51001. extra: 1266/953,
  51002. bottom: 158/1424
  51003. }
  51004. },
  51005. maw: {
  51006. height: math.unit(16.37, "meters"),
  51007. name: "Maw",
  51008. image: {
  51009. source: "./media/characters/aetherios/maw.svg",
  51010. extra: 748/637,
  51011. bottom: 0/748
  51012. },
  51013. extraAttributes: {
  51014. preyCapacity: {
  51015. name: "Capacity",
  51016. power: 3,
  51017. type: "volume",
  51018. base: math.unit(1000, "people")
  51019. },
  51020. tongueSize: {
  51021. name: "Tongue Size",
  51022. power: 2,
  51023. type: "area",
  51024. base: math.unit(21, "m^2")
  51025. }
  51026. }
  51027. },
  51028. forepaw: {
  51029. height: math.unit(18, "meters"),
  51030. name: "Forepaw",
  51031. image: {
  51032. source: "./media/characters/aetherios/forepaw.svg"
  51033. }
  51034. },
  51035. hindpaw: {
  51036. height: math.unit(23, "meters"),
  51037. name: "Hindpaw",
  51038. image: {
  51039. source: "./media/characters/aetherios/hindpaw.svg"
  51040. }
  51041. },
  51042. genitals: {
  51043. height: math.unit(42, "meters"),
  51044. name: "Genitals",
  51045. image: {
  51046. source: "./media/characters/aetherios/genitals.svg"
  51047. }
  51048. },
  51049. },
  51050. [
  51051. {
  51052. name: "Normal",
  51053. height: math.unit(47.2, "meters"),
  51054. default: true
  51055. },
  51056. {
  51057. name: "Macro",
  51058. height: math.unit(160, "meters")
  51059. },
  51060. {
  51061. name: "Mega",
  51062. height: math.unit(1.87, "km")
  51063. },
  51064. {
  51065. name: "Giga",
  51066. height: math.unit(40000, "km")
  51067. },
  51068. {
  51069. name: "Stellar",
  51070. height: math.unit(158000000, "km")
  51071. },
  51072. {
  51073. name: "Cosmic",
  51074. height: math.unit(9.46e12, "km")
  51075. },
  51076. ]
  51077. ))
  51078. characterMakers.push(() => makeCharacter(
  51079. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51080. {
  51081. front: {
  51082. height: math.unit(5 + 4/12, "feet"),
  51083. weight: math.unit(80, "lb"),
  51084. name: "Front",
  51085. image: {
  51086. source: "./media/characters/mizu-gieeg/front.svg",
  51087. extra: 850/709,
  51088. bottom: 52/902
  51089. }
  51090. },
  51091. back: {
  51092. height: math.unit(5 + 4/12, "feet"),
  51093. weight: math.unit(80, "lb"),
  51094. name: "Back",
  51095. image: {
  51096. source: "./media/characters/mizu-gieeg/back.svg",
  51097. extra: 882/745,
  51098. bottom: 25/907
  51099. }
  51100. },
  51101. },
  51102. [
  51103. {
  51104. name: "Normal",
  51105. height: math.unit(5 + 4/12, "feet"),
  51106. default: true
  51107. },
  51108. ]
  51109. ))
  51110. characterMakers.push(() => makeCharacter(
  51111. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51112. {
  51113. front: {
  51114. height: math.unit(6, "feet"),
  51115. name: "Front",
  51116. image: {
  51117. source: "./media/characters/roselle-st-papier/front.svg",
  51118. extra: 1430/1280,
  51119. bottom: 37/1467
  51120. }
  51121. },
  51122. back: {
  51123. height: math.unit(6, "feet"),
  51124. name: "Back",
  51125. image: {
  51126. source: "./media/characters/roselle-st-papier/back.svg",
  51127. extra: 1491/1296,
  51128. bottom: 23/1514
  51129. }
  51130. },
  51131. ear: {
  51132. height: math.unit(1.26, "feet"),
  51133. name: "Ear",
  51134. image: {
  51135. source: "./media/characters/roselle-st-papier/ear.svg"
  51136. }
  51137. },
  51138. },
  51139. [
  51140. {
  51141. name: "Normal",
  51142. height: math.unit(150, "feet"),
  51143. default: true
  51144. },
  51145. ]
  51146. ))
  51147. characterMakers.push(() => makeCharacter(
  51148. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51149. {
  51150. front: {
  51151. height: math.unit(1, "inches"),
  51152. name: "Front",
  51153. image: {
  51154. source: "./media/characters/valargent/front.svg",
  51155. extra: 1825/1694,
  51156. bottom: 62/1887
  51157. }
  51158. },
  51159. back: {
  51160. height: math.unit(1, "inches"),
  51161. name: "Back",
  51162. image: {
  51163. source: "./media/characters/valargent/back.svg",
  51164. extra: 1775/1682,
  51165. bottom: 88/1863
  51166. }
  51167. },
  51168. },
  51169. [
  51170. {
  51171. name: "Micro",
  51172. height: math.unit(1, "inch"),
  51173. default: true
  51174. },
  51175. ]
  51176. ))
  51177. characterMakers.push(() => makeCharacter(
  51178. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51179. {
  51180. front: {
  51181. height: math.unit(3.4, "meters"),
  51182. name: "Front",
  51183. image: {
  51184. source: "./media/characters/zarina/front.svg",
  51185. extra: 1733/1425,
  51186. bottom: 93/1826
  51187. }
  51188. },
  51189. squatting: {
  51190. height: math.unit(2.14, "meters"),
  51191. name: "Squatting",
  51192. image: {
  51193. source: "./media/characters/zarina/squatting.svg",
  51194. extra: 1073/788,
  51195. bottom: 63/1136
  51196. }
  51197. },
  51198. back: {
  51199. height: math.unit(2.14, "meters"),
  51200. name: "Back",
  51201. image: {
  51202. source: "./media/characters/zarina/back.svg",
  51203. extra: 1128/885,
  51204. bottom: 0/1128
  51205. }
  51206. },
  51207. },
  51208. [
  51209. {
  51210. name: "Normal",
  51211. height: math.unit(3.4, "meters"),
  51212. default: true
  51213. },
  51214. {
  51215. name: "Big",
  51216. height: math.unit(5, "meters")
  51217. },
  51218. {
  51219. name: "Macro",
  51220. height: math.unit(110, "meters")
  51221. },
  51222. ]
  51223. ))
  51224. characterMakers.push(() => makeCharacter(
  51225. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51226. {
  51227. front: {
  51228. height: math.unit(7, "feet"),
  51229. name: "Front",
  51230. image: {
  51231. source: "./media/characters/ventus-astro-fox/front.svg",
  51232. extra: 1792/1623,
  51233. bottom: 28/1820
  51234. }
  51235. },
  51236. back: {
  51237. height: math.unit(7, "feet"),
  51238. name: "Back",
  51239. image: {
  51240. source: "./media/characters/ventus-astro-fox/back.svg",
  51241. extra: 1789/1620,
  51242. bottom: 31/1820
  51243. }
  51244. },
  51245. outfit: {
  51246. height: math.unit(7, "feet"),
  51247. name: "Outfit",
  51248. image: {
  51249. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51250. extra: 1054/925,
  51251. bottom: 15/1069
  51252. }
  51253. },
  51254. head: {
  51255. height: math.unit(1.12, "feet"),
  51256. name: "Head",
  51257. image: {
  51258. source: "./media/characters/ventus-astro-fox/head.svg",
  51259. extra: 866/504,
  51260. bottom: 0/866
  51261. }
  51262. },
  51263. hand: {
  51264. height: math.unit(1, "feet"),
  51265. name: "Hand",
  51266. image: {
  51267. source: "./media/characters/ventus-astro-fox/hand.svg"
  51268. }
  51269. },
  51270. paw: {
  51271. height: math.unit(1.5, "feet"),
  51272. name: "Paw",
  51273. image: {
  51274. source: "./media/characters/ventus-astro-fox/paw.svg"
  51275. }
  51276. },
  51277. },
  51278. [
  51279. {
  51280. name: "Normal",
  51281. height: math.unit(7, "feet"),
  51282. default: true
  51283. },
  51284. {
  51285. name: "Macro",
  51286. height: math.unit(200, "feet")
  51287. },
  51288. {
  51289. name: "Cosmic",
  51290. height: math.unit(3, "universes")
  51291. },
  51292. ]
  51293. ))
  51294. characterMakers.push(() => makeCharacter(
  51295. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51296. {
  51297. front: {
  51298. height: math.unit(3, "meters"),
  51299. weight: math.unit(7000, "lb"),
  51300. name: "Front",
  51301. image: {
  51302. source: "./media/characters/core-t/front.svg",
  51303. extra: 5729/4941,
  51304. bottom: 1129/6858
  51305. }
  51306. },
  51307. },
  51308. [
  51309. {
  51310. name: "Big",
  51311. height: math.unit(3, "meters"),
  51312. default: true
  51313. },
  51314. ]
  51315. ))
  51316. characterMakers.push(() => makeCharacter(
  51317. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51318. {
  51319. normal: {
  51320. height: math.unit(6 + 6/12, "feet"),
  51321. weight: math.unit(275, "lb"),
  51322. name: "Front",
  51323. image: {
  51324. source: "./media/characters/cadbunny/normal.svg",
  51325. extra: 1129/947,
  51326. bottom: 93/1222
  51327. },
  51328. default: true,
  51329. form: "normal"
  51330. },
  51331. gigantamax: {
  51332. height: math.unit(26, "feet"),
  51333. weight: math.unit(16000, "lb"),
  51334. name: "Front",
  51335. image: {
  51336. source: "./media/characters/cadbunny/gigantamax.svg",
  51337. extra: 1133/944,
  51338. bottom: 90/1223
  51339. },
  51340. default: true,
  51341. form: "gigantamax"
  51342. },
  51343. },
  51344. [
  51345. {
  51346. name: "Normal",
  51347. height: math.unit(6 + 6/12, "feet"),
  51348. default: true,
  51349. form: "normal"
  51350. },
  51351. {
  51352. name: "Small",
  51353. height: math.unit(26, "feet"),
  51354. default: true,
  51355. form: "gigantamax"
  51356. },
  51357. {
  51358. name: "Large",
  51359. height: math.unit(78, "feet"),
  51360. form: "gigantamax"
  51361. },
  51362. ],
  51363. {
  51364. "normal": {
  51365. name: "Normal",
  51366. default: true
  51367. },
  51368. "gigantamax": {
  51369. name: "Gigantamax"
  51370. }
  51371. }
  51372. ))
  51373. characterMakers.push(() => makeCharacter(
  51374. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51375. {
  51376. anthroFront: {
  51377. height: math.unit(8, "feet"),
  51378. weight: math.unit(300, "lb"),
  51379. name: "Front",
  51380. image: {
  51381. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51382. extra: 1272/1176,
  51383. bottom: 53/1325
  51384. },
  51385. form: "anthro",
  51386. default: true
  51387. },
  51388. feralSide: {
  51389. height: math.unit(4, "feet"),
  51390. weight: math.unit(250, "lb"),
  51391. name: "Side",
  51392. image: {
  51393. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51394. extra: 731/621,
  51395. bottom: 0/731
  51396. },
  51397. form: "feral",
  51398. default: true
  51399. },
  51400. },
  51401. [
  51402. {
  51403. name: "Regular",
  51404. height: math.unit(8, "feet"),
  51405. form: "anthro"
  51406. },
  51407. {
  51408. name: "Macro",
  51409. height: math.unit(250, "feet"),
  51410. form: "anthro",
  51411. default: true
  51412. },
  51413. {
  51414. name: "Regular",
  51415. height: math.unit(4, "feet"),
  51416. form: "feral"
  51417. },
  51418. {
  51419. name: "Macro",
  51420. height: math.unit(125, "feet"),
  51421. form: "feral",
  51422. default: true
  51423. },
  51424. ],
  51425. {
  51426. "anthro": {
  51427. name: "Anthro",
  51428. default: true
  51429. },
  51430. "feral": {
  51431. name: "Feral",
  51432. },
  51433. }
  51434. ))
  51435. characterMakers.push(() => makeCharacter(
  51436. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51437. {
  51438. front: {
  51439. height: math.unit(11 + 10/12, "feet"),
  51440. weight: math.unit(1587, "kg"),
  51441. name: "Front",
  51442. image: {
  51443. source: "./media/characters/maple-javira-dragon/front.svg",
  51444. extra: 1136/744,
  51445. bottom: 73/1209
  51446. }
  51447. },
  51448. side: {
  51449. height: math.unit(11 + 10/12, "feet"),
  51450. weight: math.unit(1587, "kg"),
  51451. name: "Side",
  51452. image: {
  51453. source: "./media/characters/maple-javira-dragon/side.svg",
  51454. extra: 712/505,
  51455. bottom: 17/729
  51456. }
  51457. },
  51458. head: {
  51459. height: math.unit(8.05, "feet"),
  51460. name: "Head",
  51461. image: {
  51462. source: "./media/characters/maple-javira-dragon/head.svg",
  51463. extra: 1420/1344,
  51464. bottom: 0/1420
  51465. }
  51466. },
  51467. },
  51468. [
  51469. {
  51470. name: "Normal",
  51471. height: math.unit(11 + 10/12, "feet"),
  51472. default: true
  51473. },
  51474. ]
  51475. ))
  51476. characterMakers.push(() => makeCharacter(
  51477. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51478. {
  51479. front: {
  51480. height: math.unit(117, "cm"),
  51481. weight: math.unit(50, "kg"),
  51482. name: "Front",
  51483. image: {
  51484. source: "./media/characters/sonia-wyverntail/front.svg",
  51485. extra: 708/592,
  51486. bottom: 25/733
  51487. }
  51488. },
  51489. },
  51490. [
  51491. {
  51492. name: "Normal",
  51493. height: math.unit(117, "cm"),
  51494. default: true
  51495. },
  51496. ]
  51497. ))
  51498. characterMakers.push(() => makeCharacter(
  51499. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51500. {
  51501. front: {
  51502. height: math.unit(6 + 5/12, "feet"),
  51503. name: "Front",
  51504. image: {
  51505. source: "./media/characters/micah/front.svg",
  51506. extra: 1758/1546,
  51507. bottom: 214/1972
  51508. }
  51509. },
  51510. },
  51511. [
  51512. {
  51513. name: "Normal",
  51514. height: math.unit(6 + 5/12, "feet"),
  51515. default: true
  51516. },
  51517. ]
  51518. ))
  51519. characterMakers.push(() => makeCharacter(
  51520. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51521. {
  51522. front: {
  51523. height: math.unit(1.75, "meters"),
  51524. weight: math.unit(100, "kg"),
  51525. name: "Front",
  51526. image: {
  51527. source: "./media/characters/zarya/front.svg",
  51528. extra: 741/735,
  51529. bottom: 44/785
  51530. },
  51531. extraAttributes: {
  51532. "tailLength": {
  51533. name: "Tail Length",
  51534. power: 1,
  51535. type: "length",
  51536. base: math.unit(180, "cm")
  51537. },
  51538. "pawLength": {
  51539. name: "Paw Length",
  51540. power: 1,
  51541. type: "length",
  51542. base: math.unit(31, "cm")
  51543. },
  51544. }
  51545. },
  51546. side: {
  51547. height: math.unit(1.75, "meters"),
  51548. weight: math.unit(100, "kg"),
  51549. name: "Side",
  51550. image: {
  51551. source: "./media/characters/zarya/side.svg",
  51552. extra: 776/770,
  51553. bottom: 17/793
  51554. },
  51555. extraAttributes: {
  51556. "tailLength": {
  51557. name: "Tail Length",
  51558. power: 1,
  51559. type: "length",
  51560. base: math.unit(180, "cm")
  51561. },
  51562. "pawLength": {
  51563. name: "Paw Length",
  51564. power: 1,
  51565. type: "length",
  51566. base: math.unit(31, "cm")
  51567. },
  51568. }
  51569. },
  51570. back: {
  51571. height: math.unit(1.75, "meters"),
  51572. weight: math.unit(100, "kg"),
  51573. name: "Back",
  51574. image: {
  51575. source: "./media/characters/zarya/back.svg",
  51576. extra: 741/735,
  51577. bottom: 44/785
  51578. },
  51579. extraAttributes: {
  51580. "tailLength": {
  51581. name: "Tail Length",
  51582. power: 1,
  51583. type: "length",
  51584. base: math.unit(180, "cm")
  51585. },
  51586. "pawLength": {
  51587. name: "Paw Length",
  51588. power: 1,
  51589. type: "length",
  51590. base: math.unit(31, "cm")
  51591. },
  51592. }
  51593. },
  51594. frontNoTail: {
  51595. height: math.unit(1.75, "meters"),
  51596. weight: math.unit(100, "kg"),
  51597. name: "Front (No Tail)",
  51598. image: {
  51599. source: "./media/characters/zarya/front-no-tail.svg",
  51600. extra: 741/735,
  51601. bottom: 44/785
  51602. },
  51603. extraAttributes: {
  51604. "tailLength": {
  51605. name: "Tail Length",
  51606. power: 1,
  51607. type: "length",
  51608. base: math.unit(180, "cm")
  51609. },
  51610. "pawLength": {
  51611. name: "Paw Length",
  51612. power: 1,
  51613. type: "length",
  51614. base: math.unit(31, "cm")
  51615. },
  51616. }
  51617. },
  51618. dressed: {
  51619. height: math.unit(1.75, "meters"),
  51620. weight: math.unit(100, "kg"),
  51621. name: "Dressed",
  51622. image: {
  51623. source: "./media/characters/zarya/dressed.svg",
  51624. extra: 683/672,
  51625. bottom: 79/762
  51626. },
  51627. extraAttributes: {
  51628. "tailLength": {
  51629. name: "Tail Length",
  51630. power: 1,
  51631. type: "length",
  51632. base: math.unit(180, "cm")
  51633. },
  51634. "pawLength": {
  51635. name: "Paw Length",
  51636. power: 1,
  51637. type: "length",
  51638. base: math.unit(31, "cm")
  51639. },
  51640. }
  51641. },
  51642. },
  51643. [
  51644. {
  51645. name: "Micro",
  51646. height: math.unit(5, "cm")
  51647. },
  51648. {
  51649. name: "Normal",
  51650. height: math.unit(1.75, "meters"),
  51651. default: true
  51652. },
  51653. {
  51654. name: "Macro",
  51655. height: math.unit(122, "meters")
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51661. {
  51662. front: {
  51663. height: math.unit(7.5, "feet"),
  51664. name: "Front",
  51665. image: {
  51666. source: "./media/characters/sven-hatisson/front.svg",
  51667. extra: 917/857,
  51668. bottom: 42/959
  51669. }
  51670. },
  51671. back: {
  51672. height: math.unit(7.5, "feet"),
  51673. name: "Back",
  51674. image: {
  51675. source: "./media/characters/sven-hatisson/back.svg",
  51676. extra: 903/856,
  51677. bottom: 15/918
  51678. }
  51679. },
  51680. },
  51681. [
  51682. {
  51683. name: "Base Height",
  51684. height: math.unit(7.5, "feet")
  51685. },
  51686. {
  51687. name: "Usual Height",
  51688. height: math.unit(13.5, "feet"),
  51689. default: true
  51690. },
  51691. {
  51692. name: "Smaller Macro",
  51693. height: math.unit(85, "feet")
  51694. },
  51695. {
  51696. name: "Moderate Macro",
  51697. height: math.unit(320, "feet")
  51698. },
  51699. {
  51700. name: "Large Macro",
  51701. height: math.unit(1000, "feet")
  51702. },
  51703. {
  51704. name: "Largest Size",
  51705. height: math.unit(2, "miles")
  51706. },
  51707. ]
  51708. ))
  51709. characterMakers.push(() => makeCharacter(
  51710. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51711. {
  51712. side: {
  51713. height: math.unit(1.8, "meters"),
  51714. weight: math.unit(275, "kg"),
  51715. name: "Side",
  51716. image: {
  51717. source: "./media/characters/terra/side.svg",
  51718. extra: 1273/1147,
  51719. bottom: 0/1273
  51720. }
  51721. },
  51722. },
  51723. [
  51724. {
  51725. name: "Normal",
  51726. height: math.unit(16.2, "meters"),
  51727. default: true
  51728. },
  51729. ]
  51730. ))
  51731. characterMakers.push(() => makeCharacter(
  51732. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51733. {
  51734. borzoiFront: {
  51735. height: math.unit(6 + 9/12, "feet"),
  51736. name: "Front",
  51737. image: {
  51738. source: "./media/characters/rae/borzoi-front.svg",
  51739. extra: 1161/1098,
  51740. bottom: 31/1192
  51741. },
  51742. form: "borzoi",
  51743. default: true
  51744. },
  51745. werewolfFront: {
  51746. height: math.unit(8 + 7/12, "feet"),
  51747. name: "Front",
  51748. image: {
  51749. source: "./media/characters/rae/werewolf-front.svg",
  51750. extra: 1411/1334,
  51751. bottom: 127/1538
  51752. },
  51753. form: "werewolf",
  51754. default: true
  51755. },
  51756. },
  51757. [
  51758. {
  51759. name: "Normal",
  51760. height: math.unit(6 + 9/12, "feet"),
  51761. default: true,
  51762. form: "borzoi"
  51763. },
  51764. {
  51765. name: "Normal",
  51766. height: math.unit(8 + 7/12, "feet"),
  51767. default: true,
  51768. form: "werewolf"
  51769. },
  51770. ],
  51771. {
  51772. "borzoi": {
  51773. name: "Borzoi",
  51774. default: true
  51775. },
  51776. "werewolf": {
  51777. name: "Werewolf",
  51778. },
  51779. }
  51780. ))
  51781. characterMakers.push(() => makeCharacter(
  51782. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51783. {
  51784. front: {
  51785. height: math.unit(8 + 7/12, "feet"),
  51786. weight: math.unit(482, "lb"),
  51787. name: "Front",
  51788. image: {
  51789. source: "./media/characters/kit/front.svg",
  51790. extra: 1247/1103,
  51791. bottom: 41/1288
  51792. }
  51793. },
  51794. back: {
  51795. height: math.unit(8 + 7/12, "feet"),
  51796. weight: math.unit(482, "lb"),
  51797. name: "Back",
  51798. image: {
  51799. source: "./media/characters/kit/back.svg",
  51800. extra: 1252/1123,
  51801. bottom: 21/1273
  51802. }
  51803. },
  51804. paw: {
  51805. height: math.unit(1.46, "feet"),
  51806. name: "Paw",
  51807. image: {
  51808. source: "./media/characters/kit/paw.svg"
  51809. }
  51810. },
  51811. },
  51812. [
  51813. {
  51814. name: "Normal",
  51815. height: math.unit(2.61, "meters"),
  51816. default: true
  51817. },
  51818. {
  51819. name: "\"Tall\"",
  51820. height: math.unit(8.21, "meters")
  51821. },
  51822. {
  51823. name: "Tall",
  51824. height: math.unit(19.6, "meters")
  51825. },
  51826. {
  51827. name: "Very Tall",
  51828. height: math.unit(57.91, "meters")
  51829. },
  51830. {
  51831. name: "Semi-Macro",
  51832. height: math.unit(138.64, "meters")
  51833. },
  51834. {
  51835. name: "Macro",
  51836. height: math.unit(831.99, "meters")
  51837. },
  51838. {
  51839. name: "EX-Macro",
  51840. height: math.unit(96451121, "meters")
  51841. },
  51842. {
  51843. name: "S1-Omnipotent",
  51844. height: math.unit(4.42074e+9, "meters")
  51845. },
  51846. {
  51847. name: "S2-Omnipotent",
  51848. height: math.unit(9.42074e+17, "meters")
  51849. },
  51850. {
  51851. name: "Omnipotent",
  51852. height: math.unit(4.23112e+24, "meters")
  51853. },
  51854. {
  51855. name: "Hypergod",
  51856. height: math.unit(5.05176e+27, "meters")
  51857. },
  51858. {
  51859. name: "Hypergod-EX",
  51860. height: math.unit(9.45532e+49, "meters")
  51861. },
  51862. {
  51863. name: "Hypergod-SP",
  51864. height: math.unit(9.45532e+195, "meters")
  51865. },
  51866. ]
  51867. ))
  51868. characterMakers.push(() => makeCharacter(
  51869. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51870. {
  51871. side: {
  51872. height: math.unit(0.6, "meters"),
  51873. weight: math.unit(24, "kg"),
  51874. name: "Side",
  51875. image: {
  51876. source: "./media/characters/celeste/side.svg",
  51877. extra: 810/517,
  51878. bottom: 53/863
  51879. }
  51880. },
  51881. },
  51882. [
  51883. {
  51884. name: "Velociraptor",
  51885. height: math.unit(0.6, "meters"),
  51886. default: true
  51887. },
  51888. {
  51889. name: "Utahraptor",
  51890. height: math.unit(1.8, "meters")
  51891. },
  51892. {
  51893. name: "Gallimimus",
  51894. height: math.unit(4.0, "meters")
  51895. },
  51896. {
  51897. name: "Large",
  51898. height: math.unit(20, "meters")
  51899. },
  51900. {
  51901. name: "Planetary",
  51902. height: math.unit(50, "megameters")
  51903. },
  51904. {
  51905. name: "Stellar",
  51906. height: math.unit(1.5, "gigameters")
  51907. },
  51908. {
  51909. name: "Galactic",
  51910. height: math.unit(100, "exameters")
  51911. },
  51912. ]
  51913. ))
  51914. characterMakers.push(() => makeCharacter(
  51915. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51916. {
  51917. front: {
  51918. height: math.unit(6, "feet"),
  51919. weight: math.unit(210, "lb"),
  51920. name: "Front",
  51921. image: {
  51922. source: "./media/characters/glacia/front.svg",
  51923. extra: 958/901,
  51924. bottom: 45/1003
  51925. }
  51926. },
  51927. },
  51928. [
  51929. {
  51930. name: "Macro",
  51931. height: math.unit(1000, "meters"),
  51932. default: true
  51933. },
  51934. ]
  51935. ))
  51936. characterMakers.push(() => makeCharacter(
  51937. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51938. {
  51939. front: {
  51940. height: math.unit(4, "meters"),
  51941. name: "Front",
  51942. image: {
  51943. source: "./media/characters/giri/front.svg",
  51944. extra: 966/894,
  51945. bottom: 21/987
  51946. }
  51947. },
  51948. },
  51949. [
  51950. {
  51951. name: "Normal",
  51952. height: math.unit(4, "meters"),
  51953. default: true
  51954. },
  51955. ]
  51956. ))
  51957. characterMakers.push(() => makeCharacter(
  51958. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51959. {
  51960. back: {
  51961. height: math.unit(4, "feet"),
  51962. weight: math.unit(37, "lb"),
  51963. name: "Back",
  51964. image: {
  51965. source: "./media/characters/tin/back.svg",
  51966. extra: 845/780,
  51967. bottom: 28/873
  51968. }
  51969. },
  51970. },
  51971. [
  51972. {
  51973. name: "Normal",
  51974. height: math.unit(4, "feet"),
  51975. default: true
  51976. },
  51977. ]
  51978. ))
  51979. characterMakers.push(() => makeCharacter(
  51980. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51981. {
  51982. front: {
  51983. height: math.unit(25, "feet"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/cadenza-vivace/front.svg",
  51987. extra: 1842/1578,
  51988. bottom: 30/1872
  51989. }
  51990. },
  51991. },
  51992. [
  51993. {
  51994. name: "Macro",
  51995. height: math.unit(25, "feet"),
  51996. default: true
  51997. },
  51998. ]
  51999. ))
  52000. characterMakers.push(() => makeCharacter(
  52001. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52002. {
  52003. front: {
  52004. height: math.unit(10, "feet"),
  52005. weight: math.unit(625, "kg"),
  52006. name: "Front",
  52007. image: {
  52008. source: "./media/characters/zain/front.svg",
  52009. extra: 1682/1498,
  52010. bottom: 223/1905
  52011. }
  52012. },
  52013. back: {
  52014. height: math.unit(10, "feet"),
  52015. weight: math.unit(625, "kg"),
  52016. name: "Back",
  52017. image: {
  52018. source: "./media/characters/zain/back.svg",
  52019. extra: 1814/1657,
  52020. bottom: 152/1966
  52021. }
  52022. },
  52023. head: {
  52024. height: math.unit(10, "feet"),
  52025. weight: math.unit(625, "kg"),
  52026. name: "Head",
  52027. image: {
  52028. source: "./media/characters/zain/head.svg",
  52029. extra: 1059/762,
  52030. bottom: 0/1059
  52031. }
  52032. },
  52033. },
  52034. [
  52035. {
  52036. name: "Normal",
  52037. height: math.unit(10, "feet"),
  52038. default: true
  52039. },
  52040. ]
  52041. ))
  52042. characterMakers.push(() => makeCharacter(
  52043. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52044. {
  52045. front: {
  52046. height: math.unit(6 + 5/12, "feet"),
  52047. weight: math.unit(750, "lb"),
  52048. name: "Front",
  52049. image: {
  52050. source: "./media/characters/ruchex/front.svg",
  52051. extra: 877/820,
  52052. bottom: 17/894
  52053. },
  52054. extraAttributes: {
  52055. "width": {
  52056. name: "Width",
  52057. power: 1,
  52058. type: "length",
  52059. base: math.unit(4.757, "feet")
  52060. },
  52061. }
  52062. },
  52063. },
  52064. [
  52065. {
  52066. name: "Normal",
  52067. height: math.unit(6 + 5/12, "feet"),
  52068. default: true
  52069. },
  52070. ]
  52071. ))
  52072. characterMakers.push(() => makeCharacter(
  52073. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52074. {
  52075. dressedFront: {
  52076. height: math.unit(191, "cm"),
  52077. weight: math.unit(80, "kg"),
  52078. name: "Front",
  52079. image: {
  52080. source: "./media/characters/buster/dressed-front.svg",
  52081. extra: 1022/973,
  52082. bottom: 69/1091
  52083. }
  52084. },
  52085. dressedBack: {
  52086. height: math.unit(191, "cm"),
  52087. weight: math.unit(80, "kg"),
  52088. name: "Back",
  52089. image: {
  52090. source: "./media/characters/buster/dressed-back.svg",
  52091. extra: 1018/970,
  52092. bottom: 55/1073
  52093. }
  52094. },
  52095. nudeFront: {
  52096. height: math.unit(191, "cm"),
  52097. weight: math.unit(80, "kg"),
  52098. name: "Front (Nude)",
  52099. image: {
  52100. source: "./media/characters/buster/nude-front.svg",
  52101. extra: 1022/973,
  52102. bottom: 69/1091
  52103. }
  52104. },
  52105. nudeBack: {
  52106. height: math.unit(191, "cm"),
  52107. weight: math.unit(80, "kg"),
  52108. name: "Back (Nude)",
  52109. image: {
  52110. source: "./media/characters/buster/nude-back.svg",
  52111. extra: 1018/970,
  52112. bottom: 55/1073
  52113. }
  52114. },
  52115. dick: {
  52116. height: math.unit(2.59, "feet"),
  52117. name: "Dick",
  52118. image: {
  52119. source: "./media/characters/buster/dick.svg"
  52120. }
  52121. },
  52122. ass: {
  52123. height: math.unit(1.2, "feet"),
  52124. name: "Ass",
  52125. image: {
  52126. source: "./media/characters/buster/ass.svg"
  52127. }
  52128. },
  52129. },
  52130. [
  52131. {
  52132. name: "Normal",
  52133. height: math.unit(191, "cm"),
  52134. default: true
  52135. },
  52136. ]
  52137. ))
  52138. characterMakers.push(() => makeCharacter(
  52139. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52140. {
  52141. side: {
  52142. height: math.unit(8.1, "feet"),
  52143. weight: math.unit(3500, "lb"),
  52144. name: "Side",
  52145. image: {
  52146. source: "./media/characters/sonya/side.svg",
  52147. extra: 1730/1317,
  52148. bottom: 86/1816
  52149. }
  52150. },
  52151. },
  52152. [
  52153. {
  52154. name: "Normal",
  52155. height: math.unit(8.1, "feet"),
  52156. default: true
  52157. },
  52158. ]
  52159. ))
  52160. characterMakers.push(() => makeCharacter(
  52161. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52162. {
  52163. front: {
  52164. height: math.unit(6, "feet"),
  52165. weight: math.unit(150, "lb"),
  52166. name: "Front",
  52167. image: {
  52168. source: "./media/characters/cadence-andrysiak/front.svg",
  52169. extra: 1164/1121,
  52170. bottom: 60/1224
  52171. }
  52172. },
  52173. back: {
  52174. height: math.unit(6, "feet"),
  52175. weight: math.unit(150, "lb"),
  52176. name: "Back",
  52177. image: {
  52178. source: "./media/characters/cadence-andrysiak/back.svg",
  52179. extra: 1200/1165,
  52180. bottom: 9/1209
  52181. }
  52182. },
  52183. dressed: {
  52184. height: math.unit(6, "feet"),
  52185. weight: math.unit(150, "lb"),
  52186. name: "Dressed",
  52187. image: {
  52188. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52189. extra: 1164/1121,
  52190. bottom: 60/1224
  52191. }
  52192. },
  52193. },
  52194. [
  52195. {
  52196. name: "Micro",
  52197. height: math.unit(1, "mm")
  52198. },
  52199. {
  52200. name: "Normal",
  52201. height: math.unit(6, "feet"),
  52202. default: true
  52203. },
  52204. ]
  52205. ))
  52206. characterMakers.push(() => makeCharacter(
  52207. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52208. {
  52209. front: {
  52210. height: math.unit(60, "inches"),
  52211. weight: math.unit(16, "lb"),
  52212. preyCapacity: math.unit(80, "liters"),
  52213. name: "Front",
  52214. image: {
  52215. source: "./media/characters/penny-lynx/front.svg",
  52216. extra: 1959/1769,
  52217. bottom: 49/2008
  52218. }
  52219. },
  52220. },
  52221. [
  52222. {
  52223. name: "Nokia",
  52224. height: math.unit(2, "inches")
  52225. },
  52226. {
  52227. name: "Desktop",
  52228. height: math.unit(24, "inches")
  52229. },
  52230. {
  52231. name: "TV",
  52232. height: math.unit(60, "inches")
  52233. },
  52234. {
  52235. name: "Jumbotron",
  52236. height: math.unit(12, "feet")
  52237. },
  52238. {
  52239. name: "Billboard",
  52240. height: math.unit(48, "feet"),
  52241. default: true
  52242. },
  52243. {
  52244. name: "IMAX",
  52245. height: math.unit(96, "feet")
  52246. },
  52247. {
  52248. name: "SINGULARITY",
  52249. height: math.unit(864938, "miles")
  52250. },
  52251. ]
  52252. ))
  52253. characterMakers.push(() => makeCharacter(
  52254. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52255. {
  52256. front: {
  52257. height: math.unit(5 + 4/12, "feet"),
  52258. weight: math.unit(230, "lb"),
  52259. name: "Front",
  52260. image: {
  52261. source: "./media/characters/sukebe/front.svg",
  52262. extra: 2130/2038,
  52263. bottom: 90/2220
  52264. }
  52265. },
  52266. back: {
  52267. height: math.unit(3.48, "feet"),
  52268. weight: math.unit(230, "lb"),
  52269. name: "Back",
  52270. image: {
  52271. source: "./media/characters/sukebe/back.svg",
  52272. extra: 1670/1604,
  52273. bottom: 0/1670
  52274. }
  52275. },
  52276. },
  52277. [
  52278. {
  52279. name: "Normal",
  52280. height: math.unit(5 + 4/12, "feet"),
  52281. default: true
  52282. },
  52283. ]
  52284. ))
  52285. characterMakers.push(() => makeCharacter(
  52286. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52287. {
  52288. front: {
  52289. height: math.unit(6, "feet"),
  52290. name: "Front",
  52291. image: {
  52292. source: "./media/characters/nylla/front.svg",
  52293. extra: 1868/1699,
  52294. bottom: 97/1965
  52295. }
  52296. },
  52297. back: {
  52298. height: math.unit(6, "feet"),
  52299. name: "Back",
  52300. image: {
  52301. source: "./media/characters/nylla/back.svg",
  52302. extra: 1889/1712,
  52303. bottom: 93/1982
  52304. }
  52305. },
  52306. frontNsfw: {
  52307. height: math.unit(6, "feet"),
  52308. name: "Front (NSFW)",
  52309. image: {
  52310. source: "./media/characters/nylla/front-nsfw.svg",
  52311. extra: 1868/1699,
  52312. bottom: 97/1965
  52313. },
  52314. extraAttributes: {
  52315. "dickLength": {
  52316. name: "Dick Length",
  52317. power: 1,
  52318. type: "length",
  52319. base: math.unit(1.4, "feet")
  52320. },
  52321. "cumVolume": {
  52322. name: "Cum Volume",
  52323. power: 3,
  52324. type: "volume",
  52325. base: math.unit(100, "mL")
  52326. },
  52327. }
  52328. },
  52329. backNsfw: {
  52330. height: math.unit(6, "feet"),
  52331. name: "Back (NSFW)",
  52332. image: {
  52333. source: "./media/characters/nylla/back-nsfw.svg",
  52334. extra: 1889/1712,
  52335. bottom: 93/1982
  52336. }
  52337. },
  52338. maw: {
  52339. height: math.unit(2.10, "feet"),
  52340. name: "Maw",
  52341. image: {
  52342. source: "./media/characters/nylla/maw.svg"
  52343. }
  52344. },
  52345. paws: {
  52346. height: math.unit(2.06, "feet"),
  52347. name: "Paws",
  52348. image: {
  52349. source: "./media/characters/nylla/paws.svg"
  52350. }
  52351. },
  52352. muzzle: {
  52353. height: math.unit(0.61, "feet"),
  52354. name: "Muzzle",
  52355. image: {
  52356. source: "./media/characters/nylla/muzzle.svg"
  52357. }
  52358. },
  52359. sheath: {
  52360. height: math.unit(1.305, "feet"),
  52361. name: "Sheath",
  52362. image: {
  52363. source: "./media/characters/nylla/sheath.svg"
  52364. }
  52365. },
  52366. },
  52367. [
  52368. {
  52369. name: "Micro",
  52370. height: math.unit(7.5, "inches")
  52371. },
  52372. {
  52373. name: "Normal",
  52374. height: math.unit(7, "feet"),
  52375. default: true
  52376. },
  52377. {
  52378. name: "Macro",
  52379. height: math.unit(60, "feet")
  52380. },
  52381. {
  52382. name: "Mega",
  52383. height: math.unit(200, "feet")
  52384. },
  52385. ]
  52386. ))
  52387. characterMakers.push(() => makeCharacter(
  52388. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52389. {
  52390. front: {
  52391. height: math.unit(10, "feet"),
  52392. weight: math.unit(2300, "lb"),
  52393. name: "Front",
  52394. image: {
  52395. source: "./media/characters/hunt3r/front.svg",
  52396. extra: 1909/1742,
  52397. bottom: 46/1955
  52398. }
  52399. },
  52400. },
  52401. [
  52402. {
  52403. name: "Normal",
  52404. height: math.unit(10, "feet"),
  52405. default: true
  52406. },
  52407. ]
  52408. ))
  52409. characterMakers.push(() => makeCharacter(
  52410. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52411. {
  52412. dressed: {
  52413. height: math.unit(11, "feet"),
  52414. weight: math.unit(18500, "lb"),
  52415. preyCapacity: math.unit(9, "people"),
  52416. name: "Dressed",
  52417. image: {
  52418. source: "./media/characters/cylphis/dressed.svg",
  52419. extra: 1028/1003,
  52420. bottom: 75/1103
  52421. },
  52422. },
  52423. undressed: {
  52424. height: math.unit(11, "feet"),
  52425. weight: math.unit(18500, "lb"),
  52426. preyCapacity: math.unit(9, "people"),
  52427. name: "Undressed",
  52428. image: {
  52429. source: "./media/characters/cylphis/undressed.svg",
  52430. extra: 1028/1003,
  52431. bottom: 75/1103
  52432. }
  52433. },
  52434. full: {
  52435. height: math.unit(11, "feet"),
  52436. weight: math.unit(18500 + 150*9, "lb"),
  52437. preyCapacity: math.unit(9, "people"),
  52438. name: "Full",
  52439. image: {
  52440. source: "./media/characters/cylphis/full.svg",
  52441. extra: 1028/1003,
  52442. bottom: 75/1103
  52443. }
  52444. },
  52445. },
  52446. [
  52447. {
  52448. name: "Small",
  52449. height: math.unit(8, "feet")
  52450. },
  52451. {
  52452. name: "Normal",
  52453. height: math.unit(11, "feet"),
  52454. default: true
  52455. },
  52456. ]
  52457. ))
  52458. characterMakers.push(() => makeCharacter(
  52459. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52460. {
  52461. front: {
  52462. height: math.unit(2 + 7/12, "feet"),
  52463. name: "Front",
  52464. image: {
  52465. source: "./media/characters/orishan/front.svg",
  52466. extra: 1058/1023,
  52467. bottom: 23/1081
  52468. }
  52469. },
  52470. back: {
  52471. height: math.unit(2 + 7/12, "feet"),
  52472. name: "Back",
  52473. image: {
  52474. source: "./media/characters/orishan/back.svg",
  52475. extra: 1058/1023,
  52476. bottom: 23/1081
  52477. }
  52478. },
  52479. },
  52480. [
  52481. {
  52482. name: "Micro",
  52483. height: math.unit(2, "cm")
  52484. },
  52485. {
  52486. name: "Normal",
  52487. height: math.unit(2 + 7/12, "feet"),
  52488. default: true
  52489. },
  52490. ]
  52491. ))
  52492. characterMakers.push(() => makeCharacter(
  52493. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52494. {
  52495. front: {
  52496. height: math.unit(3, "meters"),
  52497. weight: math.unit(508, "kg"),
  52498. name: "Front",
  52499. image: {
  52500. source: "./media/characters/seranis/front.svg",
  52501. extra: 1478/1454,
  52502. bottom: 41/1519
  52503. }
  52504. },
  52505. },
  52506. [
  52507. {
  52508. name: "Normal",
  52509. height: math.unit(3, "meters"),
  52510. default: true
  52511. },
  52512. {
  52513. name: "Macro",
  52514. height: math.unit(108, "meters")
  52515. },
  52516. {
  52517. name: "Megamacro",
  52518. height: math.unit(1250, "meters")
  52519. },
  52520. ]
  52521. ))
  52522. characterMakers.push(() => makeCharacter(
  52523. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52524. {
  52525. undressed: {
  52526. height: math.unit(5 + 3/12, "feet"),
  52527. name: "Undressed",
  52528. image: {
  52529. source: "./media/characters/ankou/undressed.svg",
  52530. extra: 1301/1213,
  52531. bottom: 87/1388
  52532. }
  52533. },
  52534. dressed: {
  52535. height: math.unit(5 + 3/12, "feet"),
  52536. name: "Dressed",
  52537. image: {
  52538. source: "./media/characters/ankou/dressed.svg",
  52539. extra: 1301/1213,
  52540. bottom: 87/1388
  52541. }
  52542. },
  52543. head: {
  52544. height: math.unit(1.61, "feet"),
  52545. name: "Head",
  52546. image: {
  52547. source: "./media/characters/ankou/head.svg"
  52548. }
  52549. },
  52550. },
  52551. [
  52552. {
  52553. name: "Normal",
  52554. height: math.unit(5 + 3/12, "feet"),
  52555. default: true
  52556. },
  52557. ]
  52558. ))
  52559. characterMakers.push(() => makeCharacter(
  52560. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52561. {
  52562. side: {
  52563. height: math.unit(6 + 3/12, "feet"),
  52564. weight: math.unit(200, "kg"),
  52565. name: "Side",
  52566. image: {
  52567. source: "./media/characters/juniper-skunktaur/side.svg",
  52568. extra: 1574/1229,
  52569. bottom: 38/1612
  52570. }
  52571. },
  52572. front: {
  52573. height: math.unit(6 + 3/12, "feet"),
  52574. weight: math.unit(200, "kg"),
  52575. name: "Front",
  52576. image: {
  52577. source: "./media/characters/juniper-skunktaur/front.svg",
  52578. extra: 1337/1278,
  52579. bottom: 22/1359
  52580. }
  52581. },
  52582. back: {
  52583. height: math.unit(6 + 3/12, "feet"),
  52584. weight: math.unit(200, "kg"),
  52585. name: "Back",
  52586. image: {
  52587. source: "./media/characters/juniper-skunktaur/back.svg",
  52588. extra: 1618/1273,
  52589. bottom: 13/1631
  52590. }
  52591. },
  52592. top: {
  52593. height: math.unit(2.62, "feet"),
  52594. weight: math.unit(200, "kg"),
  52595. name: "Top",
  52596. image: {
  52597. source: "./media/characters/juniper-skunktaur/top.svg"
  52598. }
  52599. },
  52600. },
  52601. [
  52602. {
  52603. name: "Normal",
  52604. height: math.unit(6 + 3/12, "feet"),
  52605. default: true
  52606. },
  52607. ]
  52608. ))
  52609. characterMakers.push(() => makeCharacter(
  52610. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52611. {
  52612. front: {
  52613. height: math.unit(20.5, "feet"),
  52614. name: "Front",
  52615. image: {
  52616. source: "./media/characters/rei/front.svg",
  52617. extra: 1349/1195,
  52618. bottom: 31/1380
  52619. }
  52620. },
  52621. back: {
  52622. height: math.unit(20.5, "feet"),
  52623. name: "Back",
  52624. image: {
  52625. source: "./media/characters/rei/back.svg",
  52626. extra: 1358/1204,
  52627. bottom: 22/1380
  52628. }
  52629. },
  52630. pawsDigi: {
  52631. height: math.unit(3.45, "feet"),
  52632. name: "Paws (Digi)",
  52633. image: {
  52634. source: "./media/characters/rei/paws-digi.svg"
  52635. }
  52636. },
  52637. pawsPlanti: {
  52638. height: math.unit(3.45, "feet"),
  52639. name: "Paws (Planti)",
  52640. image: {
  52641. source: "./media/characters/rei/paws-planti.svg"
  52642. }
  52643. },
  52644. },
  52645. [
  52646. {
  52647. name: "Normal",
  52648. height: math.unit(20.5, "feet"),
  52649. default: true
  52650. },
  52651. ]
  52652. ))
  52653. characterMakers.push(() => makeCharacter(
  52654. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52655. {
  52656. front: {
  52657. height: math.unit(5 + 11/12, "feet"),
  52658. name: "Front",
  52659. image: {
  52660. source: "./media/characters/carina/front.svg",
  52661. extra: 1720/1449,
  52662. bottom: 14/1734
  52663. }
  52664. },
  52665. back: {
  52666. height: math.unit(5 + 11/12, "feet"),
  52667. name: "Back",
  52668. image: {
  52669. source: "./media/characters/carina/back.svg",
  52670. extra: 1493/1445,
  52671. bottom: 17/1510
  52672. }
  52673. },
  52674. paw: {
  52675. height: math.unit(0.92, "feet"),
  52676. name: "Paw",
  52677. image: {
  52678. source: "./media/characters/carina/paw.svg"
  52679. }
  52680. },
  52681. },
  52682. [
  52683. {
  52684. name: "Normal",
  52685. height: math.unit(5 + 11/12, "feet"),
  52686. default: true
  52687. },
  52688. ]
  52689. ))
  52690. characterMakers.push(() => makeCharacter(
  52691. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52692. {
  52693. normal_front: {
  52694. height: math.unit(4.88, "meters"),
  52695. name: "Front",
  52696. image: {
  52697. source: "./media/characters/maya/normal-front.svg",
  52698. extra: 1222/1145,
  52699. bottom: 57/1279
  52700. },
  52701. form: "normal",
  52702. default: true
  52703. },
  52704. monstrous_front: {
  52705. height: math.unit(10, "meters"),
  52706. name: "Front",
  52707. image: {
  52708. source: "./media/characters/maya/monstrous-front.svg",
  52709. extra: 1523/1109,
  52710. bottom: 113/1636
  52711. },
  52712. form: "monstrous",
  52713. extraAttributes: {
  52714. "swallowSize": {
  52715. name: "Tailmaw Bite Size",
  52716. power: 3,
  52717. type: "volume",
  52718. base: math.unit(43000, "liters")
  52719. },
  52720. }
  52721. },
  52722. taur_front: {
  52723. height: math.unit(10, "meters"),
  52724. name: "Front",
  52725. image: {
  52726. source: "./media/characters/maya/taur-front.svg",
  52727. extra: 743/506,
  52728. bottom: 101/844
  52729. },
  52730. form: "taur",
  52731. },
  52732. },
  52733. [
  52734. {
  52735. name: "Normal",
  52736. height: math.unit(4.88, "meters"),
  52737. default: true,
  52738. form: "normal"
  52739. },
  52740. {
  52741. name: "Macro",
  52742. height: math.unit(38.1, "meters"),
  52743. form: "normal"
  52744. },
  52745. {
  52746. name: "Macro+",
  52747. height: math.unit(152.4, "meters"),
  52748. form: "normal"
  52749. },
  52750. {
  52751. name: "Macro++",
  52752. height: math.unit(16.09, "km"),
  52753. form: "normal"
  52754. },
  52755. {
  52756. name: "Mega-macro",
  52757. height: math.unit(700, "megameters"),
  52758. form: "normal"
  52759. },
  52760. {
  52761. name: "Satiated",
  52762. height: math.unit(10, "meters"),
  52763. default: true,
  52764. form: "monstrous"
  52765. },
  52766. {
  52767. name: "Hungry",
  52768. height: math.unit(75, "meters"),
  52769. form: "monstrous"
  52770. },
  52771. {
  52772. name: "Ravenous",
  52773. height: math.unit(500, "meters"),
  52774. form: "monstrous"
  52775. },
  52776. {
  52777. name: "\"Normal\"",
  52778. height: math.unit(10, "meters"),
  52779. form: "taur"
  52780. },
  52781. {
  52782. name: "Macro",
  52783. height: math.unit(50, "meters"),
  52784. form: "taur"
  52785. },
  52786. ],
  52787. {
  52788. "normal": {
  52789. name: "Normal",
  52790. default: true
  52791. },
  52792. "monstrous": {
  52793. name: "Monstrous",
  52794. },
  52795. "taur": {
  52796. name: "Taur",
  52797. },
  52798. }
  52799. ))
  52800. characterMakers.push(() => makeCharacter(
  52801. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52802. {
  52803. front: {
  52804. height: math.unit(6 + 2/12, "feet"),
  52805. weight: math.unit(500, "lb"),
  52806. preyCapacity: math.unit(4, "people"),
  52807. name: "Front",
  52808. image: {
  52809. source: "./media/characters/yepir/front.svg"
  52810. }
  52811. },
  52812. side: {
  52813. height: math.unit(6 + 2/12, "feet"),
  52814. weight: math.unit(500, "lb"),
  52815. preyCapacity: math.unit(4, "people"),
  52816. name: "Side",
  52817. image: {
  52818. source: "./media/characters/yepir/side.svg"
  52819. }
  52820. },
  52821. paw: {
  52822. height: math.unit(1.05, "feet"),
  52823. name: "Paw",
  52824. image: {
  52825. source: "./media/characters/yepir/paw.svg"
  52826. }
  52827. },
  52828. },
  52829. [
  52830. {
  52831. name: "Normal",
  52832. height: math.unit(6 + 2/12, "feet"),
  52833. default: true
  52834. },
  52835. ]
  52836. ))
  52837. characterMakers.push(() => makeCharacter(
  52838. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52839. {
  52840. front: {
  52841. height: math.unit(5 + 4/12, "feet"),
  52842. name: "Front",
  52843. image: {
  52844. source: "./media/characters/russec/front.svg",
  52845. extra: 1926/1626,
  52846. bottom: 72/1998
  52847. }
  52848. },
  52849. back: {
  52850. height: math.unit(5 + 4/12, "feet"),
  52851. name: "Back",
  52852. image: {
  52853. source: "./media/characters/russec/back.svg",
  52854. extra: 1910/1591,
  52855. bottom: 48/1958
  52856. }
  52857. },
  52858. },
  52859. [
  52860. {
  52861. name: "Small",
  52862. height: math.unit(5 + 4/12, "feet")
  52863. },
  52864. {
  52865. name: "Normal",
  52866. height: math.unit(72, "feet"),
  52867. default: true
  52868. },
  52869. ]
  52870. ))
  52871. characterMakers.push(() => makeCharacter(
  52872. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52873. {
  52874. side: {
  52875. height: math.unit(12, "feet"),
  52876. name: "Side",
  52877. image: {
  52878. source: "./media/characters/cianus/side.svg",
  52879. extra: 808/526,
  52880. bottom: 61/869
  52881. }
  52882. },
  52883. },
  52884. [
  52885. {
  52886. name: "Normal",
  52887. height: math.unit(12, "feet"),
  52888. default: true
  52889. },
  52890. ]
  52891. ))
  52892. characterMakers.push(() => makeCharacter(
  52893. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52894. {
  52895. front: {
  52896. height: math.unit(9 + 6/12, "feet"),
  52897. weight: math.unit(300, "lb"),
  52898. name: "Front",
  52899. image: {
  52900. source: "./media/characters/ahab/front.svg",
  52901. extra: 1897/1868,
  52902. bottom: 121/2018
  52903. }
  52904. },
  52905. frontNsfw: {
  52906. height: math.unit(9 + 6/12, "feet"),
  52907. weight: math.unit(300, "lb"),
  52908. name: "Front-nsfw",
  52909. image: {
  52910. source: "./media/characters/ahab/front-nsfw.svg",
  52911. extra: 1897/1868,
  52912. bottom: 121/2018
  52913. }
  52914. },
  52915. },
  52916. [
  52917. {
  52918. name: "Normal",
  52919. height: math.unit(9 + 6/12, "feet")
  52920. },
  52921. {
  52922. name: "Macro",
  52923. height: math.unit(657, "feet"),
  52924. default: true
  52925. },
  52926. ]
  52927. ))
  52928. characterMakers.push(() => makeCharacter(
  52929. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52930. {
  52931. front: {
  52932. height: math.unit(2.69, "meters"),
  52933. weight: math.unit(132, "kg"),
  52934. name: "Front",
  52935. image: {
  52936. source: "./media/characters/aarkus/front.svg",
  52937. extra: 1400/1231,
  52938. bottom: 34/1434
  52939. }
  52940. },
  52941. back: {
  52942. height: math.unit(2.69, "meters"),
  52943. weight: math.unit(132, "kg"),
  52944. name: "Back",
  52945. image: {
  52946. source: "./media/characters/aarkus/back.svg",
  52947. extra: 1381/1218,
  52948. bottom: 30/1411
  52949. }
  52950. },
  52951. frontNsfw: {
  52952. height: math.unit(2.69, "meters"),
  52953. weight: math.unit(132, "kg"),
  52954. name: "Front (NSFW)",
  52955. image: {
  52956. source: "./media/characters/aarkus/front-nsfw.svg",
  52957. extra: 1400/1231,
  52958. bottom: 34/1434
  52959. }
  52960. },
  52961. foot: {
  52962. height: math.unit(1.45, "feet"),
  52963. name: "Foot",
  52964. image: {
  52965. source: "./media/characters/aarkus/foot.svg"
  52966. }
  52967. },
  52968. head: {
  52969. height: math.unit(2.85, "feet"),
  52970. name: "Head",
  52971. image: {
  52972. source: "./media/characters/aarkus/head.svg"
  52973. }
  52974. },
  52975. headAlt: {
  52976. height: math.unit(3.07, "feet"),
  52977. name: "Head (Alt)",
  52978. image: {
  52979. source: "./media/characters/aarkus/head-alt.svg"
  52980. }
  52981. },
  52982. mouth: {
  52983. height: math.unit(1.25, "feet"),
  52984. name: "Mouth",
  52985. image: {
  52986. source: "./media/characters/aarkus/mouth.svg"
  52987. }
  52988. },
  52989. dick: {
  52990. height: math.unit(1.77, "feet"),
  52991. name: "Dick",
  52992. image: {
  52993. source: "./media/characters/aarkus/dick.svg"
  52994. }
  52995. },
  52996. },
  52997. [
  52998. {
  52999. name: "Normal",
  53000. height: math.unit(2.69, "meters"),
  53001. default: true
  53002. },
  53003. {
  53004. name: "Macro",
  53005. height: math.unit(269, "meters")
  53006. },
  53007. {
  53008. name: "Macro+",
  53009. height: math.unit(672.5, "meters")
  53010. },
  53011. {
  53012. name: "Megamacro",
  53013. height: math.unit(2.017, "km")
  53014. },
  53015. ]
  53016. ))
  53017. characterMakers.push(() => makeCharacter(
  53018. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53019. {
  53020. front: {
  53021. height: math.unit(23.47, "cm"),
  53022. weight: math.unit(600, "grams"),
  53023. name: "Front",
  53024. image: {
  53025. source: "./media/characters/diode/front.svg",
  53026. extra: 1778/1396,
  53027. bottom: 95/1873
  53028. }
  53029. },
  53030. side: {
  53031. height: math.unit(23.47, "cm"),
  53032. weight: math.unit(600, "grams"),
  53033. name: "Side",
  53034. image: {
  53035. source: "./media/characters/diode/side.svg",
  53036. extra: 1831/1404,
  53037. bottom: 86/1917
  53038. }
  53039. },
  53040. wings: {
  53041. height: math.unit(0.683, "feet"),
  53042. name: "Wings",
  53043. image: {
  53044. source: "./media/characters/diode/wings.svg"
  53045. }
  53046. },
  53047. },
  53048. [
  53049. {
  53050. name: "Normal",
  53051. height: math.unit(23.47, "cm"),
  53052. default: true
  53053. },
  53054. ]
  53055. ))
  53056. characterMakers.push(() => makeCharacter(
  53057. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53058. {
  53059. front: {
  53060. height: math.unit(6 + 3/12, "feet"),
  53061. weight: math.unit(250, "lb"),
  53062. name: "Front",
  53063. image: {
  53064. source: "./media/characters/reika/front.svg",
  53065. extra: 1120/1078,
  53066. bottom: 86/1206
  53067. }
  53068. },
  53069. },
  53070. [
  53071. {
  53072. name: "Normal",
  53073. height: math.unit(6 + 3/12, "feet"),
  53074. default: true
  53075. },
  53076. ]
  53077. ))
  53078. characterMakers.push(() => makeCharacter(
  53079. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53080. {
  53081. front: {
  53082. height: math.unit(16 + 8/12, "feet"),
  53083. weight: math.unit(9000, "lb"),
  53084. name: "Front",
  53085. image: {
  53086. source: "./media/characters/lokuto-takama/front.svg",
  53087. extra: 1774/1632,
  53088. bottom: 147/1921
  53089. },
  53090. extraAttributes: {
  53091. "bustWidth": {
  53092. name: "Bust Width",
  53093. power: 1,
  53094. type: "length",
  53095. base: math.unit(2.4, "meters")
  53096. },
  53097. "breastWeight": {
  53098. name: "Breast Weight",
  53099. power: 3,
  53100. type: "mass",
  53101. base: math.unit(1000, "kg")
  53102. },
  53103. }
  53104. },
  53105. },
  53106. [
  53107. {
  53108. name: "Normal",
  53109. height: math.unit(16 + 8/12, "feet"),
  53110. default: true
  53111. },
  53112. ]
  53113. ))
  53114. characterMakers.push(() => makeCharacter(
  53115. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53116. {
  53117. front: {
  53118. height: math.unit(10, "cm"),
  53119. weight: math.unit(850, "grams"),
  53120. name: "Front",
  53121. image: {
  53122. source: "./media/characters/owak-bone/front.svg",
  53123. extra: 1965/1801,
  53124. bottom: 31/1996
  53125. }
  53126. },
  53127. },
  53128. [
  53129. {
  53130. name: "Normal",
  53131. height: math.unit(10, "cm"),
  53132. default: true
  53133. },
  53134. ]
  53135. ))
  53136. characterMakers.push(() => makeCharacter(
  53137. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53138. {
  53139. front: {
  53140. height: math.unit(2 + 6/12, "feet"),
  53141. weight: math.unit(9, "lb"),
  53142. name: "Front",
  53143. image: {
  53144. source: "./media/characters/muffin/front.svg",
  53145. extra: 1220/1195,
  53146. bottom: 84/1304
  53147. }
  53148. },
  53149. },
  53150. [
  53151. {
  53152. name: "Normal",
  53153. height: math.unit(2 + 6/12, "feet"),
  53154. default: true
  53155. },
  53156. ]
  53157. ))
  53158. characterMakers.push(() => makeCharacter(
  53159. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53160. {
  53161. front: {
  53162. height: math.unit(7, "feet"),
  53163. name: "Front",
  53164. image: {
  53165. source: "./media/characters/chimera/front.svg",
  53166. extra: 1752/1614,
  53167. bottom: 68/1820
  53168. }
  53169. },
  53170. },
  53171. [
  53172. {
  53173. name: "Normal",
  53174. height: math.unit(7, "feet")
  53175. },
  53176. {
  53177. name: "Gigamacro",
  53178. height: math.unit(2.9, "gigameters"),
  53179. default: true
  53180. },
  53181. {
  53182. name: "Universal",
  53183. height: math.unit(1.56e26, "yottameters")
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53189. {
  53190. front: {
  53191. height: math.unit(3, "feet"),
  53192. weight: math.unit(20, "lb"),
  53193. name: "Front",
  53194. image: {
  53195. source: "./media/characters/kit-fennec-fox/front.svg",
  53196. extra: 1027/932,
  53197. bottom: 16/1043
  53198. }
  53199. },
  53200. back: {
  53201. height: math.unit(3, "feet"),
  53202. weight: math.unit(20, "lb"),
  53203. name: "Back",
  53204. image: {
  53205. source: "./media/characters/kit-fennec-fox/back.svg",
  53206. extra: 1027/932,
  53207. bottom: 16/1043
  53208. }
  53209. },
  53210. },
  53211. [
  53212. {
  53213. name: "Normal",
  53214. height: math.unit(3, "feet"),
  53215. default: true
  53216. },
  53217. ]
  53218. ))
  53219. characterMakers.push(() => makeCharacter(
  53220. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53221. {
  53222. front: {
  53223. height: math.unit(167, "cm"),
  53224. name: "Front",
  53225. image: {
  53226. source: "./media/characters/blue-otter/front.svg",
  53227. extra: 1951/1920,
  53228. bottom: 31/1982
  53229. }
  53230. },
  53231. },
  53232. [
  53233. {
  53234. name: "Otter-Sized",
  53235. height: math.unit(100, "cm")
  53236. },
  53237. {
  53238. name: "Normal",
  53239. height: math.unit(167, "cm"),
  53240. default: true
  53241. },
  53242. ]
  53243. ))
  53244. characterMakers.push(() => makeCharacter(
  53245. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53246. {
  53247. front: {
  53248. height: math.unit(4 + 4/12, "feet"),
  53249. name: "Front",
  53250. image: {
  53251. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53252. extra: 1072/1067,
  53253. bottom: 117/1189
  53254. }
  53255. },
  53256. back: {
  53257. height: math.unit(4 + 4/12, "feet"),
  53258. name: "Back",
  53259. image: {
  53260. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53261. extra: 1135/1129,
  53262. bottom: 57/1192
  53263. }
  53264. },
  53265. head: {
  53266. height: math.unit(1.77, "feet"),
  53267. name: "Head",
  53268. image: {
  53269. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53270. }
  53271. },
  53272. },
  53273. [
  53274. {
  53275. name: "Normal",
  53276. height: math.unit(4 + 4/12, "feet"),
  53277. default: true
  53278. },
  53279. ]
  53280. ))
  53281. characterMakers.push(() => makeCharacter(
  53282. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53283. {
  53284. front: {
  53285. height: math.unit(2, "inches"),
  53286. name: "Front",
  53287. image: {
  53288. source: "./media/characters/carley-hartford/front.svg",
  53289. extra: 1035/988,
  53290. bottom: 23/1058
  53291. }
  53292. },
  53293. back: {
  53294. height: math.unit(2, "inches"),
  53295. name: "Back",
  53296. image: {
  53297. source: "./media/characters/carley-hartford/back.svg",
  53298. extra: 1035/988,
  53299. bottom: 23/1058
  53300. }
  53301. },
  53302. dressed: {
  53303. height: math.unit(2, "inches"),
  53304. name: "Dressed",
  53305. image: {
  53306. source: "./media/characters/carley-hartford/dressed.svg",
  53307. extra: 651/620,
  53308. bottom: 0/651
  53309. }
  53310. },
  53311. },
  53312. [
  53313. {
  53314. name: "Micro",
  53315. height: math.unit(2, "inches"),
  53316. default: true
  53317. },
  53318. {
  53319. name: "Macro",
  53320. height: math.unit(6 + 3/12, "feet")
  53321. },
  53322. ]
  53323. ))
  53324. characterMakers.push(() => makeCharacter(
  53325. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53326. {
  53327. front: {
  53328. height: math.unit(2 + 3/12, "feet"),
  53329. weight: math.unit(15 + 7/16, "lb"),
  53330. name: "Front",
  53331. image: {
  53332. source: "./media/characters/duke/front.svg",
  53333. extra: 910/815,
  53334. bottom: 30/940
  53335. }
  53336. },
  53337. },
  53338. [
  53339. {
  53340. name: "Normal",
  53341. height: math.unit(2 + 3/12, "feet"),
  53342. default: true
  53343. },
  53344. ]
  53345. ))
  53346. characterMakers.push(() => makeCharacter(
  53347. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53348. {
  53349. front: {
  53350. height: math.unit(5 + 4/12, "feet"),
  53351. weight: math.unit(156, "lb"),
  53352. name: "Front",
  53353. image: {
  53354. source: "./media/characters/dein/front.svg",
  53355. extra: 855/815,
  53356. bottom: 48/903
  53357. }
  53358. },
  53359. side: {
  53360. height: math.unit(5 + 4/12, "feet"),
  53361. weight: math.unit(156, "lb"),
  53362. name: "side",
  53363. image: {
  53364. source: "./media/characters/dein/side.svg",
  53365. extra: 846/803,
  53366. bottom: 25/871
  53367. }
  53368. },
  53369. maw: {
  53370. height: math.unit(1.45, "feet"),
  53371. name: "Maw",
  53372. image: {
  53373. source: "./media/characters/dein/maw.svg"
  53374. }
  53375. },
  53376. },
  53377. [
  53378. {
  53379. name: "Ferret Sized",
  53380. height: math.unit(2 + 5/12, "feet")
  53381. },
  53382. {
  53383. name: "Normal",
  53384. height: math.unit(5 + 4/12, "feet"),
  53385. default: true
  53386. },
  53387. ]
  53388. ))
  53389. characterMakers.push(() => makeCharacter(
  53390. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53391. {
  53392. front: {
  53393. height: math.unit(84 + 8/12, "feet"),
  53394. weight: math.unit(942180, "lb"),
  53395. name: "Front",
  53396. image: {
  53397. source: "./media/characters/daurine-arima/front.svg",
  53398. extra: 1989/1782,
  53399. bottom: 37/2026
  53400. }
  53401. },
  53402. side: {
  53403. height: math.unit(84 + 8/12, "feet"),
  53404. weight: math.unit(942180, "lb"),
  53405. name: "Side",
  53406. image: {
  53407. source: "./media/characters/daurine-arima/side.svg",
  53408. extra: 1997/1790,
  53409. bottom: 21/2018
  53410. }
  53411. },
  53412. back: {
  53413. height: math.unit(84 + 8/12, "feet"),
  53414. weight: math.unit(942180, "lb"),
  53415. name: "Back",
  53416. image: {
  53417. source: "./media/characters/daurine-arima/back.svg",
  53418. extra: 1992/1800,
  53419. bottom: 12/2004
  53420. }
  53421. },
  53422. head: {
  53423. height: math.unit(15.5, "feet"),
  53424. name: "Head",
  53425. image: {
  53426. source: "./media/characters/daurine-arima/head.svg"
  53427. }
  53428. },
  53429. headAlt: {
  53430. height: math.unit(19.19, "feet"),
  53431. name: "Head (Alt)",
  53432. image: {
  53433. source: "./media/characters/daurine-arima/head-alt.svg"
  53434. }
  53435. },
  53436. },
  53437. [
  53438. {
  53439. name: "Minimum height",
  53440. height: math.unit(8 + 10/12, "feet")
  53441. },
  53442. {
  53443. name: "Comfort height",
  53444. height: math.unit(19 + 6 /12, "feet")
  53445. },
  53446. {
  53447. name: "\"Normal\" height",
  53448. height: math.unit(28 + 10/12, "feet")
  53449. },
  53450. {
  53451. name: "Base height",
  53452. height: math.unit(84 + 8/12, "feet"),
  53453. default: true
  53454. },
  53455. {
  53456. name: "Mini-macro",
  53457. height: math.unit(2360, "feet")
  53458. },
  53459. {
  53460. name: "Macro",
  53461. height: math.unit(10, "miles")
  53462. },
  53463. {
  53464. name: "Goddess",
  53465. height: math.unit(9.99e40, "yottameters")
  53466. },
  53467. ]
  53468. ))
  53469. characterMakers.push(() => makeCharacter(
  53470. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53471. {
  53472. front: {
  53473. height: math.unit(2.3, "meters"),
  53474. name: "Front",
  53475. image: {
  53476. source: "./media/characters/cilenomon/front.svg",
  53477. extra: 1963/1778,
  53478. bottom: 54/2017
  53479. }
  53480. },
  53481. },
  53482. [
  53483. {
  53484. name: "Normal",
  53485. height: math.unit(2.3, "meters"),
  53486. default: true
  53487. },
  53488. {
  53489. name: "Big",
  53490. height: math.unit(5, "meters")
  53491. },
  53492. {
  53493. name: "Macro",
  53494. height: math.unit(30, "meters")
  53495. },
  53496. {
  53497. name: "True",
  53498. height: math.unit(1, "universe")
  53499. },
  53500. ]
  53501. ))
  53502. characterMakers.push(() => makeCharacter(
  53503. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53504. {
  53505. front: {
  53506. height: math.unit(5, "feet"),
  53507. name: "Front",
  53508. image: {
  53509. source: "./media/characters/sen-mink/front.svg",
  53510. extra: 1727/1675,
  53511. bottom: 35/1762
  53512. }
  53513. },
  53514. },
  53515. [
  53516. {
  53517. name: "Normal",
  53518. height: math.unit(5, "feet"),
  53519. default: true
  53520. },
  53521. ]
  53522. ))
  53523. characterMakers.push(() => makeCharacter(
  53524. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53525. {
  53526. front: {
  53527. height: math.unit(5.42999, "feet"),
  53528. weight: math.unit(100, "lb"),
  53529. name: "Front",
  53530. image: {
  53531. source: "./media/characters/ophois/front.svg",
  53532. extra: 1429/1286,
  53533. bottom: 60/1489
  53534. }
  53535. },
  53536. },
  53537. [
  53538. {
  53539. name: "Normal",
  53540. height: math.unit(5.42999, "feet"),
  53541. default: true
  53542. },
  53543. ]
  53544. ))
  53545. characterMakers.push(() => makeCharacter(
  53546. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53547. {
  53548. front: {
  53549. height: math.unit(2, "meters"),
  53550. name: "Front",
  53551. image: {
  53552. source: "./media/characters/riley/front.svg",
  53553. extra: 1779/1754,
  53554. bottom: 139/1918
  53555. }
  53556. },
  53557. },
  53558. [
  53559. {
  53560. name: "Normal",
  53561. height: math.unit(2, "meters"),
  53562. default: true
  53563. },
  53564. ]
  53565. ))
  53566. characterMakers.push(() => makeCharacter(
  53567. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53568. {
  53569. front: {
  53570. height: math.unit(6 + 2/12, "feet"),
  53571. weight: math.unit(195, "lb"),
  53572. preyCapacity: math.unit(6, "people"),
  53573. name: "Front",
  53574. image: {
  53575. source: "./media/characters/shuken-flash/front.svg",
  53576. extra: 1905/1739,
  53577. bottom: 65/1970
  53578. }
  53579. },
  53580. back: {
  53581. height: math.unit(6 + 2/12, "feet"),
  53582. weight: math.unit(195, "lb"),
  53583. preyCapacity: math.unit(6, "people"),
  53584. name: "Back",
  53585. image: {
  53586. source: "./media/characters/shuken-flash/back.svg",
  53587. extra: 1912/1751,
  53588. bottom: 13/1925
  53589. }
  53590. },
  53591. },
  53592. [
  53593. {
  53594. name: "Normal",
  53595. height: math.unit(6 + 2/12, "feet"),
  53596. default: true
  53597. },
  53598. ]
  53599. ))
  53600. characterMakers.push(() => makeCharacter(
  53601. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53602. {
  53603. front: {
  53604. height: math.unit(5 + 9/12, "feet"),
  53605. weight: math.unit(150, "lb"),
  53606. name: "Front",
  53607. image: {
  53608. source: "./media/characters/plat/front.svg",
  53609. extra: 1816/1703,
  53610. bottom: 43/1859
  53611. }
  53612. },
  53613. side: {
  53614. height: math.unit(5 + 9/12, "feet"),
  53615. weight: math.unit(300, "lb"),
  53616. name: "Side",
  53617. image: {
  53618. source: "./media/characters/plat/side.svg",
  53619. extra: 1824/1699,
  53620. bottom: 18/1842
  53621. }
  53622. },
  53623. },
  53624. [
  53625. {
  53626. name: "Normal",
  53627. height: math.unit(5 + 9/12, "feet"),
  53628. default: true
  53629. },
  53630. ]
  53631. ))
  53632. characterMakers.push(() => makeCharacter(
  53633. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53634. {
  53635. front: {
  53636. height: math.unit(9, "feet"),
  53637. weight: math.unit(1800, "lb"),
  53638. name: "Front",
  53639. image: {
  53640. source: "./media/characters/elaine/front.svg",
  53641. extra: 1833/1354,
  53642. bottom: 25/1858
  53643. }
  53644. },
  53645. back: {
  53646. height: math.unit(8.8, "feet"),
  53647. weight: math.unit(1800, "lb"),
  53648. name: "Back",
  53649. image: {
  53650. source: "./media/characters/elaine/back.svg",
  53651. extra: 1641/1233,
  53652. bottom: 53/1694
  53653. }
  53654. },
  53655. },
  53656. [
  53657. {
  53658. name: "Normal",
  53659. height: math.unit(9, "feet"),
  53660. default: true
  53661. },
  53662. ]
  53663. ))
  53664. characterMakers.push(() => makeCharacter(
  53665. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53666. {
  53667. front: {
  53668. height: math.unit(17 + 9/12, "feet"),
  53669. weight: math.unit(8000, "lb"),
  53670. name: "Front",
  53671. image: {
  53672. source: "./media/characters/vera-raven/front.svg",
  53673. extra: 1457/1412,
  53674. bottom: 121/1578
  53675. }
  53676. },
  53677. side: {
  53678. height: math.unit(17 + 9/12, "feet"),
  53679. weight: math.unit(8000, "lb"),
  53680. name: "Side",
  53681. image: {
  53682. source: "./media/characters/vera-raven/side.svg",
  53683. extra: 1510/1464,
  53684. bottom: 54/1564
  53685. }
  53686. },
  53687. },
  53688. [
  53689. {
  53690. name: "Normal",
  53691. height: math.unit(17 + 9/12, "feet"),
  53692. default: true
  53693. },
  53694. ]
  53695. ))
  53696. characterMakers.push(() => makeCharacter(
  53697. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53698. {
  53699. dressed: {
  53700. height: math.unit(6 + 9/12, "feet"),
  53701. name: "Dressed",
  53702. image: {
  53703. source: "./media/characters/nakisha/dressed.svg",
  53704. extra: 1909/1757,
  53705. bottom: 48/1957
  53706. }
  53707. },
  53708. nude: {
  53709. height: math.unit(6 + 9/12, "feet"),
  53710. name: "Nude",
  53711. image: {
  53712. source: "./media/characters/nakisha/nude.svg",
  53713. extra: 1917/1765,
  53714. bottom: 34/1951
  53715. }
  53716. },
  53717. },
  53718. [
  53719. {
  53720. name: "Normal",
  53721. height: math.unit(6 + 9/12, "feet"),
  53722. default: true
  53723. },
  53724. ]
  53725. ))
  53726. characterMakers.push(() => makeCharacter(
  53727. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53728. {
  53729. front: {
  53730. height: math.unit(87, "meters"),
  53731. name: "Front",
  53732. image: {
  53733. source: "./media/characters/serafin/front.svg",
  53734. extra: 1919/1776,
  53735. bottom: 65/1984
  53736. }
  53737. },
  53738. },
  53739. [
  53740. {
  53741. name: "Normal",
  53742. height: math.unit(87, "meters"),
  53743. default: true
  53744. },
  53745. ]
  53746. ))
  53747. characterMakers.push(() => makeCharacter(
  53748. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53749. {
  53750. front: {
  53751. height: math.unit(6, "feet"),
  53752. weight: math.unit(200, "lb"),
  53753. name: "Front",
  53754. image: {
  53755. source: "./media/characters/poptart/front.svg",
  53756. extra: 615/583,
  53757. bottom: 23/638
  53758. }
  53759. },
  53760. back: {
  53761. height: math.unit(6, "feet"),
  53762. weight: math.unit(200, "lb"),
  53763. name: "Back",
  53764. image: {
  53765. source: "./media/characters/poptart/back.svg",
  53766. extra: 617/584,
  53767. bottom: 22/639
  53768. }
  53769. },
  53770. frontNsfw: {
  53771. height: math.unit(6, "feet"),
  53772. weight: math.unit(200, "lb"),
  53773. name: "Front (NSFW)",
  53774. image: {
  53775. source: "./media/characters/poptart/front-nsfw.svg",
  53776. extra: 615/583,
  53777. bottom: 23/638
  53778. }
  53779. },
  53780. backNsfw: {
  53781. height: math.unit(6, "feet"),
  53782. weight: math.unit(200, "lb"),
  53783. name: "Back (NSFW)",
  53784. image: {
  53785. source: "./media/characters/poptart/back-nsfw.svg",
  53786. extra: 617/584,
  53787. bottom: 22/639
  53788. }
  53789. },
  53790. hand: {
  53791. height: math.unit(1.14, "feet"),
  53792. name: "Hand",
  53793. image: {
  53794. source: "./media/characters/poptart/hand.svg"
  53795. }
  53796. },
  53797. foot: {
  53798. height: math.unit(1.5, "feet"),
  53799. name: "Foot",
  53800. image: {
  53801. source: "./media/characters/poptart/foot.svg"
  53802. }
  53803. },
  53804. },
  53805. [
  53806. {
  53807. name: "Normal",
  53808. height: math.unit(6, "feet"),
  53809. default: true
  53810. },
  53811. {
  53812. name: "Grande",
  53813. height: math.unit(350, "feet")
  53814. },
  53815. {
  53816. name: "Massif",
  53817. height: math.unit(967, "feet")
  53818. },
  53819. ]
  53820. ))
  53821. characterMakers.push(() => makeCharacter(
  53822. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53823. {
  53824. hyenaSide: {
  53825. height: math.unit(120, "cm"),
  53826. weight: math.unit(120, "lb"),
  53827. name: "Side",
  53828. image: {
  53829. source: "./media/characters/trance/hyena-side.svg",
  53830. extra: 998/904,
  53831. bottom: 76/1074
  53832. }
  53833. },
  53834. },
  53835. [
  53836. {
  53837. name: "Normal",
  53838. height: math.unit(120, "cm"),
  53839. default: true
  53840. },
  53841. {
  53842. name: "Dire",
  53843. height: math.unit(230, "cm")
  53844. },
  53845. {
  53846. name: "Macro",
  53847. height: math.unit(37, "feet")
  53848. },
  53849. ]
  53850. ))
  53851. characterMakers.push(() => makeCharacter(
  53852. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53853. {
  53854. front: {
  53855. height: math.unit(6 + 3/12, "feet"),
  53856. name: "Front",
  53857. image: {
  53858. source: "./media/characters/michael-berretta/front.svg",
  53859. extra: 515/494,
  53860. bottom: 20/535
  53861. }
  53862. },
  53863. back: {
  53864. height: math.unit(6 + 3/12, "feet"),
  53865. name: "Back",
  53866. image: {
  53867. source: "./media/characters/michael-berretta/back.svg",
  53868. extra: 520/497,
  53869. bottom: 21/541
  53870. }
  53871. },
  53872. frontNsfw: {
  53873. height: math.unit(6 + 3/12, "feet"),
  53874. name: "Front (NSFW)",
  53875. image: {
  53876. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53877. extra: 515/494,
  53878. bottom: 20/535
  53879. }
  53880. },
  53881. dick: {
  53882. height: math.unit(1, "feet"),
  53883. name: "Dick",
  53884. image: {
  53885. source: "./media/characters/michael-berretta/dick.svg"
  53886. }
  53887. },
  53888. },
  53889. [
  53890. {
  53891. name: "Normal",
  53892. height: math.unit(6 + 3/12, "feet"),
  53893. default: true
  53894. },
  53895. {
  53896. name: "Big",
  53897. height: math.unit(12, "feet")
  53898. },
  53899. {
  53900. name: "Macro",
  53901. height: math.unit(187.5, "feet")
  53902. },
  53903. ]
  53904. ))
  53905. characterMakers.push(() => makeCharacter(
  53906. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53907. {
  53908. front: {
  53909. height: math.unit(9 + 9/12, "feet"),
  53910. weight: math.unit(1244, "lb"),
  53911. name: "Front",
  53912. image: {
  53913. source: "./media/characters/stella-edgecomb/front.svg",
  53914. extra: 1835/1706,
  53915. bottom: 49/1884
  53916. }
  53917. },
  53918. pen: {
  53919. height: math.unit(0.95, "feet"),
  53920. name: "Pen",
  53921. image: {
  53922. source: "./media/characters/stella-edgecomb/pen.svg"
  53923. }
  53924. },
  53925. },
  53926. [
  53927. {
  53928. name: "Cozy Bear",
  53929. height: math.unit(0.5, "inches")
  53930. },
  53931. {
  53932. name: "Normal",
  53933. height: math.unit(9 + 9/12, "feet"),
  53934. default: true
  53935. },
  53936. {
  53937. name: "Giga Bear",
  53938. height: math.unit(1, "mile")
  53939. },
  53940. {
  53941. name: "Great Bear",
  53942. height: math.unit(53, "miles")
  53943. },
  53944. {
  53945. name: "Goddess Bear",
  53946. height: math.unit(40000, "miles")
  53947. },
  53948. {
  53949. name: "Sun Bear",
  53950. height: math.unit(900000, "miles")
  53951. },
  53952. ]
  53953. ))
  53954. characterMakers.push(() => makeCharacter(
  53955. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53956. {
  53957. anthroFront: {
  53958. height: math.unit(556, "cm"),
  53959. weight: math.unit(2650, "kg"),
  53960. preyCapacity: math.unit(3, "people"),
  53961. name: "Front",
  53962. image: {
  53963. source: "./media/characters/ash´iika/front.svg",
  53964. extra: 710/673,
  53965. bottom: 15/725
  53966. },
  53967. form: "anthro",
  53968. default: true
  53969. },
  53970. anthroSide: {
  53971. height: math.unit(556, "cm"),
  53972. weight: math.unit(2650, "kg"),
  53973. preyCapacity: math.unit(3, "people"),
  53974. name: "Side",
  53975. image: {
  53976. source: "./media/characters/ash´iika/side.svg",
  53977. extra: 696/676,
  53978. bottom: 13/709
  53979. },
  53980. form: "anthro"
  53981. },
  53982. anthroDressed: {
  53983. height: math.unit(556, "cm"),
  53984. weight: math.unit(2650, "kg"),
  53985. preyCapacity: math.unit(3, "people"),
  53986. name: "Dressed",
  53987. image: {
  53988. source: "./media/characters/ash´iika/dressed.svg",
  53989. extra: 710/673,
  53990. bottom: 15/725
  53991. },
  53992. form: "anthro"
  53993. },
  53994. anthroHead: {
  53995. height: math.unit(3.5, "feet"),
  53996. name: "Head",
  53997. image: {
  53998. source: "./media/characters/ash´iika/head.svg",
  53999. extra: 348/291,
  54000. bottom: 45/393
  54001. },
  54002. form: "anthro"
  54003. },
  54004. feralSide: {
  54005. height: math.unit(870, "cm"),
  54006. weight: math.unit(17500, "kg"),
  54007. preyCapacity: math.unit(15, "people"),
  54008. name: "Side",
  54009. image: {
  54010. source: "./media/characters/ash´iika/feral.svg",
  54011. extra: 595/199,
  54012. bottom: 7/602
  54013. },
  54014. form: "feral",
  54015. default: true,
  54016. },
  54017. },
  54018. [
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(556, "cm"),
  54022. default: true,
  54023. form: "anthro"
  54024. },
  54025. {
  54026. name: "Macro",
  54027. height: math.unit(88, "meters"),
  54028. form: "anthro"
  54029. },
  54030. {
  54031. name: "Normal",
  54032. height: math.unit(870, "cm"),
  54033. default: true,
  54034. form: "feral"
  54035. },
  54036. {
  54037. name: "Large",
  54038. height: math.unit(25, "meters"),
  54039. form: "feral"
  54040. },
  54041. ],
  54042. {
  54043. "anthro": {
  54044. name: "Anthro",
  54045. default: true
  54046. },
  54047. "feral": {
  54048. name: "Feral",
  54049. },
  54050. }
  54051. ))
  54052. characterMakers.push(() => makeCharacter(
  54053. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54054. {
  54055. front: {
  54056. height: math.unit(10, "feet"),
  54057. weight: math.unit(800, "lb"),
  54058. name: "Front",
  54059. image: {
  54060. source: "./media/characters/yen/front.svg",
  54061. extra: 443/411,
  54062. bottom: 6/449
  54063. }
  54064. },
  54065. sleeping: {
  54066. height: math.unit(10, "feet"),
  54067. weight: math.unit(800, "lb"),
  54068. name: "Sleeping",
  54069. image: {
  54070. source: "./media/characters/yen/sleeping.svg",
  54071. extra: 470/422,
  54072. bottom: 0/470
  54073. }
  54074. },
  54075. head: {
  54076. height: math.unit(2.2, "feet"),
  54077. name: "Head",
  54078. image: {
  54079. source: "./media/characters/yen/head.svg"
  54080. }
  54081. },
  54082. headAlt: {
  54083. height: math.unit(2.1, "feet"),
  54084. name: "Head (Alt)",
  54085. image: {
  54086. source: "./media/characters/yen/head-alt.svg"
  54087. }
  54088. },
  54089. },
  54090. [
  54091. {
  54092. name: "Normal",
  54093. height: math.unit(10, "feet"),
  54094. default: true
  54095. },
  54096. ]
  54097. ))
  54098. characterMakers.push(() => makeCharacter(
  54099. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54100. {
  54101. front: {
  54102. height: math.unit(12, "feet"),
  54103. name: "Front",
  54104. image: {
  54105. source: "./media/characters/citra/front.svg",
  54106. extra: 1950/1710,
  54107. bottom: 47/1997
  54108. }
  54109. },
  54110. },
  54111. [
  54112. {
  54113. name: "Normal",
  54114. height: math.unit(12, "feet"),
  54115. default: true
  54116. },
  54117. ]
  54118. ))
  54119. characterMakers.push(() => makeCharacter(
  54120. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54121. {
  54122. side: {
  54123. height: math.unit(7 + 10/12, "feet"),
  54124. name: "Side",
  54125. image: {
  54126. source: "./media/characters/sholstim/side.svg",
  54127. extra: 786/682,
  54128. bottom: 40/826
  54129. }
  54130. },
  54131. },
  54132. [
  54133. {
  54134. name: "Normal",
  54135. height: math.unit(7 + 10/12, "feet"),
  54136. default: true
  54137. },
  54138. ]
  54139. ))
  54140. characterMakers.push(() => makeCharacter(
  54141. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54142. {
  54143. front: {
  54144. height: math.unit(3.10, "meters"),
  54145. name: "Front",
  54146. image: {
  54147. source: "./media/characters/aggyn/front.svg",
  54148. extra: 1188/963,
  54149. bottom: 24/1212
  54150. }
  54151. },
  54152. },
  54153. [
  54154. {
  54155. name: "Normal",
  54156. height: math.unit(3.10, "meters"),
  54157. default: true
  54158. },
  54159. ]
  54160. ))
  54161. characterMakers.push(() => makeCharacter(
  54162. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54163. {
  54164. front: {
  54165. height: math.unit(7 + 5/12, "feet"),
  54166. weight: math.unit(687, "lb"),
  54167. name: "Front",
  54168. image: {
  54169. source: "./media/characters/alsandair-hergenroether/front.svg",
  54170. extra: 1251/1186,
  54171. bottom: 75/1326
  54172. }
  54173. },
  54174. back: {
  54175. height: math.unit(7 + 5/12, "feet"),
  54176. weight: math.unit(687, "lb"),
  54177. name: "Back",
  54178. image: {
  54179. source: "./media/characters/alsandair-hergenroether/back.svg",
  54180. extra: 1290/1229,
  54181. bottom: 17/1307
  54182. }
  54183. },
  54184. },
  54185. [
  54186. {
  54187. name: "Max Compression",
  54188. height: math.unit(7 + 5/12, "feet"),
  54189. default: true
  54190. },
  54191. {
  54192. name: "\"Normal\"",
  54193. height: math.unit(2, "universes")
  54194. },
  54195. ]
  54196. ))
  54197. characterMakers.push(() => makeCharacter(
  54198. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54199. {
  54200. front: {
  54201. height: math.unit(4 + 1/12, "feet"),
  54202. weight: math.unit(92, "lb"),
  54203. name: "Front",
  54204. image: {
  54205. source: "./media/characters/ie/front.svg",
  54206. extra: 1585/1352,
  54207. bottom: 91/1676
  54208. }
  54209. },
  54210. },
  54211. [
  54212. {
  54213. name: "Normal",
  54214. height: math.unit(4 + 1/12, "feet"),
  54215. default: true
  54216. },
  54217. ]
  54218. ))
  54219. characterMakers.push(() => makeCharacter(
  54220. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54221. {
  54222. anthro: {
  54223. height: math.unit(6, "feet"),
  54224. weight: math.unit(150, "lb"),
  54225. name: "Front",
  54226. image: {
  54227. source: "./media/characters/willow/anthro.svg",
  54228. extra: 1073/986,
  54229. bottom: 34/1107
  54230. },
  54231. form: "anthro",
  54232. default: true
  54233. },
  54234. taur: {
  54235. height: math.unit(6, "feet"),
  54236. weight: math.unit(150, "lb"),
  54237. name: "Side",
  54238. image: {
  54239. source: "./media/characters/willow/taur.svg",
  54240. extra: 647/512,
  54241. bottom: 136/783
  54242. },
  54243. form: "taur",
  54244. default: true
  54245. },
  54246. },
  54247. [
  54248. {
  54249. name: "Humanoid",
  54250. height: math.unit(2.7, "meters"),
  54251. form: "anthro"
  54252. },
  54253. {
  54254. name: "Normal",
  54255. height: math.unit(9, "meters"),
  54256. form: "anthro",
  54257. default: true
  54258. },
  54259. {
  54260. name: "Humanoid",
  54261. height: math.unit(2.1, "meters"),
  54262. form: "taur"
  54263. },
  54264. {
  54265. name: "Normal",
  54266. height: math.unit(7, "meters"),
  54267. form: "taur",
  54268. default: true
  54269. },
  54270. ],
  54271. {
  54272. "anthro": {
  54273. name: "Anthro",
  54274. default: true
  54275. },
  54276. "taur": {
  54277. name: "Taur",
  54278. },
  54279. }
  54280. ))
  54281. characterMakers.push(() => makeCharacter(
  54282. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54283. {
  54284. front: {
  54285. height: math.unit(2 + 5/12, "feet"),
  54286. name: "Front",
  54287. image: {
  54288. source: "./media/characters/kyan/front.svg",
  54289. extra: 460/334,
  54290. bottom: 23/483
  54291. },
  54292. extraAttributes: {
  54293. "toeLength": {
  54294. name: "Toe Length",
  54295. power: 1,
  54296. type: "length",
  54297. base: math.unit(7, "cm")
  54298. },
  54299. "toeclawLength": {
  54300. name: "Toeclaw Length",
  54301. power: 1,
  54302. type: "length",
  54303. base: math.unit(4.7, "cm")
  54304. },
  54305. "earHeight": {
  54306. name: "Ear Height",
  54307. power: 1,
  54308. type: "length",
  54309. base: math.unit(14.1, "cm")
  54310. },
  54311. }
  54312. },
  54313. paws: {
  54314. height: math.unit(0.45, "feet"),
  54315. name: "Paws",
  54316. image: {
  54317. source: "./media/characters/kyan/paws.svg",
  54318. extra: 581/581,
  54319. bottom: 114/695
  54320. }
  54321. },
  54322. },
  54323. [
  54324. {
  54325. name: "Normal",
  54326. height: math.unit(2 + 5/12, "feet"),
  54327. default: true
  54328. },
  54329. ]
  54330. ))
  54331. characterMakers.push(() => makeCharacter(
  54332. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54333. {
  54334. front: {
  54335. height: math.unit(2 + 2/3, "feet"),
  54336. name: "Front",
  54337. image: {
  54338. source: "./media/characters/xazzon/front.svg",
  54339. extra: 1109/984,
  54340. bottom: 42/1151
  54341. }
  54342. },
  54343. back: {
  54344. height: math.unit(2 + 2/3, "feet"),
  54345. name: "Back",
  54346. image: {
  54347. source: "./media/characters/xazzon/back.svg",
  54348. extra: 1095/971,
  54349. bottom: 23/1118
  54350. }
  54351. },
  54352. },
  54353. [
  54354. {
  54355. name: "Normal",
  54356. height: math.unit(2 + 2/3, "feet"),
  54357. default: true
  54358. },
  54359. ]
  54360. ))
  54361. characterMakers.push(() => makeCharacter(
  54362. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54363. {
  54364. dressed: {
  54365. height: math.unit(5 + 7/12, "feet"),
  54366. weight: math.unit(173, "lb"),
  54367. name: "Dressed",
  54368. image: {
  54369. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54370. extra: 3262/2862,
  54371. bottom: 188/3450
  54372. }
  54373. },
  54374. undressed: {
  54375. height: math.unit(5 + 7/12, "feet"),
  54376. weight: math.unit(173, "lb"),
  54377. name: "Undressed",
  54378. image: {
  54379. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54380. extra: 3262/2862,
  54381. bottom: 188/3450
  54382. }
  54383. },
  54384. },
  54385. [
  54386. {
  54387. name: "The void",
  54388. height: math.unit(7.29193e-34, "angstroms")
  54389. },
  54390. {
  54391. name: "Uh-Oh.",
  54392. height: math.unit(5.734e-7, "angstroms")
  54393. },
  54394. {
  54395. name: "Pico",
  54396. height: math.unit(0.876, "angstroms")
  54397. },
  54398. {
  54399. name: "Nano",
  54400. height: math.unit(0.000134200, "mm")
  54401. },
  54402. {
  54403. name: "Micro",
  54404. height: math.unit(0.0673020, "mm")
  54405. },
  54406. {
  54407. name: "Tiny",
  54408. height: math.unit(2.4, "mm")
  54409. },
  54410. {
  54411. name: "Actual Normal",
  54412. height: math.unit(3, "inches"),
  54413. default: true
  54414. },
  54415. {
  54416. name: "Normal",
  54417. height: math.unit(5 + 8/12, "feet")
  54418. },
  54419. {
  54420. name: "Giant",
  54421. height: math.unit(12, "feet")
  54422. },
  54423. {
  54424. name: "City Ruler",
  54425. height: math.unit(270, "meters")
  54426. },
  54427. {
  54428. name: "Giga",
  54429. height: math.unit(1117.6, "km")
  54430. },
  54431. {
  54432. name: "All-Powerful Queen",
  54433. height: math.unit(70.8, "gigameters")
  54434. },
  54435. {
  54436. name: "'Goddess'",
  54437. height: math.unit(600, "yottameters")
  54438. },
  54439. {
  54440. name: "Biggest!",
  54441. height: math.unit(4.23e5, "yottameters")
  54442. },
  54443. ]
  54444. ))
  54445. characterMakers.push(() => makeCharacter(
  54446. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54447. {
  54448. front: {
  54449. height: math.unit(8, "feet"),
  54450. weight: math.unit(300, "lb"),
  54451. name: "Front",
  54452. image: {
  54453. source: "./media/characters/khyla-shadowsong/front.svg",
  54454. extra: 861/798,
  54455. bottom: 32/893
  54456. }
  54457. },
  54458. side: {
  54459. height: math.unit(8, "feet"),
  54460. weight: math.unit(300, "lb"),
  54461. name: "Side",
  54462. image: {
  54463. source: "./media/characters/khyla-shadowsong/side.svg",
  54464. extra: 790/750,
  54465. bottom: 87/877
  54466. }
  54467. },
  54468. back: {
  54469. height: math.unit(8, "feet"),
  54470. weight: math.unit(300, "lb"),
  54471. name: "Back",
  54472. image: {
  54473. source: "./media/characters/khyla-shadowsong/back.svg",
  54474. extra: 855/808,
  54475. bottom: 14/869
  54476. }
  54477. },
  54478. head: {
  54479. height: math.unit(2.7, "feet"),
  54480. name: "Head",
  54481. image: {
  54482. source: "./media/characters/khyla-shadowsong/head.svg"
  54483. }
  54484. },
  54485. },
  54486. [
  54487. {
  54488. name: "Micro",
  54489. height: math.unit(6, "inches")
  54490. },
  54491. {
  54492. name: "Normal",
  54493. height: math.unit(8, "feet"),
  54494. default: true
  54495. },
  54496. ]
  54497. ))
  54498. characterMakers.push(() => makeCharacter(
  54499. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54500. {
  54501. hyperFront: {
  54502. height: math.unit(9 + 4/12, "feet"),
  54503. weight: math.unit(2000, "lb"),
  54504. name: "Front",
  54505. image: {
  54506. source: "./media/characters/tiden/hyper-front.svg",
  54507. extra: 400/382,
  54508. bottom: 6/406
  54509. },
  54510. form: "hyper",
  54511. },
  54512. regularFront: {
  54513. height: math.unit(7 + 10/12, "feet"),
  54514. weight: math.unit(470, "lb"),
  54515. name: "Front",
  54516. image: {
  54517. source: "./media/characters/tiden/regular-front.svg",
  54518. extra: 468/442,
  54519. bottom: 6/474
  54520. },
  54521. form: "regular",
  54522. },
  54523. },
  54524. [
  54525. {
  54526. name: "Normal",
  54527. height: math.unit(9 + 4/12, "feet"),
  54528. default: true,
  54529. form: "hyper"
  54530. },
  54531. {
  54532. name: "Normal",
  54533. height: math.unit(7 + 10/12, "feet"),
  54534. default: true,
  54535. form: "regular"
  54536. },
  54537. ],
  54538. {
  54539. "hyper": {
  54540. name: "Hyper",
  54541. default: true
  54542. },
  54543. "regular": {
  54544. name: "Regular",
  54545. },
  54546. }
  54547. ))
  54548. characterMakers.push(() => makeCharacter(
  54549. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54550. {
  54551. side: {
  54552. height: math.unit(6, "feet"),
  54553. weight: math.unit(150, "lb"),
  54554. name: "Side",
  54555. image: {
  54556. source: "./media/characters/jason-crowe/side.svg",
  54557. extra: 1771/766,
  54558. bottom: 219/1990
  54559. }
  54560. },
  54561. },
  54562. [
  54563. {
  54564. name: "Pocket Gryphon",
  54565. height: math.unit(6, "cm")
  54566. },
  54567. {
  54568. name: "Raven",
  54569. height: math.unit(60, "cm")
  54570. },
  54571. {
  54572. name: "Normal",
  54573. height: math.unit(1, "meter"),
  54574. default: true
  54575. },
  54576. ]
  54577. ))
  54578. characterMakers.push(() => makeCharacter(
  54579. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54580. {
  54581. front: {
  54582. height: math.unit(9 + 6/12, "feet"),
  54583. weight: math.unit(1100, "lb"),
  54584. name: "Front",
  54585. image: {
  54586. source: "./media/characters/django/front.svg",
  54587. extra: 1231/1136,
  54588. bottom: 34/1265
  54589. }
  54590. },
  54591. side: {
  54592. height: math.unit(9 + 6/12, "feet"),
  54593. weight: math.unit(1100, "lb"),
  54594. name: "Side",
  54595. image: {
  54596. source: "./media/characters/django/side.svg",
  54597. extra: 1267/1174,
  54598. bottom: 9/1276
  54599. }
  54600. },
  54601. },
  54602. [
  54603. {
  54604. name: "Normal",
  54605. height: math.unit(9 + 6/12, "feet"),
  54606. default: true
  54607. },
  54608. {
  54609. name: "Macro 1",
  54610. height: math.unit(50, "feet")
  54611. },
  54612. {
  54613. name: "Macro 2",
  54614. height: math.unit(500, "feet")
  54615. },
  54616. {
  54617. name: "Mega Macro",
  54618. height: math.unit(5300, "feet")
  54619. },
  54620. ]
  54621. ))
  54622. characterMakers.push(() => makeCharacter(
  54623. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54624. {
  54625. frontSfw: {
  54626. height: math.unit(120, "cm"),
  54627. weight: math.unit(15, "kg"),
  54628. name: "Front (SFW)",
  54629. image: {
  54630. source: "./media/characters/eri/front-sfw.svg",
  54631. extra: 1014/939,
  54632. bottom: 37/1051
  54633. },
  54634. form: "moth",
  54635. },
  54636. frontNsfw: {
  54637. height: math.unit(120, "cm"),
  54638. weight: math.unit(15, "kg"),
  54639. name: "Front (NSFW)",
  54640. image: {
  54641. source: "./media/characters/eri/front-nsfw.svg",
  54642. extra: 1014/939,
  54643. bottom: 37/1051
  54644. },
  54645. form: "moth",
  54646. default: true
  54647. },
  54648. egg: {
  54649. height: math.unit(10, "cm"),
  54650. name: "Egg",
  54651. image: {
  54652. source: "./media/characters/eri/egg.svg"
  54653. },
  54654. form: "egg",
  54655. default: true
  54656. },
  54657. },
  54658. [
  54659. {
  54660. name: "Normal",
  54661. height: math.unit(120, "cm"),
  54662. default: true,
  54663. form: "moth"
  54664. },
  54665. {
  54666. name: "Normal",
  54667. height: math.unit(10, "cm"),
  54668. default: true,
  54669. form: "egg"
  54670. },
  54671. ],
  54672. {
  54673. "moth": {
  54674. name: "Moth",
  54675. default: true
  54676. },
  54677. "egg": {
  54678. name: "Egg",
  54679. },
  54680. }
  54681. ))
  54682. characterMakers.push(() => makeCharacter(
  54683. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54684. {
  54685. front: {
  54686. height: math.unit(200, "feet"),
  54687. name: "Front",
  54688. image: {
  54689. source: "./media/characters/bishop-dowser/front.svg",
  54690. extra: 933/868,
  54691. bottom: 106/1039
  54692. }
  54693. },
  54694. },
  54695. [
  54696. {
  54697. name: "Giant",
  54698. height: math.unit(200, "feet"),
  54699. default: true
  54700. },
  54701. ]
  54702. ))
  54703. characterMakers.push(() => makeCharacter(
  54704. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54705. {
  54706. front: {
  54707. height: math.unit(2, "meters"),
  54708. preyCapacity: math.unit(3, "people"),
  54709. name: "Front",
  54710. image: {
  54711. source: "./media/characters/fryra/front.svg",
  54712. extra: 1025/948,
  54713. bottom: 30/1055
  54714. },
  54715. extraAttributes: {
  54716. "breastVolume": {
  54717. name: "Breast Volume",
  54718. power: 3,
  54719. type: "volume",
  54720. base: math.unit(8, "liters")
  54721. },
  54722. }
  54723. },
  54724. back: {
  54725. height: math.unit(2, "meters"),
  54726. preyCapacity: math.unit(3, "people"),
  54727. name: "Back",
  54728. image: {
  54729. source: "./media/characters/fryra/back.svg",
  54730. extra: 993/938,
  54731. bottom: 38/1031
  54732. },
  54733. extraAttributes: {
  54734. "breastVolume": {
  54735. name: "Breast Volume",
  54736. power: 3,
  54737. type: "volume",
  54738. base: math.unit(8, "liters")
  54739. },
  54740. }
  54741. },
  54742. head: {
  54743. height: math.unit(1.33, "feet"),
  54744. name: "Head",
  54745. image: {
  54746. source: "./media/characters/fryra/head.svg"
  54747. }
  54748. },
  54749. maw: {
  54750. height: math.unit(0.56, "feet"),
  54751. name: "Maw",
  54752. image: {
  54753. source: "./media/characters/fryra/maw.svg"
  54754. }
  54755. },
  54756. },
  54757. [
  54758. {
  54759. name: "Micro",
  54760. height: math.unit(5, "cm")
  54761. },
  54762. {
  54763. name: "Normal",
  54764. height: math.unit(2, "meters"),
  54765. default: true
  54766. },
  54767. {
  54768. name: "Small Macro",
  54769. height: math.unit(8, "meters")
  54770. },
  54771. {
  54772. name: "Macro",
  54773. height: math.unit(50, "meters")
  54774. },
  54775. {
  54776. name: "Megamacro",
  54777. height: math.unit(1, "km")
  54778. },
  54779. {
  54780. name: "Planetary",
  54781. height: math.unit(300000, "km")
  54782. },
  54783. {
  54784. name: "Universal",
  54785. height: math.unit(250, "lightyears")
  54786. },
  54787. {
  54788. name: "Fabric of Reality",
  54789. height: math.unit(1000, "multiverses")
  54790. },
  54791. ]
  54792. ))
  54793. characterMakers.push(() => makeCharacter(
  54794. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54795. {
  54796. frontDressed: {
  54797. height: math.unit(6 + 2/12, "feet"),
  54798. name: "Front (Dressed)",
  54799. image: {
  54800. source: "./media/characters/fiera/front-dressed.svg",
  54801. extra: 1883/1793,
  54802. bottom: 70/1953
  54803. }
  54804. },
  54805. backDressed: {
  54806. height: math.unit(6 + 2/12, "feet"),
  54807. name: "Back (Dressed)",
  54808. image: {
  54809. source: "./media/characters/fiera/back-dressed.svg",
  54810. extra: 1847/1780,
  54811. bottom: 70/1917
  54812. }
  54813. },
  54814. frontNude: {
  54815. height: math.unit(6 + 2/12, "feet"),
  54816. name: "Front (Nude)",
  54817. image: {
  54818. source: "./media/characters/fiera/front-nude.svg",
  54819. extra: 1875/1785,
  54820. bottom: 66/1941
  54821. }
  54822. },
  54823. backNude: {
  54824. height: math.unit(6 + 2/12, "feet"),
  54825. name: "Back (Nude)",
  54826. image: {
  54827. source: "./media/characters/fiera/back-nude.svg",
  54828. extra: 1855/1788,
  54829. bottom: 44/1899
  54830. }
  54831. },
  54832. maw: {
  54833. height: math.unit(1.3, "feet"),
  54834. name: "Maw",
  54835. image: {
  54836. source: "./media/characters/fiera/maw.svg"
  54837. }
  54838. },
  54839. paw: {
  54840. height: math.unit(1, "feet"),
  54841. name: "Paw",
  54842. image: {
  54843. source: "./media/characters/fiera/paw.svg"
  54844. }
  54845. },
  54846. shoe: {
  54847. height: math.unit(1.05, "feet"),
  54848. name: "Shoe",
  54849. image: {
  54850. source: "./media/characters/fiera/shoe.svg"
  54851. }
  54852. },
  54853. },
  54854. [
  54855. {
  54856. name: "Normal",
  54857. height: math.unit(6 + 2/12, "feet"),
  54858. default: true
  54859. },
  54860. {
  54861. name: "Size Difference",
  54862. height: math.unit(13, "feet")
  54863. },
  54864. {
  54865. name: "Macro",
  54866. height: math.unit(60, "feet")
  54867. },
  54868. {
  54869. name: "Mega Macro",
  54870. height: math.unit(200, "feet")
  54871. },
  54872. ]
  54873. ))
  54874. characterMakers.push(() => makeCharacter(
  54875. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54876. {
  54877. back: {
  54878. height: math.unit(6, "feet"),
  54879. name: "Back",
  54880. image: {
  54881. source: "./media/characters/flare/back.svg",
  54882. extra: 1883/1765,
  54883. bottom: 32/1915
  54884. }
  54885. },
  54886. },
  54887. [
  54888. {
  54889. name: "Normal",
  54890. height: math.unit(6 + 2/12, "feet"),
  54891. default: true
  54892. },
  54893. {
  54894. name: "Size Difference",
  54895. height: math.unit(13, "feet")
  54896. },
  54897. {
  54898. name: "Macro",
  54899. height: math.unit(60, "feet")
  54900. },
  54901. {
  54902. name: "Macro 2",
  54903. height: math.unit(100, "feet")
  54904. },
  54905. {
  54906. name: "Mega Macro",
  54907. height: math.unit(200, "feet")
  54908. },
  54909. ]
  54910. ))
  54911. characterMakers.push(() => makeCharacter(
  54912. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54913. {
  54914. front: {
  54915. height: math.unit(2.2, "m"),
  54916. weight: math.unit(300, "kg"),
  54917. name: "Front",
  54918. image: {
  54919. source: "./media/characters/hanna/front.svg",
  54920. extra: 1696/1502,
  54921. bottom: 206/1902
  54922. }
  54923. },
  54924. },
  54925. [
  54926. {
  54927. name: "Humanoid",
  54928. height: math.unit(2.2, "meters")
  54929. },
  54930. {
  54931. name: "Normal",
  54932. height: math.unit(4.8, "meters"),
  54933. default: true
  54934. },
  54935. ]
  54936. ))
  54937. characterMakers.push(() => makeCharacter(
  54938. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54939. {
  54940. front: {
  54941. height: math.unit(2.8, "meters"),
  54942. name: "Front",
  54943. image: {
  54944. source: "./media/characters/argo/front.svg",
  54945. extra: 731/518,
  54946. bottom: 84/815
  54947. }
  54948. },
  54949. },
  54950. [
  54951. {
  54952. name: "Normal",
  54953. height: math.unit(3, "meters"),
  54954. default: true
  54955. },
  54956. ]
  54957. ))
  54958. characterMakers.push(() => makeCharacter(
  54959. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54960. {
  54961. side: {
  54962. height: math.unit(3.8, "meters"),
  54963. name: "Side",
  54964. image: {
  54965. source: "./media/characters/sybil/side.svg",
  54966. extra: 382/361,
  54967. bottom: 25/407
  54968. }
  54969. },
  54970. },
  54971. [
  54972. {
  54973. name: "Normal",
  54974. height: math.unit(3.8, "meters"),
  54975. default: true
  54976. },
  54977. ]
  54978. ))
  54979. characterMakers.push(() => makeCharacter(
  54980. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54981. {
  54982. side: {
  54983. height: math.unit(6, "meters"),
  54984. name: "Side",
  54985. image: {
  54986. source: "./media/characters/plum/side.svg",
  54987. extra: 858/755,
  54988. bottom: 45/903
  54989. },
  54990. form: "taur",
  54991. default: true
  54992. },
  54993. back: {
  54994. height: math.unit(6.3, "meters"),
  54995. name: "Back",
  54996. image: {
  54997. source: "./media/characters/plum/back.svg",
  54998. extra: 887/813,
  54999. bottom: 32/919
  55000. },
  55001. form: "taur",
  55002. },
  55003. feral: {
  55004. height: math.unit(5.5, "meter"),
  55005. name: "Front",
  55006. image: {
  55007. source: "./media/characters/plum/feral.svg",
  55008. extra: 568/403,
  55009. bottom: 51/619
  55010. },
  55011. form: "feral",
  55012. default: true
  55013. },
  55014. head: {
  55015. height: math.unit(1.46, "meter"),
  55016. name: "Head",
  55017. image: {
  55018. source: "./media/characters/plum/head.svg"
  55019. },
  55020. form: "taur"
  55021. },
  55022. tailTop: {
  55023. height: math.unit(5.6, "meter"),
  55024. name: "Tail (Top)",
  55025. image: {
  55026. source: "./media/characters/plum/tail-top.svg"
  55027. },
  55028. form: "taur",
  55029. },
  55030. tailBottom: {
  55031. height: math.unit(5.6, "meter"),
  55032. name: "Tail (Bottom)",
  55033. image: {
  55034. source: "./media/characters/plum/tail-bottom.svg"
  55035. },
  55036. form: "taur",
  55037. },
  55038. feralHead: {
  55039. height: math.unit(2.56549521, "meter"),
  55040. name: "Head",
  55041. image: {
  55042. source: "./media/characters/plum/head.svg"
  55043. },
  55044. form: "feral"
  55045. },
  55046. feralTailTop: {
  55047. height: math.unit(5.44728435, "meter"),
  55048. name: "Tail (Top)",
  55049. image: {
  55050. source: "./media/characters/plum/tail-top.svg"
  55051. },
  55052. form: "feral",
  55053. },
  55054. feralTailBottom: {
  55055. height: math.unit(5.44728435, "meter"),
  55056. name: "Tail (Bottom)",
  55057. image: {
  55058. source: "./media/characters/plum/tail-bottom.svg"
  55059. },
  55060. form: "feral",
  55061. },
  55062. },
  55063. [
  55064. {
  55065. name: "Normal",
  55066. height: math.unit(6, "meters"),
  55067. default: true,
  55068. form: "taur"
  55069. },
  55070. {
  55071. name: "Normal",
  55072. height: math.unit(5.5, "meters"),
  55073. default: true,
  55074. form: "feral"
  55075. },
  55076. ],
  55077. {
  55078. "taur": {
  55079. name: "Taur",
  55080. default: true
  55081. },
  55082. "feral": {
  55083. name: "Feral",
  55084. },
  55085. }
  55086. ))
  55087. characterMakers.push(() => makeCharacter(
  55088. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55089. {
  55090. front: {
  55091. height: math.unit(6, "feet"),
  55092. weight: math.unit(115, "lb"),
  55093. name: "Front",
  55094. image: {
  55095. source: "./media/characters/celeste-kitsune/front.svg",
  55096. extra: 393/366,
  55097. bottom: 7/400
  55098. }
  55099. },
  55100. side: {
  55101. height: math.unit(6, "feet"),
  55102. weight: math.unit(115, "lb"),
  55103. name: "Side",
  55104. image: {
  55105. source: "./media/characters/celeste-kitsune/side.svg",
  55106. extra: 818/765,
  55107. bottom: 40/858
  55108. }
  55109. },
  55110. },
  55111. [
  55112. {
  55113. name: "Megamacro",
  55114. height: math.unit(1500, "miles"),
  55115. default: true
  55116. },
  55117. ]
  55118. ))
  55119. characterMakers.push(() => makeCharacter(
  55120. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55121. {
  55122. front: {
  55123. height: math.unit(8, "meters"),
  55124. name: "Front",
  55125. image: {
  55126. source: "./media/characters/io/front.svg",
  55127. extra: 865/722,
  55128. bottom: 58/923
  55129. }
  55130. },
  55131. back: {
  55132. height: math.unit(8, "meters"),
  55133. name: "Back",
  55134. image: {
  55135. source: "./media/characters/io/back.svg",
  55136. extra: 920/776,
  55137. bottom: 42/962
  55138. }
  55139. },
  55140. head: {
  55141. height: math.unit(5.09, "meters"),
  55142. name: "Head",
  55143. image: {
  55144. source: "./media/characters/io/head.svg"
  55145. }
  55146. },
  55147. hand: {
  55148. height: math.unit(1.6, "meters"),
  55149. name: "Hand",
  55150. image: {
  55151. source: "./media/characters/io/hand.svg"
  55152. }
  55153. },
  55154. foot: {
  55155. height: math.unit(2.4, "meters"),
  55156. name: "Foot",
  55157. image: {
  55158. source: "./media/characters/io/foot.svg"
  55159. }
  55160. },
  55161. },
  55162. [
  55163. {
  55164. name: "Normal",
  55165. height: math.unit(8, "meters"),
  55166. default: true
  55167. },
  55168. ]
  55169. ))
  55170. characterMakers.push(() => makeCharacter(
  55171. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55172. {
  55173. side: {
  55174. height: math.unit(6 + 3/12, "feet"),
  55175. weight: math.unit(225, "lb"),
  55176. name: "Side",
  55177. image: {
  55178. source: "./media/characters/silas/side.svg",
  55179. extra: 703/653,
  55180. bottom: 23/726
  55181. },
  55182. extraAttributes: {
  55183. "pawLength": {
  55184. name: "Paw Length",
  55185. power: 1,
  55186. type: "length",
  55187. base: math.unit(12, "inches")
  55188. },
  55189. "pawWidth": {
  55190. name: "Paw Width",
  55191. power: 1,
  55192. type: "length",
  55193. base: math.unit(4.5, "inches")
  55194. },
  55195. "pawArea": {
  55196. name: "Paw Area",
  55197. power: 2,
  55198. type: "area",
  55199. base: math.unit(12 * 4.5, "inches^2")
  55200. },
  55201. }
  55202. },
  55203. },
  55204. [
  55205. {
  55206. name: "Normal",
  55207. height: math.unit(6 + 3/12, "feet"),
  55208. default: true
  55209. },
  55210. ]
  55211. ))
  55212. characterMakers.push(() => makeCharacter(
  55213. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55214. {
  55215. back: {
  55216. height: math.unit(1.6, "meters"),
  55217. weight: math.unit(150, "lb"),
  55218. name: "Back",
  55219. image: {
  55220. source: "./media/characters/zari/back.svg",
  55221. extra: 424/411,
  55222. bottom: 32/456
  55223. },
  55224. extraAttributes: {
  55225. "bladderCapacity": {
  55226. name: "Bladder Size",
  55227. power: 3,
  55228. type: "volume",
  55229. base: math.unit(500, "mL")
  55230. },
  55231. "bladderFlow": {
  55232. name: "Flow Rate",
  55233. power: 3,
  55234. type: "volume",
  55235. base: math.unit(25, "mL")
  55236. },
  55237. }
  55238. },
  55239. },
  55240. [
  55241. {
  55242. name: "Normal",
  55243. height: math.unit(1.6, "meters"),
  55244. default: true
  55245. },
  55246. ]
  55247. ))
  55248. characterMakers.push(() => makeCharacter(
  55249. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55250. {
  55251. front: {
  55252. height: math.unit(25, "feet"),
  55253. weight: math.unit(5, "tons"),
  55254. name: "Front",
  55255. image: {
  55256. source: "./media/characters/charlie-human/front.svg",
  55257. extra: 1870/1740,
  55258. bottom: 102/1972
  55259. },
  55260. extraAttributes: {
  55261. "dickLength": {
  55262. name: "Dick Length",
  55263. power: 1,
  55264. type: "length",
  55265. base: math.unit(9, "feet")
  55266. },
  55267. }
  55268. },
  55269. back: {
  55270. height: math.unit(25, "feet"),
  55271. weight: math.unit(5, "tons"),
  55272. name: "Back",
  55273. image: {
  55274. source: "./media/characters/charlie-human/back.svg",
  55275. extra: 1858/1733,
  55276. bottom: 105/1963
  55277. },
  55278. extraAttributes: {
  55279. "dickLength": {
  55280. name: "Dick Length",
  55281. power: 1,
  55282. type: "length",
  55283. base: math.unit(9, "feet")
  55284. },
  55285. }
  55286. },
  55287. },
  55288. [
  55289. {
  55290. name: "\"Normal\"",
  55291. height: math.unit(6 + 4/12, "feet")
  55292. },
  55293. {
  55294. name: "Big",
  55295. height: math.unit(25, "feet"),
  55296. default: true
  55297. },
  55298. ]
  55299. ))
  55300. characterMakers.push(() => makeCharacter(
  55301. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55302. {
  55303. front: {
  55304. height: math.unit(6 + 4/12, "feet"),
  55305. weight: math.unit(320, "lb"),
  55306. name: "Front",
  55307. image: {
  55308. source: "./media/characters/ookitsu/front.svg",
  55309. extra: 1160/976,
  55310. bottom: 38/1198
  55311. }
  55312. },
  55313. frontNsfw: {
  55314. height: math.unit(6 + 4/12, "feet"),
  55315. weight: math.unit(320, "lb"),
  55316. name: "Front (NSFW)",
  55317. image: {
  55318. source: "./media/characters/ookitsu/front-nsfw.svg",
  55319. extra: 1160/976,
  55320. bottom: 38/1198
  55321. }
  55322. },
  55323. back: {
  55324. height: math.unit(6 + 4/12, "feet"),
  55325. weight: math.unit(320, "lb"),
  55326. name: "Back",
  55327. image: {
  55328. source: "./media/characters/ookitsu/back.svg",
  55329. extra: 1030/975,
  55330. bottom: 70/1100
  55331. }
  55332. },
  55333. head: {
  55334. height: math.unit(1.79, "feet"),
  55335. name: "Head",
  55336. image: {
  55337. source: "./media/characters/ookitsu/head.svg"
  55338. }
  55339. },
  55340. hand: {
  55341. height: math.unit(0.92, "feet"),
  55342. name: "Hand",
  55343. image: {
  55344. source: "./media/characters/ookitsu/hand.svg"
  55345. }
  55346. },
  55347. tails: {
  55348. height: math.unit(3.3, "feet"),
  55349. name: "Tails",
  55350. image: {
  55351. source: "./media/characters/ookitsu/tails.svg"
  55352. }
  55353. },
  55354. dick: {
  55355. height: math.unit(1.10833, "feet"),
  55356. name: "Dick",
  55357. image: {
  55358. source: "./media/characters/ookitsu/dick.svg"
  55359. }
  55360. },
  55361. },
  55362. [
  55363. {
  55364. name: "Normal",
  55365. height: math.unit(6 + 4/12, "feet"),
  55366. default: true
  55367. },
  55368. {
  55369. name: "Macro",
  55370. height: math.unit(30, "feet")
  55371. },
  55372. ]
  55373. ))
  55374. characterMakers.push(() => makeCharacter(
  55375. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55376. {
  55377. anthroFront: {
  55378. height: math.unit(6, "feet"),
  55379. weight: math.unit(250, "lb"),
  55380. name: "Front",
  55381. image: {
  55382. source: "./media/characters/jhusky/anthro-front.svg",
  55383. extra: 474/439,
  55384. bottom: 7/481
  55385. },
  55386. form: "anthro",
  55387. default: true
  55388. },
  55389. taurSideSfw: {
  55390. height: math.unit(6 + 4/12, "feet"),
  55391. weight: math.unit(500, "lb"),
  55392. name: "Side (SFW)",
  55393. image: {
  55394. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55395. extra: 1741/1629,
  55396. bottom: 196/1937
  55397. },
  55398. form: "taur",
  55399. default: true
  55400. },
  55401. taurSideNsfw: {
  55402. height: math.unit(6 + 4/12, "feet"),
  55403. weight: math.unit(500, "lb"),
  55404. name: "Taur (NSFW)",
  55405. image: {
  55406. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55407. extra: 1741/1629,
  55408. bottom: 196/1937
  55409. },
  55410. form: "taur",
  55411. },
  55412. },
  55413. [
  55414. {
  55415. name: "Huge",
  55416. height: math.unit(500, "feet"),
  55417. form: "anthro"
  55418. },
  55419. {
  55420. name: "Macro",
  55421. height: math.unit(1000, "feet"),
  55422. default: true,
  55423. form: "anthro"
  55424. },
  55425. {
  55426. name: "Megamacro",
  55427. height: math.unit(10000, "feet"),
  55428. form: "anthro"
  55429. },
  55430. {
  55431. name: "Huge",
  55432. height: math.unit(528, "feet"),
  55433. form: "taur"
  55434. },
  55435. {
  55436. name: "Macro",
  55437. height: math.unit(1056, "feet"),
  55438. default: true,
  55439. form: "taur"
  55440. },
  55441. {
  55442. name: "Megamacro",
  55443. height: math.unit(10556, "feet"),
  55444. form: "taur"
  55445. },
  55446. ],
  55447. {
  55448. "anthro": {
  55449. name: "Anthro",
  55450. default: true
  55451. },
  55452. "taur": {
  55453. name: "Taur",
  55454. },
  55455. }
  55456. ))
  55457. characterMakers.push(() => makeCharacter(
  55458. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55459. {
  55460. front: {
  55461. height: math.unit(8, "feet"),
  55462. weight: math.unit(500, "lb"),
  55463. name: "Front",
  55464. image: {
  55465. source: "./media/characters/armail/front.svg",
  55466. extra: 1753/1669,
  55467. bottom: 155/1908
  55468. }
  55469. },
  55470. back: {
  55471. height: math.unit(8, "feet"),
  55472. weight: math.unit(500, "lb"),
  55473. name: "Back",
  55474. image: {
  55475. source: "./media/characters/armail/back.svg",
  55476. extra: 1872/1803,
  55477. bottom: 63/1935
  55478. }
  55479. },
  55480. },
  55481. [
  55482. {
  55483. name: "Micro",
  55484. height: math.unit(0.25, "feet")
  55485. },
  55486. {
  55487. name: "Normal",
  55488. height: math.unit(8, "feet"),
  55489. default: true
  55490. },
  55491. {
  55492. name: "Mini-macro",
  55493. height: math.unit(30, "feet")
  55494. },
  55495. {
  55496. name: "Macro",
  55497. height: math.unit(400, "feet")
  55498. },
  55499. {
  55500. name: "Mega-macro",
  55501. height: math.unit(6000, "feet")
  55502. },
  55503. ]
  55504. ))
  55505. characterMakers.push(() => makeCharacter(
  55506. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55507. {
  55508. front: {
  55509. height: math.unit(6 + 7/12, "feet"),
  55510. weight: math.unit(210, "lb"),
  55511. name: "Front",
  55512. image: {
  55513. source: "./media/characters/wilfred-t-buxton/front.svg",
  55514. extra: 1068/882,
  55515. bottom: 28/1096
  55516. }
  55517. },
  55518. },
  55519. [
  55520. {
  55521. name: "Normal",
  55522. height: math.unit(6 + 7/12, "feet"),
  55523. default: true
  55524. },
  55525. ]
  55526. ))
  55527. characterMakers.push(() => makeCharacter(
  55528. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55529. {
  55530. front: {
  55531. height: math.unit(5 + 2/12, "feet"),
  55532. weight: math.unit(120, "lb"),
  55533. name: "Front",
  55534. image: {
  55535. source: "./media/characters/leighton-marrow/front.svg",
  55536. extra: 441/409,
  55537. bottom: 37/478
  55538. }
  55539. },
  55540. },
  55541. [
  55542. {
  55543. name: "Normal",
  55544. height: math.unit(5 + 2/12, "feet"),
  55545. default: true
  55546. },
  55547. ]
  55548. ))
  55549. characterMakers.push(() => makeCharacter(
  55550. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55551. {
  55552. front: {
  55553. height: math.unit(4, "meters"),
  55554. weight: math.unit(1200, "kg"),
  55555. name: "Front",
  55556. image: {
  55557. source: "./media/characters/licos/front.svg",
  55558. extra: 1727/1604,
  55559. bottom: 101/1828
  55560. },
  55561. form: "anthro",
  55562. default: true
  55563. },
  55564. taur_side: {
  55565. height: math.unit(20, "meters"),
  55566. weight: math.unit(1100000, "kg"),
  55567. name: "Side",
  55568. image: {
  55569. source: "./media/characters/licos/taur.svg",
  55570. extra: 1158/1091,
  55571. bottom: 80/1238
  55572. },
  55573. form: "taur",
  55574. default: true
  55575. },
  55576. },
  55577. [
  55578. {
  55579. name: "Normal",
  55580. height: math.unit(4, "meters"),
  55581. default: true,
  55582. form: "anthro"
  55583. },
  55584. {
  55585. name: "Normal",
  55586. height: math.unit(20, "meters"),
  55587. default: true,
  55588. form: "taur"
  55589. },
  55590. ],
  55591. {
  55592. "anthro": {
  55593. name: "Anthro",
  55594. default: true
  55595. },
  55596. "taur": {
  55597. name: "Taur",
  55598. },
  55599. }
  55600. ))
  55601. characterMakers.push(() => makeCharacter(
  55602. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55603. {
  55604. front: {
  55605. height: math.unit(10 + 3/12, "feet"),
  55606. name: "Front",
  55607. image: {
  55608. source: "./media/characters/theo-monkey/front.svg",
  55609. extra: 1735/1658,
  55610. bottom: 73/1808
  55611. }
  55612. },
  55613. back: {
  55614. height: math.unit(10 + 3/12, "feet"),
  55615. name: "Back",
  55616. image: {
  55617. source: "./media/characters/theo-monkey/back.svg",
  55618. extra: 1742/1664,
  55619. bottom: 33/1775
  55620. }
  55621. },
  55622. head: {
  55623. height: math.unit(2.29, "feet"),
  55624. name: "Head",
  55625. image: {
  55626. source: "./media/characters/theo-monkey/head.svg"
  55627. }
  55628. },
  55629. handPalm: {
  55630. height: math.unit(1.73, "feet"),
  55631. name: "Hand (Palm)",
  55632. image: {
  55633. source: "./media/characters/theo-monkey/hand-palm.svg"
  55634. }
  55635. },
  55636. handBack: {
  55637. height: math.unit(1.63, "feet"),
  55638. name: "Hand (Back)",
  55639. image: {
  55640. source: "./media/characters/theo-monkey/hand-back.svg"
  55641. }
  55642. },
  55643. footSole: {
  55644. height: math.unit(2.15, "feet"),
  55645. name: "Foot (Sole)",
  55646. image: {
  55647. source: "./media/characters/theo-monkey/foot-sole.svg"
  55648. }
  55649. },
  55650. footSide: {
  55651. height: math.unit(1.6, "feet"),
  55652. name: "Foot (Side)",
  55653. image: {
  55654. source: "./media/characters/theo-monkey/foot-side.svg"
  55655. }
  55656. },
  55657. },
  55658. [
  55659. {
  55660. name: "Normal",
  55661. height: math.unit(10 + 3/12, "feet"),
  55662. default: true
  55663. },
  55664. ]
  55665. ))
  55666. characterMakers.push(() => makeCharacter(
  55667. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55668. {
  55669. front: {
  55670. height: math.unit(11, "feet"),
  55671. weight: math.unit(3000, "lb"),
  55672. preyCapacity: math.unit(10, "people"),
  55673. name: "Front",
  55674. image: {
  55675. source: "./media/characters/brook/front.svg",
  55676. extra: 909/835,
  55677. bottom: 108/1017
  55678. }
  55679. },
  55680. back: {
  55681. height: math.unit(11, "feet"),
  55682. weight: math.unit(3000, "lb"),
  55683. preyCapacity: math.unit(10, "people"),
  55684. name: "Back",
  55685. image: {
  55686. source: "./media/characters/brook/back.svg",
  55687. extra: 976/916,
  55688. bottom: 34/1010
  55689. }
  55690. },
  55691. backAlt: {
  55692. height: math.unit(11, "feet"),
  55693. weight: math.unit(3000, "lb"),
  55694. preyCapacity: math.unit(10, "people"),
  55695. name: "Back (Alt)",
  55696. image: {
  55697. source: "./media/characters/brook/back-alt.svg",
  55698. extra: 1283/1213,
  55699. bottom: 35/1318
  55700. }
  55701. },
  55702. bust: {
  55703. height: math.unit(9.0859030837, "feet"),
  55704. weight: math.unit(3000, "lb"),
  55705. preyCapacity: math.unit(10, "people"),
  55706. name: "Bust",
  55707. image: {
  55708. source: "./media/characters/brook/bust.svg",
  55709. extra: 2043/1923,
  55710. bottom: 0/2043
  55711. }
  55712. },
  55713. },
  55714. [
  55715. {
  55716. name: "Small",
  55717. height: math.unit(11, "feet"),
  55718. default: true
  55719. },
  55720. {
  55721. name: "Towering",
  55722. height: math.unit(5, "km")
  55723. },
  55724. {
  55725. name: "Enormous",
  55726. height: math.unit(25, "earths")
  55727. },
  55728. ]
  55729. ))
  55730. characterMakers.push(() => makeCharacter(
  55731. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55732. {
  55733. front: {
  55734. height: math.unit(4, "feet"),
  55735. weight: math.unit(150, "lb"),
  55736. name: "Front",
  55737. image: {
  55738. source: "./media/characters/squishi/front.svg",
  55739. extra: 1428/1271,
  55740. bottom: 30/1458
  55741. },
  55742. extraAttributes: {
  55743. "pawSize": {
  55744. name: "Paw Size",
  55745. power: 1,
  55746. type: "length",
  55747. base: math.unit(14, "ShoeSizeMensUS"),
  55748. defaultUnit: "ShoeSizeMensUS"
  55749. },
  55750. }
  55751. },
  55752. side: {
  55753. height: math.unit(4, "feet"),
  55754. weight: math.unit(150, "lb"),
  55755. name: "Side",
  55756. image: {
  55757. source: "./media/characters/squishi/side.svg",
  55758. extra: 1428/1271,
  55759. bottom: 30/1458
  55760. },
  55761. extraAttributes: {
  55762. "pawSize": {
  55763. name: "Paw Size",
  55764. power: 1,
  55765. type: "length",
  55766. base: math.unit(14, "ShoeSizeMensUS"),
  55767. defaultUnit: "ShoeSizeMensUS"
  55768. },
  55769. }
  55770. },
  55771. back: {
  55772. height: math.unit(4, "feet"),
  55773. weight: math.unit(150, "lb"),
  55774. name: "Back",
  55775. image: {
  55776. source: "./media/characters/squishi/back.svg",
  55777. extra: 1428/1271,
  55778. bottom: 30/1458
  55779. },
  55780. extraAttributes: {
  55781. "pawSize": {
  55782. name: "Paw Size",
  55783. power: 1,
  55784. type: "length",
  55785. base: math.unit(14, "ShoeSizeMensUS"),
  55786. defaultUnit: "ShoeSizeMensUS"
  55787. },
  55788. }
  55789. },
  55790. },
  55791. [
  55792. {
  55793. name: "Normal",
  55794. height: math.unit(4, "feet"),
  55795. default: true
  55796. },
  55797. ]
  55798. ))
  55799. characterMakers.push(() => makeCharacter(
  55800. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55801. {
  55802. front: {
  55803. height: math.unit(7 + 8/12, "feet"),
  55804. weight: math.unit(333, "lb"),
  55805. name: "Front",
  55806. image: {
  55807. source: "./media/characters/vincent-vasroc/front.svg",
  55808. extra: 1962/1860,
  55809. bottom: 41/2003
  55810. }
  55811. },
  55812. back: {
  55813. height: math.unit(7 + 8/12, "feet"),
  55814. weight: math.unit(333, "lb"),
  55815. name: "Back",
  55816. image: {
  55817. source: "./media/characters/vincent-vasroc/back.svg",
  55818. extra: 1952/1815,
  55819. bottom: 33/1985
  55820. }
  55821. },
  55822. paw: {
  55823. height: math.unit(1.24, "feet"),
  55824. name: "Paw",
  55825. image: {
  55826. source: "./media/characters/vincent-vasroc/paw.svg"
  55827. }
  55828. },
  55829. ear: {
  55830. height: math.unit(0.75, "feet"),
  55831. name: "Ear",
  55832. image: {
  55833. source: "./media/characters/vincent-vasroc/ear.svg"
  55834. }
  55835. },
  55836. },
  55837. [
  55838. {
  55839. name: "Nano",
  55840. height: math.unit(92, "micrometers")
  55841. },
  55842. {
  55843. name: "Normal",
  55844. height: math.unit(7 + 8/12, "feet"),
  55845. default: true
  55846. },
  55847. ]
  55848. ))
  55849. characterMakers.push(() => makeCharacter(
  55850. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55851. {
  55852. frontNsfw: {
  55853. height: math.unit(40, "feet"),
  55854. weight: math.unit(58, "tons"),
  55855. name: "Front (NSFW)",
  55856. image: {
  55857. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55858. extra: 1265/965,
  55859. bottom: 155/1420
  55860. }
  55861. },
  55862. frontSfw: {
  55863. height: math.unit(40, "feet"),
  55864. weight: math.unit(58, "tons"),
  55865. name: "Front (SFW)",
  55866. image: {
  55867. source: "./media/characters/ru-kahn/front-sfw.svg",
  55868. extra: 1265/965,
  55869. bottom: 80/1345
  55870. }
  55871. },
  55872. },
  55873. [
  55874. {
  55875. name: "Small",
  55876. height: math.unit(4, "feet")
  55877. },
  55878. {
  55879. name: "Normal",
  55880. height: math.unit(40, "feet"),
  55881. default: true
  55882. },
  55883. {
  55884. name: "Macro",
  55885. height: math.unit(400, "feet")
  55886. },
  55887. ]
  55888. ))
  55889. characterMakers.push(() => makeCharacter(
  55890. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55891. {
  55892. frontNude: {
  55893. height: math.unit(6 + 5/12, "feet"),
  55894. name: "Front (Nude)",
  55895. image: {
  55896. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55897. extra: 1369/1366,
  55898. bottom: 68/1437
  55899. }
  55900. },
  55901. frontDressed: {
  55902. height: math.unit(6 + 5/12, "feet"),
  55903. name: "Front (Dressed)",
  55904. image: {
  55905. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55906. extra: 1369/1366,
  55907. bottom: 68/1437
  55908. }
  55909. },
  55910. },
  55911. [
  55912. {
  55913. name: "Normal",
  55914. height: math.unit(6 + 5/12, "feet"),
  55915. default: true
  55916. },
  55917. {
  55918. name: "Maximum",
  55919. height: math.unit(1930, "feet")
  55920. },
  55921. ]
  55922. ))
  55923. characterMakers.push(() => makeCharacter(
  55924. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55925. {
  55926. front: {
  55927. height: math.unit(5 + 6/12, "feet"),
  55928. name: "Front",
  55929. image: {
  55930. source: "./media/characters/kaja/front.svg",
  55931. extra: 1874/1514,
  55932. bottom: 117/1991
  55933. }
  55934. },
  55935. },
  55936. [
  55937. {
  55938. name: "Normal",
  55939. height: math.unit(5 + 6/12, "feet"),
  55940. default: true
  55941. },
  55942. ]
  55943. ))
  55944. characterMakers.push(() => makeCharacter(
  55945. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55946. {
  55947. front: {
  55948. height: math.unit(5 + 9/12, "feet"),
  55949. weight: math.unit(200, "lb"),
  55950. name: "Front",
  55951. image: {
  55952. source: "./media/characters/mark-smith/front.svg",
  55953. extra: 1004/943,
  55954. bottom: 58/1062
  55955. }
  55956. },
  55957. back: {
  55958. height: math.unit(5 + 9/12, "feet"),
  55959. weight: math.unit(200, "lb"),
  55960. name: "Back",
  55961. image: {
  55962. source: "./media/characters/mark-smith/back.svg",
  55963. extra: 1023/953,
  55964. bottom: 24/1047
  55965. }
  55966. },
  55967. head: {
  55968. height: math.unit(1.82, "feet"),
  55969. name: "Head",
  55970. image: {
  55971. source: "./media/characters/mark-smith/head.svg"
  55972. }
  55973. },
  55974. hand: {
  55975. height: math.unit(1.4, "feet"),
  55976. name: "Hand",
  55977. image: {
  55978. source: "./media/characters/mark-smith/hand.svg"
  55979. }
  55980. },
  55981. paw: {
  55982. height: math.unit(1.69, "feet"),
  55983. name: "Paw",
  55984. image: {
  55985. source: "./media/characters/mark-smith/paw.svg"
  55986. }
  55987. },
  55988. },
  55989. [
  55990. {
  55991. name: "Micro",
  55992. height: math.unit(0.25, "inches")
  55993. },
  55994. {
  55995. name: "Normal",
  55996. height: math.unit(5 + 9/12, "feet"),
  55997. default: true
  55998. },
  55999. {
  56000. name: "Macro",
  56001. height: math.unit(500, "feet")
  56002. },
  56003. ]
  56004. ))
  56005. characterMakers.push(() => makeCharacter(
  56006. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56007. {
  56008. frontNude: {
  56009. height: math.unit(6, "feet"),
  56010. name: "Front (Nude)",
  56011. image: {
  56012. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56013. extra: 1384/1321,
  56014. bottom: 57/1441
  56015. }
  56016. },
  56017. frontDressed: {
  56018. height: math.unit(6, "feet"),
  56019. name: "Front (Dressed)",
  56020. image: {
  56021. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56022. extra: 1384/1321,
  56023. bottom: 57/1441
  56024. }
  56025. },
  56026. },
  56027. [
  56028. {
  56029. name: "Normal",
  56030. height: math.unit(6, "feet"),
  56031. default: true
  56032. },
  56033. {
  56034. name: "Maximum",
  56035. height: math.unit(1776, "feet")
  56036. },
  56037. ]
  56038. ))
  56039. characterMakers.push(() => makeCharacter(
  56040. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56041. {
  56042. front: {
  56043. height: math.unit(2 + 4/12, "feet"),
  56044. weight: math.unit(350, "lb"),
  56045. name: "Front",
  56046. image: {
  56047. source: "./media/characters/devos/front.svg",
  56048. extra: 958/852,
  56049. bottom: 143/1101
  56050. }
  56051. },
  56052. },
  56053. [
  56054. {
  56055. name: "Base",
  56056. height: math.unit(2 + 4/12, "feet"),
  56057. default: true
  56058. },
  56059. ]
  56060. ))
  56061. characterMakers.push(() => makeCharacter(
  56062. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56063. {
  56064. front: {
  56065. height: math.unit(9 + 2/12, "feet"),
  56066. name: "Front",
  56067. image: {
  56068. source: "./media/characters/hiveheart/front.svg",
  56069. extra: 394/364,
  56070. bottom: 65/459
  56071. }
  56072. },
  56073. back: {
  56074. height: math.unit(9 + 2/12, "feet"),
  56075. name: "Back",
  56076. image: {
  56077. source: "./media/characters/hiveheart/back.svg",
  56078. extra: 374/357,
  56079. bottom: 63/437
  56080. }
  56081. },
  56082. },
  56083. [
  56084. {
  56085. name: "Base",
  56086. height: math.unit(9 + 2/12, "feet"),
  56087. default: true
  56088. },
  56089. ]
  56090. ))
  56091. characterMakers.push(() => makeCharacter(
  56092. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56093. {
  56094. front: {
  56095. height: math.unit(2.5, "inches"),
  56096. weight: math.unit(0.6, "oz"),
  56097. name: "Front",
  56098. image: {
  56099. source: "./media/characters/bryn/front.svg",
  56100. extra: 1480/1205,
  56101. bottom: 27/1507
  56102. }
  56103. },
  56104. back: {
  56105. height: math.unit(2.5, "inches"),
  56106. weight: math.unit(0.6, "oz"),
  56107. name: "Back",
  56108. image: {
  56109. source: "./media/characters/bryn/back.svg",
  56110. extra: 1475/1201,
  56111. bottom: 39/1514
  56112. }
  56113. },
  56114. foot: {
  56115. height: math.unit(0.4, "inches"),
  56116. name: "Foot",
  56117. image: {
  56118. source: "./media/characters/bryn/foot.svg"
  56119. }
  56120. },
  56121. },
  56122. [
  56123. {
  56124. name: "Normal",
  56125. height: math.unit(2.5, "inches"),
  56126. default: true
  56127. },
  56128. ]
  56129. ))
  56130. characterMakers.push(() => makeCharacter(
  56131. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56132. {
  56133. side: {
  56134. height: math.unit(7, "feet"),
  56135. weight: math.unit(657, "kg"),
  56136. name: "Side",
  56137. image: {
  56138. source: "./media/characters/delta/side.svg",
  56139. extra: 781/212,
  56140. bottom: 7/788
  56141. },
  56142. extraAttributes: {
  56143. "wingspan": {
  56144. name: "Wingspan",
  56145. power: 1,
  56146. type: "length",
  56147. base: math.unit(48, "feet")
  56148. },
  56149. "length": {
  56150. name: "Length",
  56151. power: 1,
  56152. type: "length",
  56153. base: math.unit(21, "feet")
  56154. },
  56155. "pawSize": {
  56156. name: "Paw Size",
  56157. power: 2,
  56158. type: "area",
  56159. base: math.unit(1.5*1.4, "feet^2")
  56160. },
  56161. }
  56162. },
  56163. },
  56164. [
  56165. {
  56166. name: "Normal",
  56167. height: math.unit(6, "feet"),
  56168. default: true
  56169. },
  56170. ]
  56171. ))
  56172. characterMakers.push(() => makeCharacter(
  56173. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56174. {
  56175. front: {
  56176. height: math.unit(6, "feet"),
  56177. name: "Front",
  56178. image: {
  56179. source: "./media/characters/pyrow/front.svg",
  56180. extra: 513/486,
  56181. bottom: 14/527
  56182. }
  56183. },
  56184. frontWing: {
  56185. height: math.unit(6, "feet"),
  56186. name: "Front (Wing)",
  56187. image: {
  56188. source: "./media/characters/pyrow/front-wing.svg",
  56189. extra: 539/383,
  56190. bottom: 20/559
  56191. }
  56192. },
  56193. back: {
  56194. height: math.unit(6, "feet"),
  56195. name: "Back",
  56196. image: {
  56197. source: "./media/characters/pyrow/back.svg",
  56198. extra: 500/473,
  56199. bottom: 9/509
  56200. }
  56201. },
  56202. },
  56203. [
  56204. {
  56205. name: "Normal",
  56206. height: math.unit(6, "feet"),
  56207. default: true
  56208. },
  56209. ]
  56210. ))
  56211. characterMakers.push(() => makeCharacter(
  56212. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56213. {
  56214. front: {
  56215. height: math.unit(5, "meters"),
  56216. weight: math.unit(3, "tonnes"),
  56217. name: "Front",
  56218. image: {
  56219. source: "./media/characters/velikan/front.svg",
  56220. extra: 867/744,
  56221. bottom: 71/938
  56222. },
  56223. extraAttributes: {
  56224. "shoeSize": {
  56225. name: "Shoe Size",
  56226. power: 1,
  56227. type: "length",
  56228. base: math.unit(135, "ShoeSizeUK"),
  56229. defaultUnit: "ShoeSizeUK"
  56230. },
  56231. }
  56232. },
  56233. },
  56234. [
  56235. {
  56236. name: "Normal",
  56237. height: math.unit(5, "meters"),
  56238. default: true
  56239. },
  56240. {
  56241. name: "Macro",
  56242. height: math.unit(1, "km")
  56243. },
  56244. {
  56245. name: "Mega Macro",
  56246. height: math.unit(100, "km")
  56247. },
  56248. {
  56249. name: "Giga Macro",
  56250. height: math.unit(2, "megameters")
  56251. },
  56252. {
  56253. name: "Planetary",
  56254. height: math.unit(22, "megameters")
  56255. },
  56256. {
  56257. name: "Solar",
  56258. height: math.unit(8, "gigameters")
  56259. },
  56260. {
  56261. name: "Cosmic",
  56262. height: math.unit(10, "zettameters")
  56263. },
  56264. {
  56265. name: "Omni",
  56266. height: math.unit(9e260, "multiverses")
  56267. },
  56268. ]
  56269. ))
  56270. characterMakers.push(() => makeCharacter(
  56271. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56272. {
  56273. front: {
  56274. height: math.unit(4 + 3/12, "feet"),
  56275. weight: math.unit(90, "lb"),
  56276. name: "Front",
  56277. image: {
  56278. source: "./media/characters/sabiki/front.svg",
  56279. extra: 1662/1423,
  56280. bottom: 65/1727
  56281. }
  56282. },
  56283. },
  56284. [
  56285. {
  56286. name: "Normal",
  56287. height: math.unit(4 + 3/12, "feet"),
  56288. default: true
  56289. },
  56290. ]
  56291. ))
  56292. characterMakers.push(() => makeCharacter(
  56293. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56294. {
  56295. frontSfw: {
  56296. height: math.unit(2, "mm"),
  56297. name: "Front (SFW)",
  56298. image: {
  56299. source: "./media/characters/carmel/front-sfw.svg",
  56300. extra: 1131/1006,
  56301. bottom: 66/1197
  56302. }
  56303. },
  56304. frontNsfw: {
  56305. height: math.unit(2, "mm"),
  56306. name: "Front (NSFW)",
  56307. image: {
  56308. source: "./media/characters/carmel/front-nsfw.svg",
  56309. extra: 1131/1006,
  56310. bottom: 66/1197
  56311. }
  56312. },
  56313. foot: {
  56314. height: math.unit(0.3, "mm"),
  56315. name: "Foot",
  56316. image: {
  56317. source: "./media/characters/carmel/foot.svg"
  56318. }
  56319. },
  56320. tongue: {
  56321. height: math.unit(0.71, "mm"),
  56322. name: "Tongue",
  56323. image: {
  56324. source: "./media/characters/carmel/tongue.svg"
  56325. }
  56326. },
  56327. dick: {
  56328. height: math.unit(0.085, "mm"),
  56329. name: "Dick",
  56330. image: {
  56331. source: "./media/characters/carmel/dick.svg"
  56332. }
  56333. },
  56334. },
  56335. [
  56336. {
  56337. name: "Micro",
  56338. height: math.unit(2, "mm"),
  56339. default: true
  56340. },
  56341. {
  56342. name: "Normal",
  56343. height: math.unit(4 + 8/12, "feet")
  56344. },
  56345. {
  56346. name: "Mega Macro",
  56347. height: math.unit(250, "feet")
  56348. },
  56349. {
  56350. name: "BIGGER",
  56351. height: math.unit(1000, "feet")
  56352. },
  56353. {
  56354. name: "BIGGEST",
  56355. height: math.unit(2, "miles")
  56356. },
  56357. ]
  56358. ))
  56359. characterMakers.push(() => makeCharacter(
  56360. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56361. {
  56362. front: {
  56363. height: math.unit(6.5, "feet"),
  56364. weight: math.unit(198, "lb"),
  56365. name: "Front",
  56366. image: {
  56367. source: "./media/characters/tamani/anthro.svg",
  56368. extra: 930/890,
  56369. bottom: 34/964
  56370. },
  56371. form: "anthro",
  56372. default: true
  56373. },
  56374. side: {
  56375. height: math.unit(6, "feet"),
  56376. weight: math.unit(198*2, "lb"),
  56377. name: "Side",
  56378. image: {
  56379. source: "./media/characters/tamani/feral.svg",
  56380. extra: 559/519,
  56381. bottom: 43/602
  56382. },
  56383. form: "feral"
  56384. },
  56385. },
  56386. [
  56387. {
  56388. name: "Normal",
  56389. height: math.unit(6.5, "feet"),
  56390. default: true,
  56391. form: "anthro"
  56392. },
  56393. {
  56394. name: "Normal",
  56395. height: math.unit(6, "feet"),
  56396. default: true,
  56397. form: "feral"
  56398. },
  56399. ],
  56400. {
  56401. "anthro": {
  56402. name: "Anthro",
  56403. default: true
  56404. },
  56405. "feral": {
  56406. name: "Feral",
  56407. },
  56408. }
  56409. ))
  56410. characterMakers.push(() => makeCharacter(
  56411. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56412. {
  56413. front: {
  56414. height: math.unit(4 + 1/12, "feet"),
  56415. weight: math.unit(114, "lb"),
  56416. name: "Front",
  56417. image: {
  56418. source: "./media/characters/dex/front.svg",
  56419. extra: 787/680,
  56420. bottom: 18/805
  56421. }
  56422. },
  56423. side: {
  56424. height: math.unit(4 + 1/12, "feet"),
  56425. weight: math.unit(114, "lb"),
  56426. name: "Side",
  56427. image: {
  56428. source: "./media/characters/dex/side.svg",
  56429. extra: 785/680,
  56430. bottom: 12/797
  56431. }
  56432. },
  56433. back: {
  56434. height: math.unit(4 + 1/12, "feet"),
  56435. weight: math.unit(114, "lb"),
  56436. name: "Back",
  56437. image: {
  56438. source: "./media/characters/dex/back.svg",
  56439. extra: 785/681,
  56440. bottom: 17/802
  56441. }
  56442. },
  56443. loungewear: {
  56444. height: math.unit(4 + 1/12, "feet"),
  56445. weight: math.unit(114, "lb"),
  56446. name: "Loungewear",
  56447. image: {
  56448. source: "./media/characters/dex/loungewear.svg",
  56449. extra: 787/680,
  56450. bottom: 18/805
  56451. }
  56452. },
  56453. workout: {
  56454. height: math.unit(4 + 1/12, "feet"),
  56455. weight: math.unit(114, "lb"),
  56456. name: "Workout",
  56457. image: {
  56458. source: "./media/characters/dex/workout.svg",
  56459. extra: 787/680,
  56460. bottom: 18/805
  56461. }
  56462. },
  56463. schoolUniform: {
  56464. height: math.unit(4 + 1/12, "feet"),
  56465. weight: math.unit(114, "lb"),
  56466. name: "School-uniform",
  56467. image: {
  56468. source: "./media/characters/dex/school-uniform.svg",
  56469. extra: 787/680,
  56470. bottom: 18/805
  56471. }
  56472. },
  56473. maw: {
  56474. height: math.unit(0.55, "feet"),
  56475. name: "Maw",
  56476. image: {
  56477. source: "./media/characters/dex/maw.svg"
  56478. }
  56479. },
  56480. paw: {
  56481. height: math.unit(0.87, "feet"),
  56482. name: "Paw",
  56483. image: {
  56484. source: "./media/characters/dex/paw.svg"
  56485. }
  56486. },
  56487. bust: {
  56488. height: math.unit(1.67, "feet"),
  56489. name: "Bust",
  56490. image: {
  56491. source: "./media/characters/dex/bust.svg"
  56492. }
  56493. },
  56494. },
  56495. [
  56496. {
  56497. name: "Normal",
  56498. height: math.unit(4 + 1/12, "feet"),
  56499. default: true
  56500. },
  56501. ]
  56502. ))
  56503. characterMakers.push(() => makeCharacter(
  56504. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56505. {
  56506. front: {
  56507. height: math.unit(4 + 3/12, "feet"),
  56508. weight: math.unit(60, "lb"),
  56509. name: "Front",
  56510. image: {
  56511. source: "./media/characters/silke/front.svg",
  56512. extra: 1334/1122,
  56513. bottom: 21/1355
  56514. }
  56515. },
  56516. back: {
  56517. height: math.unit(4 + 3/12, "feet"),
  56518. weight: math.unit(60, "lb"),
  56519. name: "Back",
  56520. image: {
  56521. source: "./media/characters/silke/back.svg",
  56522. extra: 1328/1092,
  56523. bottom: 16/1344
  56524. }
  56525. },
  56526. dressed: {
  56527. height: math.unit(4 + 3/12, "feet"),
  56528. weight: math.unit(60, "lb"),
  56529. name: "Dressed",
  56530. image: {
  56531. source: "./media/characters/silke/dressed.svg",
  56532. extra: 1334/1122,
  56533. bottom: 43/1377
  56534. }
  56535. },
  56536. },
  56537. [
  56538. {
  56539. name: "Normal",
  56540. height: math.unit(4 + 3/12, "feet"),
  56541. default: true
  56542. },
  56543. ]
  56544. ))
  56545. characterMakers.push(() => makeCharacter(
  56546. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56547. {
  56548. front: {
  56549. height: math.unit(1.58, "meters"),
  56550. weight: math.unit(47, "kg"),
  56551. name: "Front",
  56552. image: {
  56553. source: "./media/characters/wireshark/front.svg",
  56554. extra: 883/838,
  56555. bottom: 66/949
  56556. }
  56557. },
  56558. },
  56559. [
  56560. {
  56561. name: "Normal",
  56562. height: math.unit(1.58, "meters"),
  56563. default: true
  56564. },
  56565. ]
  56566. ))
  56567. characterMakers.push(() => makeCharacter(
  56568. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56569. {
  56570. front: {
  56571. height: math.unit(6, "meters"),
  56572. weight: math.unit(15000, "kg"),
  56573. name: "Front",
  56574. image: {
  56575. source: "./media/characters/gallagher/front.svg",
  56576. extra: 532/493,
  56577. bottom: 0/532
  56578. }
  56579. },
  56580. },
  56581. [
  56582. {
  56583. name: "Normal",
  56584. height: math.unit(6, "meters"),
  56585. default: true
  56586. },
  56587. ]
  56588. ))
  56589. characterMakers.push(() => makeCharacter(
  56590. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56591. {
  56592. front: {
  56593. height: math.unit(2.4, "meters"),
  56594. weight: math.unit(270, "kg"),
  56595. name: "Front",
  56596. image: {
  56597. source: "./media/characters/alice/front.svg",
  56598. extra: 950/900,
  56599. bottom: 36/986
  56600. }
  56601. },
  56602. side: {
  56603. height: math.unit(2.4, "meters"),
  56604. weight: math.unit(270, "kg"),
  56605. name: "Side",
  56606. image: {
  56607. source: "./media/characters/alice/side.svg",
  56608. extra: 921/876,
  56609. bottom: 19/940
  56610. }
  56611. },
  56612. dressed: {
  56613. height: math.unit(2.4, "meters"),
  56614. weight: math.unit(270, "kg"),
  56615. name: "Dressed",
  56616. image: {
  56617. source: "./media/characters/alice/dressed.svg",
  56618. extra: 905/850,
  56619. bottom: 81/986
  56620. }
  56621. },
  56622. fishnet: {
  56623. height: math.unit(2.4, "meters"),
  56624. weight: math.unit(270, "kg"),
  56625. name: "Fishnet",
  56626. image: {
  56627. source: "./media/characters/alice/fishnet.svg",
  56628. extra: 905/850,
  56629. bottom: 81/986
  56630. }
  56631. },
  56632. },
  56633. [
  56634. {
  56635. name: "Normal",
  56636. height: math.unit(2.4, "meters"),
  56637. default: true
  56638. },
  56639. ]
  56640. ))
  56641. characterMakers.push(() => makeCharacter(
  56642. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56643. {
  56644. front: {
  56645. height: math.unit(175.25, "feet"),
  56646. name: "Front",
  56647. image: {
  56648. source: "./media/characters/fio/front.svg",
  56649. extra: 1883/1591,
  56650. bottom: 34/1917
  56651. }
  56652. },
  56653. },
  56654. [
  56655. {
  56656. name: "Normal",
  56657. height: math.unit(175.25, "cm"),
  56658. default: true
  56659. },
  56660. ]
  56661. ))
  56662. characterMakers.push(() => makeCharacter(
  56663. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56664. {
  56665. side: {
  56666. height: math.unit(6, "meters"),
  56667. weight: math.unit(3400, "kg"),
  56668. preyCapacity: math.unit(1700, "liters"),
  56669. name: "Side",
  56670. image: {
  56671. source: "./media/characters/hass/side.svg",
  56672. extra: 1058/997,
  56673. bottom: 177/1235
  56674. }
  56675. },
  56676. feeding: {
  56677. height: math.unit(6*0.63, "meters"),
  56678. weight: math.unit(3400, "kg"),
  56679. preyCapacity: math.unit(1700, "liters"),
  56680. name: "Feeding",
  56681. image: {
  56682. source: "./media/characters/hass/feeding.svg",
  56683. extra: 689/579,
  56684. bottom: 146/835
  56685. }
  56686. },
  56687. guts: {
  56688. height: math.unit(6, "meters"),
  56689. weight: math.unit(3400, "kg"),
  56690. name: "Guts",
  56691. image: {
  56692. source: "./media/characters/hass/guts.svg",
  56693. extra: 1223/1198,
  56694. bottom: 182/1405
  56695. }
  56696. },
  56697. dickFront: {
  56698. height: math.unit(1.4, "meters"),
  56699. name: "Dick (Front)",
  56700. image: {
  56701. source: "./media/characters/hass/dick-front.svg"
  56702. }
  56703. },
  56704. dickSide: {
  56705. height: math.unit(1.3, "meters"),
  56706. name: "Dick (Side)",
  56707. image: {
  56708. source: "./media/characters/hass/dick-side.svg"
  56709. }
  56710. },
  56711. dickBack: {
  56712. height: math.unit(1.4, "meters"),
  56713. name: "Dick (Back)",
  56714. image: {
  56715. source: "./media/characters/hass/dick-back.svg"
  56716. }
  56717. },
  56718. },
  56719. [
  56720. {
  56721. name: "Normal",
  56722. height: math.unit(6, "meters"),
  56723. default: true
  56724. },
  56725. ]
  56726. ))
  56727. characterMakers.push(() => makeCharacter(
  56728. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56729. {
  56730. front: {
  56731. height: math.unit(4, "feet"),
  56732. weight: math.unit(60, "lb"),
  56733. name: "Front",
  56734. image: {
  56735. source: "./media/characters/hickory-finnegan/front.svg",
  56736. extra: 444/411,
  56737. bottom: 10/454
  56738. }
  56739. },
  56740. side: {
  56741. height: math.unit(4, "feet"),
  56742. weight: math.unit(60, "lb"),
  56743. name: "Side",
  56744. image: {
  56745. source: "./media/characters/hickory-finnegan/side.svg",
  56746. extra: 444/411,
  56747. bottom: 10/454
  56748. }
  56749. },
  56750. back: {
  56751. height: math.unit(4, "feet"),
  56752. weight: math.unit(60, "lb"),
  56753. name: "Back",
  56754. image: {
  56755. source: "./media/characters/hickory-finnegan/back.svg",
  56756. extra: 444/411,
  56757. bottom: 10/454
  56758. }
  56759. },
  56760. },
  56761. [
  56762. {
  56763. name: "Normal",
  56764. height: math.unit(4, "feet"),
  56765. default: true
  56766. },
  56767. ]
  56768. ))
  56769. characterMakers.push(() => makeCharacter(
  56770. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56771. {
  56772. snivy_front: {
  56773. height: math.unit(2, "feet"),
  56774. weight: math.unit(17.9, "lb"),
  56775. name: "Front",
  56776. image: {
  56777. source: "./media/characters/robin-phox/snivy-front.svg",
  56778. extra: 569/504,
  56779. bottom: 33/602
  56780. },
  56781. form: "snivy",
  56782. default: true
  56783. },
  56784. snivy_frontNsfw: {
  56785. height: math.unit(2, "feet"),
  56786. weight: math.unit(17.9, "lb"),
  56787. name: "Front (NSFW)",
  56788. image: {
  56789. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56790. extra: 569/504,
  56791. bottom: 33/602
  56792. },
  56793. form: "snivy",
  56794. },
  56795. snivy_back: {
  56796. height: math.unit(2, "feet"),
  56797. weight: math.unit(17.9, "lb"),
  56798. name: "Back",
  56799. image: {
  56800. source: "./media/characters/robin-phox/snivy-back.svg",
  56801. extra: 577/508,
  56802. bottom: 21/598
  56803. },
  56804. form: "snivy",
  56805. },
  56806. snivy_foot: {
  56807. height: math.unit(0.68, "feet"),
  56808. name: "Foot",
  56809. image: {
  56810. source: "./media/characters/robin-phox/snivy-foot.svg"
  56811. },
  56812. form: "snivy",
  56813. },
  56814. snivy_sole: {
  56815. height: math.unit(0.68, "feet"),
  56816. name: "Sole",
  56817. image: {
  56818. source: "./media/characters/robin-phox/snivy-sole.svg"
  56819. },
  56820. form: "snivy",
  56821. },
  56822. yoshi_front: {
  56823. height: math.unit(6, "feet"),
  56824. weight: math.unit(150, "lb"),
  56825. name: "Front",
  56826. image: {
  56827. source: "./media/characters/robin-phox/yoshi-front.svg",
  56828. extra: 890/792,
  56829. bottom: 29/919
  56830. },
  56831. form: "yoshi",
  56832. default: true
  56833. },
  56834. yoshi_frontNsfw: {
  56835. height: math.unit(6, "feet"),
  56836. weight: math.unit(150, "lb"),
  56837. name: "Front (NSFW)",
  56838. image: {
  56839. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56840. extra: 890/792,
  56841. bottom: 29/919
  56842. },
  56843. form: "yoshi",
  56844. },
  56845. yoshi_back: {
  56846. height: math.unit(6, "feet"),
  56847. weight: math.unit(150, "lb"),
  56848. name: "Back",
  56849. image: {
  56850. source: "./media/characters/robin-phox/yoshi-back.svg",
  56851. extra: 890/792,
  56852. bottom: 29/919
  56853. },
  56854. form: "yoshi",
  56855. },
  56856. yoshi_foot: {
  56857. height: math.unit(1.5, "feet"),
  56858. name: "Foot",
  56859. image: {
  56860. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56861. },
  56862. form: "yoshi",
  56863. },
  56864. delphox_front: {
  56865. height: math.unit(4 + 11/12, "feet"),
  56866. weight: math.unit(86, "lb"),
  56867. name: "Front",
  56868. image: {
  56869. source: "./media/characters/robin-phox/delphox-front.svg",
  56870. extra: 1266/1069,
  56871. bottom: 32/1298
  56872. },
  56873. form: "delphox",
  56874. default: true
  56875. },
  56876. delphox_frontNsfw: {
  56877. height: math.unit(4 + 11/12, "feet"),
  56878. weight: math.unit(86, "lb"),
  56879. name: "Front (NSFW)",
  56880. image: {
  56881. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56882. extra: 1266/1069,
  56883. bottom: 32/1298
  56884. },
  56885. form: "delphox",
  56886. },
  56887. delphox_back: {
  56888. height: math.unit(4 + 11/12, "feet"),
  56889. weight: math.unit(86, "lb"),
  56890. name: "Back",
  56891. image: {
  56892. source: "./media/characters/robin-phox/delphox-back.svg",
  56893. extra: 1269/1083,
  56894. bottom: 15/1284
  56895. },
  56896. form: "delphox",
  56897. },
  56898. mienshao_front: {
  56899. height: math.unit(4 + 7/12, "feet"),
  56900. weight: math.unit(78.3, "lb"),
  56901. name: "Front",
  56902. image: {
  56903. source: "./media/characters/robin-phox/mienshao-front.svg",
  56904. extra: 1052/970,
  56905. bottom: 108/1160
  56906. },
  56907. form: "mienshao",
  56908. default: true
  56909. },
  56910. mienshao_frontNsfw: {
  56911. height: math.unit(4 + 7/12, "feet"),
  56912. weight: math.unit(78.3, "lb"),
  56913. name: "Front (NSFW)",
  56914. image: {
  56915. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56916. extra: 1052/970,
  56917. bottom: 108/1160
  56918. },
  56919. form: "mienshao",
  56920. },
  56921. mienshao_back: {
  56922. height: math.unit(4 + 7/12, "feet"),
  56923. weight: math.unit(78.3, "lb"),
  56924. name: "Back",
  56925. image: {
  56926. source: "./media/characters/robin-phox/mienshao-back.svg",
  56927. extra: 1102/982,
  56928. bottom: 32/1134
  56929. },
  56930. form: "mienshao",
  56931. },
  56932. inteleon_front: {
  56933. height: math.unit(6 + 3/12, "feet"),
  56934. weight: math.unit(99.6, "lb"),
  56935. name: "Front",
  56936. image: {
  56937. source: "./media/characters/robin-phox/inteleon-front.svg",
  56938. extra: 910/799,
  56939. bottom: 76/986
  56940. },
  56941. form: "inteleon",
  56942. default: true
  56943. },
  56944. inteleon_frontNsfw: {
  56945. height: math.unit(6 + 3/12, "feet"),
  56946. weight: math.unit(99.6, "lb"),
  56947. name: "Front (NSFW)",
  56948. image: {
  56949. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56950. extra: 910/799,
  56951. bottom: 76/986
  56952. },
  56953. form: "inteleon",
  56954. },
  56955. inteleon_back: {
  56956. height: math.unit(6 + 3/12, "feet"),
  56957. weight: math.unit(99.6, "lb"),
  56958. name: "Back",
  56959. image: {
  56960. source: "./media/characters/robin-phox/inteleon-back.svg",
  56961. extra: 907/796,
  56962. bottom: 25/932
  56963. },
  56964. form: "inteleon",
  56965. },
  56966. reshiram_front: {
  56967. height: math.unit(10 + 6/12, "feet"),
  56968. weight: math.unit(727.5, "lb"),
  56969. name: "Front",
  56970. image: {
  56971. source: "./media/characters/robin-phox/reshiram-front.svg",
  56972. extra: 1198/940,
  56973. bottom: 123/1321
  56974. },
  56975. form: "reshiram",
  56976. },
  56977. reshiram_frontNsfw: {
  56978. height: math.unit(10 + 6/12, "feet"),
  56979. weight: math.unit(727.5, "lb"),
  56980. name: "Front-nsfw",
  56981. image: {
  56982. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56983. extra: 1198/940,
  56984. bottom: 123/1321
  56985. },
  56986. form: "reshiram",
  56987. },
  56988. reshiram_back: {
  56989. height: math.unit(10 + 6/12, "feet"),
  56990. weight: math.unit(727.5, "lb"),
  56991. name: "Back",
  56992. image: {
  56993. source: "./media/characters/robin-phox/reshiram-back.svg",
  56994. extra: 1024/904,
  56995. bottom: 85/1109
  56996. },
  56997. form: "reshiram",
  56998. },
  56999. samurott_front: {
  57000. height: math.unit(8, "feet"),
  57001. weight: math.unit(208.6, "lb"),
  57002. name: "Front",
  57003. image: {
  57004. source: "./media/characters/robin-phox/samurott-front.svg",
  57005. extra: 1048/984,
  57006. bottom: 100/1148
  57007. },
  57008. form: "samurott",
  57009. },
  57010. samurott_frontNsfw: {
  57011. height: math.unit(8, "feet"),
  57012. weight: math.unit(208.6, "lb"),
  57013. name: "Front-nsfw",
  57014. image: {
  57015. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57016. extra: 1048/984,
  57017. bottom: 100/1148
  57018. },
  57019. form: "samurott",
  57020. },
  57021. samurott_back: {
  57022. height: math.unit(8, "feet"),
  57023. weight: math.unit(208.6, "lb"),
  57024. name: "Back",
  57025. image: {
  57026. source: "./media/characters/robin-phox/samurott-back.svg",
  57027. extra: 1110/1042,
  57028. bottom: 12/1122
  57029. },
  57030. form: "samurott",
  57031. },
  57032. samurott_feral: {
  57033. height: math.unit(4 + 11/12, "feet"),
  57034. weight: math.unit(208.6, "lb"),
  57035. name: "Feral",
  57036. image: {
  57037. source: "./media/characters/robin-phox/samurott-feral.svg",
  57038. extra: 766/681,
  57039. bottom: 108/874
  57040. },
  57041. form: "samurott",
  57042. },
  57043. },
  57044. [
  57045. {
  57046. name: "Normal",
  57047. height: math.unit(2, "feet"),
  57048. default: true,
  57049. form: "snivy"
  57050. },
  57051. {
  57052. name: "Normal",
  57053. height: math.unit(6, "feet"),
  57054. default: true,
  57055. form: "yoshi"
  57056. },
  57057. {
  57058. name: "Normal",
  57059. height: math.unit(4 + 11/12, "feet"),
  57060. default: true,
  57061. form: "delphox"
  57062. },
  57063. {
  57064. name: "Normal",
  57065. height: math.unit(4 + 7/12, "feet"),
  57066. default: true,
  57067. form: "mienshao"
  57068. },
  57069. {
  57070. name: "Normal",
  57071. height: math.unit(6 + 3/12, "feet"),
  57072. default: true,
  57073. form: "inteleon"
  57074. },
  57075. {
  57076. name: "Normal",
  57077. height: math.unit(10 + 6/12, "feet"),
  57078. default: true,
  57079. form: "reshiram"
  57080. },
  57081. {
  57082. name: "Normal",
  57083. height: math.unit(8, "feet"),
  57084. default: true,
  57085. form: "samurott"
  57086. },
  57087. {
  57088. name: "Macro",
  57089. height: math.unit(500, "feet"),
  57090. allForms: true
  57091. },
  57092. {
  57093. name: "Mega Macro",
  57094. height: math.unit(10, "earths"),
  57095. allForms: true
  57096. },
  57097. {
  57098. name: "Giga Macro",
  57099. height: math.unit(1, "galaxy"),
  57100. allForms: true
  57101. },
  57102. {
  57103. name: "Godly Macro",
  57104. height: math.unit(1e10, "multiverses"),
  57105. allForms: true
  57106. },
  57107. ],
  57108. {
  57109. "snivy": {
  57110. name: "Snivy",
  57111. default: true
  57112. },
  57113. "yoshi": {
  57114. name: "Yoshi",
  57115. },
  57116. "delphox": {
  57117. name: "Delphox",
  57118. },
  57119. "mienshao": {
  57120. name: "Mienshao",
  57121. },
  57122. "inteleon": {
  57123. name: "Inteleon",
  57124. },
  57125. "reshiram": {
  57126. name: "Reshiram",
  57127. },
  57128. "samurott": {
  57129. name: "Samurott",
  57130. },
  57131. }
  57132. ))
  57133. characterMakers.push(() => makeCharacter(
  57134. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57135. {
  57136. front: {
  57137. height: math.unit(4, "feet"),
  57138. name: "Front",
  57139. image: {
  57140. source: "./media/characters/ash-leung/front.svg",
  57141. extra: 1916/1792,
  57142. bottom: 50/1966
  57143. }
  57144. },
  57145. },
  57146. [
  57147. {
  57148. name: "Atomic",
  57149. height: math.unit(1, "angstrom")
  57150. },
  57151. {
  57152. name: "Microscopic",
  57153. height: math.unit(4000, "angstroms")
  57154. },
  57155. {
  57156. name: "Speck",
  57157. height: math.unit(1, "mm")
  57158. },
  57159. {
  57160. name: "Small",
  57161. height: math.unit(1, "inch")
  57162. },
  57163. {
  57164. name: "Normal",
  57165. height: math.unit(4, "feet"),
  57166. default: true
  57167. },
  57168. ]
  57169. ))
  57170. characterMakers.push(() => makeCharacter(
  57171. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57172. {
  57173. frontDressed: {
  57174. height: math.unit(2.08, "meters"),
  57175. weight: math.unit(175, "lb"),
  57176. name: "Front (Dressed)",
  57177. image: {
  57178. source: "./media/characters/carie/front-dressed.svg",
  57179. extra: 456/417,
  57180. bottom: 7/463
  57181. }
  57182. },
  57183. backDressed: {
  57184. height: math.unit(2.08, "meters"),
  57185. weight: math.unit(175, "lb"),
  57186. name: "Back (Dressed)",
  57187. image: {
  57188. source: "./media/characters/carie/back-dressed.svg",
  57189. extra: 455/414,
  57190. bottom: 11/466
  57191. }
  57192. },
  57193. front: {
  57194. height: math.unit(2, "meters"),
  57195. weight: math.unit(175, "lb"),
  57196. name: "Front",
  57197. image: {
  57198. source: "./media/characters/carie/front.svg",
  57199. extra: 438/399,
  57200. bottom: 12/450
  57201. }
  57202. },
  57203. back: {
  57204. height: math.unit(2, "meters"),
  57205. weight: math.unit(175, "lb"),
  57206. name: "Back",
  57207. image: {
  57208. source: "./media/characters/carie/back.svg",
  57209. extra: 438/397,
  57210. bottom: 7/445
  57211. }
  57212. },
  57213. },
  57214. [
  57215. {
  57216. name: "Normal",
  57217. height: math.unit(2.08, "meters"),
  57218. default: true
  57219. },
  57220. {
  57221. name: "Macro",
  57222. height: math.unit(2.08e3, "meters")
  57223. },
  57224. {
  57225. name: "Mega Macro",
  57226. height: math.unit(2.08e6, "meters")
  57227. },
  57228. {
  57229. name: "Giga Macro",
  57230. height: math.unit(2.08e9, "meters")
  57231. },
  57232. {
  57233. name: "Tera Macro",
  57234. height: math.unit(2.08e12, "meters")
  57235. },
  57236. {
  57237. name: "Peta Macro",
  57238. height: math.unit(2.08e15, "meters")
  57239. },
  57240. {
  57241. name: "Exa Macro",
  57242. height: math.unit(2.08e18, "meters")
  57243. },
  57244. {
  57245. name: "Zetta Macro",
  57246. height: math.unit(2.08e21, "meters")
  57247. },
  57248. {
  57249. name: "Yotta Macro",
  57250. height: math.unit(2.08e24, "meters")
  57251. },
  57252. ]
  57253. ))
  57254. characterMakers.push(() => makeCharacter(
  57255. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57256. {
  57257. front: {
  57258. height: math.unit(5 + 2/12, "feet"),
  57259. weight: math.unit(120, "lb"),
  57260. name: "Front",
  57261. image: {
  57262. source: "./media/characters/sai-bree/front.svg",
  57263. extra: 1843/1702,
  57264. bottom: 91/1934
  57265. }
  57266. },
  57267. back: {
  57268. height: math.unit(5 + 2/12, "feet"),
  57269. weight: math.unit(120, "lb"),
  57270. name: "Back",
  57271. image: {
  57272. source: "./media/characters/sai-bree/back.svg",
  57273. extra: 1809/1637,
  57274. bottom: 56/1865
  57275. }
  57276. },
  57277. },
  57278. [
  57279. {
  57280. name: "Normal",
  57281. height: math.unit(5 + 2/12, "feet"),
  57282. default: true
  57283. },
  57284. {
  57285. name: "Macro",
  57286. height: math.unit(500, "feet")
  57287. },
  57288. ]
  57289. ))
  57290. characterMakers.push(() => makeCharacter(
  57291. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57292. {
  57293. side: {
  57294. height: math.unit(0.77, "meters"),
  57295. weight: math.unit(120, "lb"),
  57296. name: "Side",
  57297. image: {
  57298. source: "./media/characters/davwyn/side.svg",
  57299. extra: 1557/1225,
  57300. bottom: 131/1688
  57301. }
  57302. },
  57303. front: {
  57304. height: math.unit(0.835410, "meters"),
  57305. weight: math.unit(120, "lb"),
  57306. name: "Front",
  57307. image: {
  57308. source: "./media/characters/davwyn/front.svg",
  57309. extra: 870/843,
  57310. bottom: 175/1045
  57311. }
  57312. },
  57313. },
  57314. [
  57315. {
  57316. name: "Minidrake",
  57317. height: math.unit(0.77/4, "meters")
  57318. },
  57319. {
  57320. name: "Normal",
  57321. height: math.unit(0.77, "meters"),
  57322. default: true
  57323. },
  57324. ]
  57325. ))
  57326. characterMakers.push(() => makeCharacter(
  57327. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57328. {
  57329. front: {
  57330. height: math.unit(10 + 3/12, "feet"),
  57331. weight: math.unit(2857, "lb"),
  57332. name: "Front",
  57333. image: {
  57334. source: "./media/characters/balans/front.svg",
  57335. extra: 427/402,
  57336. bottom: 26/453
  57337. }
  57338. },
  57339. side: {
  57340. height: math.unit(10 + 3/12, "feet"),
  57341. weight: math.unit(2857, "lb"),
  57342. name: "Side",
  57343. image: {
  57344. source: "./media/characters/balans/side.svg",
  57345. extra: 397/371,
  57346. bottom: 17/414
  57347. }
  57348. },
  57349. back: {
  57350. height: math.unit(10 + 3/12, "feet"),
  57351. weight: math.unit(2857, "lb"),
  57352. name: "Back",
  57353. image: {
  57354. source: "./media/characters/balans/back.svg",
  57355. extra: 408/381,
  57356. bottom: 14/422
  57357. }
  57358. },
  57359. hand: {
  57360. height: math.unit(1.15, "feet"),
  57361. name: "Hand",
  57362. image: {
  57363. source: "./media/characters/balans/hand.svg"
  57364. }
  57365. },
  57366. footRest: {
  57367. height: math.unit(3.1, "feet"),
  57368. name: "Foot (Rest)",
  57369. image: {
  57370. source: "./media/characters/balans/foot-rest.svg"
  57371. }
  57372. },
  57373. footActive: {
  57374. height: math.unit(3.5, "feet"),
  57375. name: "Foot (Active)",
  57376. image: {
  57377. source: "./media/characters/balans/foot-active.svg"
  57378. }
  57379. },
  57380. },
  57381. [
  57382. {
  57383. name: "Normal",
  57384. height: math.unit(10 + 3/12, "feet"),
  57385. default: true
  57386. },
  57387. ]
  57388. ))
  57389. characterMakers.push(() => makeCharacter(
  57390. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57391. {
  57392. side: {
  57393. height: math.unit(9, "meters"),
  57394. weight: math.unit(114, "tonnes"),
  57395. name: "Side",
  57396. image: {
  57397. source: "./media/characters/eldkveikir/side.svg",
  57398. extra: 1927/338,
  57399. bottom: 42/1969
  57400. }
  57401. },
  57402. sitting: {
  57403. height: math.unit(13.4, "meters"),
  57404. weight: math.unit(114, "tonnes"),
  57405. name: "Sitting",
  57406. image: {
  57407. source: "./media/characters/eldkveikir/sitting.svg",
  57408. extra: 1108/963,
  57409. bottom: 610/1718
  57410. }
  57411. },
  57412. maw: {
  57413. height: math.unit(8.36, "meters"),
  57414. name: "Maw",
  57415. image: {
  57416. source: "./media/characters/eldkveikir/maw.svg"
  57417. }
  57418. },
  57419. hand: {
  57420. height: math.unit(4.84, "meters"),
  57421. name: "Hand",
  57422. image: {
  57423. source: "./media/characters/eldkveikir/hand.svg"
  57424. }
  57425. },
  57426. foot: {
  57427. height: math.unit(6.9, "meters"),
  57428. name: "Foot",
  57429. image: {
  57430. source: "./media/characters/eldkveikir/foot.svg"
  57431. }
  57432. },
  57433. genitals: {
  57434. height: math.unit(9.6, "meters"),
  57435. name: "Genitals",
  57436. image: {
  57437. source: "./media/characters/eldkveikir/genitals.svg"
  57438. }
  57439. },
  57440. },
  57441. [
  57442. {
  57443. name: "Normal",
  57444. height: math.unit(9, "meters"),
  57445. default: true
  57446. },
  57447. ]
  57448. ))
  57449. characterMakers.push(() => makeCharacter(
  57450. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57451. {
  57452. front: {
  57453. height: math.unit(14, "feet"),
  57454. weight: math.unit(4100, "lb"),
  57455. name: "Front",
  57456. image: {
  57457. source: "./media/characters/arrow/front.svg",
  57458. extra: 330/318,
  57459. bottom: 56/386
  57460. }
  57461. },
  57462. },
  57463. [
  57464. {
  57465. name: "Normal",
  57466. height: math.unit(14, "feet"),
  57467. default: true
  57468. },
  57469. {
  57470. name: "Minimacro",
  57471. height: math.unit(63, "feet")
  57472. },
  57473. {
  57474. name: "Macro",
  57475. height: math.unit(630, "feet")
  57476. },
  57477. {
  57478. name: "Megamacro",
  57479. height: math.unit(12600, "feet")
  57480. },
  57481. {
  57482. name: "Gigamacro",
  57483. height: math.unit(18000, "miles")
  57484. },
  57485. ]
  57486. ))
  57487. characterMakers.push(() => makeCharacter(
  57488. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57489. {
  57490. front: {
  57491. height: math.unit(10, "feet"),
  57492. weight: math.unit(2.4, "tons"),
  57493. name: "Front",
  57494. image: {
  57495. source: "./media/characters/3yk-k0-unit/front.svg",
  57496. extra: 573/561,
  57497. bottom: 33/606
  57498. }
  57499. },
  57500. back: {
  57501. height: math.unit(10, "feet"),
  57502. weight: math.unit(2.4, "tons"),
  57503. name: "Back",
  57504. image: {
  57505. source: "./media/characters/3yk-k0-unit/back.svg",
  57506. extra: 614/573,
  57507. bottom: 32/646
  57508. }
  57509. },
  57510. maw: {
  57511. height: math.unit(2.15, "feet"),
  57512. name: "Maw",
  57513. image: {
  57514. source: "./media/characters/3yk-k0-unit/maw.svg"
  57515. }
  57516. },
  57517. },
  57518. [
  57519. {
  57520. name: "Normal",
  57521. height: math.unit(10, "feet"),
  57522. default: true
  57523. },
  57524. ]
  57525. ))
  57526. characterMakers.push(() => makeCharacter(
  57527. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57528. {
  57529. front: {
  57530. height: math.unit(8 + 8/12, "feet"),
  57531. name: "Front",
  57532. image: {
  57533. source: "./media/characters/nemo/front.svg",
  57534. extra: 1308/1217,
  57535. bottom: 57/1365
  57536. }
  57537. },
  57538. },
  57539. [
  57540. {
  57541. name: "Normal",
  57542. height: math.unit(8 + 8/12, "feet"),
  57543. default: true
  57544. },
  57545. ]
  57546. ))
  57547. characterMakers.push(() => makeCharacter(
  57548. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57549. {
  57550. front: {
  57551. height: math.unit(8, "feet"),
  57552. weight: math.unit(760, "lb"),
  57553. name: "Front",
  57554. image: {
  57555. source: "./media/characters/rexx/front.svg",
  57556. extra: 786/750,
  57557. bottom: 17/803
  57558. },
  57559. extraAttributes: {
  57560. "pawLength": {
  57561. name: "Paw Length",
  57562. power: 1,
  57563. type: "length",
  57564. base: math.unit(27, "inches")
  57565. },
  57566. }
  57567. },
  57568. },
  57569. [
  57570. {
  57571. name: "Micro",
  57572. height: math.unit(2, "inches")
  57573. },
  57574. {
  57575. name: "Normal",
  57576. height: math.unit(8, "feet"),
  57577. default: true
  57578. },
  57579. {
  57580. name: "Macro",
  57581. height: math.unit(150, "feet")
  57582. },
  57583. ]
  57584. ))
  57585. characterMakers.push(() => makeCharacter(
  57586. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57587. {
  57588. front: {
  57589. height: math.unit(18, "feet"),
  57590. weight: math.unit(1975, "lb"),
  57591. name: "Front",
  57592. image: {
  57593. source: "./media/characters/draco/front.svg",
  57594. extra: 1325/1241,
  57595. bottom: 83/1408
  57596. }
  57597. },
  57598. back: {
  57599. height: math.unit(18, "feet"),
  57600. weight: math.unit(1975, "lb"),
  57601. name: "Back",
  57602. image: {
  57603. source: "./media/characters/draco/back.svg",
  57604. extra: 1332/1250,
  57605. bottom: 43/1375
  57606. }
  57607. },
  57608. dick: {
  57609. height: math.unit(7.5, "feet"),
  57610. name: "Dick",
  57611. image: {
  57612. source: "./media/characters/draco/dick.svg"
  57613. }
  57614. },
  57615. },
  57616. [
  57617. {
  57618. name: "Normal",
  57619. height: math.unit(18, "feet"),
  57620. default: true
  57621. },
  57622. ]
  57623. ))
  57624. characterMakers.push(() => makeCharacter(
  57625. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57626. {
  57627. front: {
  57628. height: math.unit(3.2, "meters"),
  57629. name: "Front",
  57630. image: {
  57631. source: "./media/characters/harriett/front.svg",
  57632. extra: 1966/1915,
  57633. bottom: 9/1975
  57634. }
  57635. },
  57636. },
  57637. [
  57638. {
  57639. name: "Normal",
  57640. height: math.unit(3.2, "meters"),
  57641. default: true
  57642. },
  57643. ]
  57644. ))
  57645. characterMakers.push(() => makeCharacter(
  57646. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57647. {
  57648. sitting: {
  57649. height: math.unit(0.8, "meter"),
  57650. name: "Sitting",
  57651. image: {
  57652. source: "./media/characters/serpentus/sitting.svg",
  57653. extra: 293/290,
  57654. bottom: 140/433
  57655. }
  57656. },
  57657. },
  57658. [
  57659. {
  57660. name: "Normal",
  57661. height: math.unit(0.8, "meter"),
  57662. default: true
  57663. },
  57664. ]
  57665. ))
  57666. characterMakers.push(() => makeCharacter(
  57667. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57668. {
  57669. front: {
  57670. height: math.unit(5.7174385736, "feet"),
  57671. name: "Front",
  57672. image: {
  57673. source: "./media/characters/nova-polecat/front.svg",
  57674. extra: 1317/1216,
  57675. bottom: 92/1409
  57676. }
  57677. },
  57678. },
  57679. [
  57680. {
  57681. name: "Normal",
  57682. height: math.unit(5.7174385736, "feet"),
  57683. default: true
  57684. },
  57685. ]
  57686. ))
  57687. characterMakers.push(() => makeCharacter(
  57688. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57689. {
  57690. front: {
  57691. height: math.unit(5 + 4/12, "feet"),
  57692. weight: math.unit(250, "lb"),
  57693. name: "Front",
  57694. image: {
  57695. source: "./media/characters/mook/front.svg",
  57696. extra: 1088/1037,
  57697. bottom: 132/1220
  57698. }
  57699. },
  57700. back: {
  57701. height: math.unit(5 + 1/12, "feet"),
  57702. weight: math.unit(250, "lb"),
  57703. name: "Back",
  57704. image: {
  57705. source: "./media/characters/mook/back.svg",
  57706. extra: 1184/905,
  57707. bottom: 96/1280
  57708. }
  57709. },
  57710. head: {
  57711. height: math.unit(1.85, "feet"),
  57712. name: "Head",
  57713. image: {
  57714. source: "./media/characters/mook/head.svg"
  57715. }
  57716. },
  57717. hand: {
  57718. height: math.unit(1.9, "feet"),
  57719. name: "Hand",
  57720. image: {
  57721. source: "./media/characters/mook/hand.svg"
  57722. }
  57723. },
  57724. palm: {
  57725. height: math.unit(1.84, "feet"),
  57726. name: "Palm",
  57727. image: {
  57728. source: "./media/characters/mook/palm.svg"
  57729. }
  57730. },
  57731. foot: {
  57732. height: math.unit(1.44, "feet"),
  57733. name: "Foot",
  57734. image: {
  57735. source: "./media/characters/mook/foot.svg"
  57736. }
  57737. },
  57738. sole: {
  57739. height: math.unit(1.44, "feet"),
  57740. name: "Sole",
  57741. image: {
  57742. source: "./media/characters/mook/sole.svg"
  57743. }
  57744. },
  57745. },
  57746. [
  57747. {
  57748. name: "Normal",
  57749. height: math.unit(5 + 4/12, "feet"),
  57750. default: true
  57751. },
  57752. {
  57753. name: "Big",
  57754. height: math.unit(12, "feet")
  57755. },
  57756. ]
  57757. ))
  57758. characterMakers.push(() => makeCharacter(
  57759. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57760. {
  57761. front: {
  57762. height: math.unit(6 + 10/12, "feet"),
  57763. weight: math.unit(233, "lb"),
  57764. name: "Front",
  57765. image: {
  57766. source: "./media/characters/kayla/front.svg",
  57767. extra: 1850/1775,
  57768. bottom: 65/1915
  57769. }
  57770. },
  57771. },
  57772. [
  57773. {
  57774. name: "Normal",
  57775. height: math.unit(6 + 10/12, "feet"),
  57776. default: true
  57777. },
  57778. {
  57779. name: "Amazonian",
  57780. height: math.unit(12 + 5/12, "feet")
  57781. },
  57782. {
  57783. name: "Mini Giantess",
  57784. height: math.unit(26, "feet")
  57785. },
  57786. {
  57787. name: "Giantess",
  57788. height: math.unit(200, "feet")
  57789. },
  57790. {
  57791. name: "Mega Giantess",
  57792. height: math.unit(2500, "feet")
  57793. },
  57794. {
  57795. name: "City Sized",
  57796. height: math.unit(50, "miles")
  57797. },
  57798. {
  57799. name: "Country Sized",
  57800. height: math.unit(500, "miles")
  57801. },
  57802. {
  57803. name: "Continent Sized",
  57804. height: math.unit(2500, "miles")
  57805. },
  57806. {
  57807. name: "Planet Sized",
  57808. height: math.unit(10000, "miles")
  57809. },
  57810. {
  57811. name: "Star Sized",
  57812. height: math.unit(5e6, "miles")
  57813. },
  57814. {
  57815. name: "Solar System Sized",
  57816. height: math.unit(125, "AU")
  57817. },
  57818. {
  57819. name: "Galaxy Sized",
  57820. height: math.unit(300e3, "lightyears")
  57821. },
  57822. {
  57823. name: "Universe Sized",
  57824. height: math.unit(200e9, "lightyears")
  57825. },
  57826. {
  57827. name: "Multiverse Sized",
  57828. height: math.unit(20, "exauniverses")
  57829. },
  57830. {
  57831. name: "Mother of Existence",
  57832. height: math.unit(1e6, "yottauniverses")
  57833. },
  57834. ]
  57835. ))
  57836. characterMakers.push(() => makeCharacter(
  57837. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57838. {
  57839. side: {
  57840. height: math.unit(9.5, "meters"),
  57841. name: "Side",
  57842. image: {
  57843. source: "./media/characters/kulve-ragnarok/side.svg",
  57844. extra: 364/326,
  57845. bottom: 50/414
  57846. }
  57847. },
  57848. },
  57849. [
  57850. {
  57851. name: "Normal",
  57852. height: math.unit(9.5, "meters"),
  57853. default: true
  57854. },
  57855. ]
  57856. ))
  57857. characterMakers.push(() => makeCharacter(
  57858. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57859. {
  57860. front: {
  57861. height: math.unit(8 + 9/12, "feet"),
  57862. name: "Front",
  57863. image: {
  57864. source: "./media/characters/atlas-goat/front.svg",
  57865. extra: 1462/1323,
  57866. bottom: 12/1474
  57867. }
  57868. },
  57869. },
  57870. [
  57871. {
  57872. name: "Normal",
  57873. height: math.unit(8 + 9/12, "feet"),
  57874. default: true
  57875. },
  57876. {
  57877. name: "Skyline",
  57878. height: math.unit(845, "feet")
  57879. },
  57880. {
  57881. name: "Orbital",
  57882. height: math.unit(93000, "miles")
  57883. },
  57884. {
  57885. name: "Constellation",
  57886. height: math.unit(27000, "lightyears")
  57887. },
  57888. ]
  57889. ))
  57890. characterMakers.push(() => makeCharacter(
  57891. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57892. {
  57893. side: {
  57894. height: math.unit(1.8, "meters"),
  57895. weight: math.unit(120, "kg"),
  57896. name: "Side",
  57897. image: {
  57898. source: "./media/characters/xie-ling/side.svg",
  57899. extra: 646/574,
  57900. bottom: 44/690
  57901. }
  57902. },
  57903. },
  57904. [
  57905. {
  57906. name: "Tiny",
  57907. height: math.unit(1.80, "meters")
  57908. },
  57909. {
  57910. name: "Small",
  57911. height: math.unit(6, "meters")
  57912. },
  57913. {
  57914. name: "Medium",
  57915. height: math.unit(15, "meters")
  57916. },
  57917. {
  57918. name: "Normal",
  57919. height: math.unit(30, "meters"),
  57920. default: true
  57921. },
  57922. {
  57923. name: "Above Normal",
  57924. height: math.unit(60, "meters")
  57925. },
  57926. {
  57927. name: "Big",
  57928. height: math.unit(220, "meters")
  57929. },
  57930. {
  57931. name: "Giant",
  57932. height: math.unit(2.2, "km")
  57933. },
  57934. {
  57935. name: "Macro",
  57936. height: math.unit(25, "km")
  57937. },
  57938. {
  57939. name: "Mega Macro",
  57940. height: math.unit(350, "km")
  57941. },
  57942. {
  57943. name: "Mega Macro+",
  57944. height: math.unit(5000, "km")
  57945. },
  57946. {
  57947. name: "Goddess",
  57948. height: math.unit(3, "multiverses")
  57949. },
  57950. ]
  57951. ))
  57952. characterMakers.push(() => makeCharacter(
  57953. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57954. {
  57955. frontSfw: {
  57956. height: math.unit(5 + 11/12, "feet"),
  57957. weight: math.unit(210, "lb"),
  57958. name: "Front",
  57959. image: {
  57960. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57961. extra: 1928/1821,
  57962. bottom: 45/1973
  57963. }
  57964. },
  57965. backSfw: {
  57966. height: math.unit(5 + 11/12, "feet"),
  57967. weight: math.unit(210, "lb"),
  57968. name: "Back",
  57969. image: {
  57970. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57971. extra: 1920/1813,
  57972. bottom: 34/1954
  57973. }
  57974. },
  57975. frontNsfw: {
  57976. height: math.unit(5 + 11/12, "feet"),
  57977. weight: math.unit(210, "lb"),
  57978. name: "Front (NSFW)",
  57979. image: {
  57980. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57981. extra: 1928/1821,
  57982. bottom: 45/1973
  57983. }
  57984. },
  57985. backNsfw: {
  57986. height: math.unit(5 + 11/12, "feet"),
  57987. weight: math.unit(210, "lb"),
  57988. name: "Back (NSFW)",
  57989. image: {
  57990. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57991. extra: 1920/1813,
  57992. bottom: 34/1954
  57993. }
  57994. },
  57995. },
  57996. [
  57997. {
  57998. name: "Normal",
  57999. height: math.unit(5 + 11/12, "feet"),
  58000. default: true
  58001. },
  58002. {
  58003. name: "Goddess",
  58004. height: math.unit(20 + 3/12, "feet")
  58005. },
  58006. {
  58007. name: "Breaker of Man",
  58008. height: math.unit(329 + 9/12, "feet")
  58009. },
  58010. {
  58011. name: "Solar Justice",
  58012. height: math.unit(0.6, "solarradii")
  58013. },
  58014. {
  58015. name: "She Who Judges",
  58016. height: math.unit(1, "universe")
  58017. },
  58018. ]
  58019. ))
  58020. characterMakers.push(() => makeCharacter(
  58021. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58022. {
  58023. casual_front: {
  58024. height: math.unit(6 + 1/12, "feet"),
  58025. weight: math.unit(190, "lb"),
  58026. preyCapacity: math.unit(1, "people"),
  58027. name: "Front",
  58028. image: {
  58029. source: "./media/characters/managarmr/casual-front.svg",
  58030. extra: 411/381,
  58031. bottom: 15/426
  58032. },
  58033. extraAttributes: {
  58034. "pawSize": {
  58035. name: "Paw Size",
  58036. power: 1,
  58037. type: "length",
  58038. base: math.unit(0.2, "meters")
  58039. },
  58040. },
  58041. form: "casual",
  58042. },
  58043. casual_back: {
  58044. height: math.unit(6 + 1/12, "feet"),
  58045. weight: math.unit(190, "lb"),
  58046. preyCapacity: math.unit(1, "people"),
  58047. name: "Back",
  58048. image: {
  58049. source: "./media/characters/managarmr/casual-back.svg",
  58050. extra: 413/383,
  58051. bottom: 13/426
  58052. },
  58053. extraAttributes: {
  58054. "pawSize": {
  58055. name: "Paw Size",
  58056. power: 1,
  58057. type: "length",
  58058. base: math.unit(0.2, "meters")
  58059. },
  58060. },
  58061. form: "casual",
  58062. },
  58063. base_front: {
  58064. height: math.unit(7, "feet"),
  58065. weight: math.unit(210, "lb"),
  58066. preyCapacity: math.unit(2, "people"),
  58067. name: "Front",
  58068. image: {
  58069. source: "./media/characters/managarmr/base-front.svg",
  58070. extra: 580/485,
  58071. bottom: 32/612
  58072. },
  58073. extraAttributes: {
  58074. "wingspan": {
  58075. name: "Wingspan",
  58076. power: 1,
  58077. type: "length",
  58078. base: math.unit(4, "meters")
  58079. },
  58080. "pawSize": {
  58081. name: "Paw Size",
  58082. power: 1,
  58083. type: "length",
  58084. base: math.unit(0.2, "meters")
  58085. },
  58086. },
  58087. form: "base",
  58088. },
  58089. "true-divine_front": {
  58090. height: math.unit(40, "feet"),
  58091. weight: math.unit(39000, "lb"),
  58092. preyCapacity: math.unit(375, "people"),
  58093. name: "Front",
  58094. image: {
  58095. source: "./media/characters/managarmr/true-divine-front.svg",
  58096. extra: 725/573,
  58097. bottom: 120/845
  58098. },
  58099. extraAttributes: {
  58100. "wingspan": {
  58101. name: "Wingspan",
  58102. power: 1,
  58103. type: "length",
  58104. base: math.unit(20, "meters")
  58105. },
  58106. "pawSize": {
  58107. name: "Paw Size",
  58108. power: 1,
  58109. type: "length",
  58110. base: math.unit(1.5, "meters")
  58111. },
  58112. },
  58113. form: "true-divine",
  58114. },
  58115. },
  58116. [
  58117. {
  58118. name: "Normal",
  58119. height: math.unit(6 + 1/12, "feet"),
  58120. form: "casual",
  58121. default: true
  58122. },
  58123. {
  58124. name: "Normal",
  58125. height: math.unit(7, "feet"),
  58126. form: "base",
  58127. default: true
  58128. },
  58129. ],
  58130. {
  58131. "casual": {
  58132. name: "Casual",
  58133. default: true
  58134. },
  58135. "base": {
  58136. name: "Base",
  58137. },
  58138. "true-divine": {
  58139. name: "True Divine",
  58140. },
  58141. }
  58142. ))
  58143. characterMakers.push(() => makeCharacter(
  58144. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58145. {
  58146. front: {
  58147. height: math.unit(1.8, "meters"),
  58148. weight: math.unit(110, "kg"),
  58149. name: "Front",
  58150. image: {
  58151. source: "./media/characters/mystra/front.svg",
  58152. extra: 529/442,
  58153. bottom: 31/560
  58154. }
  58155. },
  58156. frontLewd: {
  58157. height: math.unit(1.8, "meters"),
  58158. weight: math.unit(110, "kg"),
  58159. name: "Front (Lewd)",
  58160. image: {
  58161. source: "./media/characters/mystra/front-lewd.svg",
  58162. extra: 529/442,
  58163. bottom: 31/560
  58164. }
  58165. },
  58166. head: {
  58167. height: math.unit(1.63, "feet"),
  58168. name: "Head",
  58169. image: {
  58170. source: "./media/characters/mystra/head.svg"
  58171. }
  58172. },
  58173. paw: {
  58174. height: math.unit(1.9, "feet"),
  58175. name: "Paw",
  58176. image: {
  58177. source: "./media/characters/mystra/paw.svg"
  58178. }
  58179. },
  58180. },
  58181. [
  58182. {
  58183. name: "Incognito",
  58184. height: math.unit(2.3, "meters")
  58185. },
  58186. {
  58187. name: "Small Macro",
  58188. height: math.unit(300, "meters")
  58189. },
  58190. {
  58191. name: "Small Mega",
  58192. height: math.unit(2, "km")
  58193. },
  58194. {
  58195. name: "Mega",
  58196. height: math.unit(30, "km")
  58197. },
  58198. {
  58199. name: "Small Giga",
  58200. height: math.unit(100, "km")
  58201. },
  58202. {
  58203. name: "Giga",
  58204. height: math.unit(1000, "km"),
  58205. default: true
  58206. },
  58207. {
  58208. name: "Continental",
  58209. height: math.unit(5000, "km")
  58210. },
  58211. {
  58212. name: "Terra",
  58213. height: math.unit(20000, "km")
  58214. },
  58215. {
  58216. name: "Solar",
  58217. height: math.unit(2e6, "km")
  58218. },
  58219. {
  58220. name: "Galactic",
  58221. height: math.unit(528502, "lightyears")
  58222. },
  58223. {
  58224. name: "Universal",
  58225. height: math.unit(20, "universes")
  58226. },
  58227. ]
  58228. ))
  58229. characterMakers.push(() => makeCharacter(
  58230. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58231. {
  58232. front: {
  58233. height: math.unit(2, "meters"),
  58234. weight: math.unit(140, "kg"),
  58235. name: "Front",
  58236. image: {
  58237. source: "./media/characters/caleb/front.svg",
  58238. extra: 873/817,
  58239. bottom: 47/920
  58240. }
  58241. },
  58242. back: {
  58243. height: math.unit(2, "meters"),
  58244. weight: math.unit(140, "kg"),
  58245. name: "Back",
  58246. image: {
  58247. source: "./media/characters/caleb/back.svg",
  58248. extra: 877/828,
  58249. bottom: 24/901
  58250. }
  58251. },
  58252. snakeTail: {
  58253. height: math.unit(1.44, "feet"),
  58254. name: "Snake Tail",
  58255. image: {
  58256. source: "./media/characters/caleb/snake-tail.svg"
  58257. }
  58258. },
  58259. dick: {
  58260. height: math.unit(2.6, "feet"),
  58261. name: "Dick",
  58262. image: {
  58263. source: "./media/characters/caleb/dick.svg"
  58264. }
  58265. },
  58266. },
  58267. [
  58268. {
  58269. name: "Incognito",
  58270. height: math.unit(3, "meters")
  58271. },
  58272. {
  58273. name: "Home Size",
  58274. height: math.unit(200, "meters"),
  58275. default: true
  58276. },
  58277. {
  58278. name: "Macro",
  58279. height: math.unit(500, "meters")
  58280. },
  58281. {
  58282. name: "Big Macro",
  58283. height: math.unit(5, "km")
  58284. },
  58285. {
  58286. name: "Giga",
  58287. height: math.unit(250, "km")
  58288. },
  58289. {
  58290. name: "Giga+",
  58291. height: math.unit(5000, "km")
  58292. },
  58293. {
  58294. name: "Small Terra",
  58295. height: math.unit(35e3, "km")
  58296. },
  58297. {
  58298. name: "Terra",
  58299. height: math.unit(2e6, "km")
  58300. },
  58301. {
  58302. name: "Terra+",
  58303. height: math.unit(1.5e6, "km")
  58304. },
  58305. ]
  58306. ))
  58307. characterMakers.push(() => makeCharacter(
  58308. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58309. {
  58310. front: {
  58311. height: math.unit(2, "meters"),
  58312. weight: math.unit(120, "kg"),
  58313. name: "Front",
  58314. image: {
  58315. source: "./media/characters/gilirian/front.svg",
  58316. extra: 805/737,
  58317. bottom: 13/818
  58318. }
  58319. },
  58320. side: {
  58321. height: math.unit(2, "meters"),
  58322. weight: math.unit(120, "kg"),
  58323. name: "Side",
  58324. image: {
  58325. source: "./media/characters/gilirian/side.svg",
  58326. extra: 810/746,
  58327. bottom: 6/816
  58328. }
  58329. },
  58330. back: {
  58331. height: math.unit(2, "meters"),
  58332. weight: math.unit(120, "kg"),
  58333. name: "Back",
  58334. image: {
  58335. source: "./media/characters/gilirian/back.svg",
  58336. extra: 815/745,
  58337. bottom: 15/830
  58338. }
  58339. },
  58340. frontNsfw: {
  58341. height: math.unit(2, "meters"),
  58342. weight: math.unit(120, "kg"),
  58343. name: "Front (NSFW)",
  58344. image: {
  58345. source: "./media/characters/gilirian/front-nsfw.svg",
  58346. extra: 805/737,
  58347. bottom: 13/818
  58348. }
  58349. },
  58350. sideNsfw: {
  58351. height: math.unit(2, "meters"),
  58352. weight: math.unit(120, "kg"),
  58353. name: "Side (NSFW)",
  58354. image: {
  58355. source: "./media/characters/gilirian/side-nsfw.svg",
  58356. extra: 810/746,
  58357. bottom: 6/816
  58358. }
  58359. },
  58360. },
  58361. [
  58362. {
  58363. name: "Incognito",
  58364. height: math.unit(2, "meters"),
  58365. default: true
  58366. },
  58367. {
  58368. name: "Macro",
  58369. height: math.unit(250, "meters")
  58370. },
  58371. {
  58372. name: "Big Macro",
  58373. height: math.unit(1500, "meters")
  58374. },
  58375. {
  58376. name: "Mega",
  58377. height: math.unit(40, "km")
  58378. },
  58379. {
  58380. name: "Giga",
  58381. height: math.unit(300, "km")
  58382. },
  58383. {
  58384. name: "Extra Giga",
  58385. height: math.unit(5000, "km")
  58386. },
  58387. {
  58388. name: "Small Terra",
  58389. height: math.unit(10e3, "km")
  58390. },
  58391. {
  58392. name: "Terra",
  58393. height: math.unit(3e5, "km")
  58394. },
  58395. {
  58396. name: "Galactic",
  58397. height: math.unit(369950, "lightyears")
  58398. },
  58399. ]
  58400. ))
  58401. characterMakers.push(() => makeCharacter(
  58402. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58403. {
  58404. front: {
  58405. height: math.unit(2.5, "meters"),
  58406. weight: math.unit(230, "lb"),
  58407. name: "Front",
  58408. image: {
  58409. source: "./media/characters/tarken/front.svg",
  58410. extra: 764/720,
  58411. bottom: 49/813
  58412. }
  58413. },
  58414. back: {
  58415. height: math.unit(2.5, "meters"),
  58416. weight: math.unit(230, "lb"),
  58417. name: "Back",
  58418. image: {
  58419. source: "./media/characters/tarken/back.svg",
  58420. extra: 756/720,
  58421. bottom: 35/791
  58422. }
  58423. },
  58424. frontNsfw: {
  58425. height: math.unit(2.5, "meters"),
  58426. weight: math.unit(230, "lb"),
  58427. name: "Front (NSFW)",
  58428. image: {
  58429. source: "./media/characters/tarken/front-nsfw.svg",
  58430. extra: 764/720,
  58431. bottom: 49/813
  58432. }
  58433. },
  58434. backNsfw: {
  58435. height: math.unit(2.5, "meters"),
  58436. weight: math.unit(230, "lb"),
  58437. name: "Back (NSFW)",
  58438. image: {
  58439. source: "./media/characters/tarken/back-nsfw.svg",
  58440. extra: 756/720,
  58441. bottom: 35/791
  58442. }
  58443. },
  58444. head: {
  58445. height: math.unit(2.22, "feet"),
  58446. name: "Head",
  58447. image: {
  58448. source: "./media/characters/tarken/head.svg"
  58449. }
  58450. },
  58451. tail: {
  58452. height: math.unit(5.25, "feet"),
  58453. name: "Tail",
  58454. image: {
  58455. source: "./media/characters/tarken/tail.svg"
  58456. }
  58457. },
  58458. dick: {
  58459. height: math.unit(1.95, "feet"),
  58460. name: "Dick",
  58461. image: {
  58462. source: "./media/characters/tarken/dick.svg"
  58463. }
  58464. },
  58465. hand: {
  58466. height: math.unit(1.78, "feet"),
  58467. name: "Hand",
  58468. image: {
  58469. source: "./media/characters/tarken/hand.svg"
  58470. }
  58471. },
  58472. beam: {
  58473. height: math.unit(1.5, "feet"),
  58474. name: "Beam",
  58475. image: {
  58476. source: "./media/characters/tarken/beam.svg"
  58477. }
  58478. },
  58479. },
  58480. [
  58481. {
  58482. name: "Original Size",
  58483. height: math.unit(2.5, "meters")
  58484. },
  58485. {
  58486. name: "Macro",
  58487. height: math.unit(150, "meters"),
  58488. default: true
  58489. },
  58490. {
  58491. name: "Macro+",
  58492. height: math.unit(300, "meters")
  58493. },
  58494. {
  58495. name: "Mega",
  58496. height: math.unit(2, "km")
  58497. },
  58498. {
  58499. name: "Mega+",
  58500. height: math.unit(35, "km")
  58501. },
  58502.  {
  58503. name: "Mega++",
  58504. height: math.unit(60, "km")
  58505. },
  58506. {
  58507. name: "Giga",
  58508. height: math.unit(200, "km")
  58509. },
  58510. {
  58511. name: "Giga+",
  58512. height: math.unit(2500, "km")
  58513. },
  58514. {
  58515. name: "Giga++",
  58516. height: math.unit(6600, "km")
  58517. },
  58518. {
  58519. name: "Terra",
  58520. height: math.unit(20000, "km")
  58521. },
  58522. {
  58523. name: "Terra+",
  58524. height: math.unit(300000, "km")
  58525. },
  58526. ]
  58527. ))
  58528. characterMakers.push(() => makeCharacter(
  58529. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58530. {
  58531. magpie_dressed: {
  58532. height: math.unit(1.7, "meters"),
  58533. weight: math.unit(70, "kg"),
  58534. name: "Dressed",
  58535. image: {
  58536. source: "./media/characters/otreus/magpie-dressed.svg",
  58537. extra: 691/672,
  58538. bottom: 116/807
  58539. },
  58540. form: "magpie",
  58541. default: true
  58542. },
  58543. magpie_nude: {
  58544. height: math.unit(1.7, "meters"),
  58545. weight: math.unit(70, "kg"),
  58546. name: "Nude",
  58547. image: {
  58548. source: "./media/characters/otreus/magpie-nude.svg",
  58549. extra: 691/672,
  58550. bottom: 116/807
  58551. },
  58552. form: "magpie",
  58553. },
  58554. magpie_dressedLewd: {
  58555. height: math.unit(1.7, "meters"),
  58556. weight: math.unit(70, "kg"),
  58557. name: "Dressed (Lewd)",
  58558. image: {
  58559. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58560. extra: 691/672,
  58561. bottom: 116/807
  58562. },
  58563. form: "magpie",
  58564. },
  58565. magpie_nudeLewd: {
  58566. height: math.unit(1.7, "meters"),
  58567. weight: math.unit(70, "kg"),
  58568. name: "Nude (Lewd)",
  58569. image: {
  58570. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58571. extra: 691/672,
  58572. bottom: 116/807
  58573. },
  58574. form: "magpie",
  58575. },
  58576. magpie_leftFoot: {
  58577. height: math.unit(1.58, "feet"),
  58578. name: "Left Foot",
  58579. image: {
  58580. source: "./media/characters/otreus/magpie-left-foot.svg"
  58581. },
  58582. form: "magpie",
  58583. },
  58584. magpie_rightFoot: {
  58585. height: math.unit(1.58, "feet"),
  58586. name: "Right Foot",
  58587. image: {
  58588. source: "./media/characters/otreus/magpie-right-foot.svg"
  58589. },
  58590. form: "magpie",
  58591. },
  58592. magpie_wingspan: {
  58593. height: math.unit(2, "meters"),
  58594. weight: math.unit(70, "kg"),
  58595. name: "Wingspan",
  58596. image: {
  58597. source: "./media/characters/otreus/magpie-wingspan.svg"
  58598. },
  58599. extraAttributes: {
  58600. "wingspan": {
  58601. name: "Wingspan",
  58602. power: 1,
  58603. type: "length",
  58604. base: math.unit(3.35, "meters")
  58605. },
  58606. },
  58607. form: "magpie",
  58608. },
  58609. hippogriff_dressed: {
  58610. height: math.unit(1.7, "meters"),
  58611. weight: math.unit(70, "kg"),
  58612. name: "Dressed",
  58613. image: {
  58614. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58615. extra: 710/689,
  58616. bottom: 67/777
  58617. },
  58618. form: "hippogriff",
  58619. default: true
  58620. },
  58621. hippogriff_nude: {
  58622. height: math.unit(1.7, "meters"),
  58623. weight: math.unit(70, "kg"),
  58624. name: "Nude",
  58625. image: {
  58626. source: "./media/characters/otreus/hippogriff-nude.svg",
  58627. extra: 710/689,
  58628. bottom: 67/777
  58629. },
  58630. form: "hippogriff",
  58631. },
  58632. hippogriff_dressedLewd: {
  58633. height: math.unit(1.7, "meters"),
  58634. weight: math.unit(70, "kg"),
  58635. name: "Dressed (Lewd)",
  58636. image: {
  58637. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58638. extra: 710/689,
  58639. bottom: 67/777
  58640. },
  58641. form: "hippogriff",
  58642. },
  58643. hippogriff_nudeLewd: {
  58644. height: math.unit(1.7, "meters"),
  58645. weight: math.unit(70, "kg"),
  58646. name: "Nude (Lewd)",
  58647. image: {
  58648. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58649. extra: 710/689,
  58650. bottom: 67/777
  58651. },
  58652. form: "hippogriff",
  58653. },
  58654. },
  58655. [
  58656. {
  58657. name: "Original Size",
  58658. height: math.unit(1.7, "meters"),
  58659. allForms: true
  58660. },
  58661. {
  58662. name: "Incognito Size",
  58663. height: math.unit(2, "meters"),
  58664. allForms: true
  58665. },
  58666. {
  58667. name: "Mega",
  58668. height: math.unit(2, "km"),
  58669. allForms: true
  58670. },
  58671. {
  58672. name: "Mega+",
  58673. height: math.unit(40, "km"),
  58674. allForms: true
  58675. },
  58676. {
  58677. name: "Giga",
  58678. height: math.unit(250, "km"),
  58679. allForms: true
  58680. },
  58681. {
  58682. name: "Giga+",
  58683. height: math.unit(3000, "km"),
  58684. allForms: true
  58685. },
  58686. {
  58687. name: "Terra",
  58688. height: math.unit(20000, "km"),
  58689. allForms: true
  58690. },
  58691. {
  58692. name: "Solar (Home Size)",
  58693. height: math.unit(3e6, "km"),
  58694. allForms: true,
  58695. default: true
  58696. },
  58697. ],
  58698. {
  58699. "magpie": {
  58700. name: "Magpie",
  58701. default: true
  58702. },
  58703. "hippogriff": {
  58704. name: "Hippogriff",
  58705. },
  58706. }
  58707. ))
  58708. characterMakers.push(() => makeCharacter(
  58709. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58710. {
  58711. frontDressed: {
  58712. height: math.unit(1.8, "meters"),
  58713. weight: math.unit(90, "kg"),
  58714. name: "Front (Dressed)",
  58715. image: {
  58716. source: "./media/characters/thalia/front-dressed.svg",
  58717. extra: 478/402,
  58718. bottom: 55/533
  58719. }
  58720. },
  58721. backDressed: {
  58722. height: math.unit(1.8, "meters"),
  58723. weight: math.unit(90, "kg"),
  58724. name: "Back (Dressed)",
  58725. image: {
  58726. source: "./media/characters/thalia/back-dressed.svg",
  58727. extra: 500/424,
  58728. bottom: 15/515
  58729. }
  58730. },
  58731. frontNude: {
  58732. height: math.unit(1.8, "meters"),
  58733. weight: math.unit(90, "kg"),
  58734. name: "Front (Nude)",
  58735. image: {
  58736. source: "./media/characters/thalia/front-nude.svg",
  58737. extra: 478/402,
  58738. bottom: 55/533
  58739. }
  58740. },
  58741. backNude: {
  58742. height: math.unit(1.8, "meters"),
  58743. weight: math.unit(90, "kg"),
  58744. name: "Back (Nude)",
  58745. image: {
  58746. source: "./media/characters/thalia/back-nude.svg",
  58747. extra: 500/424,
  58748. bottom: 15/515
  58749. }
  58750. },
  58751. },
  58752. [
  58753. {
  58754. name: "Incognito",
  58755. height: math.unit(3, "meters")
  58756. },
  58757. {
  58758. name: "Macro",
  58759. height: math.unit(500, "meters")
  58760. },
  58761. {
  58762. name: "Mega",
  58763. height: math.unit(5, "km")
  58764. },
  58765. {
  58766. name: "Mega+",
  58767. height: math.unit(30, "km")
  58768. },
  58769. {
  58770. name: "Giga",
  58771. height: math.unit(350, "km")
  58772. },
  58773. {
  58774. name: "Giga+",
  58775. height: math.unit(4000, "km")
  58776. },
  58777. {
  58778. name: "Terra",
  58779. height: math.unit(35000, "km")
  58780. },
  58781. {
  58782. name: "Original Size",
  58783. height: math.unit(130000, "km")
  58784. },
  58785. {
  58786. name: "Solar (Home Size)",
  58787. height: math.unit(4e6, "km"),
  58788. default: true
  58789. },
  58790. ]
  58791. ))
  58792. characterMakers.push(() => makeCharacter(
  58793. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58794. {
  58795. front: {
  58796. height: math.unit(1.8, "meters"),
  58797. weight: math.unit(95, "kg"),
  58798. name: "Front",
  58799. image: {
  58800. source: "./media/characters/shango/front.svg",
  58801. extra: 1925/1774,
  58802. bottom: 67/1992
  58803. }
  58804. },
  58805. back: {
  58806. height: math.unit(1.8, "meters"),
  58807. weight: math.unit(95, "kg"),
  58808. name: "Back",
  58809. image: {
  58810. source: "./media/characters/shango/back.svg",
  58811. extra: 1915/1766,
  58812. bottom: 52/1967
  58813. }
  58814. },
  58815. frontLewd: {
  58816. height: math.unit(1.8, "meters"),
  58817. weight: math.unit(95, "kg"),
  58818. name: "Front (Lewd)",
  58819. image: {
  58820. source: "./media/characters/shango/front-lewd.svg",
  58821. extra: 1925/1774,
  58822. bottom: 67/1992
  58823. }
  58824. },
  58825. backLewd: {
  58826. height: math.unit(1.8, "meters"),
  58827. weight: math.unit(95, "kg"),
  58828. name: "Back (Lewd)",
  58829. image: {
  58830. source: "./media/characters/shango/back-lewd.svg",
  58831. extra: 1915/1766,
  58832. bottom: 52/1967
  58833. }
  58834. },
  58835. maw: {
  58836. height: math.unit(1.64, "feet"),
  58837. name: "Maw",
  58838. image: {
  58839. source: "./media/characters/shango/maw.svg"
  58840. }
  58841. },
  58842. dick: {
  58843. height: math.unit(2.14, "feet"),
  58844. name: "Dick",
  58845. image: {
  58846. source: "./media/characters/shango/dick.svg"
  58847. }
  58848. },
  58849. },
  58850. [
  58851. {
  58852. name: "Incognito",
  58853. height: math.unit(1.8, "meters")
  58854. },
  58855. {
  58856. name: "Home Size",
  58857. height: math.unit(60, "meters"),
  58858. default: true
  58859. },
  58860. {
  58861. name: "Macro",
  58862. height: math.unit(450, "meters")
  58863. },
  58864. {
  58865. name: "Mega",
  58866. height: math.unit(6, "km")
  58867. },
  58868. {
  58869. name: "Mega+",
  58870. height: math.unit(35, "km")
  58871. },
  58872. {
  58873. name: "Giga",
  58874. height: math.unit(500, "km")
  58875. },
  58876. {
  58877. name: "Giga+",
  58878. height: math.unit(5000, "km")
  58879. },
  58880. {
  58881. name: "Terra",
  58882. height: math.unit(60000, "km")
  58883. },
  58884. {
  58885. name: "Terra+",
  58886. height: math.unit(400000, "km")
  58887. },
  58888. ]
  58889. ))
  58890. characterMakers.push(() => makeCharacter(
  58891. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58892. {
  58893. front: {
  58894. height: math.unit(2, "meters"),
  58895. weight: math.unit(95, "kg"),
  58896. name: "Front",
  58897. image: {
  58898. source: "./media/characters/osiris-gryphon/front.svg",
  58899. extra: 1508/1313,
  58900. bottom: 87/1595
  58901. }
  58902. },
  58903. back: {
  58904. height: math.unit(2, "meters"),
  58905. weight: math.unit(95, "kg"),
  58906. name: "Back",
  58907. image: {
  58908. source: "./media/characters/osiris-gryphon/back.svg",
  58909. extra: 1436/1309,
  58910. bottom: 64/1500
  58911. }
  58912. },
  58913. frontLewd: {
  58914. height: math.unit(2, "meters"),
  58915. weight: math.unit(95, "kg"),
  58916. name: "Front-lewd",
  58917. image: {
  58918. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58919. extra: 1508/1313,
  58920. bottom: 87/1595
  58921. }
  58922. },
  58923. wing: {
  58924. height: math.unit(6.3333, "feet"),
  58925. name: "Wing",
  58926. image: {
  58927. source: "./media/characters/osiris-gryphon/wing.svg"
  58928. }
  58929. },
  58930. },
  58931. [
  58932. {
  58933. name: "Incognito",
  58934. height: math.unit(2, "meters")
  58935. },
  58936. {
  58937. name: "Home Size",
  58938. height: math.unit(30, "meters"),
  58939. default: true
  58940. },
  58941. {
  58942. name: "Macro",
  58943. height: math.unit(100, "meters")
  58944. },
  58945. {
  58946. name: "Macro+",
  58947. height: math.unit(350, "meters")
  58948. },
  58949. {
  58950. name: "Mega",
  58951. height: math.unit(40, "km")
  58952. },
  58953. {
  58954. name: "Giga",
  58955. height: math.unit(300, "km")
  58956. },
  58957. {
  58958. name: "Giga+",
  58959. height: math.unit(2000, "km")
  58960. },
  58961. {
  58962. name: "Terra",
  58963. height: math.unit(30000, "km")
  58964. },
  58965. ]
  58966. ))
  58967. characterMakers.push(() => makeCharacter(
  58968. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58969. {
  58970. front: {
  58971. height: math.unit(2.5, "meters"),
  58972. weight: math.unit(200, "kg"),
  58973. name: "Front",
  58974. image: {
  58975. source: "./media/characters/atlas-dragon/front.svg",
  58976. extra: 745/462,
  58977. bottom: 36/781
  58978. }
  58979. },
  58980. back: {
  58981. height: math.unit(2.5, "meters"),
  58982. weight: math.unit(200, "kg"),
  58983. name: "Back",
  58984. image: {
  58985. source: "./media/characters/atlas-dragon/back.svg",
  58986. extra: 848/822,
  58987. bottom: 57/905
  58988. }
  58989. },
  58990. frontLewd: {
  58991. height: math.unit(2.5, "meters"),
  58992. weight: math.unit(200, "kg"),
  58993. name: "Front (Lewd)",
  58994. image: {
  58995. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58996. extra: 745/462,
  58997. bottom: 36/781
  58998. }
  58999. },
  59000. backLewd: {
  59001. height: math.unit(2.5, "meters"),
  59002. weight: math.unit(200, "kg"),
  59003. name: "Back (Lewd)",
  59004. image: {
  59005. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59006. extra: 848/822,
  59007. bottom: 57/905
  59008. }
  59009. },
  59010. },
  59011. [
  59012. {
  59013. name: "Incognito",
  59014. height: math.unit(2.5, "meters")
  59015. },
  59016. {
  59017. name: "Small Macro",
  59018. height: math.unit(50, "meters")
  59019. },
  59020. {
  59021. name: "Macro",
  59022. height: math.unit(350, "meters")
  59023. },
  59024. {
  59025. name: "Mega",
  59026. height: math.unit(5.5, "kilometers")
  59027. },
  59028. {
  59029. name: "Mega+",
  59030. height: math.unit(50, "km")
  59031. },
  59032. {
  59033. name: "Giga",
  59034. height: math.unit(350, "km")
  59035. },
  59036. {
  59037. name: "Giga+",
  59038. height: math.unit(2000, "km")
  59039. },
  59040. {
  59041. name: "Giga++",
  59042. height: math.unit(6500, "km")
  59043. },
  59044. {
  59045. name: "Terra",
  59046. height: math.unit(30000, "km")
  59047. },
  59048. {
  59049. name: "Terra+",
  59050. height: math.unit(250000, "km")
  59051. },
  59052. {
  59053. name: "True Size",
  59054. height: math.unit(100, "multiverses"),
  59055. default: true
  59056. },
  59057. ]
  59058. ))
  59059. characterMakers.push(() => makeCharacter(
  59060. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59061. {
  59062. front: {
  59063. height: math.unit(1.8, "m"),
  59064. weight: math.unit(120, "kg"),
  59065. name: "Front",
  59066. image: {
  59067. source: "./media/characters/chey/front.svg",
  59068. extra: 1359/1270,
  59069. bottom: 18/1377
  59070. }
  59071. },
  59072. arm: {
  59073. height: math.unit(2.05, "feet"),
  59074. name: "Arm",
  59075. image: {
  59076. source: "./media/characters/chey/arm.svg"
  59077. }
  59078. },
  59079. head: {
  59080. height: math.unit(1.89, "feet"),
  59081. name: "Head",
  59082. image: {
  59083. source: "./media/characters/chey/head.svg"
  59084. }
  59085. },
  59086. },
  59087. [
  59088. {
  59089. name: "Original Size",
  59090. height: math.unit(5, "cm")
  59091. },
  59092. {
  59093. name: "Incognito Size",
  59094. height: math.unit(2.4, "m")
  59095. },
  59096. {
  59097. name: "Home Size",
  59098. height: math.unit(200, "meters"),
  59099. default: true
  59100. },
  59101. {
  59102. name: "Mega",
  59103. height: math.unit(2, "km")
  59104. },
  59105. {
  59106. name: "Giga (Preferred Size)",
  59107. height: math.unit(2000, "km")
  59108. },
  59109. {
  59110. name: "Giga+",
  59111. height: math.unit(6000, "km")
  59112. },
  59113. {
  59114. name: "Terra",
  59115. height: math.unit(17000, "km")
  59116. },
  59117. {
  59118. name: "Terra+",
  59119. height: math.unit(75000, "km")
  59120. },
  59121. {
  59122. name: "Terra++",
  59123. height: math.unit(225000, "km")
  59124. },
  59125. ]
  59126. ))
  59127. characterMakers.push(() => makeCharacter(
  59128. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59129. {
  59130. side: {
  59131. height: math.unit(7.8, "meters"),
  59132. name: "Side",
  59133. image: {
  59134. source: "./media/characters/ragnarok/side.svg",
  59135. extra: 725/621,
  59136. bottom: 72/797
  59137. }
  59138. },
  59139. },
  59140. [
  59141. {
  59142. name: "Normal",
  59143. height: math.unit(7.8, "meters"),
  59144. default: true
  59145. },
  59146. ]
  59147. ))
  59148. characterMakers.push(() => makeCharacter(
  59149. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59150. {
  59151. hyena_front: {
  59152. height: math.unit(2.1, "meters"),
  59153. weight: math.unit(110, "kg"),
  59154. name: "Front",
  59155. image: {
  59156. source: "./media/characters/nima/hyena-front.svg",
  59157. extra: 1904/1796,
  59158. bottom: 67/1971
  59159. },
  59160. form: "hyena",
  59161. },
  59162. hyena_back: {
  59163. height: math.unit(2.1, "meters"),
  59164. weight: math.unit(110, "kg"),
  59165. name: "Back",
  59166. image: {
  59167. source: "./media/characters/nima/hyena-back.svg",
  59168. extra: 1964/1884,
  59169. bottom: 35/1999
  59170. },
  59171. form: "hyena",
  59172. },
  59173. shark_front: {
  59174. height: math.unit(1.95, "meters"),
  59175. weight: math.unit(110, "kg"),
  59176. name: "Front",
  59177. image: {
  59178. source: "./media/characters/nima/shark-front.svg",
  59179. extra: 2238/2013,
  59180. bottom: 0/223
  59181. },
  59182. form: "shark",
  59183. },
  59184. paw: {
  59185. height: math.unit(1, "feet"),
  59186. name: "Paw",
  59187. image: {
  59188. source: "./media/characters/nima/paw.svg"
  59189. }
  59190. },
  59191. circlet: {
  59192. height: math.unit(0.3, "feet"),
  59193. name: "Circlet",
  59194. image: {
  59195. source: "./media/characters/nima/circlet.svg"
  59196. }
  59197. },
  59198. necklace: {
  59199. height: math.unit(1.2, "feet"),
  59200. name: "Necklace",
  59201. image: {
  59202. source: "./media/characters/nima/necklace.svg"
  59203. }
  59204. },
  59205. bracelet: {
  59206. height: math.unit(0.51, "feet"),
  59207. name: "Bracelet",
  59208. image: {
  59209. source: "./media/characters/nima/bracelet.svg"
  59210. }
  59211. },
  59212. armband: {
  59213. height: math.unit(1.3, "feet"),
  59214. name: "Armband",
  59215. image: {
  59216. source: "./media/characters/nima/armband.svg"
  59217. }
  59218. },
  59219. },
  59220. [
  59221. {
  59222. name: "Incognito",
  59223. height: math.unit(2.1, "meters"),
  59224. allForms: true
  59225. },
  59226. {
  59227. name: "Small Macro",
  59228. height: math.unit(50, "meters"),
  59229. allForms: true
  59230. },
  59231. {
  59232. name: "Macro",
  59233. height: math.unit(200, "meters"),
  59234. allForms: true
  59235. },
  59236. {
  59237. name: "Mega",
  59238. height: math.unit(2.5, "km"),
  59239. allForms: true
  59240. },
  59241. {
  59242. name: "Mega+",
  59243. height: math.unit(30, "km"),
  59244. allForms: true
  59245. },
  59246. {
  59247. name: "Giga (Home Size)",
  59248. height: math.unit(400, "km"),
  59249. allForms: true,
  59250. default: true
  59251. },
  59252. {
  59253. name: "Giga+",
  59254. height: math.unit(2500, "km"),
  59255. allForms: true
  59256. },
  59257. {
  59258. name: "Giga++",
  59259. height: math.unit(8000, "km"),
  59260. allForms: true
  59261. },
  59262. {
  59263. name: "Terra",
  59264. height: math.unit(20000, "km"),
  59265. allForms: true
  59266. },
  59267. {
  59268. name: "Terra+",
  59269. height: math.unit(70000, "km"),
  59270. allForms: true
  59271. },
  59272. {
  59273. name: "Terra++",
  59274. height: math.unit(600000, "km"),
  59275. allForms: true
  59276. },
  59277. {
  59278. name: "Galactic",
  59279. height: math.unit(40, "galaxies"),
  59280. allForms: true
  59281. },
  59282. {
  59283. name: "Universal",
  59284. height: math.unit(40, "universes"),
  59285. allForms: true
  59286. },
  59287. ],
  59288. {
  59289. "hyena": {
  59290. name: "Hyena",
  59291. default: true
  59292. },
  59293. "shark": {
  59294. name: "Shark",
  59295. },
  59296. }
  59297. ))
  59298. characterMakers.push(() => makeCharacter(
  59299. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59300. {
  59301. anthro_front: {
  59302. height: math.unit(1.5, "meters"),
  59303. name: "Front",
  59304. image: {
  59305. source: "./media/characters/adelaide/anthro-front.svg",
  59306. extra: 860/783,
  59307. bottom: 60/920
  59308. },
  59309. form: "anthro",
  59310. default: true
  59311. },
  59312. hand: {
  59313. height: math.unit(0.65, "feet"),
  59314. name: "Hand",
  59315. image: {
  59316. source: "./media/characters/adelaide/hand.svg"
  59317. },
  59318. form: "anthro"
  59319. },
  59320. foot: {
  59321. height: math.unit(1.38 * 259 / 314, "feet"),
  59322. name: "Foot",
  59323. image: {
  59324. source: "./media/characters/adelaide/foot.svg",
  59325. extra: 259/259,
  59326. bottom: 55/314
  59327. },
  59328. form: "anthro"
  59329. },
  59330. feather: {
  59331. height: math.unit(0.85, "feet"),
  59332. name: "Feather",
  59333. image: {
  59334. source: "./media/characters/adelaide/feather.svg"
  59335. },
  59336. form: "anthro"
  59337. },
  59338. feral_side: {
  59339. height: math.unit(1, "meters"),
  59340. name: "Side",
  59341. image: {
  59342. source: "./media/characters/adelaide/feral-side.svg",
  59343. extra: 550/467,
  59344. bottom: 37/587
  59345. },
  59346. form: "feral",
  59347. default: true
  59348. },
  59349. feral_hand: {
  59350. height: math.unit(0.58, "feet"),
  59351. name: "Hand",
  59352. image: {
  59353. source: "./media/characters/adelaide/hand.svg"
  59354. },
  59355. form: "feral"
  59356. },
  59357. feral_foot: {
  59358. height: math.unit(1.2 * 259 / 314, "feet"),
  59359. name: "Foot",
  59360. image: {
  59361. source: "./media/characters/adelaide/foot.svg",
  59362. extra: 259/259,
  59363. bottom: 55/314
  59364. },
  59365. form: "feral"
  59366. },
  59367. feral_feather: {
  59368. height: math.unit(0.63, "feet"),
  59369. name: "Feather",
  59370. image: {
  59371. source: "./media/characters/adelaide/feather.svg"
  59372. },
  59373. form: "feral"
  59374. },
  59375. },
  59376. [
  59377. {
  59378. name: "Normal",
  59379. height: math.unit(1.5, "meters"),
  59380. form: "anthro",
  59381. default: true
  59382. },
  59383. {
  59384. name: "Normal",
  59385. height: math.unit(1, "meters"),
  59386. form: "feral",
  59387. default: true
  59388. },
  59389. ],
  59390. {
  59391. "anthro": {
  59392. name: "Anthro",
  59393. default: true
  59394. },
  59395. "feral": {
  59396. name: "Feral",
  59397. },
  59398. }
  59399. ))
  59400. characterMakers.push(() => makeCharacter(
  59401. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59402. {
  59403. front: {
  59404. height: math.unit(2.5, "meters"),
  59405. name: "Front",
  59406. image: {
  59407. source: "./media/characters/goa/front.svg",
  59408. extra: 1109/1013,
  59409. bottom: 150/1259
  59410. }
  59411. },
  59412. },
  59413. [
  59414. {
  59415. name: "Normal",
  59416. height: math.unit(2.5, "meters"),
  59417. default: true
  59418. },
  59419. ]
  59420. ))
  59421. characterMakers.push(() => makeCharacter(
  59422. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59423. {
  59424. front: {
  59425. height: math.unit(2, "meters"),
  59426. weight: math.unit(100, "kg"),
  59427. name: "Front",
  59428. image: {
  59429. source: "./media/characters/kiki-weavile/front.svg",
  59430. extra: 357/332,
  59431. bottom: 60/417
  59432. }
  59433. },
  59434. },
  59435. [
  59436. {
  59437. name: "Normal",
  59438. height: math.unit(2, "meters"),
  59439. default: true
  59440. },
  59441. ]
  59442. ))
  59443. characterMakers.push(() => makeCharacter(
  59444. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59445. {
  59446. side: {
  59447. height: math.unit(1.6, "meters"),
  59448. name: "Side",
  59449. image: {
  59450. source: "./media/characters/liza/side.svg",
  59451. extra: 943/915,
  59452. bottom: 72/1015
  59453. }
  59454. },
  59455. },
  59456. [
  59457. {
  59458. name: "Normal",
  59459. height: math.unit(1.6, "meters"),
  59460. default: true
  59461. },
  59462. ]
  59463. ))
  59464. characterMakers.push(() => makeCharacter(
  59465. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59466. {
  59467. side: {
  59468. height: math.unit(2.5, "meters"),
  59469. name: "Side",
  59470. image: {
  59471. source: "./media/characters/persephone-sweetbreath/side.svg",
  59472. extra: 796/700,
  59473. bottom: 44/840
  59474. }
  59475. },
  59476. },
  59477. [
  59478. {
  59479. name: "Normal",
  59480. height: math.unit(2.5, "meters"),
  59481. default: true
  59482. },
  59483. ]
  59484. ))
  59485. characterMakers.push(() => makeCharacter(
  59486. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59487. {
  59488. front: {
  59489. height: math.unit(32, "meters"),
  59490. name: "Front",
  59491. image: {
  59492. source: "./media/characters/pierce/front.svg",
  59493. extra: 1695/1475,
  59494. bottom: 185/1880
  59495. }
  59496. },
  59497. side: {
  59498. height: math.unit(32, "meters"),
  59499. name: "Side",
  59500. image: {
  59501. source: "./media/characters/pierce/side.svg",
  59502. extra: 974/859,
  59503. bottom: 43/1017
  59504. }
  59505. },
  59506. frontWingless: {
  59507. height: math.unit(32, "meters"),
  59508. name: "Front (Wingless)",
  59509. image: {
  59510. source: "./media/characters/pierce/front-wingless.svg",
  59511. extra: 1695/1475,
  59512. bottom: 185/1880
  59513. }
  59514. },
  59515. sideWingless: {
  59516. height: math.unit(32, "meters"),
  59517. name: "Side (Wingless)",
  59518. image: {
  59519. source: "./media/characters/pierce/side-wingless.svg",
  59520. extra: 974/859,
  59521. bottom: 43/1017
  59522. }
  59523. },
  59524. maw: {
  59525. height: math.unit(19.3, "meters"),
  59526. name: "Maw",
  59527. image: {
  59528. source: "./media/characters/pierce/maw.svg"
  59529. }
  59530. },
  59531. },
  59532. [
  59533. {
  59534. name: "Small",
  59535. height: math.unit(8.5, "meters")
  59536. },
  59537. {
  59538. name: "Normal",
  59539. height: math.unit(32, "meters"),
  59540. default: true
  59541. },
  59542. ]
  59543. ))
  59544. characterMakers.push(() => makeCharacter(
  59545. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59546. {
  59547. front: {
  59548. height: math.unit(2.3, "meters"),
  59549. weight: math.unit(165, "kg"),
  59550. name: "Front",
  59551. image: {
  59552. source: "./media/characters/shira/front.svg",
  59553. extra: 924/919,
  59554. bottom: 17/941
  59555. },
  59556. form: "cobra",
  59557. default: true
  59558. },
  59559. back: {
  59560. height: math.unit(2.3, "meters"),
  59561. weight: math.unit(165, "kg"),
  59562. name: "Back",
  59563. image: {
  59564. source: "./media/characters/shira/back.svg",
  59565. extra: 928/922,
  59566. bottom: 18/946
  59567. },
  59568. form: "cobra"
  59569. },
  59570. frontLewd: {
  59571. height: math.unit(2.3, "meters"),
  59572. weight: math.unit(165, "kg"),
  59573. name: "Front (Lewd)",
  59574. image: {
  59575. source: "./media/characters/shira/front-lewd.svg",
  59576. extra: 924/919,
  59577. bottom: 17/941
  59578. },
  59579. form: "cobra"
  59580. },
  59581. backLewd: {
  59582. height: math.unit(2.3, "meters"),
  59583. weight: math.unit(165, "kg"),
  59584. name: "Back (Lewd)",
  59585. image: {
  59586. source: "./media/characters/shira/back-lewd.svg",
  59587. extra: 928/922,
  59588. bottom: 18/946
  59589. },
  59590. form: "cobra"
  59591. },
  59592. maw: {
  59593. height: math.unit(1.14, "feet"),
  59594. name: "Maw",
  59595. image: {
  59596. source: "./media/characters/shira/maw.svg"
  59597. },
  59598. form: "cobra"
  59599. },
  59600. magma_front: {
  59601. height: math.unit(2.3, "meters"),
  59602. weight: math.unit(165, "kg"),
  59603. name: "Front",
  59604. image: {
  59605. source: "./media/characters/shira/magma-front.svg",
  59606. extra: 1870/1693,
  59607. bottom: 24/1894
  59608. },
  59609. form: "magma",
  59610. },
  59611. magma_back: {
  59612. height: math.unit(2.3, "meters"),
  59613. weight: math.unit(165, "kg"),
  59614. name: "Back",
  59615. image: {
  59616. source: "./media/characters/shira/magma-back.svg",
  59617. extra: 1918/1756,
  59618. bottom: 46/1964
  59619. },
  59620. form: "magma",
  59621. },
  59622. },
  59623. [
  59624. {
  59625. name: "Incognito",
  59626. height: math.unit(2.3, "meters"),
  59627. allForms: true
  59628. },
  59629. {
  59630. name: "Home Size",
  59631. height: math.unit(150, "meters"),
  59632. default: true,
  59633. allForms: true
  59634. },
  59635. {
  59636. name: "Macro",
  59637. height: math.unit(2, "km"),
  59638. allForms: true
  59639. },
  59640. {
  59641. name: "Mega",
  59642. height: math.unit(30, "km"),
  59643. allForms: true
  59644. },
  59645. {
  59646. name: "Giga",
  59647. height: math.unit(450, "km"),
  59648. allForms: true
  59649. },
  59650. {
  59651. name: "Giga+",
  59652. height: math.unit(3000, "km"),
  59653. allForms: true
  59654. },
  59655. {
  59656. name: "Giga++",
  59657. height: math.unit(6000, "km"),
  59658. allForms: true
  59659. },
  59660. {
  59661. name: "Terra",
  59662. height: math.unit(80000, "km"),
  59663. allForms: true
  59664. },
  59665. {
  59666. name: "Terra+",
  59667. height: math.unit(350000, "km"),
  59668. allForms: true
  59669. },
  59670. {
  59671. name: "Solar",
  59672. height: math.unit(1e6, "km"),
  59673. allForms: true
  59674. },
  59675. ],
  59676. {
  59677. "cobra": {
  59678. name: "Cobra",
  59679. default: true
  59680. },
  59681. "magma": {
  59682. name: "Magma Dragon",
  59683. },
  59684. }
  59685. ))
  59686. characterMakers.push(() => makeCharacter(
  59687. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59688. {
  59689. front: {
  59690. height: math.unit(2, "meters"),
  59691. weight: math.unit(160, "kg"),
  59692. name: "Front",
  59693. image: {
  59694. source: "./media/characters/daxerios/front.svg",
  59695. extra: 1334/1277,
  59696. bottom: 45/1379
  59697. }
  59698. },
  59699. frontLewd: {
  59700. height: math.unit(2, "meters"),
  59701. weight: math.unit(160, "kg"),
  59702. name: "Front (Lewd)",
  59703. image: {
  59704. source: "./media/characters/daxerios/front-lewd.svg",
  59705. extra: 1334/1277,
  59706. bottom: 45/1379
  59707. }
  59708. },
  59709. dick: {
  59710. height: math.unit(2.35, "feet"),
  59711. name: "Dick",
  59712. image: {
  59713. source: "./media/characters/daxerios/dick.svg"
  59714. }
  59715. },
  59716. },
  59717. [
  59718. {
  59719. name: "\"Small\"",
  59720. height: math.unit(5, "meters")
  59721. },
  59722. {
  59723. name: "Original Size",
  59724. height: math.unit(500, "meters"),
  59725. default: true
  59726. },
  59727. {
  59728. name: "Mega",
  59729. height: math.unit(2, "km")
  59730. },
  59731. {
  59732. name: "Mega+",
  59733. height: math.unit(35, "km")
  59734. },
  59735. {
  59736. name: "Giga",
  59737. height: math.unit(250, "km")
  59738. },
  59739. {
  59740. name: "Giga+",
  59741. height: math.unit(3000, "km")
  59742. },
  59743. {
  59744. name: "Terra",
  59745. height: math.unit(25000, "km")
  59746. },
  59747. {
  59748. name: "Terra+",
  59749. height: math.unit(300000, "km")
  59750. },
  59751. {
  59752. name: "Solar",
  59753. height: math.unit(1e6, "km")
  59754. },
  59755. ]
  59756. ))
  59757. characterMakers.push(() => makeCharacter(
  59758. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59759. {
  59760. front: {
  59761. height: math.unit(8 + 4/12, "feet"),
  59762. weight: math.unit(464, "lb"),
  59763. name: "Front",
  59764. image: {
  59765. source: "./media/characters/caveat/front.svg",
  59766. extra: 1861/1678,
  59767. bottom: 40/1901
  59768. }
  59769. },
  59770. },
  59771. [
  59772. {
  59773. name: "Normal",
  59774. height: math.unit(8 + 4/12, "feet"),
  59775. default: true
  59776. },
  59777. ]
  59778. ))
  59779. characterMakers.push(() => makeCharacter(
  59780. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59781. {
  59782. front: {
  59783. height: math.unit(12, "feet"),
  59784. weight: math.unit(1800, "lb"),
  59785. name: "Front",
  59786. image: {
  59787. source: "./media/characters/centbair/front.svg",
  59788. extra: 781/663,
  59789. bottom: 25/806
  59790. }
  59791. },
  59792. frontNsfw: {
  59793. height: math.unit(12, "feet"),
  59794. weight: math.unit(1800, "lb"),
  59795. name: "Front (NSFW)",
  59796. image: {
  59797. source: "./media/characters/centbair/front-nsfw.svg",
  59798. extra: 781/663,
  59799. bottom: 25/806
  59800. }
  59801. },
  59802. back: {
  59803. height: math.unit(12, "feet"),
  59804. weight: math.unit(1800, "lb"),
  59805. name: "Back",
  59806. image: {
  59807. source: "./media/characters/centbair/back.svg",
  59808. extra: 808/761,
  59809. bottom: 19/827
  59810. }
  59811. },
  59812. dick: {
  59813. height: math.unit(6.5, "feet"),
  59814. name: "Dick",
  59815. image: {
  59816. source: "./media/characters/centbair/dick.svg"
  59817. }
  59818. },
  59819. slit: {
  59820. height: math.unit(3.25, "feet"),
  59821. name: "Slit",
  59822. image: {
  59823. source: "./media/characters/centbair/slit.svg"
  59824. }
  59825. },
  59826. },
  59827. [
  59828. {
  59829. name: "Normal",
  59830. height: math.unit(12, "feet"),
  59831. default: true
  59832. },
  59833. ]
  59834. ))
  59835. characterMakers.push(() => makeCharacter(
  59836. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59837. {
  59838. front: {
  59839. height: math.unit(5 + 7/12, "feet"),
  59840. name: "Front",
  59841. image: {
  59842. source: "./media/characters/andy/front.svg",
  59843. extra: 634/588,
  59844. bottom: 36/670
  59845. },
  59846. extraAttributes: {
  59847. "pawLength": {
  59848. name: "Paw Length",
  59849. power: 1,
  59850. type: "length",
  59851. base: math.unit(1, "feet")
  59852. },
  59853. }
  59854. },
  59855. side: {
  59856. height: math.unit(5 + 7/12, "feet"),
  59857. name: "Side",
  59858. image: {
  59859. source: "./media/characters/andy/side.svg",
  59860. extra: 641/596,
  59861. bottom: 34/675
  59862. },
  59863. extraAttributes: {
  59864. "pawLength": {
  59865. name: "Paw Length",
  59866. power: 1,
  59867. type: "length",
  59868. base: math.unit(1, "feet")
  59869. },
  59870. }
  59871. },
  59872. back: {
  59873. height: math.unit(5 + 7/12, "feet"),
  59874. name: "Back",
  59875. image: {
  59876. source: "./media/characters/andy/back.svg",
  59877. extra: 618/583,
  59878. bottom: 39/657
  59879. },
  59880. extraAttributes: {
  59881. "pawLength": {
  59882. name: "Paw Length",
  59883. power: 1,
  59884. type: "length",
  59885. base: math.unit(1, "feet")
  59886. },
  59887. }
  59888. },
  59889. paw: {
  59890. height: math.unit(1.13, "feet"),
  59891. name: "Paw",
  59892. image: {
  59893. source: "./media/characters/andy/paw.svg"
  59894. }
  59895. },
  59896. },
  59897. [
  59898. {
  59899. name: "Micro",
  59900. height: math.unit(4, "inches")
  59901. },
  59902. {
  59903. name: "Normal",
  59904. height: math.unit(5 + 7/12, "feet"),
  59905. default: true
  59906. },
  59907. {
  59908. name: "Macro",
  59909. height: math.unit(390.42, "feet")
  59910. },
  59911. ]
  59912. ))
  59913. characterMakers.push(() => makeCharacter(
  59914. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59915. {
  59916. front: {
  59917. height: math.unit(7, "feet"),
  59918. weight: math.unit(250, "lb"),
  59919. name: "Front",
  59920. image: {
  59921. source: "./media/characters/vix-titan/front.svg",
  59922. extra: 460/428,
  59923. bottom: 15/475
  59924. },
  59925. extraAttributes: {
  59926. "pawWidth": {
  59927. name: "Paw Width",
  59928. power: 1,
  59929. type: "length",
  59930. base: math.unit(0.75, "feet")
  59931. },
  59932. }
  59933. },
  59934. },
  59935. [
  59936. {
  59937. name: "Normal",
  59938. height: math.unit(7, "feet"),
  59939. default: true
  59940. },
  59941. {
  59942. name: "Giant",
  59943. height: math.unit(1500, "feet")
  59944. },
  59945. {
  59946. name: "Mega",
  59947. height: math.unit(10, "miles")
  59948. },
  59949. {
  59950. name: "Giga",
  59951. height: math.unit(150, "miles")
  59952. },
  59953. {
  59954. name: "Tera",
  59955. height: math.unit(144000, "miles")
  59956. },
  59957. ]
  59958. ))
  59959. characterMakers.push(() => makeCharacter(
  59960. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59961. {
  59962. front: {
  59963. height: math.unit(6 + 2/12, "feet"),
  59964. name: "Front",
  59965. image: {
  59966. source: "./media/characters/reiku/front.svg",
  59967. extra: 1910/1757,
  59968. bottom: 103/2013
  59969. },
  59970. extraAttributes: {
  59971. "thighThickness": {
  59972. name: "Thigh Thickness",
  59973. power: 1,
  59974. type: "length",
  59975. base: math.unit(1.12, "feet")
  59976. },
  59977. "assThickness": {
  59978. name: "Ass Thickness",
  59979. power: 1,
  59980. type: "length",
  59981. base: math.unit(1.12*2, "feet")
  59982. },
  59983. }
  59984. },
  59985. side: {
  59986. height: math.unit(6 + 2/12, "feet"),
  59987. name: "Side",
  59988. image: {
  59989. source: "./media/characters/reiku/side.svg",
  59990. extra: 1846/1748,
  59991. bottom: 99/1945
  59992. },
  59993. extraAttributes: {
  59994. "thighThickness": {
  59995. name: "Thigh Thickness",
  59996. power: 1,
  59997. type: "length",
  59998. base: math.unit(1.12, "feet")
  59999. },
  60000. "assThickness": {
  60001. name: "Ass Thickness",
  60002. power: 1,
  60003. type: "length",
  60004. base: math.unit(1.12*2, "feet")
  60005. },
  60006. }
  60007. },
  60008. back: {
  60009. height: math.unit(6 + 2/12, "feet"),
  60010. name: "Back",
  60011. image: {
  60012. source: "./media/characters/reiku/back.svg",
  60013. extra: 1941/1786,
  60014. bottom: 34/1975
  60015. },
  60016. extraAttributes: {
  60017. "thighThickness": {
  60018. name: "Thigh Thickness",
  60019. power: 1,
  60020. type: "length",
  60021. base: math.unit(1.12, "feet")
  60022. },
  60023. "assThickness": {
  60024. name: "Ass Thickness",
  60025. power: 1,
  60026. type: "length",
  60027. base: math.unit(1.12*2, "feet")
  60028. },
  60029. }
  60030. },
  60031. head: {
  60032. height: math.unit(1.8, "feet"),
  60033. name: "Head",
  60034. image: {
  60035. source: "./media/characters/reiku/head.svg"
  60036. }
  60037. },
  60038. tailTop: {
  60039. height: math.unit(8.4, "feet"),
  60040. name: "Tail (Top)",
  60041. image: {
  60042. source: "./media/characters/reiku/tail-top.svg"
  60043. }
  60044. },
  60045. tailBottom: {
  60046. height: math.unit(8.4, "feet"),
  60047. name: "Tail (Bottom)",
  60048. image: {
  60049. source: "./media/characters/reiku/tail-bottom.svg"
  60050. }
  60051. },
  60052. foot: {
  60053. height: math.unit(2.6, "feet"),
  60054. name: "Foot",
  60055. image: {
  60056. source: "./media/characters/reiku/foot.svg"
  60057. }
  60058. },
  60059. footCurled: {
  60060. height: math.unit(2.3, "feet"),
  60061. name: "Foot (Curled)",
  60062. image: {
  60063. source: "./media/characters/reiku/foot-curled.svg"
  60064. }
  60065. },
  60066. footSide: {
  60067. height: math.unit(1.26, "feet"),
  60068. name: "Foot (Side)",
  60069. image: {
  60070. source: "./media/characters/reiku/foot-side.svg"
  60071. }
  60072. },
  60073. },
  60074. [
  60075. {
  60076. name: "Normal",
  60077. height: math.unit(6 + 2/12, "feet"),
  60078. default: true
  60079. },
  60080. ]
  60081. ))
  60082. characterMakers.push(() => makeCharacter(
  60083. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60084. {
  60085. front: {
  60086. height: math.unit(7, "feet"),
  60087. weight: math.unit(500, "kg"),
  60088. name: "Front",
  60089. image: {
  60090. source: "./media/characters/cialda/front.svg",
  60091. extra: 912/745,
  60092. bottom: 55/967
  60093. }
  60094. },
  60095. },
  60096. [
  60097. {
  60098. name: "Normal",
  60099. height: math.unit(7, "feet"),
  60100. default: true
  60101. },
  60102. ]
  60103. ))
  60104. characterMakers.push(() => makeCharacter(
  60105. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60106. {
  60107. side: {
  60108. height: math.unit(6, "feet"),
  60109. weight: math.unit(600, "lb"),
  60110. preyCapacity: math.unit(25, "liters"),
  60111. name: "Side",
  60112. image: {
  60113. source: "./media/characters/darkkin/side.svg",
  60114. extra: 1597/1447,
  60115. bottom: 101/1698
  60116. }
  60117. },
  60118. },
  60119. [
  60120. {
  60121. name: "Canon Height",
  60122. height: math.unit(568, "feet"),
  60123. default: true
  60124. },
  60125. ]
  60126. ))
  60127. characterMakers.push(() => makeCharacter(
  60128. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60129. {
  60130. front: {
  60131. height: math.unit(6, "feet"),
  60132. weight: math.unit(1500, "lb"),
  60133. preyCapacity: math.unit(3, "people"),
  60134. name: "Front",
  60135. image: {
  60136. source: "./media/characters/livnia/front.svg",
  60137. extra: 934/932,
  60138. bottom: 83/1017
  60139. }
  60140. },
  60141. back: {
  60142. height: math.unit(6, "feet"),
  60143. weight: math.unit(1500, "lb"),
  60144. preyCapacity: math.unit(3, "people"),
  60145. name: "Back",
  60146. image: {
  60147. source: "./media/characters/livnia/back.svg",
  60148. extra: 916/915,
  60149. bottom: 58/974
  60150. }
  60151. },
  60152. head: {
  60153. height: math.unit(1.53, "feet"),
  60154. name: "Head",
  60155. image: {
  60156. source: "./media/characters/livnia/head.svg"
  60157. }
  60158. },
  60159. maw: {
  60160. height: math.unit(0.78, "feet"),
  60161. name: "Maw",
  60162. image: {
  60163. source: "./media/characters/livnia/maw.svg"
  60164. }
  60165. },
  60166. genitals: {
  60167. height: math.unit(0.35, "feet"),
  60168. name: "Genitals",
  60169. image: {
  60170. source: "./media/characters/livnia/genitals.svg"
  60171. }
  60172. },
  60173. },
  60174. [
  60175. {
  60176. name: "Normal",
  60177. height: math.unit(1000, "feet"),
  60178. default: true
  60179. },
  60180. ]
  60181. ))
  60182. characterMakers.push(() => makeCharacter(
  60183. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60184. {
  60185. front: {
  60186. height: math.unit(4, "feet"),
  60187. weight: math.unit(73, "lb"),
  60188. name: "Front",
  60189. image: {
  60190. source: "./media/characters/hayaku/front.svg",
  60191. extra: 1011/888,
  60192. bottom: 33/1044
  60193. }
  60194. },
  60195. back: {
  60196. height: math.unit(4, "feet"),
  60197. weight: math.unit(73, "lb"),
  60198. name: "Back",
  60199. image: {
  60200. source: "./media/characters/hayaku/back.svg",
  60201. extra: 1040/930,
  60202. bottom: 20/1060
  60203. }
  60204. },
  60205. },
  60206. [
  60207. {
  60208. name: "Normal",
  60209. height: math.unit(4, "feet"),
  60210. default: true
  60211. },
  60212. ]
  60213. ))
  60214. characterMakers.push(() => makeCharacter(
  60215. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60216. {
  60217. front: {
  60218. height: math.unit(6 + 7/12, "feet"),
  60219. weight: math.unit(300, "lb"),
  60220. name: "Front",
  60221. image: {
  60222. source: "./media/characters/athena-bryzant/front.svg",
  60223. extra: 870/835,
  60224. bottom: 33/903
  60225. }
  60226. },
  60227. back: {
  60228. height: math.unit(6 + 7/12, "feet"),
  60229. weight: math.unit(300, "lb"),
  60230. name: "Back",
  60231. image: {
  60232. source: "./media/characters/athena-bryzant/back.svg",
  60233. extra: 858/823,
  60234. bottom: 30/888
  60235. }
  60236. },
  60237. head: {
  60238. height: math.unit(2.38, "feet"),
  60239. name: "Head",
  60240. image: {
  60241. source: "./media/characters/athena-bryzant/head.svg"
  60242. }
  60243. },
  60244. wings: {
  60245. height: math.unit(2.85, "feet"),
  60246. name: "Wings",
  60247. image: {
  60248. source: "./media/characters/athena-bryzant/wings.svg"
  60249. }
  60250. },
  60251. },
  60252. [
  60253. {
  60254. name: "Normal",
  60255. height: math.unit(6 + 7/12, "feet"),
  60256. default: true
  60257. },
  60258. {
  60259. name: "Big",
  60260. height: math.unit(8, "feet")
  60261. },
  60262. {
  60263. name: "Very Big",
  60264. height: math.unit(11, "feet")
  60265. },
  60266. ]
  60267. ))
  60268. characterMakers.push(() => makeCharacter(
  60269. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60270. {
  60271. side: {
  60272. height: math.unit(3, "meters"),
  60273. weight: math.unit(7500, "kg"),
  60274. preyCapacity: math.unit(1e12, "people"),
  60275. name: "Side",
  60276. image: {
  60277. source: "./media/characters/zel-kesh/side.svg",
  60278. extra: 910/407,
  60279. bottom: 147/1057
  60280. }
  60281. },
  60282. },
  60283. [
  60284. {
  60285. name: "Normal",
  60286. height: math.unit(3, "meters"),
  60287. default: true
  60288. },
  60289. ]
  60290. ))
  60291. characterMakers.push(() => makeCharacter(
  60292. { name: "Kane (Fox)", species: ["fox"], tags: ["anthro"] },
  60293. {
  60294. front: {
  60295. height: math.unit(2, "meters"),
  60296. weight: math.unit(95, "kg"),
  60297. name: "Front",
  60298. image: {
  60299. source: "./media/characters/kane-fox/front.svg",
  60300. extra: 945/888,
  60301. bottom: 27/972
  60302. }
  60303. },
  60304. back: {
  60305. height: math.unit(2, "meters"),
  60306. weight: math.unit(95, "kg"),
  60307. name: "Back",
  60308. image: {
  60309. source: "./media/characters/kane-fox/back.svg",
  60310. extra: 959/914,
  60311. bottom: 15/974
  60312. }
  60313. },
  60314. frontLewd: {
  60315. height: math.unit(2, "meters"),
  60316. weight: math.unit(95, "kg"),
  60317. name: "Front (Lewd)",
  60318. image: {
  60319. source: "./media/characters/kane-fox/front-lewd.svg",
  60320. extra: 945/888,
  60321. bottom: 27/972
  60322. }
  60323. },
  60324. },
  60325. [
  60326. {
  60327. name: "Home Size",
  60328. height: math.unit(2, "meters"),
  60329. default: true
  60330. },
  60331. {
  60332. name: "Macro",
  60333. height: math.unit(200, "meters")
  60334. },
  60335. {
  60336. name: "Small Mega",
  60337. height: math.unit(3, "km")
  60338. },
  60339. {
  60340. name: "Mega",
  60341. height: math.unit(50, "km")
  60342. },
  60343. {
  60344. name: "Giga",
  60345. height: math.unit(200, "km")
  60346. },
  60347. {
  60348. name: "Giga+",
  60349. height: math.unit(2500, "km")
  60350. },
  60351. {
  60352. name: "Terra",
  60353. height: math.unit(70000, "km")
  60354. },
  60355. {
  60356. name: "Terra+",
  60357. height: math.unit(150000, "km")
  60358. },
  60359. {
  60360. name: "Terra++",
  60361. height: math.unit(400000, "km")
  60362. },
  60363. ]
  60364. ))
  60365. characterMakers.push(() => makeCharacter(
  60366. { name: "Ayranus", species: ["otter", "lion", "bat"], tags: ["anthro"] },
  60367. {
  60368. otter_front: {
  60369. height: math.unit(1.8, "meters"),
  60370. weight: math.unit(90, "kg"),
  60371. name: "Front",
  60372. image: {
  60373. source: "./media/characters/ayranus/otter-front.svg",
  60374. extra: 468/452,
  60375. bottom: 43/511
  60376. },
  60377. form: "otter",
  60378. },
  60379. otter_frontLewd: {
  60380. height: math.unit(1.8, "meters"),
  60381. weight: math.unit(90, "kg"),
  60382. name: "Front (Lewd)",
  60383. image: {
  60384. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60385. extra: 468/452,
  60386. bottom: 43/511
  60387. },
  60388. form: "otter",
  60389. },
  60390. lionbat_front: {
  60391. height: math.unit(1.8, "meters"),
  60392. weight: math.unit(90, "kg"),
  60393. name: "Front (Lewd)",
  60394. image: {
  60395. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60396. extra: 797/740,
  60397. bottom: 78/875
  60398. },
  60399. form: "lionbat",
  60400. },
  60401. paw: {
  60402. height: math.unit(1.5, "feet"),
  60403. name: "Paw",
  60404. image: {
  60405. source: "./media/characters/ayranus/paw.svg"
  60406. },
  60407. },
  60408. },
  60409. [
  60410. {
  60411. name: "Incognito",
  60412. height: math.unit(1.8, "meters"),
  60413. allForms: true
  60414. },
  60415. {
  60416. name: "Macro",
  60417. height: math.unit(60, "meters"),
  60418. allForms: true
  60419. },
  60420. {
  60421. name: "Macro+",
  60422. height: math.unit(200, "meters"),
  60423. allForms: true
  60424. },
  60425. {
  60426. name: "Mega",
  60427. height: math.unit(35, "km"),
  60428. allForms: true
  60429. },
  60430. {
  60431. name: "Giga",
  60432. height: math.unit(220, "km"),
  60433. allForms: true
  60434. },
  60435. {
  60436. name: "Giga+",
  60437. height: math.unit(1500, "km"),
  60438. allForms: true
  60439. },
  60440. {
  60441. name: "Terra",
  60442. height: math.unit(13000, "km"),
  60443. allForms: true
  60444. },
  60445. {
  60446. name: "Terra+",
  60447. height: math.unit(500000, "km"),
  60448. allForms: true
  60449. },
  60450. {
  60451. name: "Galactic",
  60452. height: math.unit(486080, "parsecs"),
  60453. default: true,
  60454. allForms: true
  60455. },
  60456. ],
  60457. {
  60458. "otter": {
  60459. name: "Otter",
  60460. default: true
  60461. },
  60462. "lionbat": {
  60463. name: "Lionbat",
  60464. },
  60465. }
  60466. ))
  60467. characterMakers.push(() => makeCharacter(
  60468. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60469. {
  60470. front: {
  60471. height: math.unit(7 + 4/12, "feet"),
  60472. weight: math.unit(400, "lb"),
  60473. name: "Front",
  60474. image: {
  60475. source: "./media/characters/proxy/front.svg",
  60476. extra: 1605/1542,
  60477. bottom: 55/1660
  60478. }
  60479. },
  60480. side: {
  60481. height: math.unit(7 + 4/12, "feet"),
  60482. weight: math.unit(400, "lb"),
  60483. name: "Side",
  60484. image: {
  60485. source: "./media/characters/proxy/side.svg",
  60486. extra: 794/759,
  60487. bottom: 6/800
  60488. }
  60489. },
  60490. hand: {
  60491. height: math.unit(1.54, "feet"),
  60492. name: "Hand",
  60493. image: {
  60494. source: "./media/characters/proxy/hand.svg"
  60495. }
  60496. },
  60497. paw: {
  60498. height: math.unit(1.53, "feet"),
  60499. name: "Paw",
  60500. image: {
  60501. source: "./media/characters/proxy/paw.svg"
  60502. }
  60503. },
  60504. maw: {
  60505. height: math.unit(1.9, "feet"),
  60506. name: "Maw",
  60507. image: {
  60508. source: "./media/characters/proxy/maw.svg"
  60509. }
  60510. },
  60511. },
  60512. [
  60513. {
  60514. name: "Normal",
  60515. height: math.unit(7 + 4/12, "feet"),
  60516. default: true
  60517. },
  60518. ]
  60519. ))
  60520. //characters
  60521. function makeCharacters() {
  60522. const results = [];
  60523. characterMakers.forEach(character => {
  60524. results.push(character());
  60525. });
  60526. return results;
  60527. }